@charset "UTF-8";
/* common
-------------------------------------------- */
.link-txt {
  color: #D61518;
  text-decoration: underline;
  display: inline-block;
}

.inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0;
  }
}

.images__inr {
  display: flex;
  justify-content: center;
}
@media (max-width: 576px) {
  .images__inr {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .images__inr picture {
    display: block;
    width: 100%;
  }
}
.images__inr picture:first-child {
  margin-right: 56px;
}
@media (max-width: 576px) {
  .images__inr picture:first-child {
    margin-bottom: 16px;
  }
}

.section__inr-bg {
  background: #FCF8F7;
  max-width: 1160px;
  margin: 0 auto 80px;
  padding: 56px 56px 80px;
  box-sizing: content-box;
}
@media screen and (max-width: 1024px) {
  .section__inr-bg {
    padding: 40px 5% 56px;
    margin-bottom: 40px;
  }
}

.section__inr {
  max-width: 1160px;
  padding: 0 56px 80px;
  margin: 0 auto;
  box-sizing: content-box;
}
@media screen and (max-width: 1024px) {
  .section__inr {
    padding: 0 5%;
    margin: 0 auto 56px;
  }
}

.section__heading {
  text-align: center;
  margin-bottom: 56px;
}
@media screen and (max-width: 1024px) {
  .section__heading {
    margin-bottom: 32px;
  }
}

.section__heading-en {
  font-family: "Noto Sans", sans-serif;
  font-size: 5.6rem;
  line-height: 130%;
  font-weight: bold;
  letter-spacing: -0.02em;
  display: inline-block;
  background: linear-gradient(0deg, #D61518, #F4944E);
  background: -webkit-linear-gradient(0deg, #D61518, #F4944E);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #D61518;
}
@media screen and (max-width: 1024px) {
  .section__heading-en {
    font-size: 4rem;
  }
}

.section__heading-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  line-height: 150%;
  font-weight: bold;
  color: #333;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .section__heading-jp {
    font-size: 1.6rem;
  }
}

.section__list-item {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
}
.section__list-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .section__list-item {
    margin-bottom: 8px;
  }
}
.section__list-item::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #D61518;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .section__list-item::before {
    width: 8px;
    height: 8px;
  }
}

.text-red {
  color: #D61518;
  font-style: normal;
}

.image-400 {
  width: 400px;
}

.section__inr-btn {
  width: 400px;
  font-size: 1.8rem;
  margin: 0 auto;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .section__inr-btn {
    font-size: 1.6rem;
    width: 100%;
    padding: 12px 0;
  }
}
@media (max-width: 576px) {
  .section__inr-btn {
    font-size: 1.4rem;
    width: 100%;
    padding: 10px 0;
  }
}

.section__inr-btn__row {
  display: flex;
  justify-content: center;
}
.section__inr-btn__row a:first-child {
  margin-right: 32px;
}
@media (max-width: 576px) {
  .section__inr-btn__row {
    display: block;
  }
  .section__inr-btn__row a:first-child {
    margin-right: 0;
    margin-bottom: 16px;
  }
}

/* mv
-------------------------------------------- */
.mv_wrap {
  width: 100%;
  height: 400px;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .mv_wrap {
    display: block;
    position: relative;
  }
}
@media (max-width: 576px) {
  .mv_wrap {
    height: 200px;
  }
}

.mv01 {
  flex: 1;
  height: 400px;
  background: url(/images/contact_us/contact_us-mv01.webp) no-repeat center center;
  background-size: cover;
}
@media (max-width: 576px) {
  .mv01 {
    height: 200px;
  }
}

.mv02 {
  flex: 1;
  height: 400px;
  background: url(/images/contact_us/contact_us-mv02.webp) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .mv02 {
    display: none;
  }
}

.mv__title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 400px;
  height: 400px;
  background: #D61518;
}
@media screen and (max-width: 1024px) {
  .mv__title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    padding: 12px;
    background: linear-gradient(to right, rgba(214, 21, 24, 0.9), rgba(255, 91, 20, 0.7));
  }
}
@media screen and (max-width: 1024px) and (max-width: 576px) {
  .mv__title {
    padding: 10px;
  }
}
.mv__title h1 {
  color: #fff;
  font-size: 3rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.07em;
}
@media (max-width: 576px) {
  .mv__title h1 {
    font-size: 2rem;
  }
}

/* contact
-------------------------------------------- */
.contact {
  background: #FCF8F7;
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  .contact {
    padding: 40px 0;
  }
}

.contact__wrapper {
  margin: 0 auto;
  background: #fff;
  max-width: 1160px;
  padding: 56px 24px 80px;
}
@media screen and (max-width: 1024px) {
  .contact__wrapper {
    width: 90%;
    padding: 24px 5% 48px;
  }
}

