/*----------------------------------------------------------------------*/
/* contact
/*----------------------------------------------------------------------*/
#form {
  padding-block: 80px 100px;
}
#form .form__lead {
  margin-bottom: 4rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
#form form {
  padding: 50px 50px 118px;
  background-color: #f5f7fa;
}
#form .form__items {
  display: grid;
  row-gap: 24px;
  margin-bottom: 58px;
}
#form .form__items > * {
  display: grid;
  grid-template-columns: 30% 66%;
  -webkit-column-gap: 4%;
  -moz-column-gap: 4%;
  column-gap: 4%;
}
#form .form__items > *:not(:last-child) {
  padding-bottom: 28px;
  border-bottom: 1px solid #dfe4ed;
}
#form .form__items > * > span:first-child {
  position: relative;
  margin-top: 8px;
  padding-left: 12px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.45;
}
#form .form__items > * > span:first-child::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #e8478b;
}
#form .form__items > * > span:first-child:has(.form__required) {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#form .form__items .form__required {
  width: 50px;
  height: 32px;
  border: 1px solid #b42e27;
  color: #b42e27;
  font-size: 1.8rem;
  line-height: 32px;
  text-align: center;
}
#form .form__items .form__postal {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 20px;
}
#form .form__items .form__postal span {
  font-size: 2rem;
}
#form .form__items .form__postal input {
  width: 110px;
}
#form .form__items .form__postal p {
  font-size: 2rem;
}
#form .form__items input,
#form .form__items textarea {
  padding: 10px 15px;
  width: 100%;
  border: 1px solid #b5b9c1;
  border-radius: 0.1875rem;
  background-color: #fff;
  font-size: 2rem;
  line-height: 1.5;
}
#form .form__items ::-webkit-input-placeholder {
  color: #bebebe;
}
#form .form__items ::-moz-placeholder {
  color: #bebebe;
}
#form .form__items :-ms-input-placeholder {
  color: #bebebe;
}
#form .form__items ::-ms-input-placeholder {
  color: #bebebe;
}
#form .form__items ::placeholder {
  color: #bebebe;
}
/*
#form .form__agree {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 2rem;
}
#form .form__agree a {
  text-decoration: underline;
}
#form .form__agree input {
  appearance: auto;
  margin-right: 7px;
  width: 18px;
  height: 18px;
  border: 1px solid #333;
}
*/
#form .form__submit {
  position: relative;
  margin-inline: auto;
  width: 400px;
  transition: opacity 0.2s;
}
#form .form__submit::before,
#form .form__submit::after {
  content: "";
  position: absolute;
  z-index: 0;
  cursor: pointer;
}
#form .form__submit::before {
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
}
#form .form__submit::after {
  top: 29px;
  right: 30px;
  width: 8px;
  height: 12px;
  background-image: url(../img/icon_chevron_pink02.png);
  background-repeat: no-repeat;
  background-size: contain;
}
#form .form__submit > input {
  padding-block: 20px;
  width: 100%;
  border-radius: 100vmax;
  background-color: #e8478b;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}
@media (any-hover: hover) {
  #form .form__submit:hover,
  #form .form__submit:focus {
    opacity: 0.6;
  }
}
@media (any-hover: none) {
  #form .form__submit:active {
    opacity: 0.6;
  }
}

