body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  min-width: 375px;
}

.heading__main {
  color: #FF9802;
  font-size: 32px;
  font-weight: 500;
}
@media screen and (min-width: 901px) {
  .heading__main {
    font-weight: 700;
    font-size: 40px;
  }
}

.heading__sub {
  color: #FF9802;
  font-size: 12px;
  font-weight: 300;
  margin-top: -10px;
}
@media screen and (min-width: 901px) {
  .heading__sub {
    font-size: 14px;
    font-weight: 500;
  }
}

.inner {
  margin-inline: 30px;
}
@media screen and (min-width: 601px) {
  .inner {
    margin-inline: 50px;
  }
}
@media screen and (min-width: 901px) {
  .inner {
    margin-inline: 70px;
  }
}
@media screen and (min-width: 1100px) {
  .inner {
    margin-inline: auto;
    max-width: 1200px;
    width: calc(100% - 200px);
  }
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 30;
}
@media screen and (min-width: 1100px) {
  .cards {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.card {
  width: 320px;
  height: 470px;
  padding: 20px 20px 32px 20px;
  background: #fff;
  -webkit-box-shadow: 6px 6px 8px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 6px 6px 8px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-inline: auto;
}
@media screen and (min-width: 1100px) {
  .card {
    width: 1186.6666666667px;
  }
}
.card::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../img/Polygon.svg) no-repeat center center/contain;
}

.card__image {
  text-align: center;
}
.card__image img {
  width: 280px;
}

.card__body {
  margin-top: 20px;
}

.card__title {
  color: #ff9802;
  text-align: justify;
  font-size: 17px;
  height: 38px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card__text {
  color: #242524;
  text-align: justify;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 17px;
  font-weight: 400;
  line-height: 28px; /* 164.706% */
  letter-spacing: 0.85px;
}

.header {
  position: fixed;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
  top: 0;
  left: 0;
  z-index: 100;
  height: 80px;
  width: 100%;
  background: #FFF;
}
@media screen and (min-width: 901px) {
  .header {
    height: 130px;
  }
}
.header.hide {
  top: -80px;
}
@media screen and (min-width: 901px) {
  .header.hide {
    top: -130px;
  }
}
.header.show {
  top: 0;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 10px;
  margin-inline: 20px;
  margin-bottom: 9px;
}
@media screen and (min-width: 901px) {
  .header__inner {
    padding-top: 50px;
  }
}
@media screen and (min-width: 1100px) {
  .header__inner {
    margin-left: 20px;
    margin-right: 99px;
  }
}

.header__nav--lists {
  display: none;
}
@media screen and (min-width: 1100px) {
  .header__nav--lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 15px;
    padding-top: 33px;
  }
}

.header__nav--list {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.header__nav--list:hover {
  color: #FF9802;
}
.header__drawer__button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-top: 8px;
  background: #FF9802;
  position: relative;
}
@media screen and (min-width: 1100px) {
  .header__drawer__button {
    display: none;
  }
}
.header__drawer__button.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 27px;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.header__drawer__button.is-checked .drawer-icon__bar:nth-of-type(2) {
  opacity: 0;
}
.header__drawer__button.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 27px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.drawer-icon__bar {
  width: 33px;
  height: 2px;
  border-radius: 50px;
  background: #FFF;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.drawer-icon__bar:nth-of-type(1) {
  top: 17px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 27px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 37px;
}

