@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 10px;
  color: #333;
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 94px;
  }
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.site-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 3px;
}
@media screen and (max-width: 767px) {
  .site-logo {
    gap: 0;
  }
}
.site-logo__image {
  width: 270px;
  aspect-ratio: 297/59;
}
@media screen and (max-width: 767px) {
  .site-logo__image {
    width: 150px;
  }
}
.site-logo__text {
  font-size: 1.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .site-logo__text {
    font-size: 10px;
  }
}

.button {
  width: 100%;
  height: 90px;
  background: #f2be46;
  font-size: 2.4rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .button {
    margin-inline: auto;
    height: 70px;
    font-size: 1.8rem;
  }
}
.button::before, .button::after {
  content: "";
  position: absolute;
}
.button::before {
  background: url("../public/img/icons/mail.svg") no-repeat;
  width: 30px;
  height: 24px;
  left: 25px;
}
@media screen and (max-width: 767px) {
  .button::before {
    left: 14px;
  }
}
.button::after {
  background: url("../public/img/icons/caret.svg") no-repeat center/contain;
  width: 9px;
  height: 14px;
  right: 16px;
}
.button:hover {
  background: #333;
  color: #fff;
}
.button--ga {
  margin-top: 24px;
  padding: 12px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .button--ga {
    margin-top: 12px;
    padding: 5px 25px;
    gap: 4px;
  }
}
.button--ga::before {
  content: none;
}
.button__ga-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .button__ga-title {
    font-size: 20px;
  }
}
.button__ga-sub {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .button--sp-white {
    color: #fff;
  }
}

