@charset "utf-8";

/* =============================================
共通
============================================= */
.section {
  padding: 80px 0;
}

.section__inner {
  width: 90vw;
  max-width: 1080px;
  margin-inline: auto;
}

.section__heading {
  color: var(--color-navy);
  font-size: 39px;
  font-weight: 700;
  margin-bottom: 40px;
  margin-top: var(--leading-trim);
  line-height: 1.4;
  position: relative;
}

.section__heading::before {
  content: attr(data-heading);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: rgba(15, 22, 91, 0.2);
  display: block;
  line-height: 1;
  z-index: 3;
  position: relative;
}

.section__heading::after {
  content: '';
  display: block;
  background: var(--color-navy);
  height: 1px;
  width: 100%;
  position: absolute;
  right: 0;
  top: 70px;
  z-index: 1;
}

.section__heading-inner {
  background: var(--color-light-blue);
  padding-right: 20px;
  z-index: 2;
  position: relative;
}

.section__small-heading {
  font-size: 25px;
  font-weight: 700;
  color: var(--color-navy);
  margin-top: 50px;
  margin-bottom: 40px;
  position: relative;
}

.section__small-heading::after {
  content: '';
  display: block;
  background: #b9bcd3;
  height: 1px;
  width: 100%;
  position: absolute;
  right: 0;
  top: 22px;
  z-index: 1;
}

.section__small-heading-inner {
  position: relative;
  z-index: 2;
  background: var(--color-light-blue);
  position: relative;
  padding-right: 20px;
}

.section__lead-text {
  margin-bottom: 20px;
}