.drawer__header--nav__lists {
  background: #FF9802;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  padding-top: 20%;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 80px;
  left: 0;
  z-index: 100;
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
@media screen and (min-width: 901px) {
  .drawer__header--nav__lists {
    top: 130px;
  }
}
.drawer__header--nav__lists.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer__header--nav__list {
  color: #FFF;
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 40px */
  letter-spacing: 1px;
  position: relative;
  text-align: center;
  width: 200px;
}

.fv {
  padding-top: 80px;
}
@media screen and (min-width: 901px) {
  .fv {
    padding-top: 130px;
  }
}

.fv__inner {
  position: relative;
}

.fv__image img {
  width: 100%;
  display: block;
}

.fv__message {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  max-width: 700px;
  width: clamp(100px, 41.6vw, 700px);
}
@media screen and (min-width: 1100px) {
  .fv__message {
    margin-right: 40px;
  }
}
.fv__message img {
  width: 100%;
  height: auto;
}

.news {
  padding-top: 80px;
  margin-top: -80px;
  padding-bottom: 80px;
}
@media screen and (min-width: 901px) {
  .news {
    padding-top: 130px;
    margin-top: -130px;
    padding-bottom: 80px;
  }
}

.news__inner {
  padding-top: 70px;
  padding-bottom: 200px;
}

.news__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-inline: 5px;
  margin-top: 25px;
  padding: 12px 14px 14px 14px;
}
@media screen and (min-width: 601px) {
  .news__boxes {
    margin-inline: 50px;
  }
}
@media screen and (min-width: 901px) {
  .news__boxes {
    margin-inline: 115px;
    padding: 23px 25px 25px 25px;
  }
}

.news__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 9px;
  padding-bottom: 11px;
  border-bottom: 1px solid #ccc;
  gap: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 901px) {
  .news__box {
    gap: 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.news__box--date {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  margin-block: auto;
}

.news__button {
  color: #439c37;
  border: 1px solid #439c37;
  font-size: 14px;
  font-weight: 500;
  width: 180px;
  height: 50px;
  padding: 13px 25px;
  display: block;
  margin-left: auto;
  margin-top: 58px;
}
@media screen and (min-width: 901px) {
  .news__button {
    font-size: 18px;
    width: 230px;
    padding: 13px 33px;
  }
}

.concept {
  background: #f3f3f3;
  position: relative;
  padding-top: 50px;
  margin-top: -50px;
  padding-bottom: 50px;
}
.concept::before {
  content: "";
  width: 100%;
  height: 130px;
  background: url(../img/concept__section--Polygon.svg) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: -128px;
}

.concept__inner {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 110px;
}
@media screen and (min-width: 901px) {
  .concept__inner {
    padding-bottom: 243px;
  }
}
.concept__inner::after {
  display: none;
}
@media screen and (min-width: 901px) {
  .concept__inner::after {
    display: block;
    content: "CONCEPT";
    position: absolute;
    top: 73px;
    left: 400px;
    width: auto;
    height: 300px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.4);
    font-size: 250px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
  }
}

.concept__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 601px) {
  .concept__top {
    gap: 15px;
  }
}
@media screen and (min-width: 901px) {
  .concept__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1100px) {
  .concept__top {
    gap: 0;
  }
}

.concept__illustration--top {
  margin-top: 45px;
  margin-inline: auto;
}
@media screen and (min-width: 901px) {
  .concept__illustration--top {
    margin-left: 0;
    margin-right: 49px;
    margin-top: -35px;
  }
}
.concept__illustration--top img {
  display: block;
  width: 200px;
}
@media screen and (min-width: 601px) {
  .concept__illustration--top img {
    width: 250px;
  }
}
@media screen and (min-width: 901px) {
  .concept__illustration--top img {
    width: 340px;
  }
}

@media screen and (min-width: 901px) {
  .concept__text--box {
    width: 480px;
  }
}

.concept__content--title {
  color: #ff9802;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 65px;
  margin-bottom: 17px;
}
@media screen and (min-width: 901px) {
  .concept__content--title {
    margin-bottom: 40px;
  }
}

.concept__text {
  color: #000;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  text-align: justify;
  font-size: 19px;
  font-weight: 400;
  line-height: 30px; /* 157.895% */
  letter-spacing: 1.5px;
}

.concept__text--deco {
  color: #ff9802;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 19px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1px;
}

