@charset "UTF-8";

@keyframes button {
  to {
    transform: translateX(100%);
  }

  from {
    transform: translateX(-100%);
  }
}

.sp-only {
  display: none;
}

.l-contact-header {
  width: 62.5vw;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-contact-header {
    width: 90vw;
  }
}

.l-contact-header__list {
  width: 62.5vw;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .l-contact-header__list{
    flex-direction:column;
    width: 90vw;
  }
}

.l-contact-header__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17.5vw;
  max-width: 340px;
  background: #4d4d4d;
  padding-top: 2vw;
  padding-bottom: 2vw;
  margin-left: 1.5vw;
  margin-right: 1.5vw;
  border-radius: 300px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-contact-header__list li {
    width:80vw;
  }
}

.l-contact-header__list li::after {
  content: '';
  width: 20px;
  height: 20px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: -1.7vw;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .l-contact-header__list li::after {
    display:none;
  }
}

.l-contact-header__list li:last-child:after {
  border-top: solid 0px #333;
  border-right: solid 0px #333;
}

.l-contact-header__list li:last-child {
  border: none;
}

.l-contact-header__list span {
  font-size: min(1vw, 20px);
  color: #fff;
}

.l-contact-header__list .current {
  background: linear-gradient(270deg, #29abe2 0%, #00a592 100%);
}

.l-contact-header__complete {
  padding: 50px 0 0;
  margin-bottom:13vw;
}

.l-contact-header__complete h3 {
  font-size: 3rem;
  font-weight: normal;
  text-align: center;
  margin: 0 0 20px;
}

.l-contact-header__complete p {
  font-size: 1.6rem;
  text-align: center;
  margin: 0 0 50px;
}

.l-contact-header__complete a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 80px;
  margin: 0 auto;
  font-size: min(1.15vw, 22px);
  background: linear-gradient(90deg, #00a592 0%, #29abe2 50%, #00a592 100%);
  color:white;
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
}

.l-contact-header__complete a:hover {
  background-position: 99% 50%;
}

.l-contact-web {
  width: 1060px;
  padding: 0 20px 80px;
  margin: 0 auto;
  border-bottom: 1px solid #fff;
}

.l-contact-web__head {
  text-align: center;
  margin: 0 0 25px;
}

.l-contact-web__head span {
  display: inline-block;
  position: relative;
  font-size: 3rem;
  font-weight: normal;
  padding: 0 0 0 65px;
}

.l-contact-web__list {
  display: flex;
}

.l-contact-web__item {
  width: 50%;
  box-sizing: border-box;
}

.l-contact-web__item:first-child {
  border-right: 1px solid #333;
}

.l-contact-web__ttl {
  font-size: 2.6rem;
  font-weight: normal;
  text-align: center;
  margin: 0 0 20px;
}

.l-contact-web__lead {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
  margin: 0 0 50px;
}

.l-contact-web__btn a {
  position: relative;
  display: block;
  width: 330px;
  line-height: 90px;
  text-align: center;
  border: 1px solid #fff;
  margin: 0 auto;
  overflow: hidden;
}

.l-contact-web__btn a span {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0 35px 0 0;
  transition: .4s;
  background: url(../img/icon_arrow.svg) no-repeat center right 5px;
}

.l-contact-web__btn a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(-100%);
}

.l-contact-web__btn a:hover span {
  color: #fff;
  background: url(../img/icon_arrow.svg) no-repeat center right 0;
}

.l-contact-web__btn a:hover:before {
  animation: button .4s;
}

.l-contact-phone {
  width: 800px;
  padding: 80px 20px 100px;
  margin: 0 auto;
}

.l-contact-phone__head {
  text-align: center;
  margin: 0 0 25px;
}

.l-contact-phone__head span {
  position: relative;
  display: inline-block;
  font-size: 3rem;
  font-weight: normal;
  padding: 0 0 0 65px;
}

.l-contact-phone__list {
  display: flex;
}

.l-contact-phone__item {
  width: 50%;
  font-size: 3rem;
  text-align: center;
}

.l-contact-phone__item:first-child {
  border-right: 1px solid #333;
}

.l-contact-phone__item small {
  display: block;
  font-size: 1.4rem;
}

.l-contact-phone__item a {
  cursor: text;
}

.l-contact-phone__item a:hover {
  color: #fff;
}

.l-contact-inquiry {
  width: 75vw;
  max-width: 1440px;
  padding: 0 6.25vw;
  margin: 0 auto 6.25vw auto;
  background-color: white;
  border-radius: 2.6vw;
  font-size: min(1.15vw, 22px);
  color: black;
}
@media screen and (max-width: 768px) {
  .l-contact-inquiry {
    font-size: max(4vw, 16px);
  }
}

.l-contact-inquiry__container {
  border-bottom: 1px solid #fff;
}