.contact__note {
  margin: 0 auto 40px;
  max-width: 1160px;
  padding: 0 56px;
}
@media screen and (max-width: 1024px) {
  .contact__note {
    margin: 0 auto 24px;
    width: 100%;
    padding: 0 5%;
  }
}
.contact__note a {
  display: inline-block;
  color: #D61518;
  text-decoration: underline;
}
.contact__note-item {
    padding-left: 2rem;
    position: relative;
}
.contact__note-item:not(:last-child) {
  margin-bottom: 8px;
}

.contact__note-item:before {
    content: '※';
    position: absolute;
    left: 0;
}
.contact__note-item br.sp{
  display: none;
}
.contact__note-item span{
  display: inline-block;
}
@media screen and (max-width: 414px) {
  .contact__note-item br.sp{
    display: block;
  }
}
.contact__inr {
  max-width: 920px;
  margin: 0 auto;
}

.contact__form-ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  line-height: 150%;
  font-weight: bold;
  color: #333;
  margin-bottom: 24px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=date],
textarea {
  width: 100%;
  border: 1px solid #BDBDBD;
  font-size: 1.6rem;
  background: #fff;
  padding: 20px 24px;
  border-radius: 4px;
}
@media screen and (max-width: 1024px) {
  input[type=text],
input[type=email],
input[type=tel],
input[type=date],
textarea {
    padding: 8px;
  }
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=date]::-moz-placeholder, textarea::-moz-placeholder {
  color: #AEAEAE;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=date]::placeholder,
textarea::placeholder {
  color: #AEAEAE;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=date]:focus,
select:focus,
textarea:focus {
  color: #333;
  background: #fff;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=date] {
  height: 56px;
}
@media screen and (max-width: 1024px) {
  input[type=text],
input[type=email],
input[type=tel],
input[type=date] {
    height: 48px;
  }
}

textarea {
  min-height: 270px;
  resize: vertical;
}
@media screen and (max-width: 1024px) {
  textarea {
    min-height: 160px;
  }
}

.textarea-half {
  min-height: 120px;
}
@media screen and (max-width: 1024px) {
  .textarea-half {
    min-height: 96px;
  }
}

.contact-form__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 150%;
  font-weight: bold;
  color: #333;
  margin-bottom: 16px;
}

.contact-form__ttl {
  width: 260px;
  padding-top: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 150%;
  font-weight: bold;
  color: #333;
}
@media screen and (max-width: 1024px) {
  .contact-form__ttl {
    width: 100%;
    margin-bottom: 12px;
    padding-top: 0;
  }
}

.contact-form__ttl--required::after {
  content: "必須";
  background: #D61518;
  border-radius: 24px;
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: bold;
  padding: 3px 9px 4px;
  width: 40px;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .contact-form__ttl--required::after {
    margin-left: 6px;
  }
}

.contact-form__ttl--optional::after {
  content: "任意";
  background: #7b817d;
  border-radius: 24px;
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: bold;
  padding: 3px 9px 4px;
  width: 40px;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .contact-form__ttl--optional::after {
    margin-left: 6px;
  }
}

.contact-form__item {
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .contact-form__item {
    display: block;
    margin-bottom: 24px;
  }
}

.contact-form__input {
  flex: 0 0 659px;
  margin-left: 40px;
}
@media screen and (max-width: 1024px) {
  .contact-form__input {
    margin-left: 0;
  }
}

.contact-form__day p {
  font-size: 1.6rem;
}
.contact-form__day a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: underline;
}

.input-half {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .input-half {
    display: block;
  }
}
.input-half input {
  flex: 0 0 322px;
}
.input-half input:first-child {
  margin-right: 16px;
}
@media screen and (max-width: 1024px) {
  .input-half input:first-child {
    margin-right: 0;
    margin-bottom: 12px;
  }
}

#last-name:user-invalid,
#first-name:user-invalid,
#furigana:user-invalid,
#email:user-invalid,
#email-check:user-invalid {
  border: 1px solid #D61518;
}

.errMsg {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 150%;
  font-weight: bold;
  color: #D61518;
  margin-bottom: 8px;
}
.errAllMsg {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 150%;
  font-weight: bold;
  color: #D61518;
  margin-bottom: 16px;
}

.form-select, .form-select--half {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: #fff url(/images/icon/arrow-down.webp) no-repeat right 16px center/12px 6px;
  border: 1px solid #BDBDBD;
  font-size: 1.6rem;
  padding: 8px 16px;
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
  height: 56px;
  color: #AEAEAE;
}
.form-select::-ms-expand, .form-select--half::-ms-expand {
  display: none;
}
@media screen and (max-width: 1024px) {
  .form-select, .form-select--half {
    height: 48px;
  }
}

.form-select--half {
  width: 322px;
}
@media (max-width: 576px) {
  .form-select--half {
    width: 100%;
  }
}

.select-box__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .select-box__row {
    margin-bottom: 0;
  }
}

.select-box--small {
  width: 120px;
}
@media (max-width: 576px) {
  .select-box--small {
    width: 96px;
  }
}

.select-box--medium {
  width: 160px;
}
@media screen and (max-width: 768px) {
  .select-box--medium {
    width: 120px;
  }
}
.select-box--large {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .select-box--large {
    width: 180px;
  }
}