.concept__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 72px;
}
@media screen and (min-width: 901px) {
  .concept__bottom {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.concept__illustration--bottom {
  display: none;
}
@media screen and (min-width: 901px) {
  .concept__illustration--bottom {
    display: block;
    margin-left: 65px;
    margin-top: -90px;
    position: relative;
    z-index: 10;
  }
  .concept__illustration--bottom::after {
    content: "";
    width: 491px;
    height: 637px;
    background: url(../img/concept__bg--Polygon.svg) no-repeat center center/contain;
    position: absolute;
    left: -37px;
    top: 11px;
    z-index: -1;
  }
}
.concept__illustration--bottom img {
  width: 349px;
}

.concept__store {
  position: relative;
  z-index: 30;
  margin-inline: auto;
}
@media screen and (min-width: 901px) {
  .concept__store {
    margin-inline: 0;
  }
}
.concept__store img {
  width: 440px;
}

.concept__cards {
  margin-top: 73px;
}

.about {
  background: #FF9802;
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
.about::before {
  content: "";
  width: 100%;
  height: 130px;
  background: url(../img/about__section--Polygon.svg) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: -128px;
}

.about__inner {
  position: relative;
  overflow: hidden;
  padding-top: 97px;
  padding-bottom: 210px;
}
.about__inner::after {
  display: none;
}
@media screen and (min-width: 901px) {
  .about__inner::after {
    display: block;
    content: "ABOUTUS";
    position: absolute;
    top: 70px;
    left: 391px;
    width: auto;
    height: 300px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.1);
    font-size: 250px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
  }
}

.about__title--main {
  color: #FFF;
}

.about__title--sub {
  color: #FFF;
}

.about__content {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}
@media screen and (min-width: 901px) {
  .about__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}

.about__illustration {
  position: relative;
  z-index: 30;
  margin-inline: auto;
}
@media screen and (min-width: 901px) {
  .about__illustration {
    margin-top: -32px;
    margin-right: 30px;
    margin-left: 0;
  }
}
.about__illustration::after {
  content: "";
  width: 200px;
  height: 200px;
  left: 24px;
  top: 157px;
  background: url(../img/about__bg--Polygon.svg) no-repeat center center/contain;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 901px) {
  .about__illustration::after {
    width: 300px;
    height: 300px;
    left: 24px;
    top: 260px;
  }
}
@media screen and (min-width: 1100px) {
  .about__illustration::after {
    width: 448px;
    height: 610px;
    left: 24px;
    top: 203px;
  }
}
.about__illustration img {
  display: block;
  width: 200px;
}
@media screen and (min-width: 601px) {
  .about__illustration img {
    width: 250px;
  }
}
@media screen and (min-width: 901px) {
  .about__illustration img {
    width: 400px;
  }
}

@media screen and (min-width: 901px) {
  .about__text--box {
    width: 480px;
  }
}

.about__content--title {
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  margin-top: 65px;
  margin-bottom: 36px;
}

.about__text {
  color: #242524;
  text-align: justify;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 19px;
  font-weight: 400;
  line-height: 30px; /* 157.895% */
  letter-spacing: 1.9px;
}

.about__text--deco {
  color: #FFF;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 19px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 1.9px;
}

.about__cards {
  margin-top: 81px;
}

.equipment {
  position: relative;
}
.equipment::before {
  content: "";
  width: 100%;
  height: 130px;
  background: url(../img/equipment__section--Polygon.svg) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: -128px;
}

.equipment__inner {
  padding-top: 70px;
  padding-bottom: 200px;
}

.equipment__title {
  color: #FF9802;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 44px;
}

.equipment__cards {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 68px;
  row-gap: 40px;
}
@media screen and (min-width: 601px) {
  .equipment__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 901px) {
  .equipment__cards {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 5vw, 53px);
    row-gap: 0px;
  }
}

.equipment__card {
  margin-inline: auto;
  width: 235px;
}
@media screen and (min-width: 901px) {
  .equipment__card {
    width: 175px;
  }
}
@media screen and (min-width: 1100px) {
  .equipment__card {
    width: 210.25px;
  }
}

.equipment__card--title {
  color: #ff9802;
  text-align: justify;
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 12px;
}

.equipment__card--text {
  color: #000;
  text-align: justify;
  font-size: 16px;
  font-weight: 350;
  line-height: 23px; /* 143.75% */
}

.equipment__title {
  color: #FF9802;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 46px;
}

.equipment__list--text {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 250% */
}

.event {
  background: #f3f3f3;
  position: relative;
  padding-top: 50px;
  margin-top: -50px;
  padding-bottom: 50px;
}
.event::before {
  content: "";
  width: 100%;
  height: 130px;
  background: url(../img/event__section--Polygon.svg) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: -128px;
}

.event__inner {
  position: relative;
  overflow: hidden;
  padding-top: 97px;
  padding-bottom: 220px;
}
.event__inner::after {
  display: none;
}
@media screen and (min-width: 901px) {
  .event__inner::after {
    display: block;
    content: "EVENT";
    position: absolute;
    top: 68px;
    left: 448px;
    width: auto;
    height: 300px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.4);
    font-size: 250px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
  }
}