@media (max-width: 660px) {
  .section {
    padding: 30px 0;
  }

  .section__heading {
    font-size: 22px;
  }

  .section__heading::after {
    margin-top: 10px;
    position: static;
  }

  .section__small-heading {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .section__small-heading::after {
    top: 16px;
  }

  .table--fixed {
    table-layout: auto;
  }
}

/* =============================================
ファーストビュー
============================================= */
.fv {
  background-color: var(--color-navy);
  background-image: url(/wp-content/themes/thepast/images/fv-bg-large.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0 80px;
}

.fv__inner {
  max-width: 1200px;
  margin-inline: auto;
}

.fv__maincopy {
  font-size: 45px;
  color: var(--color-white);
  font-weight: 900;
  margin-bottom: 40px;
}

.fv__maincopy-smalltext {
  color: var(--color-white);
  font-size: 0.8em;
}

.text--with-dot {
  position: relative;
}

.text--with-dot::before {
  content: '・';
  position: absolute;
  top: -30px;
  line-height: 1;
  color: var(--color-white);
  left: 50%;
  transform: translateX(-50%);
}

.fv__list {
  list-style: disc;
  padding-left: 26px;
  margin-bottom: 40px;
}

.fv__list-item {
  color: var(--color-white);
  font-size: 25px;
}

.fv__list-item:not(:last-child) {
  margin-bottom: 20px;
}

.text--with-dashed-line {
  text-decoration: underline dashed var(--color-yellow) 2px;
  text-underline-offset: 8px;
}

.fv__lease {
  width: fit-content;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.fv__cta {
  background: var(--color-light-blue);
  padding: 14px;
  width: fit-content;
}

.fv__cta-button {
  font-size: 31px;
  min-width: 600px;
}

@media (max-width: 1600px) {
  .fv {
    background-image: url(/wp-content/themes/thepast/images/fv-bg.webp);
  }
}

@media (max-width: 1400px) {
  .fv {
    background-image: url(/wp-content/themes/thepast/images/fv-bg-small.webp);
  }
}

@media (max-width: 1290px) {
  .fv {
    padding: 100px 0 60px;
  }

  .fv__inner {
    max-width: 990px;
    padding-left: 20px;
  }

  .fv__maincopy {
    font-size: 39px;
    margin-bottom: 10px;
  }

  .fv__list {
    margin-bottom: 30px;
  }

  .fv__list-item {
    font-size: 20px;
  }

  .fv__list-item:not(:last-child) {
    margin-bottom: 16px;
  }

  .fv__lease {
    gap: 10px;
    margin-bottom: 30px;
  }

  .fv__cta-button {
    min-width: unset;
  }
}

@media (max-width: 660px) {
  .fv {
    background-image: none;
    padding: 80px 0 40px;
  }

  .fv__inner {
    padding: 0;
    width: 90vw;
    max-width: 420px;
  }

  .fv__image {
    display: block;
    margin: 0 auto 20px;
  }

  .fv__maincopy {
    font-size: 28px;
  }

  .text--with-dot::before {
    top: -14px;
  }

  .text--with-dashed-line {
    text-decoration: underline dashed var(--color-yellow) 1px;
    text-underline-offset: 6px;
  }

  .fv__list {
    padding-left: 18px;
    margin-bottom: 20px;
  }

  .fv__list-item {
    line-height: 1.7;
    font-size: 18px;
  }

  .fv__list-item:not(:last-child) {
    margin-bottom: 16px;
  }

  .fv__lease {
    margin-inline: auto;
  }

  .fv__lease-image {
  }

  .fv__cta {
    width: 100%;
    padding: 10px;
  }

  .fv__cta-button {
    font-size: 18px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .fv__maincopy {
    font-size: 25px;
  }

  .fv__list-item {
    font-size: 16px;
  }

  .fv__list-item:not(:last-child) {
    margin-bottom: 8px;
  }

  .fv__lease-image {
    width: 40%;
  }
}

/* =============================================
選ばれる理由
============================================= */

.reasons__box {
  display: flex;
  gap: 60px;
}

.reasons__box:not(:last-child) {
  margin-bottom: 60px;
}

.reasons__box:last-child {
  margin-bottom: 80px;
}

.reasons__box-text {
  padding-top: 50px;
  padding-left: 30px;
  position: relative;
}

.reasons__box-heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
}

.reasons__box-heading::before {
  font-size: 142px;
  content: attr(data-heading);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #0f165b;
  line-height: 1;
  opacity: 0.06;
  position: absolute;
  top: -16px;
  left: 0;
}

.reasons__box-figure {
  width: 100%;
  min-width: 420px;
}

.reasons__score-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  max-width: 1080px;
  margin: -40px auto 60px;
  color: var(--color-navy);
  border: solid 1px var(--color-navy);
  font-weight: 700;
}

.reasons__score-note-image {
}

.reasons__user {
  background: var(--color-navy);
  padding: 80px 0;
}

.reasons__user-inner {
  width: 90vw;
  max-width: 880px;
  margin-inline: auto;
}

.reasons__user-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-white);
}

.reasons__descritpion {
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 700;
  color: var(--color-white);
}

.reasons__user-box {
  padding: 40px;
  background: var(--color-light-blue);
}

.reasons__user-box-heading {
  color: var(--color-navy);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  margin-top: var(--leading-trim);
}

.reasons__user-box-heading-inner {
  background: var(--color-light-blue);
  padding-right: 14px;
  z-index: 2;
  position: relative;
}

.reasons__user-box-heading::after {
  content: '';
  display: block;
  background: var(--color-navy);
  height: 1px;
  width: 100%;
  position: absolute;
  right: 0;
  top: 16px;
  z-index: 1;
}

.reasons__user-box-list-item {
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 25px;
  font-weight: 700;
  padding: 4px 8px 4px 10px;
  line-height: 1.4;
  margin-top: var(--leading-trim);
  display: flex;
  gap: 10px;
  align-items: center;
  letter-spacing: 0;
  width: fit-content;
}

.reasons__user-box-list-item:not(:last-child) {
  margin-bottom: 20px;
}

.reasons__user-box-list-item::before {
  content: '';
  display: block;
  width: 18px;
  min-width: 18px;
  height: 18px;
  background-image: url(/wp-content/themes/thepast/images/icon-check.svg);
  background-repeat: no-repeat;
  background-size: 18px;
}

