/* -----------------------------------------------
* common
-------------------------------------------------- */
.xl-show {
  display: none;
}

.lg-show {
  display: none;
}

.md-show {
  display: none;
}

.sm-show {
  display: none;
}

body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

.section {
  padding: 100px 0;
}

.separator {
  height: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#BA7802), color-stop(18%, #D19A2C), color-stop(39%, #EBC15C), color-stop(50%, #F5D06F), color-stop(61%, #EBC15C), color-stop(82%, #D19A2C), to(#BA7802));
  background: linear-gradient(90deg, #BA7802 0%, #D19A2C 18%, #EBC15C 39%, #F5D06F 50%, #EBC15C 61%, #D19A2C 82%, #BA7802 100%);
  border-top: none;
}

.button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: -webkit-gradient(linear, left top, right top, from(#BA7802), color-stop(18%, #D19A2C), color-stop(39%, #EBC15C), color-stop(50%, #F5D06F), color-stop(61%, #EBC15C), color-stop(82%, #D19A2C), to(#BA7802));
  background: linear-gradient(90deg, #BA7802 0%, #D19A2C 18%, #EBC15C 39%, #F5D06F 50%, #EBC15C 61%, #D19A2C 82%, #BA7802 100%);
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 58px;
  padding: 20px 100px;
  border-radius: 50px;
  margin-right: auto;
  margin-left: auto;
}

.heading {
  font-size: 120px;
  font-weight: 900;
  letter-spacing: -5px;
  text-indent: -5px;
  line-height: 1;
  text-align: center;
}
.subheading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.subheading span {
  display: block;
}
.subheading span:not(:first-of-type) {
  margin-top: 20px;
}
.subheading + .heading {
  margin-top: 30px;
}

/* -----------------------------------------------
* header
-------------------------------------------------- */
.header {
  background: #000;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 2;
}

.header__inner {
  max-width: 1480px;
  padding: 0 20px;
  margin: 0 auto;
}

.header__wrapper {
  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;
}
.header__inner
.header__logo {
  height: 90px;
  /* background: #fff; */
  padding: 15px 20px;
}
.header__logo img {
  width: auto;
  height: 100%;
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.header__item {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
}

.header__button {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#BA7802), color-stop(18%, #D19A2C), color-stop(39%, #EBC15C), color-stop(50%, #F5D06F), color-stop(61%, #EBC15C), color-stop(82%, #D19A2C), to(#BA7802));
  background: linear-gradient(90deg, #BA7802 0%, #D19A2C 18%, #EBC15C 39%, #F5D06F 50%, #EBC15C 61%, #D19A2C 82%, #BA7802 100%);
  padding: 11px 40px;
  border-radius: 20px;
}

/* -----------------------------------------------
* hamburger-trigger
-------------------------------------------------- */
.hamburger-trigger {
  display: none;
  width: 70px;
  height: 60px;
  padding: 23px 20px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.hamburger-trigger.active .hamburger-trigger__wrapper span:nth-of-type(1) {
  -webkit-transform: translateY(6.5px) rotate(-45deg);
          transform: translateY(6.5px) rotate(-45deg);
}
.hamburger-trigger.active .hamburger-trigger__wrapper span:nth-of-type(2) {
  opacity: 0;
}
.hamburger-trigger.active .hamburger-trigger__wrapper span:nth-of-type(3) {
  -webkit-transform: translateY(-6.5px) rotate(45deg);
          transform: translateY(-6.5px) rotate(45deg);
}

.hamburger-trigger__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.hamburger-trigger__wrapper span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
  position: absolute;
  left: 0;
}
.hamburger-trigger__wrapper span:nth-of-type(1) {
  top: 0;
}
.hamburger-trigger__wrapper span:nth-of-type(2) {
  top: 50%;
}
.hamburger-trigger__wrapper span:nth-of-type(3) {
  bottom: 0;
}

.trigger.active .trigger__wrapper span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
}

.trigger.active .trigger__wrapper span:nth-of-type(2) {
  opacity: 0;
}

.trigger.active .trigger__wrapper span:nth-of-type(3) {
  width: 100%;
  -webkit-transform: translateY(-9px) rotate(45deg);
          transform: translateY(-9px) rotate(45deg);
}

/* -----------------------------------------------
* hamburger-menu
-------------------------------------------------- */
.hamburger-menu {
  display: none;
}

.hamburger-menu__inner {
  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: 100%;
  max-width: 390px;
  height: 100vh;
  background: #000;
  padding: 120px 20px;
  overflow-y: scroll;
  position: absolute;
  top: 0;
  right: 0;
}

.hamburger-menu__list {
  width: 100%;
}

.hamburger-menu__item {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}
.hamburger-menu__item:not(:first-of-type) {
  margin-top: 40px;
}

.hamburger-menu__button {
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#BA7802), color-stop(18%, #D19A2C), color-stop(39%, #EBC15C), color-stop(50%, #F5D06F), color-stop(61%, #EBC15C), color-stop(82%, #D19A2C), to(#BA7802));
  background: linear-gradient(90deg, #BA7802 0%, #D19A2C 18%, #EBC15C 39%, #F5D06F 50%, #EBC15C 61%, #D19A2C 82%, #BA7802 100%);  
  font-size: 15px;
  line-height: 11px;
  text-align: center;
  padding: 25px 50px;
  border-radius: 50px;
}

/* -----------------------------------------------
* mainvisual
-------------------------------------------------- */
.mainvisual {
  height: 1200px;
  padding-top: 80px;
  background-position: center;
  background-size: cover;
  /* background-image: url(../img/background-mainvisual.jpg); */
  position: relative;
}
.mainvisual::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 660px;
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.mainvisual__subheading {
  color: #fff;
  font-size: 80px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-indent: -0.03em;
  line-height: 79px;
  text-align: center;
  position: relative;
}

.mainvisual__heading {
  color: #fff;
  font-size: 130px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-indent: -0.03em;
  line-height: 1;
  margin: 0 auto;  
  text-align: center;
  margin-top: 30px;
  position: relative;
}

/* -----------------------------------------------
* about
-------------------------------------------------- */
.about {
  background: #000;
}

.about__inner {
  max-width: 1001px;
  padding: 0 18px;
  margin: 0 auto;
}

.about__heading {
  font-size: 130px;
  font-weight: 900;
  line-height: 150px;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#BA7802), color-stop(18%, #D19A2C), color-stop(39%, #EBC15C), color-stop(50%, #F5D06F), color-stop(61%, #EBC15C), color-stop(82%, #D19A2C), to(#BA7802));
  background: linear-gradient(90deg, #BA7802 0%, #D19A2C 18%, #EBC15C 39%, #F5D06F 50%, #EBC15C 61%, #D19A2C 82%, #BA7802 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  padding-top: 29px;
  position: relative;
}
.about__heading::before {
  content: "";
  display: inline-block;
  width: calc(700 / 965 * 100%);
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#BA7802), color-stop(18%, #D19A2C), color-stop(39%, #EBC15C), color-stop(50%, #F5D06F), color-stop(61%, #EBC15C), color-stop(82%, #D19A2C), to(#BA7802));
  background: linear-gradient(90deg, #BA7802 0%, #D19A2C 18%, #EBC15C 39%, #F5D06F 50%, #EBC15C 61%, #D19A2C 82%, #BA7802 100%);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
}
.about__heading::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#BA7802), color-stop(18%, #D19A2C), color-stop(39%, #EBC15C), color-stop(50%, #F5D06F), color-stop(61%, #EBC15C), color-stop(82%, #D19A2C), to(#BA7802));
  background: linear-gradient(90deg, #BA7802 0%, #D19A2C 18%, #EBC15C 39%, #F5D06F 50%, #EBC15C 61%, #D19A2C 82%, #BA7802 100%);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 16px;
}

.about__subheading {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  margin-top: 13px;
  padding-bottom: 56px;
  position: relative;
}
.about__subheading::before {
  content: "";
  display: inline-block;
  width: calc(700 / 965 * 100%);
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#BA7802), color-stop(18%, #D19A2C), color-stop(39%, #EBC15C), color-stop(50%, #F5D06F), color-stop(61%, #EBC15C), color-stop(82%, #D19A2C), to(#BA7802));
  background: linear-gradient(90deg, #BA7802 0%, #D19A2C 18%, #EBC15C 39%, #F5D06F 50%, #EBC15C 61%, #D19A2C 82%, #BA7802 100%);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}
.about__subheading::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#BA7802), color-stop(18%, #D19A2C), color-stop(39%, #EBC15C), color-stop(50%, #F5D06F), color-stop(61%, #EBC15C), color-stop(82%, #D19A2C), to(#BA7802));
  background: linear-gradient(90deg, #BA7802 0%, #D19A2C 18%, #EBC15C 39%, #F5D06F 50%, #EBC15C 61%, #D19A2C 82%, #BA7802 100%);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 16px;
}

.about__text {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
  margin-top: 70px;
}

.about__button {
  margin-top: 70px;
}

/* -----------------------------------------------
* attraction
-------------------------------------------------- */
.attraction {
  background-position: center;
  background-size: cover;
  background-image: url(../img/background-attraction.jpg);
}

.attraction__inner {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.attraction__subheading {
  color: #fff;
}

.attraction__heading {
  color: #fff;
}

.attraction__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 80px;
}

.attraction__item {
  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;
  gap: 16px;
  height: 282px;
  background: #fff;
}

.attraction__icon {
  width: 64px;
}

.attraction__icon img {
  width: 100%;
  height: auto;
}

.attraction__text {
  font-size: 27px;
  font-weight: 700;
  line-height: 45px;
  text-align: center;
}

.attraction__button {
  margin-top: 80px;
}

/* -----------------------------------------------
* support
-------------------------------------------------- */
.support {
  background: #000;
}

.support__inner {
  max-width: 980px;
  padding: 0 20px;
  margin: 0 auto;
}

.support__subheading {
  color: #fff;
}

.support__heading {
  color: #fff;
}

.support__list {
  margin-top: 80px;
}

.support__item {
  display: grid;
  grid-template-columns: 190px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  position: relative;
}
.support__item::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 4px solid;
  border-image: -webkit-gradient(linear, left top, right top, from(#BA7802), color-stop(18%, #D19A2C), color-stop(39%, #EBC15C), color-stop(50%, #F5D06F), color-stop(61%, #EBC15C), color-stop(82%, #D19A2C), to(#BA7802)) 1;
  border-image: linear-gradient(90deg, #BA7802 0%, #D19A2C 18%, #EBC15C 39%, #F5D06F 50%, #EBC15C 61%, #D19A2C 82%, #BA7802 100%) 1;
  position: absolute;
  top: 0;
  left: 0;
}
.support__item:not(:first-of-type) {
  margin-top: 25px;
}

.support__image img {
  width: 100%;
  height: auto;
}

.support__content {
  padding: 39px 44px;
}

.support__number {
  display: inline-block;
  background: #000;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  padding: 2px 12px;
  border-radius: 12px;
}

.support__heading-secondary {
  font-size: 32px;
  font-weight: 700;
  line-height: 45px;
  margin-top: 14px;
}

.support__text {
  font-size: 15px;
  font-weight: 700;
  line-height: 27px;
  margin-top: 14px;
}

.support__button {
  margin-top: 80px;
}

/* -----------------------------------------------
* income
-------------------------------------------------- */
.income__inner {
  max-width: 980px;
  padding: 0 20px;
  margin: 0 auto;
}

.income__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 25px;
  margin-top: 80px;
}

.income__item {
  position: relative;
}
.income__item::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 4px solid;
  border-image: -webkit-gradient(linear, left top, right top, from(#BA7802), color-stop(18%, #D19A2C), color-stop(39%, #EBC15C), color-stop(50%, #F5D06F), color-stop(61%, #EBC15C), color-stop(82%, #D19A2C), to(#BA7802)) 1;
  border-image: linear-gradient(90deg, #BA7802 0%, #D19A2C 18%, #EBC15C 39%, #F5D06F 50%, #EBC15C 61%, #D19A2C 82%, #BA7802 100%) 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.income__image {
  padding-top: calc(320 / 458 * 100%);
  position: relative;
}
.income__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.income__content {
  padding: 39px 44px;
}

.income__heading-secondary {
  font-size: 32px;
  font-weight: 700;
  line-height: 45px;
}

.income__text {
  font-size: 15px;
  font-weight: 700;
  line-height: 27px;
  margin-top: 14px;
}

.income__button {
  margin-top: 80px;
}

/* -----------------------------------------------
* comment
-------------------------------------------------- */
.comment {
  background: #000;
}

.comment__inner {
  max-width: 980px;
  padding: 0 20px;
  margin: 0 auto;
}

.comment__subheading {
  color: #fff;
}

.comment__heading {
  color: #fff;
  font-size: 100px;
}

.comment__list {
  margin-top: 80px;
}

.comment__item {
  display: grid;
  grid-template-columns: 256px auto;
}
.comment__item:not(:first-of-type) {
  margin-top: 25px;
}

.comment__image img {
  width: 100%;
  height: auto;
}

.comment__content {
  background: #fff;
  padding: 39px 44px;
}

.comment__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.comment__tag {
  display: inline-block;
  background: #F5A524;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  padding: 2px 12px;
  border-radius: 12px;
}

.comment__heading-secondary {
  font-size: 32px;
  font-weight: 700;
  line-height: 45px;
  margin-top: 14px;
}

.comment__text {
  font-size: 15px;
  font-weight: 700;
  line-height: 27px;
  margin-top: 14px;
}

.comment__button {
  margin-top: 80px;
}

/* -----------------------------------------------
* faq
-------------------------------------------------- */
.faq {
  background: #F3F3F3;
}

.faq__inner {
  max-width: 940px;
  padding: 0 20px;
  margin: 0 auto;
}

.faq__heading {
  font-family: "Inter", sans-serif;
  font-size: 100px;
}

.faq__list {
  margin-top: 80px;
}

.faq__item:not(:first-of-type) {
  margin-top: 25px;
}

.faq__term {
  background: #fff;
  padding: 34px 40px;
}
.faq__term .faq__text::before {
  content: "Q";
  background: #E32900;
}

.faq__description {
  background: #fff;
  padding: 34px 40px;
  margin-top: 1px;
}
.faq__description .faq__text::before {
  content: "A";
  background: #000;
}

.faq__text {
  font-size: 20px;
  font-weight: 700;
  line-height: 38px;
  padding-left: 61px;
  position: relative;
}
.faq__text::before {
  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: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 24px;
  line-height: 1;
  position: absolute;
  top: -4px;
  left: 0;
}

/* -----------------------------------------------
* guideline
-------------------------------------------------- */
.guideline__inner {
  max-width: 940px;
  padding: 0 20px;
  margin: 0 auto;
}

.guideline__heading {
  font-size: 100px;
}

.guideline__list {
  border-top: 1px solid #000;
  margin-top: 80px;
}

.guideline__item {
  display: grid;
  grid-template-columns: 170px auto;
  padding: 41px 0;
  border-bottom: 1px solid #000;
}

.guideline__term {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.75;
  padding-right: 1em;
}

.guideline__description {
  font-size: 18px;
  line-height: 1.75;
}

/* -----------------------------------------------
* entry
-------------------------------------------------- */
.entry {
  background: #000;
}

.entry__inner {
  max-width: 940px;
  padding: 0 20px;
  margin: 0 auto;
}

.entry__heading {
  color: #fff;
  font-size: 100px;
  letter-spacing: -10px;
}

/* -----------------------------------------------
* form
-------------------------------------------------- */
.form {
  padding-top: 80px;
}

.form__inner {
  max-width: 575px;
  margin: 0 auto;
}

.form__item:not(:first-of-type) {
  margin-top: 40px;
}

.form__term {
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
}

.form__required {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 0 4px;
  margin-left: 6px;
}

.form__description {
  margin-top: 8px;
}
.form__description label {
  color: #fff;
  font-size: 14px;
  line-height: 18px;
}
.form__description label:not(:first-of-type) input[type=radio] + span {
  margin-left: 27px;
}
.form__description input[type=text], .form__description input[type=number], .form__description input[type=email], .form__description input[type=date], .form__description select {
  width: 100%;
  background: #fff;
  font-size: 16px;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 4px;
}
.form__description input[type=text]::-webkit-input-placeholder, .form__description input[type=number]::-webkit-input-placeholder, .form__description input[type=email]::-webkit-input-placeholder, .form__description input[type=date]::-webkit-input-placeholder, .form__description select::-webkit-input-placeholder {
  color: #94A2C9;
}
.form__description input[type=text]::-moz-placeholder, .form__description input[type=number]::-moz-placeholder, .form__description input[type=email]::-moz-placeholder, .form__description input[type=date]::-moz-placeholder, .form__description select::-moz-placeholder {
  color: #94A2C9;
}
.form__description input[type=text]:-ms-input-placeholder, .form__description input[type=number]:-ms-input-placeholder, .form__description input[type=email]:-ms-input-placeholder, .form__description input[type=date]:-ms-input-placeholder, .form__description select:-ms-input-placeholder {
  color: #94A2C9;
}
.form__description input[type=text]::-ms-input-placeholder, .form__description input[type=number]::-ms-input-placeholder, .form__description input[type=email]::-ms-input-placeholder, .form__description input[type=date]::-ms-input-placeholder, .form__description select::-ms-input-placeholder {
  color: #94A2C9;
}
.form__description input[type=text]::placeholder, .form__description input[type=number]::placeholder, .form__description input[type=email]::placeholder, .form__description input[type=date]::placeholder, .form__description select::placeholder {
  color: #94A2C9;
}
.form__description input[type=text]::input::-ms-input-placeholder, .form__description input[type=number]::input::-ms-input-placeholder, .form__description input[type=email]::input::-ms-input-placeholder, .form__description input[type=date]::input::-ms-input-placeholder, .form__description select::input::-ms-input-placeholder {
  color: #94A2C9;
}
.form__description input[type=date] {
  position: relative;
}
.form__description input[type=date]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
}
.form__description input[type=date]::-webkit-clear-button {
  -webkit-appearance: none;
          appearance: none;
}
.form__description input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.form__description select {
  cursor: pointer;
}
.form__description input[type=radio] {
  display: none;
}
.form__description input[type=radio] + span {
  cursor: pointer;
  display: inline-block;
  padding: 9px 0 9px 31px;
  margin-left: 11px;
  position: relative;
}
.form__description input[type=radio] + span::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.form__description input[type=radio] + span::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 5px;
  opacity: 0;
}
.form__description input[type=radio]:checked + span::after {
  opacity: 1;
}
.form__description textarea {
  width: 100%;
  height: 120px;
  background: #fff;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 12px;
  border-radius: 4px;
}
.form__description textarea::-webkit-input-placeholder {
  color: #94A2C9;
}
.form__description textarea::-moz-placeholder {
  color: #94A2C9;
}
.form__description textarea:-ms-input-placeholder {
  color: #94A2C9;
}
.form__description textarea::-ms-input-placeholder {
  color: #94A2C9;
}
.form__description textarea::placeholder {
  color: #94A2C9;
}
.form__description textarea::input::-ms-input-placeholder {
  color: #94A2C9;
}
.form__description input[type=checkbox] {
  display: none;
}
.form__description input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  padding: 3px 0 3px 29px;
  margin: 8px 0 0 3px;
  position: relative;
}
.form__description input[type=checkbox] + span a {
  text-decoration: underline;
}
.form__description input[type=checkbox] + span::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 0;
}
.form__description input[type=checkbox] + span::after {
  content: "";
  display: block;
  width: 12px;
  height: 8px;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  left: 3px;
  opacity: 0;
}
.form__description input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.form__select {
  position: relative;
}
.form__select:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 8px;
}
.form__button {
  margin-top: 80px;
}

.age {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;  
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;          
}
.age__input {
  width: calc(100% - 20px) !important;
}
.age__unit {
  color: #fff;
  font-size: 14px;
  line-height: 18px;
}

/* -----------------------------------------------
* thanks
-------------------------------------------------- */
.thanks {
  height: 100vh;
  padding-top: 80px;
  background-position: center;
  background-size: cover;
  background-image: url(../img/background-mainvisual.jpg);
  position: relative;
}
.thanks::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.25) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.thanks__inner {
  max-width: 1001px;
  padding: 0 18px;
  margin: 0 auto;
  position: relative;
}

.thanks__heading {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  padding-top: 56px;
  position: relative;
}

.thanks__text {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
  margin-top: 70px;
}

.thanks__button {
  margin-top: 80px;
}
@media (max-width: 991px) {
  .thanks__button {
    margin-top: 30px;
  }
}

/* -----------------------------------------------
* footer
-------------------------------------------------- */
.footer {
  background: #000;
  color: #fff;
  padding: 30px 0 15px;
}

.footer__copy {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  margin-top: 15px;
}

.footer__list {
  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;
}

.footer__item {
  font-size: 14px;
  line-height: 18px;
}

.footer__item:not(:last-of-type) {
  padding-right: 1em;
  border-right: 1px solid #fff;
  margin-right: 1em;
}

/* -----------------------------------------------
* responsive
-------------------------------------------------- */
@media (max-width: 1199px) {
  .xl-show {
    display: block;
  }
  .xl-hide {
    display: none;
  }
  .heading {
    font-size: 80px;
  }
  .subheading {
    font-size: 32px;
  }
  .header__logo {
    height: 60px;
    padding: 10px 13px;
  }
  .header__list {
    display: none;
  }  
  .hamburger-trigger {
    display: block;
  }  
  .mainvisual__subheading {
    font-size: 64px;
  }
  .mainvisual__heading {
    font-size: 96px;
  }
  .about__heading {
    font-size: 96px;
  }
  .about__subheading {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .lg-show {
    display: block;
  }
  .lg-hide {
    display: none;
  }
  .section {
    padding: 35px 0;
  }
  .button {
    font-size: 15px;
    line-height: 11px;
    text-align: center;
    padding: 25px 50px;
  }
  .heading {
    /* font-size: 48px; */
    font-size: 44px;
    letter-spacing: 0;
    text-indent: 0;
  }
  .subheading {
    font-size: 18px;
    line-height: 21px;
  }
  .subheading span:not(:first-of-type) {
    margin-top: 7px;
  }
  .subheading + .heading {
    margin-top: 13px;
  }
  .header__inner {
    padding-right: 0;
  }
  .mainvisual {
    height: 480px;
    background-image: url(../img/background-mainvisual-sp.jpg);
    padding-top: 25px;
  }
  .mainvisual::before {
    height: 202px;
  }
  .mainvisual__subheading {
    font-size: 25px;
    line-height: 19px;
  }
  .mainvisual__heading {
    font-size: 41px;
    padding-bottom: 5px;
    margin-top: 13px;
  }
  .about__heading {
    font-size: 44px;
    line-height: 51px;    
    padding-top: 14px;
  }
  .about__heading::before {
    height: 2px;
  }
  .about__heading::after {
    height: 2px;
    top: 6px;
  }
  .about__subheading {
    font-size: 16px;
    line-height: 13px;
    padding-bottom: 22px;
    margin-top: 7px;
  }
  .about__subheading::before {
    height: 2px;
  }
  .about__subheading::after {
    height: 2px;
    bottom: 6px;
  }
  .about__text {
    font-size: 15px;
    line-height: 1.75;
    margin-top: 30px;
  }
  .about__button {
    margin-top: 30px;
  }
  .attraction__list {
    margin-top: 30px;
  }
  .attraction__item {
    gap: 8px;
    height: 196px;
  }
  .attraction__icon {
    width: 48px;
  }
  .attraction__text {
    font-size: 20px;
    line-height: 1.75;
  }
  .attraction__button {
    margin-top: 30px;
  }
  .support__list {
    margin-top: 30px;
  }
  .support__content {
    padding: 30px 20px;
  }
  .support__heading-secondary {
    font-size: 24px;
    line-height: 35px;
  }
  .support__button {
    margin-top: 30px;
  }
  .income__content {
    padding: 30px 20px;
  }
  .income__heading-secondary {
    font-size: 24px;
    line-height: 35px;
  }
  .income__button {
    margin-top: 30px;
  }
  .comment__list {
    margin-top: 30px;
  }
  .comment__content {
    padding: 30px 20px;
  }
  .comment__heading-secondary {
    font-size: 24px;
    line-height: 35px;
  }
  .comment__button {
    margin-top: 30px;
  }
  .faq__list {
    margin-top: 30px;
  }
  .faq__term {
    padding: 20px 30px;
  }
  .faq__description {
    padding: 20px 30px;
  }
  .guideline__list {
    margin-top: 30px;
  }
  .guideline__item {
    padding: 18px 0;
  }
  .form {
    padding-top: 30px;
  }
  .form__item:not(:first-of-type) {
    margin-top: 25px;
  }
  .form__button {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .md-show {
    display: block;
  }
  .md-hide {
    display: none;
  }
  .button {
    width: 100%;
  }
  .heading span {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .heading span:not(:first-of-type) {
    margin-top: 13px;
  }
  .hamburger-menu__inner {
    max-width: none;
  }
  .attraction__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }
  .attraction__item {
    gap: 8px;
    height: 124px;
  }
  .attraction__icon {
    width: 28px;
  }
  .attraction__text {
    font-size: 12px;
  }
  .support__item {
    grid-template-columns: none;
  }
  .support__heading-secondary {
    margin-top: 10px;
  }
  .support__text {
    font-size: 12px;
    line-height: 1.75;
    margin-top: 10px;
  }
  .income__list {
    grid-template-columns: none;
    margin-top: 30px;
  }
  .income__text {
    font-size: 12px;
    line-height: 1.75;
    margin-top: 10px;
  }
  .comment__item {
    grid-template-columns: none;
  }
  .comment__item:not(:first-of-type) {
    margin-top: 30px;
  }
  .comment__heading-secondary {
    margin-top: 10px;
  }
  .comment__text {
    font-size: 12px;
    line-height: 1.75;
    margin-top: 10px;
  }
  .faq__text {
    font-size: 15px;
    line-height: 1.75;
    padding-left: 47px;
  }
  .faq__text::before {
    width: 37px;
    height: 37px;
    font-size: 19px;
    top: 0;
  }
  .guideline__item {
    grid-template-columns: 116px auto;
  }
  .guideline__term {
    font-size: 14px;
  }
  .guideline__description {
    font-size: 14px;
  }
  /* .form__term {
    font-size: 12px;
  }
  .form__description {
    margin-top: 5px;
  }
  .form__description label {
    font-size: 12px;
    line-height: 16px;
  }
  .form__description label:not(:first-of-type) input[type=radio] + span {
    margin-left: 17px;
  }
  .form__description input[type=text], .form__description input[type=number], .form__description input[type=email], .form__description input[type=date], .form__description select {
    font-size: 12px;
    padding: 5px 7px;
  }
  .form__description input[type=radio] + span {
    padding: 4px 0 4px 19px;
    margin-left: 7px;
  }
  .form__description input[type=radio] + span::before {
    width: 12px;
    height: 12px;
    border-width: 1px;
  }
  .form__description input[type=radio] + span::after {
    width: 6px;
    height: 6px;
    left: 3px;
  }
  .form__description textarea {
    font-size: 12px;
    padding: 5px 7px;
  }
  .form__description input[type=checkbox] + span {
    padding: 0 0 0 18px;
    margin: 5px 0 0 2px;
  }
  .form__description input[type=checkbox] + span::before {
    width: 11px;
    height: 11px;
    border-width: 1px;
    border-radius: 1px;
    top: 4px;
  }
  .form__description input[type=checkbox] + span::after {
    width: 7px;
    height: 5px;
    border-width: 2px;
    top: 6px;
    left: 2px;
  } */
}

@media (max-width: 575px) {
  .sm-show {
    display: block;
  }
  .sm-hide {
    display: none;
  }
}

@media (hover: hover) {
  .button {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .button:hover {
    opacity: 0.7;
  }
  .header__list a {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .header__list a:hover {
    opacity: 0.7;
  }
  .form__description input[type=checkbox] + span a:hover {
    text-decoration: none;
  }
  .footer__item a {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .footer__item a:hover {
    opacity: 0.7;
  }
}

.form__text {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
  margin-top: 70px;
}

@media (max-width: 991px) {
  .form__text {
    font-size: 15px;
    line-height: 1.75;
    margin-top: 30px;
  }
}

.mw_wp_form .error {
  color: #E32900 !important;
}

.js-fade-in {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1.8s, -webkit-transform 1.2s;
  transition: opacity 1.8s, -webkit-transform 1.2s;
  transition: opacity 1.8s, transform 1.2s;
  transition: opacity 1.8s, transform 1.2s, -webkit-transform 1.2s;
  -webkit-transform: translateY(40%);
  transform: translateY(40%);
}

.js-fade-in.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.js-wipe-text div {
  display: inline;
  opacity: 0;
}

.js-wipe-text.active div {
  animation: wipe-text 1s ease-out forwards; 
}

@keyframes wipe-text {
  0% {opacity:0;}
  100% {opacity:1;}
}

/* -----------------------------------------------
* company
-------------------------------------------------- */
.company {
  background-color: #000;
}
.company__inner {
  max-width: 980px;
  padding: 0 20px;
  margin: 0 auto;  
}
.company__heading {
  color: #fff;
}
.company__subheading {
  color: #fff;
}
.company__text {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
  margin-top: 70px;
}
@media (max-width: 991px) {
  .company__text {
    font-size: 15px;
    line-height: 1.75;
    margin-top: 30px;
  }
}
.company__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 80px;
}
@media (max-width: 991px) {
  .company__list {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .company__list {
    gap: 10px;
  }
}
.company__item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: -webkit-gradient(linear, left top, right top, from(#BA7802), color-stop(18%, #D19A2C), color-stop(39%, #EBC15C), color-stop(50%, #F5D06F), color-stop(61%, #EBC15C), color-stop(82%, #D19A2C), to(#BA7802));
  background: linear-gradient(90deg, #BA7802 0%, #D19A2C 18%, #EBC15C 39%, #F5D06F 50%, #EBC15C 61%, #D19A2C 82%, #BA7802 100%);
  padding-top: 100%;
  border-radius: 50%;
  position: relative;
}
.company__item::before {
  content: '';
  display: inline-block;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);  
}
@media (max-width: 767px) {
  .company__item::before {
    width: calc(100% - 8px);
    height: calc(100% - 8px);    
  }  
}
.company__item span {
  width: 100%;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;  
  background: -webkit-gradient(linear, left top, right top, from(#BA7802), color-stop(18%, #D19A2C), color-stop(39%, #EBC15C), color-stop(50%, #F5D06F), color-stop(61%, #EBC15C), color-stop(82%, #D19A2C), to(#BA7802));
  background: linear-gradient(90deg, #BA7802 0%, #D19A2C 18%, #EBC15C 39%, #F5D06F 50%, #EBC15C 61%, #D19A2C 82%, #BA7802 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;    
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
  .company__item span {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .company__item span {
    font-size: 18px;
  }
}

.company__button {
  margin-top: 70px;
}

@media (max-width: 991px) {
  .company__button {
    margin-top: 30px;
  }
}

.message__inner {
  max-width: 980px;
  padding: 0 20px;
  margin: 0 auto;
}

.messsage__image {
  margin-top: 70px;
}

.messsage__image img {
  width: 100%;  
}

@media (max-width: 991px) {
  .messsage__image {
    margin-top: 30px;
  }
}

.message__text {
  font-size: 20px;
  font-weight: 700;
  line-height: 44px;
  margin-top: 44px;
}

.message__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 44px;  
  margin-top: 44px;
  text-align: right;
}

@media (max-width: 991px) {
  .message__text {
    font-size: 15px;
    line-height: 1.75;
    margin-top: 30px;
  }

  .message__name {
    font-size: 15px;
    line-height: 1.75;    
    margin-top: 30px;
  }  
}

.message__button {
  margin-top: 70px;
}

@media (max-width: 991px) {
  .message__button {
    margin-top: 30px;
  }
}