.event__content {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
  margin-bottom: 150px;
}
@media screen and (min-width: 901px) {
  .event__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}

@media screen and (min-width: 901px) {
  .event__text--box {
    width: 500px;
    position: relative;
    z-index: 3;
  }
}

.event__content--title {
  color: #FF9802;
  font-size: 24px;
  font-weight: 700;
  margin-top: 62px;
  margin-bottom: 40px;
}

.event__text {
  color: #242524;
  text-align: justify;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 19px;
  font-weight: 400;
  line-height: 30px; /* 157.895% */
  letter-spacing: 1.8px;
}

.event__text--deco {
  color: #FF9802;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 19px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1.9px;
}

.event__illustration {
  position: relative;
  z-index: 30;
  margin-inline: auto;
}
@media screen and (min-width: 901px) {
  .event__illustration {
    margin-top: -6px;
    margin-right: 21px;
    margin-left: 0;
  }
}
.event__illustration::after {
  content: "";
  width: 200px;
  height: 200px;
  left: 24px;
  top: 157px;
  background: url(../img/event__bg--Polygon.svg) no-repeat center center/contain;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 901px) {
  .event__illustration::after {
    width: 300px;
    height: 300px;
    left: 24px;
    top: 260px;
  }
}
@media screen and (min-width: 1100px) {
  .event__illustration::after {
    width: 448px;
    height: 610px;
    left: 61px;
    top: 203px;
  }
}
.event__illustration img {
  display: block;
  width: 200px;
}
@media screen and (min-width: 601px) {
  .event__illustration img {
    width: 300px;
  }
}
@media screen and (min-width: 901px) {
  .event__illustration img {
    width: 450px;
  }
}

.payment {
  position: relative;
  padding-top: 50px;
  margin-top: -50px;
  padding-bottom: 50px;
}
.payment::before {
  content: "";
  width: 100%;
  height: 130px;
  background: url(../img/equipment__section--Polygon.svg) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: -79px;
}

.payment__inner {
  padding-top: 97px;
  padding-bottom: 295px;
  overflow: hidden;
}

@media screen and (min-width: 601px) {
  .table__wrapper {
    overflow-y: scroll;
  }
}