.select-box--llarge {
  width: 270px;
}
@media screen and (max-width: 768px) {
  .select-box--llarge {
    width: 240px;
  }
}

.select-box-small__inr {
  margin-right: 24px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .select-box-small__inr {
    margin-right: 16px;
    margin-bottom: 12px;
  }
}

.select-box-large__inr {
  margin-bottom: 12px;
}

.select-box__text {
  font-size: 1.4rem;
  margin: 8px;
  display: inline-block;
}

.select-box__text2 {
  font-size: 1.4rem;
  margin: -4px 8px 8px;
  display: inline-block;
}

.contact-form__note {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 8px;
}
.contact-form__radio {
  font-size: 1.6rem;
  padding: 18px 0 0;
}
@media screen and (max-width: 1024px) {
  .contact-form__radio {
    padding: 4px 0 0 0;
  }
}
.errMsg + .contact-form__radio {
  padding: 0;
}

.contact-form__radio-item {
  margin-right: 40px;
}
@media screen and (max-width: 1024px) {
  .contact-form__radio-item {
    margin-right: 24px;
  }
}

.contact-form__radio-item .form-radio {
  display: none;
}
.contact-form__radio-item .form-radio + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 28px;
  position: relative;
  margin-bottom: 16px;
}
.contact-form__radio-item .form-radio + span::before, .contact-form__radio-item .form-radio + span::after {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.contact-form__radio-item .form-radio + span::before {
  background: #fff;
  border: 1px solid #BDBDBD;
  display: block;
  left: 0;
  width: 22px;
  height: 22px;
}
.contact-form__radio-item .form-radio + span::after {
  background: #2375F1;
  left: 4.5px;
  width: 13px;
  height: 13px;
  transition: opacity 0.3s ease 0s;
  opacity: 0;
}
.contact-form__radio-item .form-radio:checked + span::after {
  opacity: 1;
}

input[type=checkbox] {
  display: none;
}

.checkbox__input {
  font-size: 1.6rem;
  padding-top: 13px;
}

.checkbox__input-text {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 40px 5px 28px;
  margin-bottom: 16px;
  position: relative;
  width: auto;
}

.checkbox__input-text::before {
  background: #fff;
  border: 1px solid #BDBDBD;
  border-radius: 2px;
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  left: -2px;
  margin-top: -10px;
  position: absolute;
  top: 50%;
}

.checkbox__input-text::after {
  border-right: 3px solid #2375F1;
  border-bottom: 3px solid #2375F1;
  content: "";
  display: block;
  height: 13px;
  left: 6px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 7px;
}

input[type=checkbox]:checked + .checkbox__input-text::after {
  opacity: 1;
}

#birthday-age {
  width: 120px;
}
@media (max-width: 576px) {
  #birthday-age {
    width: 96px;
  }
}

.contact-form__input-ttl {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .contact-form__input-ttl {
    margin-bottom: 12px;
  }
}

.contact__privacy-txt-box {
  height: 240px;
  padding: 24px;
  margin-bottom: 24px;
  overflow-y: scroll;
  border: 1px solid #BDBDBD;
  border-radius: 4px;
}
@media screen and (max-width: 1024px) {
  .contact__privacy-txt-box {
    font-size: 1.2rem;
    padding: 24px 5%;
  }
}
@media screen and (max-width: 1024px) {
  .contact__privacy-txt-box p {
    font-size: 1.2rem;
  }
}

.contact__consent-area {
  margin-bottom: 56px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .contact__consent-area {
    margin-bottom: 40px;
  }
}

.consent__input {
  padding: 5px 0 5px 28px;
}
@media screen and (max-width: 1024px) {
  .consent__input {
    font-size: 1.4rem;
  }
}

.contact__submit-btn {
  padding: 16px 0;
  display: block;
  border-radius: 50px;
  font-size: 2rem;
  line-height: 180%;
  font-weight: normal;
  text-align: center;
  transition: 0.2s;
  pointer-events: none;
  background: #D61518;
  color: #fff;
  width: 400px;
  margin: 0 auto;
  cursor: pointer;
  pointer-events: auto;
}
@media (max-width: 576px) {
  .contact__submit-btn {
    width: 100%;
  }
}

.contact__submit-btn[type=button][disabled] {
  color: #fff;
  background-color: #BDBDBD;
}

/* now loading */
#loadingBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
/*  background-color: #222; */
  opacity: 0.2;
  z-index: 9998;
}
#nowLoading {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0.8;
  z-index: 9999;
}
.article-banner {
  width: 100%;
  /* 親要素の幅に合わせる */
  max-width: 800px;
  /* PCでは最大800px */
  height: auto;
  /* 縦横比を維持 */
  display: block;
  margin: 20px auto;
  /* 上下の余白 + 中央配置 */
}

/* スマホ対応（画面幅が600px以下の場合） */
@media (max-width: 600px) {
  .article-banner {
    max-width: 100%;
    /* スマホでは幅100%に */
  }
}