@charset "utf-8";

/* +++++++++++++++++++++++++++++++

 style_contact.css

+++++++++++++++++++++++++++++++ */


/* header
-----------------------------------*/
.main-nav__list > li:nth-of-type(8)::before {
  width: 24px;
}


/* menu
-----------------------------------*/
.contact-menu__container {
  position: relative;
  padding: 0 0 140px;
}
.white__bg .wrapper {
  position: relative;
}

.contact-customer p {
  margin: 0 0 20px;
  color: var(--pink);
}

.contents__section p {
  margin: 0 0 40px;
}

.contact-menu__tel {
  max-width: 500px;
  margin: 50px auto 0;
  padding: 20px;
  text-align: center;
  border: var(--border-black);
}
.contact-menu__tel > p {
  margin: 0 0 20px;
  font-size: 1.8rem;
  line-height: 1;
}
.contact-menu__tel > a {
  position: relative;
  display: inline-block;
  margin: 0 0 10px;
  padding-left: 42px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}
.contact-menu__tel > a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 33px;
  height: 18px;
  margin-top: -7px;
  background: url(/common/img/contact/icon_free_black.svg) no-repeat;
  background-size: contain;
}
.contact-menu__tel > span {
  display: block;
  font-size: 1.6rem;
}
.contact-menu__tel > span:nth-of-type(2) {
  margin: 4px 0 0;
  font-size: 1.2rem;
}

.contact-menu__link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
.contact-menu__link a {
  position: relative;
  display: block;
  width: 100%;
  max-width: 340px;
  padding: 20px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--white);
  background: var(--black);
  border: var(--border-black);
  border-radius: 60px;
  transition: .3s;
}
.contact-menu__link a::after {
  content: '\e5c8';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-family: 'Material Icons Outlined';
}
.contact-menu__link a:hover {
  color: var(--black);
  background: none;
}
.contact-menu__link a:hover::after {
  border-color: var(--black);
}
h4 + .contact-menu__link a:nth-of-type(1):after {
  content: '\e89e';
  position: absolute;
  top: 10px;
  right: 26px;
  transform: inherit;
  font-size: 1.2rem;
  font-family: 'Material Icons Outlined';
}
@media screen and (max-width: 768px) {
  .contact-menu__container {
    padding: 0 0 80px;
  }

  .contact-menu__link {
    gap: 20px;
  }
  h4 + .contact-menu__link a:nth-of-type(1)::after {
    right: 16px;
  }
}
@media screen and (max-width: 480px) {
  .contact-menu__container .wrapper > p,
  .white__bg p,
  .none__bg p {
    margin: 0 0 30px;
  }

  .contact-menu__tel {
    margin: 30px auto 0;
  }
  .contact-menu__tel > p {
    margin: 0 0 10px;
    font-size: 1.6rem;
    line-height: 1.4;
  }
}


/* contact
-----------------------------------*/
.contact__container {
  max-width: 1100px;
  margin: 0 auto 140px;
}
.contact__txt {
  margin-bottom: 30px;
  text-align: center;
}
.contact-error__txt {
  margin-bottom: 30px;
  text-align: center;
  color: var(--pink);
}
.contact__container small {
  display: block;
  margin: 10px 0 0 0;
  font-size: 1.2rem;
  line-height: 1;
}
.txt_red {
  color: var(--pink);
}
.contact__container dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
  border-bottom: 1px solid #999;
}
.contact__container dl:nth-of-type(1) {
  border-top: 1px solid #999;
}
.contact__container dt {
  width: 30%;
}
.contact__container dd {
  width: 68%;
}
@media screen and (max-width: 1199px) {
  .contact__container {
    max-width: 92%;
  }
}
@media screen and (max-width: 768px) {
  .contact__container {
    margin: 0 auto 80px;
  }
  .contact__container dl {
    border-bottom: 1px solid #999;
    padding: 20px 10px;
  }
  .contact__container dt {
    width: 100%;
    margin: 0 0 16px;
  }
  .contact__container dd {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .contact__txt,
  .contact-error__txt {
    text-align: left;
  }
}

/* 必須 */
.contact__container dt span {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 6px;
  font-size: 1.0rem;
  line-height: 1;
  color: var(--white);
  background: var(--pink);
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .contact__container dt span {
    font-size: 1.0rem;
  }
}

/* checkbox */
ul.contact_checkbox__list li input[type=checkbox],
.consent__block input[type=checkbox] {
  display: inline-block !important;
  position: absolute;
  opacity: 0;
}
.checkbox__item {
  cursor: pointer;
  display: inline-block;
  padding: 4px 0 4px 30px;
  position: relative;
  width: auto;
}
.checkbox__item::before {
  background: var(--white);
  border: 1px solid;
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}
.checkbox__item::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  width: 5px;
  height: 11px;
  margin-top: -7px;
  border-right: 3px solid #DC5065;
  border-bottom: 3px solid #DC5065;
  opacity: 0;
  transform: rotate(45deg);
}
input[type=checkbox]:checked + .checkbox__item::after {
  opacity: 1;
}