.table__pc {
  display: none;
  border-collapse: collapse;
  width: 100%;
  height: 330px;
  table-layout: fixed;
  border: 1px solid #000;
  margin-top: 65px;
}
@media screen and (min-width: 601px) {
  .table__pc {
    display: table;
  }
}
.table__pc thead th {
  background-color: #eaeaea;
  color: #000;
  font-size: 30px;
  font-weight: 500;
  border: 1px solid #000;
  height: 100px;
}
.table__pc thead th:nth-child(1) {
  width: 380px;
  padding: 28px 129px;
}
.table__pc thead th:nth-child(2) {
  width: 619.565px;
  padding: 28px 169px 28px 204px;
}
.table__pc thead th:nth-child(2) span {
  font-size: 16px;
  font-weight: 400;
}
.table__pc tbody tr:nth-of-type(1) th:nth-of-type(1) {
  font-size: 26px;
  font-weight: 400;
  vertical-align: middle;
}
.table__pc tbody tr:nth-of-type(1) td:nth-of-type(1) {
  border-right: 1px solid #000;
  text-align: center;
  vertical-align: middle;
  font-size: 22px;
  font-weight: 350;
  line-height: 28px; /* 127.273% */
}
.table__pc tbody tr:nth-of-type(1) td:nth-of-type(2) {
  border-right: 1px solid #000;
  text-align: center;
  vertical-align: middle;
  font-size: 26px;
  font-weight: 350;
  line-height: 28px; /* 127.273% */
}
.table__pc tbody tr:nth-of-type(1) td:nth-of-type(2) span {
  font-size: 16px;
  font-weight: 400;
}
.table__pc tbody tr:nth-of-type(1) td:nth-of-type(3) {
  border-right: 1px solid #000;
  text-align: center;
  vertical-align: middle;
  font-size: 26px;
  font-weight: 350;
  line-height: 28px; /* 127.273% */
}
.table__pc tbody tr:nth-of-type(1) td:nth-of-type(3) span {
  font-size: 16px;
  font-weight: 400;
}
.table__pc tbody tr:nth-of-type(2) th:nth-of-type(1) {
  font-size: 26px;
  font-weight: 400;
  vertical-align: middle;
}
.table__pc tbody tr:nth-of-type(2) td:nth-of-type(1) {
  border-right: 1px solid #000;
  text-align: center;
  vertical-align: middle;
  font-size: 22px;
  font-weight: 350;
  line-height: 28px; /* 127.273% */
}
.table__pc tbody tr:nth-of-type(2) td:nth-of-type(2) {
  border-right: 1px solid #000;
  text-align: center;
  vertical-align: middle;
  font-size: 22px;
  font-weight: 350;
  line-height: 28px; /* 127.273% */
}
.table__pc tbody tr:nth-of-type(2) td:nth-of-type(3) {
  border-right: 1px solid #000;
  text-align: center;
  vertical-align: middle;
  font-size: 22px;
  font-weight: 350;
  line-height: 28px; /* 127.273% */
}

.table__sp {
  display: table;
  border-collapse: collapse;
  width: 100%;
  height: 330px;
  table-layout: fixed;
  border: 1px solid #000;
  margin-top: 45px;
}
@media screen and (min-width: 601px) {
  .table__sp {
    display: none;
  }
}
.table__sp tbody tr:nth-of-type(1) th:nth-of-type(1),
.table__sp tbody tr:nth-of-type(4) th:nth-of-type(1) {
  background-color: #eaeaea;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  border: 1px solid #000;
  height: 50px;
  padding-block: 10px;
}
.table__sp tbody tr:nth-of-type(2) td:nth-of-type(1),
.table__sp tbody tr:nth-of-type(2) td:nth-of-type(2),
.table__sp tbody tr:nth-of-type(3) td:nth-of-type(1),
.table__sp tbody tr:nth-of-type(3) td:nth-of-type(2) {
  text-align: center;
  vertical-align: middle;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px; /* 127.273% */
  padding-top: 10px;
}
.table__sp tbody tr:nth-of-type(2) td:nth-of-type(1) span,
.table__sp tbody tr:nth-of-type(2) td:nth-of-type(2) span,
.table__sp tbody tr:nth-of-type(3) td:nth-of-type(1) span,
.table__sp tbody tr:nth-of-type(3) td:nth-of-type(2) span {
  font-size: 18px;
}
.table__sp tbody tr:nth-of-type(5) td,
.table__sp tbody tr:nth-of-type(6) td,
.table__sp tbody tr:nth-of-type(7) td,
.table__sp tbody tr:nth-of-type(8) td {
  text-align: center;
  vertical-align: middle;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px; /* 127.273% */
  padding-top: 10px;
}
.table__sp tbody tr:nth-of-type(6) td {
  border-bottom: 1px solid #000;
}