.l-contact-inquiry__container.-container01 {
  padding: 2vw 0 0 0;
}

.l-contact-inquiry__container.-container01 dl {
  border-bottom: 1px solid #333;
}

.l-contact-inquiry__container.-container02 dl:last-child {
  border: none;
}

.l-contact-inquiry__container.-container03 {
  padding: 15px 0;
}

.l-contact-inquiry__container.-container03 dl {
  border: none;
}

.l-contact-inquiry__container dl {
  display: table;
  padding: 2vw 0;
  border-bottom: 1px solid #333;
}

.l-contact-inquiry__container dt,
.l-contact-inquiry__container dd {
  display: table-cell;
  vertical-align: top;
}

.l-contact-inquiry__container dt {
  position: relative;
  width: 21.875vw;
  max-width: 420px;
}

.l-contact-inquiry__container dd {
  width: 40.625vw;
  max-width: 780px;
  word-break: break-word;
}

.l-contact-inquiry__container input[type="text"],
.l-contact-inquiry__container input[type="email"],
.l-contact-inquiry__container input[type="tel"] {
  width: 100%;
  height: 50px;
  padding: 10px 15px;
  border-radius: 5px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #f2f2f2;
}

.l-contact-inquiry__container input[type="text"]::placeholder,
.l-contact-inquiry__container input[type="email"]::placeholder,
.l-contact-inquiry__container input[type="tel"]::placeholder {
  color: #aaa;
}

@media print,
screen and (min-width: 751px) {
  .l-contact-inquiry__container input.short {
    width: 65%;
  }
}

.l-contact-inquiry__container textarea {
  width: 100%;
  height: 200px;
  padding: 10px 15px;
  margin: 0 0 10px;
  border-radius: 5px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #f2f2f2;
}

.l-contact-inquiry__container select {
  width: 49%;
  height: 50px;
  background: #f2f2f2 url(../img/icon_arrow_select.png) no-repeat center right 15px;
  background-size: 9px 15px;
  padding: 10px 15px;
  border-radius: 5px;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.l-contact-inquiry__container select::-ms-expand {
  display: none;
}

.l-contact-inquiry__container label {
  cursor: pointer;
}


.l-contact-inquiry__container .heading {
  display: flex;
  align-items: baseline;
}

.l-contact-inquiry__container .heading small {
  font-size: min(0.8vw, 15px);
}
@media screen and (max-width: 768px) {
  .l-contact-inquiry__container .heading small {
    font-size:0.8rem;
  }
}

.l-contact-inquiry__container .required {
  display: inline-block;
  width: calc(2.6vw + 10px);
  max-width: 60px;
  font-size: min(0.9vw, 17px);
  color: #00a592;
  line-height: 25px;
  text-align: center;
  border: 1px solid #00a592;
  margin: 13px 0 12px 10px;
  border-radius: 50px;
  padding-left:5px;
  padding-right:5px;
}
@media screen and (max-width: 768px) {
  .l-contact-inquiry__container .required {
    font-size: max(0.9vw, 17px);
    width:calc(13vw + 10px);
    min-width:60px;
  }
}

.l-contact-inquiry__container .required.-hidden {
  visibility: hidden;
}

.l-contact-inquiry__container .description {
  display: block;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .l-contact-inquiry__container .description {
    font-size:0.8rem;
  }
}

.l-contact-inquiry__container .wrap-first {
  display: flex;
}

.l-contact-inquiry__container .wrap-first>span {
  display: inline-block;
  margin: 0 50px 0 0;
}

.l-contact-inquiry__container .wrap-first>span input {
  display: none;
}

.l-contact-inquiry__container .wrap-first>span input:checked+span:before {
  background: #00a592;
  border: 5px solid #f2f2f2;
}

.l-contact-inquiry__container .wrap-first>span span {
  position: relative;
  display: block;
  padding: 0 0 0 35px;
}

.l-contact-inquiry__container .wrap-first>span span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  background: #f2f2f2;
  border-radius: 50%;
  margin: auto;
  box-sizing: border-box;
}

.l-contact-inquiry__container .wrap-radio {
  display: flex;
  align-items: center;
  height: 50px;
}

.l-contact-inquiry__container .wrap-radio>span {
  display: inline-block;
  margin: 0 50px 0 0;
}

.l-contact-inquiry__container .wrap-radio>span input {
  display: none;
}

.l-contact-inquiry__container .wrap-radio>span input:checked+span:before {
  background: #00a592;
  border: 5px solid #f2f2f2;
}

.l-contact-inquiry__container .wrap-radio>span span {
  position: relative;
  display: block;
  font-size: 2.2rem;
  padding: 0 0 0 30px;
}

.l-contact-inquiry__container .wrap-radio>span span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  background: #f2f2f2;
  border-radius: 50%;
  margin: auto;
  box-sizing: border-box;
}