/* input */
.contact__container dd input {
  display: block;
  padding: 10px 14px;
  font-size: 1.4rem;
  border: var(--border-gray);
  border-radius: 0;
}
.contact__container dd input::placeholder {
  color: var(--gray);
}
.contact__container dd input.text_type {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .contact__container dd input.text_type {
    width: 100%;
  }
}

/* address */
.contact__container dd .post__block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.contact__container dd .post__block span {
  font-size: 1.6rem;
  line-height: 1;
  margin: 0 10px;
}
.contact__container dd .post__block input {
  width: 140px;
}
@media screen and (max-width: 768px) {
  .contact__container dd .post__block input {
    width: 30%;
  }
  .contact__container dd .post__block a {
    display: block;
    width: 40%;
    margin: 20px 0 0 0;
  }
}
@media screen and (max-width: 480px) {
  .contact__container dd .post__block a {
    width: 60%;
  }
}

.contact__container dd .address__block {
  margin: 0 0 14px 0;
}
.contact__container dd .address__block:nth-of-type(1) {
  position: relative;
  display: inline-block;
}
.contact__container dd .address__block:nth-of-type(1) label {
  display: inline-block;
  margin: 0 10px 0 0;
}
.contact__container dd .address__block select {
  position: relative;
  width: 200px;
  padding: 12px 3.4em 12px 10px;
  background: var(--white);
  border: solid 1px transparent;
  border: var(--border-gray);
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: .5s;
}
.contact__container dd .address__block:nth-of-type(1)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-right: var(--border-black);
  border-bottom: var(--border-black);
  transform: rotate(45deg);
  z-index: 1;
  pointer-events: none;
}
.contact__container dd .address__block label {
  display: block;
  margin: 0 0 8px 0;
  font-size: 1.4rem;
  line-height: 1;
}

/* mail */
.contact__container dd.mail__block span {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  margin: 0 0 8px 0;
}
.contact__container dd.mail__block input:first-of-type {
  margin: 0 0 14px 0;
}

/* textarea */
.contact__container dd textarea {
  width: 100%;
  height: 200px;
  display: block;
  padding: 10px 14px;
  border: var(--border-gray);
  border-radius: 0;
  font-size: 1.4rem;
}

/* input focus */
.contact__container input[type=text]:focus,
.contact__container input[type=email]:focus,
.contact__container input[type=tel]:focus
.contact__container textarea:focus {
  background-color: #fceff1;
}

/* privacy-policy */
.privacy-policy__container dt,
.privacy-policy__container dd {
  width: 100%;
}
.privacy-policy__container dt {
  margin: 0 0 20px;
  text-align: center;
}
.privacy-policy__container dd p {
  text-align: center;
}
.consent__block {
  display: flex;
  justify-content: center;
  align-items: center;
}
.consent__block input {
  margin-right: 10px;
}

/* confirmation button */
.contact__link a {
  position: relative;
  display: block;
  max-width: 260px;
  margin: 60px auto 0;
  padding: 20px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--white);
  background: var(--black);
  border: var(--border-black);
  border-radius: 60px;
  transition: .3s;
}
.contact__link a::after {
  content: '\e5c8';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-family: 'Material Icons Outlined';
}
.contact__link a:hover {
  color: var(--black);
  background: none;
}
.contact__link .submitBox {
  position: relative;
  width: 100%;
  max-width: 260px;
  height: 58px;
  margin: 0 auto;
  padding: 0;
}
.contact__link .submitBox input {
  position: relative;
  display: block;
  width: 100%;
  margin: 60px auto 0;
  padding: 20px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--white);
  background: var(--black);
  border: var(--border-black);
  border-radius: 60px;
  transition: .3s;
  cursor: pointer;
}
.contact__link a::after,
.contact__link .submitBox::after {
  content: '\e5c8';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-family: 'Material Icons Outlined';
  color: var(--white);
}
.contact__link a:hover,
.contact__link .submitBox:hover input {
  color: var(--black);
  background: none;
}
.contact__link a:hover::after,
.contact__link .submitBox:hover::after {
  color: var(--black);
}
@media screen and (max-width: 768px) {
  .contact__link a {
    margin: 40px auto 0;
  }
}
@media screen and (max-width: 480px) {
  .contact__link a {
    max-width: 100%;
  }
}