.table__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 27px; /* 150% */
  margin-top: 12px;
  margin-left: 11px;
}
@media screen and (min-width: 601px) {
  .table__text {
    font-size: 18px;
    font-weight: 400;
  }
}

.payment__sub--title {
  color: #FF9802;
  font-size: 24px;
  font-weight: 700;
  margin-top: 50px;
}
@media screen and (min-width: 901px) {
  .payment__sub--title {
    margin-top: 125px;
    font-size: 32px;
  }
}

.img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 57px;
}
@media screen and (min-width: 901px) {
  .img-box {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.img__left img {
  display: block;
  width: 270px;
  margin-inline: auto;
}
@media screen and (min-width: 601px) {
  .img__left img {
    width: 350px;
  }
}
@media screen and (min-width: 901px) {
  .img__left img {
    width: 500px;
    margin-inline: 0;
  }
}

.img__right {
  position: relative;
  margin-top: 50px;
  margin-inline: auto;
}
@media screen and (min-width: 901px) {
  .img__right {
    margin-inline: 0;
    margin-top: -27px;
  }
}
.img__right img {
  display: block;
  width: 200px;
}
@media screen and (min-width: 601px) {
  .img__right img {
    width: 250px;
  }
}
@media screen and (min-width: 901px) {
  .img__right img {
    width: 400px;
  }
}
.img__right::before {
  content: "";
  width: 200px;
  height: 200px;
  background: url(../img/payment__bg--Polygon.svg) no-repeat center center/contain;
  position: absolute;
  top: 140px;
  left: 14px;
  z-index: -1;
}
@media screen and (min-width: 901px) {
  .img__right::before {
    width: 300px;
    height: 300px;
    top: 266px;
    left: 68px;
  }
}
@media screen and (min-width: 1100px) {
  .img__right::before {
    width: 474px;
    height: 611px;
    top: 126px;
    left: -31px;
  }
}

.contact {
  background: #fffcf2;
  padding-top: 145px;
  padding-bottom: 180px;
  margin-top: -50px;
}
@media screen and (min-width: 1100px) {
  .contact {
    padding-right: 50px;
  }
}

.contact__title {
  margin-bottom: 65px;
}

.contact__box--title {
  color: #FF9802;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 31px;
}

.contact__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  margin-bottom: 175px;
}
@media screen and (min-width: 901px) {
  .contact__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.contact__left--box {
  width: 300px;
  margin-inline: auto;
}
@media screen and (min-width: 601px) {
  .contact__left--box {
    width: 400px;
  }
}
@media screen and (min-width: 901px) {
  .contact__left--box {
    width: 450px;
    width: auto;
    margin-inline: 0;
  }
}

.contact__phone--text {
  color: #242524;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 22px;
}

.conatct__box--phone {
  color: #242524;
  font-size: 22px;
  font-weight: 500;
}
@media screen and (min-width: 901px) {
  .conatct__box--phone {
    font-size: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .conatct__box--phone {
    font-size: 32px;
  }
}

.contact__right--box {
  width: 300px;
  margin-inline: auto;
}
@media screen and (min-width: 601px) {
  .contact__right--box {
    width: 400px;
  }
}
@media screen and (min-width: 901px) {
  .contact__right--box {
    margin-inline: 0;
    width: 450px;
  }
}

.contact__mail--text {
  color: #242524;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact__field {
  margin-bottom: 27px;
}

.form-text {
  width: 100%;
  border: 1px solid #242524;
  background: #f3f3f3;
  height: 40px;
}

.form-textarea {
  width: 100%;
  border: 1px solid #242524;
  background: #f3f3f3;
}

.contact__button {
  width: 150px;
  height: 50px;
  border: 1px solid #439c37;
  background: #f3f3f3;
  margin-inline: auto;
}
@media screen and (min-width: 901px) {
  .contact__button {
    margin-left: auto;
    margin-right: 0;
  }
}

.button {
  color: #439c37;
  font-size: 18px;
  font-weight: 500;
  border: none;
  padding: 11px 56px;
  background: #f3f3f3;
}

.access__box--title {
  color: #FF9802;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 65px;
}

.access__wrapper--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 901px) {
  .access__wrapper--box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.access__box--text {
  font-size: 24px;
  font-weight: 400;
  line-height: 35px; /* 145.833% */
}
@media screen and (min-width: 901px) {
  .access__box--text {
    margin-left: 40px;
  }
}

.access__frame {
  margin-inline: auto;
}

.iframe__map {
  display: block;
  margin-inline: auto;
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 601px) {
  .iframe__map {
    width: 400px;
    height: 300px;
  }
}
@media screen and (min-width: 901px) {
  .iframe__map {
    width: 350px;
    height: 230px;
  }
}
@media screen and (min-width: 1100px) {
  .iframe__map {
    width: 500px;
    height: 270px;
  }
}

.staff {
  padding-top: 147px;
  padding-bottom: 238px;
  margin-top: -50px;
}

.staff__wrapper {
  margin-inline: auto;
}

.staff__title {
  margin-bottom: 54px;
}

.staff__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 901px) {
  .staff__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 85px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.staff__img--box {
  position: relative;
  margin-inline: auto;
}
@media screen and (min-width: 901px) {
  .staff__img--box {
    margin-inline: 0;
  }
}

.staff__img img {
  width: 270px;
}

.staff__img--text-1 {
  width: 160px;
  height: 40px;
  color: #FFF;
  font-size: 27px;
  font-weight: 700;
  line-height: 24px; /* 88.889% */
  background: #FF9802;
  padding: 7px 12px 6px 12px;
  position: absolute;
  left: -36px;
  top: 211px;
}
@media screen and (min-width: 901px) {
  .staff__img--text-1 {
    left: -82px;
    top: 211px;
  }
}

.staff__img--text-2 {
  width: 170px;
  height: 40px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  background: #ff9802;
  padding: 7px 11px 6px 11px;
  position: absolute;
  left: -10px;
  top: 261px;
}
@media screen and (min-width: 901px) {
  .staff__img--text-2 {
    left: -52px;
    top: 261px;
  }
}

.staff__boxes {
  margin-inline: auto;
}
@media screen and (min-width: 901px) {
  .staff__boxes {
    margin-inline: 0;
    width: 350px;
  }
}

.staff__box + .staff__box {
  margin-top: 52px;
}

.staff__name {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-bottom: 10px;
}

.staff__text {
  text-align: justify;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}

.footer {
  background: #FF9802;
}

.footer__inner {
  padding-top: 44px;
  padding-bottom: 46px;
}

.footer__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 (min-width: 901px) {
  .footer__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 44px;
  }
}

.footer__left--box {
  color: #FFF;
  width: 300px;
  margin-inline: auto;
  margin-bottom: 60px;
}
@media screen and (min-width: 901px) {
  .footer__left--box {
    width: 400px;
  }
}
@media screen and (min-width: 1100px) {
  .footer__left--box {
    width: 435px;
    margin-inline: 0;
  }
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 59px;
  gap: 20px;
}
@media screen and (min-width: 901px) {
  .footer__sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__sns--message {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
}

.footer__right--box {
  color: #FFF;
}
@media screen and (min-width: 901px) {
  .footer__right--box {
    padding-right: 90px;
  }
}

.footer__nav--lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  margin-bottom: 27px;
}

.footer__nav--list {
  font-size: 16px;
  font-weight: 500;
}
.copyright {
  font-size: 16px;
  font-weight: 500;
}

.privacy-policy__inner {
  padding-top: 66px;
  padding-bottom: 33px;
}

.site-policy__inner {
  padding-top: 66px;
}

.page__title {
  font-size: 28px;
  font-weight: 500;
  margin-top: 110px;
}
@media screen and (min-width: 901px) {
  .page__title {
    font-size: 40px;
    font-weight: 700;
  }
}

.page__boxes {
  margin-top: 40px;
}
@media screen and (min-width: 901px) {
  .page__boxes {
    margin-top: 64px;
  }
}

.page__box {
  margin-bottom: 60px;
}
@media screen and (min-width: 901px) {
  .page__box {
    margin-bottom: 88px;
  }
}

.page__box--title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (min-width: 901px) {
  .page__box--title {
    font-size: 23px;
    font-weight: 700;
  }
}

.page__box--text {
  font-size: 17px;
  font-weight: 300;
}
@media screen and (min-width: 901px) {
  .page__box--text {
    font-size: 19px;
    font-weight: 400;
  }
}
.page__box--text + .page__box--text {
  margin-top: 20px;
}

.page__box--list {
  margin-left: 29px;
  list-style: disc;
  font-size: 16px;
}
@media screen and (min-width: 901px) {
  .page__box--list {
    font-size: 19px;
  }
}

.page__box--border {
  border-bottom: 1px solid #000;
}

.single--wrapper {
  margin-top: 130px;
  padding-top: 120px;
  padding-bottom: 150px;
}

.single__h1 {
  color: #FF9802;
  font-size: 25px;
  font-weight: 800;
  line-height: 30px;
  margin-top: 10px;
}
@media screen and (min-width: 601px) {
  .single__h1 {
    font-size: 32px;
  }
}

.single__date {
  margin-top: 10px;
}

.single__content p {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  margin-top: 20px;
}
@media screen and (min-width: 901px) {
  .single__content p {
    font-size: 16px;
    line-height: 32px;
    margin-top: 19px;
  }
}
.single__content .wp-block-image {
  text-align: center;
  margin-top: 36px;
}
@media screen and (min-width: 901px) {
  .single__content .wp-block-image img {
    width: 688px;
  }
}
.single__content h2 {
  color: #FF9802;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin-top: 75px;
}
@media screen and (min-width: 601px) {
  .single__content h2 {
    font-size: 24px;
    margin-top: 97px;
  }
}
.single__content h3 {
  color: #FF9802;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-top: 54px;
}
@media screen and (min-width: 901px) {
  .single__content h3 {
    font-size: 20px;
    margin-top: 59px;
  }
}
.single__content h4 {
  color: #FF9802;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  margin-top: 54px;
}
@media screen and (min-width: 901px) {
  .single__content h4 {
    font-size: 16px;
    margin-top: 56px;
  }
}
.single__content .wp-block-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  margin-top: 28px;
  margin-left: 20px;
}
.single__content li {
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width: 901px) {
  .single__content li {
    font-size: 16px;
  }
}
.single__content .wp-block-list {
  margin-top: 8px;
}

.archive__inner {
  margin-top: 130px;
}

.archive__contents {
  padding-bottom: 120px;
}

.breadcrumbs {
  margin-top: 30px;
}

.archive__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-inline: 5px;
  margin-top: 25px;
  padding: 12px 14px 14px 14px;
}
@media screen and (min-width: 601px) {
  .archive__boxes {
    margin-inline: 50px;
  }
}
@media screen and (min-width: 901px) {
  .archive__boxes {
    margin-inline: 115px;
    padding: 23px 25px 25px 25px;
  }
}

.pagination {
  margin-top: 50px;
  text-align: center;
}