.l-contact-inquiry__container .wrap-name {
  display: flex;
  justify-content: space-between;
}

.l-contact-inquiry__container .wrap-name>span {
  display: flex;
  align-items: center;
  width: 49%;
}

.l-contact-inquiry__container .wrap-name>span span {
  width: 60px;
  text-align: center;
}

.l-contact-inquiry__container .wrap-place .place01 {
  display: block;
  margin: 0 0 20px;
}

.l-contact-inquiry__container .wrap-place .place01 span {
  padding: 0 5px;
}

.l-contact-inquiry__container .wrap-place .place01 input[type="text"] {
  width: 150px;
}

.l-contact-inquiry__container .wrap-place .place01 input[type="button"] {
  width: 150px;
  height: 50px;
  color: #fff;
  background: #4d4d4d;
  border-radius: 50px;
  margin: 0 0 0 20px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.l-contact-inquiry__container .wrap-place .place02 {
  display: flex;
  justify-content: space-between;
  margin: 0 0 20px;
}

.l-contact-inquiry__container .wrap-place .place02 input {
  width: 49%;
}

.l-contact-inquiry__container .wrap-mail {
  border-bottom: none;
  padding: 2vw 0 0;
}

.l-contact-inquiry__container .wrap-age select {
  width: 150px;
}

.l-contact-inquiry__container .wrap-privacy {
  height: 200px;
  background: #f2f2f2;
  padding: 20px;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  border-radius: 5px;
}

.l-contact-inquiry__container .wrap-privacy h2,
.l-contact-inquiry__container .wrap-privacy h3,
.l-contact-inquiry__container .wrap-privacy ol,
.l-contact-inquiry__container .wrap-privacy ul,
.l-contact-inquiry__container .wrap-privacy p {
  font-weight: normal;
  color: #000;
  font-size: min(0.9vw, 17px);
}

.l-contact-inquiry__container .wrap-privacy h2 {
  margin: 0 0 20px;
}

.l-contact-inquiry__container .wrap-privacy h3 {
  margin: 20px 0 0;
}

.l-contact-inquiry__container .wrap-privacy p {
  margin: 0 0 20px;
}

.l-contact-inquiry__container .wrap-privacy ol {
  padding: 0 0 0 15px;
  margin: 0 0 20px;
  counter-reset: number;
}

.l-contact-inquiry__container .wrap-privacy ol>li {
  position: relative;
  padding: 0 0 0 15px;
  margin: 0 0 20px;
}

.l-contact-inquiry__container .wrap-privacy ol>li:before {
  position: absolute;
  left: 0;
  counter-increment: number;
  content: counter(number);
}

.l-contact-inquiry__container .wrap-privacy ul {
  margin: 0 0 20px;
}

.l-contact-inquiry__container .wrap-privacy ul li {
  position: relative;
  padding: 0 0 0 15px;
}

.l-contact-inquiry__container .wrap-privacy ul li:before {
  content: "・";
  position: absolute;
  left: 0;
}

.l-contact-inquiry__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.l-contact-inquiry__btn a,
.l-contact-inquiry__btn input,
.l-contact-inquiry__btn button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 80px;
  color: #fff;
  margin: 0 10px;
  border-radius: 300px;
  cursor: pointer;
  box-sizing: border-box;
  transition: .2s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.l-contact-inquiry__btn a:hover,
.l-contact-inquiry__btn button:hover {
  opacity: 1;
}

.l-contact-inquiry__btn input:hover {
  opacity: .7;
}

.l-contact-inquiry__btn .back {
  font-size: min(1.15vw, 22px);
  background: #4d4d4d;
}
@media screen and (max-width: 768px) {
  .l-contact-inquiry__btn .back {
    font-size: max(1.15vw, 22px);
  }
}

.l-contact-inquiry__btn .back-arrow {
  position: relative;
}

.l-contact-inquiry__btn .back-arrow::before {
  content: '';
  position: absolute;
  width: 3.85vw;
  max-width: 74px;
  height: 1vw;
  max-height: 20px;
  background-image: url(../img/contact_back_arrow_img.png);
  background-size: cover;
  background-position: center;
  left: 10%;
  transition: all 0.3s ease-out;
}

.l-contact-inquiry__btn a.back-arrow:hover::before {
  left: 8%;
  opacity: 1;
}

.l-contact-inquiry__btn .send.send-grade {
  font-size: min(1.15vw, 22px);
  background: linear-gradient(90deg, #00a592 0%, #29abe2 50%, #00a592 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .l-contact-inquiry__btn .send.send-grade {
    font-size: max(1.15vw, 22px);
  }
}

.l-contact-inquiry__btn .send.send-grade:hover {
  background-position: 99% 50%;
}

span.error {
  color: #ff0000;
  display: block;
  margin-top: 5px;
}