/* confirmation
-----------------------------------*/
.contact-confirmation__container {
  max-width: 1100px;
  margin: 0 auto 140px;
}
.contact-confirmation__container dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
  border-bottom: var(--border-gray);
}
.contact-confirmation__container dl:first-child {
  border-top: var(--border-gray);
}
.contact-confirmation__container dt {
  width: 30%;
}
.contact-confirmation__container dd {
  width: 68%;
}
.contact-confirmation__container dt {
  width: 30%;
}
@media screen and (max-width: 1199px) {
  .contact-confirmation__container {
    max-width: 92%;
  }
}
@media screen and (max-width: 768px) {
  .contact-confirmation__container {
    margin: 0 auto 80px;
  }
  .contact-confirmation__container dl {
    padding: 20px 10px;
  }
  .contact-confirmation__container dt {
    width: 100%;
    margin: 0 0 16px;
  }
  .contact-confirmation__container dd {
    width: 100%;
  }
}

/* button */
.contact-confirmation__link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 60px auto 0;
}
.contact-confirmation__link a {
  position: relative;
  display: block;
  width: 260px;
  padding: 20px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  border-radius: 60px;
  transition: .3s;
}
@media screen and (max-width: 768px) {
  .contact-confirmation__link {
    margin: 40px auto 0;
  }
  .contact-confirmation__link a {
    width: 100%;
    max-width: 400px;
  }
}

/* 修正 */
.contact-confirmation__link a:nth-of-type(1) {
  margin-right: 60px;
  background: none;
  border: var(--border-black);
}
.contact-confirmation__link a:nth-of-type(1):hover {
  color: var(--white);
  background: var(--black);
}
@media screen and (max-width: 768px) {
  .contact-confirmation__link a:nth-of-type(1) {
    margin: 0;
    order: 2;
  }
}

/* 送信 */
.contact-confirmation__link a:nth-of-type(2) {
  color: var(--white);
  background: var(--black);
  border: var(--border-black);
}
.contact-confirmation__link a:nth-of-type(2)::after {
  content: '\e5c8';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-family: 'Material Icons Outlined';
}
.contact-confirmation__link a:nth-of-type(2):hover {
  color: var(--black);
  background: none;
}
@media screen and (max-width: 768px) {
  .contact-confirmation__link a:nth-of-type(2) {
    margin: 0 0 20px;
    order: 1;
  }
  .contact-confirmation__link a:nth-of-type(2)::after {
    right: 16px;
  }
}
@media screen and (max-width: 480px) {
  #formWrap .confirmation__btn {
    width: 100%;
  }
  #formWrap .confirmation__btn .btn_back,
  #formWrap .confirmation__btn .btn_next {
    width: 100%;
    padding: 4% 0;
  }
  #formWrap .confirmation__btn .btn_back {
    margin: 0 0 16px;
  }
}


/* complete
-----------------------------------*/
.contact-complete__container {
  max-width: 1100px;
  margin: 0 auto 140px;
}
.contact-complete__container strong {
  display: block;
  margin: 0 0 30px;
  text-align: center;
  font-size: 2.4rem;
}
.contact-complete__container p {
  margin: 0 0 60px;
  text-align: center;
}
.contact-complete__link a {
  position: relative;
  display: block;
  max-width: 260px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--white);
  background: var(--black);
  border: var(--border-black);
  border-radius: 60px;
  transition: .3s;
}
.contact-complete__link a::after {
  content: '\e5c8';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-family: 'Material Icons Outlined';
}
.contact-complete__link a:hover {
  color: var(--black);
  background: none;
}
@media screen and (max-width: 1199px) {
  .contact-complete__container {
    max-width: 92%;
  }
}
@media screen and (max-width: 768px) {
  .contact-complete__container {
    margin: 0 auto 80px;
  }
}
@media screen and (max-width: 480px) {
  .contact-complete__container strong {
    margin: 0 0 20px;
    text-align: left;
    font-size: 2.0rem;
  }
  .contact-complete__container p {
    text-align: left;
  }
  .contact-complete__link a {
    width: 100%;
  }
}