@media (max-width: 660px) {
  .reasons__box {
    flex-direction: column;
    gap: 20px;
  }

  .reasons__box:last-child {
    margin-bottom: 40px;
  }

  .reasons__box-text {
    padding-top: 10px;
    padding-left: 20px;
  }

  .reasons__box-heading {
    font-size: 22px;
  }

  .reasons__box-heading::before {
    font-size: 80px;
  }

  .reasons__box-figure {
    min-width: unset;
  }

  .reasons__box-image {
    width: 80%;
    margin-inline: auto;
    display: block;
  }

  .reasons__box--reverse .reasons__box-text {
    order: 1;
  }

  .reasons__box--reverse .reasons__box-figure {
    order: 2;
  }

  .reasons__score-note {
    width: 80%;
    font-size: 14px;
    line-height: 1.6;
  }

  .reasons__user {
    padding: 30px 0;
  }

  .reasons__user-heading {
    font-size: 22px;
    line-height: 1.7;
  }

  .reasons__descritpion {
    font-size: 16px;
  }

  .reasons__user-box {
    padding: 20px;
  }

  .reasons__user-box-list-item {
    font-size: 18px;
    padding: 8px 8px 8px 12px;
    width: 100%;
  }

  .reasons__user-box-list-item::before {
    width: 20px;
    min-width: 20px;
    height: 20px;
    background-size: 20px;
  }
}

/* =============================================
スライダー
============================================= */
.slider {
  position: relative;
}

.slick-dots.slick-dots {
  bottom: -50px;
}

.slick-dots.slick-dots li {
  margin: 0 1px;
}

.slider__arrow {
  background: var(--color-navy);
  width: 38px;
  height: 38px;
  border-radius: 99999px;
  position: absolute;
  bottom: -60px;
  z-index: 3;
  cursor: pointer;
}

.slider__arrow--prev {
  content: url(/wp-content/themes/thepast/images/slider-arrow-prev.svg);
}

.slider__arrow--next {
  content: url(/wp-content/themes/thepast/images/slider-arrow-next.svg);
}

.slider-item {
  background: var(--color-white);
  padding: 20px;
  height: fit-content !important;
  margin: 0 15px;
}