.modal {
  display: block;
  position: fixed;
  z-index: 100; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.modal__content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 0 20px 20px;
  border: 1px solid #888;
  max-width: 1000px;
  width: 80vw;
}
.modal__close {
  display: block;
  width: 45px;
  margin-left: auto;
  text-align: center;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
}
.modal__close:hover, .modal__close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background: #fff;
  border-bottom: 1px solid #dfddd5;
  z-index: 100;
}
.header__logo-wrap {
  padding: 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .header__logo-wrap {
    padding: 8px;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__ga-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 212px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__ga-cta {
    display: none;
  }
}
.header__ga-cta:hover {
  background: #333;
  color: #fff;
}
.header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f2be46;
  color: #fff;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: normal;
  padding-inline: 30px;
  text-decoration: none;
  white-space: nowrap;
  min-width: 156px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__contact:hover {
  background: #333;
  color: #fff;
}
.header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__hamburger::after {
  content: "MENU";
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
.header__hamburger-box {
  display: inline-block;
  position: relative;
  width: 26px;
  height: 20px;
}
.header__hamburger-inner {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  -webkit-transition-duration: 0.075s;
          transition-duration: 0.075s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.header__hamburger-inner, .header__hamburger-inner::before, .header__hamburger-inner::after {
  width: 26px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  position: absolute;
}
.header__hamburger-inner::before, .header__hamburger-inner::after {
  content: "";
  display: block;
}
.header__hamburger-inner::before {
  top: -9px;
  -webkit-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.header__hamburger-inner::after {
  bottom: -9px;
  -webkit-transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.header__hamburger.is-active .header__hamburger-inner {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header__hamburger.is-active .header__hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.header__hamburger.is-active .header__hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header__sp-nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__sp-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
    background: rgba(0, 0, 0, 0.7);
  }
}
@media screen and (max-width: 767px) {
  .header__sp-nav--active {
    height: calc(100svh - 67px);
    overflow-y: auto;
  }
}
.header__sp-link {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 14px 20px;
  background: rgba(26, 26, 26, 0.92);
  color: #fff;
  border-bottom: 1px solid #fff;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}
.header__sp-link:hover {
  background: #f3be46;
  color: #333;
}
@media screen and (max-width: 767px) {
  .header__sp-btn-list {
    margin: 24px 11px;
  }
}

.footer {
  padding-block: 40px;
  background: #fffcf6;
}
.footer__site-logo {
  margin: auto;
}
.footer__text {
  margin-block: 40px 12px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.625em;
}
@media screen and (max-width: 767px) {
  .footer__text {
    font-size: 14px;
  }
}
.footer__copyright {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 11px;
  }
}

.c-pagebanner__breadcrumbs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}
.c-pagebanner__breadcrumbs-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-pagebanner__breadcrumbs-link, .c-pagebanner__breadcrumbs-current {
  font-size: 1.2rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 500;
  color: #000;
  line-height: normal;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-pagebanner__breadcrumbs-link, .c-pagebanner__breadcrumbs-current {
    font-size: 12px;
  }
}
.c-pagebanner__breadcrumbs-link {
  text-decoration: none;
}
.c-pagebanner__breadcrumbs-link:hover {
  text-decoration: underline;
}
.c-pagebanner__breadcrumbs-sep {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: 12px;
}
.c-pagebanner__breadcrumbs-sep .image {
  width: 5px;
  height: 10px;
}
.c-pagebanner__heading {
  font-size: 4rem;
  color: #000;
  margin-top: 20px;
  margin-bottom: 43px;
}
@media screen and (max-width: 767px) {
  .c-pagebanner__heading {
    font-size: 28px;
    margin-top: 12px;
    margin-bottom: 24px;
  }
}

.top {
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .top {
    margin-top: 100px;
  }
}
.top__text {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1.63;
}
@media screen and (max-width: 767px) {
  .top__text {
    font-size: 14px;
  }
}
.top__text--small {
  font-size: 1.4rem;
}
.top__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}
@media screen and (max-width: 900px) {
  .top__main {
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.top__main-title {
  font-size: 4.3rem;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .top__main-title {
    font-size: 28px;
    line-height: 40px;
  }
}
.top__main-col:first-child {
  width: 56.5%;
}
@media screen and (max-width: 900px) {
  .top__main-col:first-child {
    width: 100%;
  }
}
.top__main-col:nth-child(2) {
  width: 482px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 900px) {
  .top__main-col:nth-child(2) {
    width: 100%;
  }
}
.top__main-col-title {
  padding-bottom: 24px;
  margin-bottom: 24px;
  font-size: 2.4rem;
  line-height: 1.6666666667;
  border-bottom: 1px solid #f3be46;
}
@media screen and (max-width: 767px) {
  .top__main-col-title {
    font-size: 1.8rem;
    line-height: 3rem;
  }
}
.top__main-table {
  margin-block: 24px;
}
.top__main-table td {
  display: revert;
}
.top__main-table td:first-child {
  width: 116px;
}
.top__main-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .top__main-gallery {
    gap: 8px;
  }
}
.top__main-image-1 {
  width: 65.78%;
  aspect-ratio: 446/429;
}
.top__main-image-2 {
  width: 31.86%;
  aspect-ratio: 216/185;
}
.top__sec {
  border-top: 1px solid #dfddd5;
  padding-block: 40px 80px;
}
@media screen and (max-width: 767px) {
  .top__sec {
    padding-block: 30px;
  }
}
.top__sec-title {
  margin-bottom: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top__sec-title {
    margin-bottom: 18px;
    font-size: 20px;
  }
}
.top__sec-title::before {
  content: "";
  margin-right: 16px;
  display: block;
  width: 8px;
  height: 40px;
  background: #f2be46;
}
@media screen and (max-width: 767px) {
  .top__sec-title::before {
    margin-right: 10px;
    width: 6px;
    height: 28px;
  }
}
.top__list li:not(:last-child) {
  margin-bottom: 12px;
}
.top__container {
  padding-inline: 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .top__container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .top__container {
    max-width: 1000px;
  }
}
.top__lineup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top__lineup {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__lineup-thumb {
  width: 37.17%;
}
@media screen and (max-width: 767px) {
  .top__lineup-thumb {
    width: 100%;
  }
}
.top__lineup-image {
  margin-bottom: 16px;
  width: 100%;
  aspect-ratio: 446/251;
}
.top__lineup-info {
  width: 56.75%;
}
@media screen and (max-width: 767px) {
  .top__lineup-info {
    width: 100%;
  }
}
.top__lineup-info-image {
  width: 337px;
  aspect-ratio: 337/45;
}
@media screen and (max-width: 767px) {
  .top__lineup-info-image {
    width: 100%;
  }
}
.top__lineup-table-caption {
  margin-top: 16px;
}
.top__lineup-table {
  margin-top: 5px;
  width: 100%;
  text-align: center;
  border: 1px solid #333;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .top__lineup-table {
    width: 100%;
  }
}
.top__lineup-table th,
.top__lineup-table td {
  border: 1px solid #333;
  border-collapse: collapse;
  padding-block: 16px;
  font-size: 19px;
  font-weight: 500;
  width: 33.33%;
}
@media screen and (max-width: 767px) {
  .top__lineup-table th,
  .top__lineup-table td {
    display: revert;
    font-size: 14px;
  }
}
.top__lineup-table th {
  background: rgba(223, 221, 213, 0.47);
}
.top__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 50px;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .top__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    padding: 0 0 10px;
    border: none;
  }
}
.top__item::before {
  content: "";
  position: absolute;
  visibility: hidden;
  padding-top: 100px;
}
.top__item:not(:first-child) {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .top__item:not(:first-child) {
    margin-top: 10px;
  }
}
.top__item-text-container {
  margin: 0 0 auto auto;
  width: 38%;
}
@media screen and (max-width: 767px) {
  .top__item-text-container {
    margin: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top__text-inner-container {
    margin-top: 16px;
  }
}
.top__image-container {
  position: relative;
  width: 57%;
  aspect-ratio: 684/392;
  min-width: 370px;
}
@media screen and (max-width: 767px) {
  .top__image-container {
    display: none;
  }
}
.top__image-container:hover::before {
  background: rgba(0, 0, 0, 0.3);
}
.top__image-container:hover::after {
  opacity: 1;
}
.top__image-container::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
  pointer-events: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.top__image-container::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../public/img/icons/play-button.svg") no-repeat;
  width: 84px;
  height: 84px;
  background-size: contain;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0.8;
  z-index: 2;
  pointer-events: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.top__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 10px solid #eee;
}
.top__image:hover {
  cursor: pointer;
}
.top__image--no-border {
  border: none;
}
.top__image--left {
  -o-object-position: left;
     object-position: left;
}
.top__image--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .top__image--sp {
    display: block;
    margin: 0 auto;
    border: none;
    -o-object-position: center bottom;
       object-position: center bottom;
    width: 100%;
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .top__image--sp-hidden {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .top__image--sp1 {
    -o-object-position: center top;
       object-position: center top;
  }
}
.top__modal-video {
  display: block;
  margin: 0 auto;
  width: 90%;
  aspect-ratio: 885/498;
}

.contact {
  padding-top: 150px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-top: 80px;
    padding-bottom: 48px;
  }
}
.contact__inner {
  padding-inline: 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .contact__inner {
    max-width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .contact__inner {
    max-width: 1000px;
  }
}
.contact__form {
  border-top: 1px solid #dfddd5;
}
.contact__form .wpcf7-form-control-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact__form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 4px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #d73737;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .contact__form .wpcf7-not-valid-tip {
    font-size: 11px;
  }
}
.contact__form .wpcf7-response-output {
  margin: 24px auto 0 !important;
  max-width: 872px;
  border: 1px solid #dfddd5 !important;
  padding: 12px 16px;
  font-size: 1.4rem;
  color: #d73737;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__form .wpcf7-response-output {
    font-size: 13px;
  }
}
.contact__form .wpcf7-spinner {
  margin: 0 0 0 12px;
}
.contact__form .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .contact__form .wpcf7-list-item label {
    font-size: 14px;
    gap: 8px;
  }
}
.contact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #dfddd5;
}
.contact__row--textarea {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact__row--textarea .contact__row-head {
  padding-top: 26px;
}
@media screen and (max-width: 767px) {
  .contact__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .contact__row--textarea .contact__row-head {
    padding-top: 12px;
  }
}
.contact__row-head {
  width: 288px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-inline: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .contact__row-head {
    width: 100%;
    padding-left: 0;
    padding-block: 12px 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.contact__row-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-block: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .contact__row-body {
    padding-block: 8px 12px;
  }
}
.contact__label {
  font-size: 1.6rem;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .contact__label {
    font-size: 14px;
  }
}
.contact__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fb5c5c;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 2px 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
}
.contact__input, .contact__select, .contact__textarea {
  border: 1px solid #dfddd5;
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
}
.contact__input {
  height: 40px;
  background: #fff;
  padding: 8px 12px;
}
.contact__input::-webkit-input-placeholder {
  color: #b3b1a7;
}
.contact__input::-moz-placeholder {
  color: #b3b1a7;
}
.contact__input:-ms-input-placeholder {
  color: #b3b1a7;
}
.contact__input::-ms-input-placeholder {
  color: #b3b1a7;
}
.contact__input::placeholder {
  color: #b3b1a7;
}
.contact__input--sm {
  width: 134px;
}
.contact__input--facility {
  width: 349px;
}
.contact__input--name {
  width: 106px;
}
.contact__input--tel {
  width: 145px;
}
.contact__input--email {
  width: 241px;
}
@media screen and (max-width: 767px) {
  .contact__input {
    width: 100%;
    height: 44px;
  }
}
@media screen and (max-width: 767px) {
  .contact__select-wrap {
    width: 100%;
  }
}
.contact__select {
  height: 40px;
  width: 134px;
  background: #fff url("../public/img/icons/dropdown-arrow.svg") no-repeat right 12px center/9px 7px;
  padding: 8px 24px 8px 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact__select {
    width: 100%;
    height: 44px;
  }
}
.contact__input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .contact__input-group {
    gap: 8px;
  }
  .contact__input-group .contact__input {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.contact__note {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
}
.contact__note--warn {
  font-weight: 700;
  color: #d73737;
}
@media screen and (max-width: 767px) {
  .contact__note {
    font-size: 11px;
  }
}
.contact__textarea {
  width: 100%;
  max-width: 872px;
  height: 213px;
  padding: 12px;
  resize: none;
}
.contact__textarea::-webkit-input-placeholder {
  color: #b3b1a7;
}
.contact__textarea::-moz-placeholder {
  color: #b3b1a7;
}
.contact__textarea:-ms-input-placeholder {
  color: #b3b1a7;
}
.contact__textarea::-ms-input-placeholder {
  color: #b3b1a7;
}
.contact__textarea::placeholder {
  color: #b3b1a7;
}
@media screen and (max-width: 767px) {
  .contact__textarea {
    height: 160px;
  }
}
.contact__privacy {
  margin-top: 15px;
}
.contact__privacy-box {
  width: 100%;
  max-width: 872px;
  height: 163px;
  margin-inline: auto;
  border: 1px solid #dfddd5;
  overflow-y: auto;
  background: #fff;
  padding: 11px 12px;
  scrollbar-width: thin;
}
.contact__privacy-title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .contact__privacy-title {
    font-size: 14px;
  }
}
.contact__privacy-body {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .contact__privacy-body {
    font-size: 11px;
  }
}
.contact__privacy-agree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .contact__privacy-agree {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
  }
}
.contact__checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .contact__checkbox-label {
    font-size: 14px;
    gap: 8px;
  }
}
.contact__checkbox {
  width: 22px;
  height: 22px;
  border: 1px solid #5d5d5d;
  border-radius: 4px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
.contact__submit--multi {
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .contact__submit--multi {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.contact__submit-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 335px;
  height: 64px;
  background: #f2be46 url("../public/img/icons/breadcrumb-arrow.svg") no-repeat right 18px center/5px 11px;
  border: none;
  cursor: pointer;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .contact__submit-btn {
    width: 100%;
    max-width: 335px;
  }
}
.contact__submit-btn--back {
  background: #fff url("../public/img/icons/breadcrumb-arrow-left.svg") no-repeat left 18px center/5px 11px;
  border: 1px solid #dfddd5;
}
.contact__submit-btn:hover {
  opacity: 0.7;
}
.contact__submit-btn--top {
  background-image: none;
  color: #fff;
  font-weight: 700;
}
.contact__submit-btn--top:hover {
  background: #333;
  color: #fff;
  opacity: 1;
}
.contact__confirm-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  white-space: pre-line;
}
@media screen and (max-width: 767px) {
  .contact__confirm-value {
    font-size: 13px;
  }
}
.contact__complete {
  padding-block: 80px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__complete {
    padding-block: 48px;
  }
}
.contact__complete-message {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .contact__complete-message {
    font-size: 14px;
  }
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.pc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}