@media screen and (max-width: 60rem) {
  #form {
    padding-block: 16vw;
    padding-bottom: 0;
  }
  #form .form__lead {
    margin-bottom: 8.5333333333vw;
    font-size: min(4.2666666667vw, 2rem);
  }
  #form form {
    padding: 8.5333333333vw 6.4vw 10.6666666667vw;
  }
  #form .form__items {
    row-gap: 4.2666666667vw;
    margin-bottom: 6.4vw;
  }
  #form .form__items > * {
    grid-template-columns: initial;
    gap: 3.2vw;
  }
  #form .form__items > *:not(:last-child) {
    padding-bottom: 4.2666666667vw;
  }
  #form .form__items > * > span:first-child {
    margin-top: 0;
    padding-left: 2.6666666667vw;
    font-size: min(4.2666666667vw, 2rem);
  }
  #form .form__items > * > span:first-child::before {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1.6vw;
    height: 1.6vw;
  }
  #form .form__items > * > span:first-child:has(.form__required) {
    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    justify-content: initial;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 3.2vw;
    -moz-column-gap: 3.2vw;
    column-gap: 3.2vw;
  }
  #form .form__items .form__postal {
    -webkit-column-gap: 1.6vw;
    -moz-column-gap: 1.6vw;
    column-gap: 1.6vw;
    margin-bottom: 3.2vw;
  }
  #form .form__items .form__postal span {
    font-size: min(3.2vw, 2rem);
  }
  #form .form__items .form__postal input {
    width: 26.6666666667vw;
  }
  #form .form__items .form__postal p {
    font-size: min(3.2vw, 2rem);
  }
  #form .form__items input,
  #form .form__items textarea {
    padding: 2.1333333333vw;
    border-radius: 0.4vw;
    font-size: min(4.2666666667vw, 2rem);
  }
  #form .form__items ::-webkit-input-placeholder {
    font-size: min(4.2666666667vw, 2rem);
  }
  #form .form__items ::-moz-placeholder {
    font-size: min(4.2666666667vw, 2rem);
  }
  #form .form__items :-ms-input-placeholder {
    font-size: min(4.2666666667vw, 2rem);
  }
  #form .form__items ::-ms-input-placeholder {
    font-size: min(4.2666666667vw, 2rem);
  }
  #form .form__items ::placeholder {
    font-size: min(4.2666666667vw, 2rem);
  }
  /*
  #form .form__agree {
    margin-bottom: 6.4vw;
    font-size: 3.2vw;
  }
  #form .form__agree input {
    margin-right: 2.1333333333vw;
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
  */
  #form .form__submit {
    width: 76vw;
  }
  #form .form__submit::before {
    top: 50%;
    transform: translateY(calc(-50% - 12px));
    right: 4vw;
    width: 4.8vw;
    height: 4.8vw;
  }
  #form .form__submit::after {
    top: 50%;
    transform: translateY(calc(-50% - 12px));
    right: 5.7333333333vw;
    width: 1.2vw;
    height: 1.8666666667vw;
  }
  #form .form__submit > input {
    padding-block: 3.3333333333vw;
    font-size: min(3.7333333333vw, 2rem);
  }
}
@media screen and (max-width: 735px) {
  #form .form__items .form__required {
    width: 40px;
    height: 26px;
    line-height: 26px;
  }
}
/*----------------------------------------------------------------------*/
/* thanks
/*----------------------------------------------------------------------*/
#message {
  /* padding-block: 80px 120px; */
  margin-top: 60px;
}
#message h2 {
  margin-bottom: 36px;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
}
#message .message__contents {
  display: grid;
  row-gap: 28px;
  padding-block: 50px 60px;
  background-color: #f5f7fa;
  font-size: 1.8rem;
  line-height: 1.7;
  text-align: center;
}
#message .message__contents span {
  display: block;
}

@media screen and (max-width: 960px) {
  #message {
    /* padding-block: 16vw; */
  }
  #message h2 {
    /* margin-bottom: 6.4vw; */
    font-size: 2.2rem;
  }
  #message .message__contents {
    row-gap: 5.6vw;
    padding: 6.4vw;
    font-size: 1.8rem;
    text-align: left;
  }
  #message .message__contents span {
    display: inline;
  }
}

/* mv
---------------------------------------------------------------------- */
.p-mv {
  overflow: hidden;
  position: relative;
  padding-block: 180px 40px;
}
@media screen and (max-width: 60rem) {
  .p-mv {
    padding-block: min(180px, 24vw) min(40px, 8vw);
  }
}
/* heading
  ---------------------------------------------------------------------- */
.c-heading {
  display: grid;
  row-gap: 10px;
  text-align: center;
}
.c-heading .c-heading__en {
  color: #e8478b;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  text-transform: uppercase;
}
.c-heading .c-heading__ja {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.45;
}
.c-heading.--white .c-heading__en,
.c-heading.--white .c-heading__ja {
  color: #fff;
}
@media screen and (max-width: 60rem) {
  .c-heading {
    row-gap: 1.3333333333vw;
  }
  .c-heading .c-heading__en {
    font-size: min(4vw, 2rem);
  }
  .c-heading .c-heading__en.--lg {
    font-size: 4.5333333333vw;
  }
  .c-heading .c-heading__ja {
    font-size: min(6.1333333333vw, 3.6rem);
  }
}
/* bg
  ---------------------------------------------------------------------- */
.l-bg {
  position: relative;
  z-index: 1;
  background-color: #fff;
}
/* container
  ---------------------------------------------------------------------- */
.l-container {
  margin-inline: auto;
  padding-inline: 50px;
  width: min(100%, 1260px);
}
@media screen and (max-width: 60rem) {
  .l-container {
    padding-inline: 6.6666666667vw;
    width: min(100%, 1160px + 13.3333333333vw);
  }
}

.grecaptcha-badge {
  z-index: 1000 !important;
}