.slider-item-upper {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.slider-item-upper-figure {
  border: solid 2px #f0f1fa;
  height: fit-content;
}

.slider-item-upper-label {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 4px 10px;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 10px;
  line-height: 1.4;
}

.slider-item-upper-sublabel {
  font-size: 14px;
  font-size: 12px;
  margin-bottom: 2px;
  color: var(--color-navy);
}

.slider-item-upper-text {
  font-weight: 700;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.slider-item-upper-name-separator {
  margin: 0px 10px;
  font-size: 0.8em;
  color: #b9bcd3;
  line-height: 1.4;
}

.slider-item-lower-heading {
  color: var(--color-navy);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
}

.slider-item-lower-description {
  /* font-size: 14px; */
}

@media (max-width: 660px) {
  .slider-item-upper {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
  }

  .slider-item-upper-image {
    width: 100%;
  }

  .slider-item-upper-text {
    align-items: center;
  }
}

/* =============================================
受講生の声
============================================= */
.voices__slider .slider__arrow--prev {
  left: 420px;
}

.voices__slider.slider .slider__arrow--next {
  right: 420px;
}

@media (max-width: 1180px) {
  .voices__slider .slider__arrow--prev {
    left: -10px;
    top: 50%;
  }

  .voices__slider.slider .slider__arrow--next {
    right: -10px;
    top: 50%;
  }
}

/* =============================================
料金
============================================= */
.price__table-wrapper {
  margin-top: 60px;
}

.price__table-header {
  font-size: 20px;
  vertical-align: middle;
}

.table__label {
  background: var(--color-black);
  color: var(--color-white);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  width: 70px;
  text-align: center;
}

.price__table-header--with-copy {
  position: relative;
}

.price__table-header--with-copy::before {
  content: '＼他社の半額程度の受講料／';
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.price__table-data {
  font-size: 20px;
  font-weight: 700;
}

.price__table-data-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 53%;
  white-space: nowrap;
  margin-inline: auto;
}

.price__table-data-inner:not(:last-child) {
  margin-bottom: 4px;
}

.price__table-tag-wrapper {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}

.price__table-tag {
  font-size: 12px;
  padding: 0.2em 0.6em;
  border-radius: 9999px;
}

.price__table-tag--yellow {
  background: var(--color-yellow);
  color: var(--color-black-on-yellow);
}

.price__table-tag--navy {
  background: var(--color-navy);
  color: var(--color-white);
}

.price__price-box {
  background: var(--color-white);
  padding: 16px;
  display: flex;
  gap: 10px;
}

.price__price-box:not(:last-child) {
  margin-bottom: 20px;
}

.price__price-box-inner {
  padding: 14px;
}

.price__price-box-inner-left,
.price__price-box-inner-right {
  max-width: 320px;
  width: 100%;
}

.price__price-box-inner-left {
  background: var(--color-light-blue);
  color: var(--color-navy);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.price__price-box-inner-right {
  background: var(--color-navy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.price__price-box-inner-right .text--roboto {
  font-size: 25px;
}

.price__detail {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.price__detail-box {
  background: var(--color-white);
  padding: 20px;
  width: calc((100% - 30px) / 2);
}

.price__detail-box-heading {
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
}

.price__detail-box-content {
  width: fit-content;
  max-width: 400px;
  padding: 6px 10px;
  font-weight: 700;
  margin-inline: auto;
}

.price__detail-box--refund .price__detail-box-content {
  line-height: 1.6;
  padding: 16px;
}

.price__detail-box-content .text--roboto {
  font-size: 20px;
}

.price__detail-box-list {
  margin-top: 10px;
  font-size: 10px;
}

.price__detail-box-list-item:not(:last-child) {
  margin-bottom: 4px;
}

@media (max-width: 660px) {
  .price__table-wrapper {
    margin-top: 20px;
  }

  .price__table-header {
    font-size: 14px;
  }

  .price__table-data {
    font-size: 18px;
  }

  .price__table-data-inner {
    width: 100%;
  }

  .price__table-header--with-copy {
    padding-top: 30px;
    font-size: 16px;
  }

  .price__table-header--with-copy::before {
    content: '＼他社の半額程度／';
    top: 14px;
    font-size: 14px;
  }

  .price__price-box {
    flex-direction: column;
  }

  .price__price-box-inner {
    padding: 10px;
  }

  .price__price-box-inner-left {
    font-size: 18px;
  }

  .price__price-box-inner-right {
    font-size: 18px;
  }

  .price__price-box-inner-right .text--roboto {
    font-size: 22px;
  }

  .price__detail {
    flex-direction: column;
    gap: 20px;
  }

  .price__detail-box {
    width: 100%;
  }

  .price__detail-box--refund .price__detail-box-content {
    padding: 10px;
  }
}

/* =============================================
プログラム内容
============================================= */
.program__coaching {
  display: flex;
  gap: 30px;
}

.program__coaching-box {
  background: var(--color-white);
  padding: 20px;
  width: calc((100% - 30px) / 2);
}

.program__coaching-box-heading {
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--color-navy);
}

.program__coaching-box-inner {
  display: flex;
  gap: 20px;
}

.program__coaching-box-image {
  width: 200px;
}

.program__curriculum {
  display: flex;
  gap: 15px;
}

.program__curriculum-box {
  background: var(--color-navy);
  padding: 20px;
  width: calc((100% - 30px) / 3);
  display: flex;
  flex-direction: column;
}

.program__curriculum-box-heading {
  color: var(--color-white);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
}

.program__curriculum-box-description {
  background: var(--color-light-blue);
  padding: 10px;
  height: 100%;
}

.program__textbook-box:not(:last-of-type) {
  border-bottom: solid 1px rgba(185, 188, 211, 0.5);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.program__textbook-box-figure {
  min-width: 350px;
}

.program__textbook-box-image {
  height: fit-content;
}

.program__textbook-box-inner {
  display: flex;
  gap: 30px;
}

.program__textbook-box-heading {
  color: var(--color-navy);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.program__textbook-box-small-heading {
  font-weight: 700;
  margin-bottom: 8px;
}

.program__textbook-box-small-heading:not(:first-of-type) {
  margin-top: 40px;
}

.program__textbook-box-description {
  line-height: 1.8;
}

.program__example {
  margin-inline: auto;
  width: 90vw;
  max-width: 880px;
}

.program__example-data {
  vertical-align: middle;
  border: 1px solid var(--color-light-blue);
  padding: 16px 10px;
}

@media (max-width: 660px) {
  .program__coaching {
    flex-direction: column;
    gap: 20px;
  }

  .program__coaching-box {
    width: 100%;
  }

  .program__coaching-box-heading {
    font-size: 18px;
  }

  .program__coaching-box-inner {
    flex-direction: column;
    gap: 10px;
  }

  .program__coaching-box-image {
    margin-inline: auto;
  }

  .program__curriculum {
    flex-direction: column;
    gap: 10px;
  }

  .program__curriculum-box {
    padding: 10px;
    width: 100%;
  }

  .program__curriculum-box-heading {
    font-size: 18px;
  }

  .program__textbook-box-inner {
    flex-direction: column;
    gap: 20px;
  }

  .program__textbook-box-figure {
    min-width: unset;
  }

  .program__textbook-box-small-heading:not(:first-of-type) {
    margin-top: 20px;
  }

  .program__textbook-box-heading {
    font-size: 18px;
  }

  .program__textbook-box:not(:last-of-type) {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .program__textbook-box-description {
    font-size: 14px;
  }

  .program__example .program__example-data {
    white-space: nowrap;
  }
}

/* =============================================
講師・コーチ
============================================= */
.coach__slider {
  margin-bottom: 100px !important;
}

.coach__slider .slider__arrow--prev {
  left: 440px;
}

.coach__slider.slider .slider__arrow--next {
  right: 440px;
}

.coach__supervisor {
  background: var(--color-white);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.coach__supervisor-inner-center {
  width: 100%;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coach__supervisor-inner-left {
  min-width: 200px;
}

.coach__supervisor-inner-right {
  background: var(--color-light-blue);
  padding: 20px;
}

.coach__supervisor-image {
  height: fit-content;
}

@media (max-width: 660px) {
  .coach__slider .slider-item-upper-text {
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }

  .coach__supervisor {
    flex-direction: column;
    padding: 16px;
    gap: 14px;
  }

  .coach__supervisor-inner-center {
    align-items: center;
  }

  .slider-item-upper-label {
    margin-bottom: 6px;
  }

  .coach__supervisor-inner-right {
    padding: 10px;
    font-size: 14px;
    line-height: 1.6;
  }
}

/* =============================================
よくある質問
============================================= */
.faq__accordion {
  width: 90vw;
  margin-inline: auto;
  max-width: 880px;
}

.faq__accordion:not(:last-of-type) {
  margin-bottom: 20px;
}

.faq__summary {
  display: block;
  background: var(--color-navy);
  color: var(--color-white);
  font-weight: bold;
  position: relative;
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  padding: 20px;
  line-height: 1.4;
}

/* Chrome、Safari でデフォルトの矢印を消す */
summary::-webkit-details-marker {
  display: none;
}

.faq__summary::before {
  content: 'Q.';
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  margin-right: 16px;
}

.faq__summary::after {
  content: '';
  background: url(/wp-content/themes/thepast/images/faq-plus.svg) no-repeat center center;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 99999px;
}

.faq__accordion[open] .faq__summary::after {
  background: url(/wp-content/themes/thepast/images/faq-minus.svg) no-repeat center center;
}

.faq__detail {
  padding: 16px 80px 16px 98px;
  position: relative;
}

.faq__detail::before {
  content: 'A.';
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  color: var(--color-navy);
  position: absolute;
  left: 62px;
  top: 10px;
}

@media only screen and (max-width: 1180px) {
  .coach__slider .slider__arrow--prev {
    left: -10px;
    top: 50%;
  }

  .coach__slider.slider .slider__arrow--next {
    right: -10px;
    top: 50%;
  }
}

@media only screen and (max-width: 660px) {
  .faq__inner {
    width: 90vw;
  }

  .faq__accordion:not(:last-of-type) {
    margin-bottom: 12px;
  }

  .faq__summary {
    padding-top: 16px;
    padding-right: 60px;
    font-size: 16px;
  }

  .faq__summary::before {
    font-size: 20px;
    margin-right: 10px;
  }

  .faq__summary::after {
    right: 20px;
    width: 30px;
    height: 30px;
  }

  .faq__detail {
    padding: 10px 20px 16px 54px;
  }

  .faq__detail::before {
    top: 12px;
    left: 24px;
    font-size: 20px;
  }
}

/* =============================================
運営会社
============================================= */
.company__table-row:not(:last-child) {
  /* border-bottom: 10px solid var(--color-light-blue); */
}

.company__table-header,
.company__table-data {
  padding: 20px;
  border: 4px solid var(--color-white);
}

@media only screen and (max-width: 660px) {
  .company__table-header,
  .company__table-data {
    padding: 10px;
    font-size: 14px;
    white-space: nowrap;
  }
}

/* =============================================
フォーム
============================================= */
.contact {
  /* border-top: solid 2px var(--color-navy);
    border-bottom: solid 2px var(--color-navy); */
  z-index: 99997;
  position: relative;
  background: var(--color-navy);
  color: var(--color-white);
}

.contact .section__heading::before {
  color: var(--color-white) fff59;
}

.contact .section__heading-inner {
  color: var(--color-white);
  background: var(--color-navy);
}

.contact .section__heading::after {
  background: var(--color-white) fff;
}

.form {
  width: 90vw;
  max-width: 500px;
  margin-inline: auto;
}

.form__group {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  padding: 10px 15px;
}

.form__label {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
}

.form__label-requirement {
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 12px;
}

.form__label-requirement--required {
  color: var(--color-black-on-yellow);
  background: var(--color-yellow);
}

.form__label-requirement--optional {
  color: var(--color-white);
  background: var(--color-black);
}

.form__control.form__control {
  font-size: 16px;
  border: 0;
  background: inherit;
  box-shadow: 0px 4px 6px #0d1347;
  border-radius: 5px;
  background: var(--color-white);
  padding: 0 1em;
  height: 56px;
  text-align: left;
  color: var(--color-black);
}

input:focus {
  background: var(--color-white) !important;
}

/* input:-webkit-autofill {
    box-shadow: 0 0 0 1000px rgb(255, 255, 255) inset !important;
} */

.form__field-error-message {
  color: var(--color-yellow);
  font-size: 14px;
  font-weight: 700;
  margin-top: 4px;
}

.form__submit-button {
  margin-top: 20px;
  padding: 0.8em 3em;
  font-size: 18px;
}

.form__note {
  font-size: 10px;
  margin-top: 20px;
  text-align: center;
  padding: 0 20px;
}

/* =============================================
プレゼントキャンペーン
============================================= */
.campaign__inner {
  background: var(--color-light-blue);
  border: solid 4px var(--color-white);
  padding: 50px;
  display: flex;
  gap: 50px;
  align-items: center;
}

.campaign__image {
  width: 100%;
  max-width: 180px;
  filter: drop-shadow(0px 3px 10px rgb(32 33 33 / 0.1));
}

.campaign__heading {
  font-size: 25px;
  font-weight: 700;
  color: var(--color-navy);
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: solid 1px #b9bcd3;
  margin-top: var(--leading-trim);
}

.link--underline {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--color-navy);
}

.campaign__button {
  margin-left: 0;
  margin-top: 20px;
  font-size: 25px;
}

@media (hover: hover) {
  .link--underline:hover {
    text-decoration: none;
  }
}

@media (max-width: 660px) {
  .campaign__inner {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }

  .campaign__image {
    max-width: 100px;
  }

  .campaign__heading {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .text--notecampaign__paragraph {
    font-size: 14px;
    line-height: 1.8;
  }

  .campaign__button {
    font-size: 18px;
    width: 100%;
    padding: 0.8em 0;
  }
}
