@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Bakbak+One&family=Black+Han+Sans&family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Coiny&family=Headland+One&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=LXGW+WenKai+Mono+TC:wght@400;700&family=Mitr:wght@200;300;400;500;600;700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Sans+Thai+Looped:wght@100..900&family=Pacifico&display=swap');
/*
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Coiny&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Pacifico&display=swap&family=Bakbak+One&family=Headland+One&family=LXGW+WenKai+Mono+TC:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mitr:wght@200;300;400;500;600;700&family=Noto+Sans+Thai+Looped:wght@100..900&display=swap');
*/

/* # =================================================================
# Common
# ================================================================= */
@media (hover: hover) {
  a:hover {
    opacity: 0.5;
    -webkit-transition: opacty, 0.3s;
    transition: opacty, 0.3s;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
  line-height: 1;
  color: #333333;
}
body.site_th {
  font-family: "Noto Sans Thai Looped", sans-serif;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

:root {
  --container-width: 90%;
}

@media (min-width: 992px) {
  :root {
    --container-width: 960px;
  }
}
@media (min-width: 1200px) {
  :root {
    --container-width: 1140px;
  }
}
@media (min-width: 1400px) {
  :root {
    --container-width: 1320px;
  }
}
.bricolage-grotesque {
  font-family: "Bricolage Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.noto-sans {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* # =================================================================
# Component
# ================================================================= */
.c-h2-header {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: fit-content;
  border-bottom: 3px solid #113d3d;
  padding: 80px 20px 10px calc((100vw - var(--container-width)) / 2);
}
.c-h2-header__text {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 40px;
  color: #113d3d;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
}
@media screen and (max-width: 615px) {
  .c-h2-header {
    padding-top: 50px;
  }
  .c-h2-header__text {
    font-size: 6vw;
  }
}

.c-button {
  display: block;
  width: 100%;
  border-radius: 30px;
  background-color: #cf275f;
  padding: 18px 20px;
}
.c-button__text {
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  color: #ffffff;
}
.c-button.c-button--white {
  background-color: #fff;
}
.c-button.c-button--white .c-button__text {
  color: #cf275f;
}
.c-button.c-button--white:hover {
  background-color: #cf275f;
}
.c-button.c-button--white:hover .c-button__text {
  color: #fff;
}
.c-button--arrow .c-button__text {
  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: 20px;
  transition: color .3s;
}
.c-button--arrow .c-button__text::after {
  --icon-w: 16px;
  --icon-h: 16px;
  content: "";
  display: block;
  width: var(--icon-w);
  width: var(--icon-h);
  aspect-ratio: 1;
  background-color: #ffffff;
  -webkit-mask-image: url("../img/top/en/icon/icon_arrow.svg");
        mask-image: url("../img/top/en/icon/icon_arrow.svg");
  -webkit-mask-position: center;
        mask-position: center;
  -webkit-mask-size: contain;
        mask-size: contain;
  -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
  flex-shrink: 0;
}
.c-button--blank .c-button__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-button--blank .c-button__text::after {
  --icon-w: 20px;
  --icon-h: 20px;
  content: "";
  display: block;
  width: var(--icon-w);
  height: var(--icon-h);
  background-color: #ffffff;
  -webkit-mask-image: url("../img/top/en/icon/icon_blank.svg");
          mask-image: url("../img/top/en/icon/icon_blank.svg");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.c-button--left-icon .c-button__text::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  flex-shrink: 0;
}
.c-button--left-icon.c-button--clock .c-button__text::before {
  -webkit-mask-image: url("../img/top/en/icon/icon_clock.svg");
        mask-image: url("../img/top/en/icon/icon_clock.svg");
}
.c-button--left-icon.c-button--coin .c-button__text::before {
  -webkit-mask-image: url("../img/top/en/icon/icon_coin.svg");
        mask-image: url("../img/top/en/icon/icon_coin.svg");
}
.c-button--left-icon.c-button--pin .c-button__text::before {
  -webkit-mask-image: url("../img/top/en/icon/icon_pin.svg");
        mask-image: url("../img/top/en/icon/icon_pin.svg");
}
@media screen and (max-width: 615px) {
  .c-button {
    padding: 10px 20px;
  }
  .c-button__text {
    font-size: 14px;
  }
  .c-button--arrow .c-button__text::after {
    --icon-w: 12px;
    --icon-h: 12px;
  }
  .c-button--blank .c-button__text::after {
    --icon-w: 16px;
    --icon-h: 16px;
  }
}


/* # =================================================================
# Header
# ================================================================= */
/* @media screen and (max-width: 615px) {
  header#menu .row.align-items-center.justify-content-end {
    align-items: normal!important;
  }
  .menu__list-inner:has(#menu-header-menu-en) {
    flex-direction: column;
    gap: 4px 0;
    margin-right: 15px;
  }
  header#menu .menu__list-inner ul#menu-header-menu-en .menu-item,
  header#menu .menu__list-inner ul.menu-lang-menu-container {
    margin-right: 0;
  }
  header#menu .menu__list-inner ul#menu-header-menu-en .menu-item {
    padding: 0!important;
  }
  header#menu .nav-wrapper .menu__list {
    padding-top: 0!important;
  }
  header#menu .nav-wrapper .menu__list ul#menu-header-menu-en {
    padding-left: 0;
  }
  header#menu .menu-lang-menu-container {
    margin-right: 0;
  }
  header#menu .menu-lang-menu-container > ul.menu li > a {
    justify-content: center;
  }
} */
.menu-global-nav-sub2-en-container {
  padding-right: 10px;
}
@media screen and (max-width: 520px) {
  header#menu .menu-lang-menu-container {
    margin-right: 0;
  }
  header#menu ul#menu-header-menu-en .menu-item {
    margin-right: 0!important;
  }
}
@media screen and (max-width: 450px) {
  .hero.hero--en .hero__now .box .nowTitle {
    margin-bottom: 0!important;
  }
  .menu-item .nav_toggle {
    width: 20px;
    height: 17px;
  }
}
@media screen and (max-width: 360px) {
  header#menu .logo-1 {
    max-width: 80px!important;
  }
  .hero.hero--en .box.hero__now--operation .tag {
    padding-left: 5px!important;
    padding-right: 5px!important;
  }
}


/* # =================================================================
# Style
# ================================================================= */

/* Hero */
.hero.hero--en .title {
  top: auto;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  text-align: left;
  width: 95%;
  max-width: var(--container-width);
}
.hero.hero--en .title h1 {
  font-family: "Pacifico", cursive;
  font-size: 96px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
}
.site_zh-hant .hero.hero--en .title h1 {
  font-family: "LXGW WenKai Mono TC", monospace;
  font-weight: 700;
}
.hero.hero--en .title.title--ko h1 {
  font-family: "Black Han Sans", sans-serif;
}
.hero.hero--en .title.title--th h1 {
  font-family: "Mitr", sans-serif;
}
.hero.hero--en .title .sub {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 24px;
  line-height: 1.5;
  margin: 20px 0 0;
}
.site_zh-hant .hero.hero--en .title .sub {
  font-family: "LXGW WenKai Mono TC", monospace;
  font-weight: 400;
}
.site_th .hero.hero--en .title .sub {
  font-family: "Noto Sans Thai Looped", sans-serif;
  font-weight: 400;
}
.hero.hero--en .title .sub .sp-only {
  display: none;
}
.hero.hero--en .title .hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.hero.hero--en .title .hero-button .c-button:hover {
  opacity: 1;
  background-color: #ffffff;
}
.hero.hero--en .title .hero-button:hover .c-button .c-button__text {
  color: #cf275f;
}
.hero.hero--en .title .hero-button:hover .c-button .c-button__text::before,
.hero.hero--en .title .hero-button:hover .c-button .c-button__text::after {
  background-color: #cf275f;
}
.hero.hero--en .hero__now .sp-only {
  display: none;
}
.hero.hero--en .box.hero__now--wether .nowBox .nowBox-main {
  font-size: 12px;
}
.hero.hero--en .hero__now--wait .tag {
  width: 50px;
}
@media screen and (max-width: 1199px) {
  .hero.hero--en .title {
    bottom: 125px;
  }
  .hero.hero--en .title h1 {
    font-size: clamp(65px, 6vw, 72px);
  }
  .hero.hero--en .title .sub {
    font-size: clamp(18px, 4vw, 20px);
  }
  .hero.hero--en .title .hero-button .c-button {
    padding: 12px;
  }
}
@media screen and (max-width: 520px) {
  .hero.hero--en .title {
    bottom: 110px;
  }
  .hero.hero--en .title .sub .sp-only {
    display: block;
  }
}
@media screen and (max-width: 460px) {
  .hero.hero--en .box.hero__now--wait .tag {
    width: 38px;
    font-size: 1rem;
    margin-right: 5px;
  }
}
@media screen and (max-width: 390px) {
  .hero.hero--en .title {
    bottom: 135px;
  }
  .hero.hero--en .title h1 {
    font-size: 50px;
  }
  .hero.hero--en .hero__now .box {
    height: 110px;
  }
  .hero.hero--en .hero__now .box .nowTitle {
    margin-top: 0.45rem;
  }
  .hero.hero--en .box.hero__now--operation .tag {
    padding-top: 5px;
    padding-bottom: 6px;
  }
  .hero.hero--en .box.hero__now--wait .time {
    text-align: center;
  }
  .hero.hero--en .box.hero__now--wait .tag {
    margin-right: 0;
  }
  .hero.hero--en .hero__now .box .innerBox {
    height: 110px;
  }
  .hero.hero--en .hero__now .sp-only {
    display: block;
  }
  .hero.hero--en .hero__now .col-auto.ps-2:has(#is_temp){
    width: 100%;
  }
}


/* News */
.news-container {
  display: flex;
  gap: 20px 60px;
}
.news.contents {
  width: 100%;
  padding: 80px 0 60px;
}
.news-box {
  width: 100%;
  padding-right: calc((100vw - var(--container-width)) / 2);
}

.news-item {
  width: 100%;
  display: flex;
  gap: 10px 30px;
  align-items: center;
  border-bottom: 1px solid #000;
  padding-bottom: 8px;
}
.news-item + .news-item {
  margin-top: 25px;
}
.news-item__date {
  flex-shrink: 0;
  font-size: 16px;
}
.news-item__cat {
  min-width: 140px;
  flex-shrink: 0;
  font-size: 16px;
  text-align: center;
  background-color: #f4f4f4;
  padding: 5px 8px 6px;
  border-radius: 5px;
}
.news-item__cat.important {
  background-color: #cf275f;
  color: #fff;
}

.news-button {
  width: fit-content;
  margin: 26px calc((100vw - var(--container-width)) / 2) 0 auto;
}

@media screen and (max-width: 1050px) {
  .news-container {
    flex-direction: column;
    padding: 0;
  }
  .news.contents {
    padding: 30px 0 60px;
  }
  .news-box {
    max-width: 798px;
    padding: 0 15px 0 calc((100vw - var(--container-width)) / 2);
    margin: 0 auto;
  }
}
@media screen and (max-width: 620px) {
  .news-item {
    flex-wrap: wrap;
    padding-bottom: 12px;
  }
  .news-item__cat {
    min-width: auto;
    width: fit-content;
    font-size: 14px;
  }
  .news-item__title {
    width: 100%;
  }
}


/* Access */
#access {
  background-color: #f4f4f4;
}
#access .container {
  padding-bottom: 140px;
}

.access.contents {
  width: 90%;
  max-width: 980px;
  min-height: 200px;
  border-radius: 50px;
  padding: 0;
  margin: 120px auto 0;
  background-image: linear-gradient(0deg, transparent calc(100% - 2px), #f0f0f0 calc(100% - 2px)), linear-gradient(90deg, transparent calc(100% - 2px), #f0f0f0 calc(100% - 2px));
  background-size: 60px 60px;
  background-repeat: repeat;
  background-position: center center;
}
.access__inner {
  width: 110%;
  display: flex;
  flex-direction: column;
  margin-left: -5%;
}

.access-map.access-map--a {
  width: 65%;
  margin-top: -70px;
}
.access-map.access-map--b {
  width: 80%;
  margin-left: auto;
  margin-bottom: -30px;
  margin-right: -40px;
}
.access-map__image{
  filter: drop-shadow(8px 7px 6px rgba(0, 0, 0, 0.2));
}

@media screen and (max-width: 767px) {
  #access .container {
    padding-bottom: 80px;
  }
  .access.contents {
    border-radius: 30px;
    background-size: 45px 45px;
    margin-top: 100px;
  }
  .access-map.access-map--b {
    margin-right: -10px;
  }
}
@media screen and (max-width: 580px) {
  .access__inner {
    row-gap: 20px;
  }
  .access-map.access-map--a,
  .access-map.access-map--b {
    width: 100%;
  }
}


/* Ticket */
#ticket {
  background-color: #113d3d;
}
#ticket .container {
  max-width: calc(var(--container-width) + (100vw - var(--container-width)) / 2);
  padding-right: 0;
  margin-right: 0;
  margin-left: calc((100vw - var(--container-width)) / 2);
}

.ticket.contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  gap: 80px;
  padding: 90px 0 0;
  background: transparent;
}
.ticket__text-wrap {
  text-align: center;
  width: calc(100% - (clamp(200px, 50%, 1200px) + 80px));
  margin-bottom: auto;
}
.ticket__heading {
  display: inline;
  color: #ffffff;
  font-size: 50px;
  line-height: 1.5;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#cf275f), to(#cf275f));
  background-image: linear-gradient(#cf275f, #cf275f);
  background-repeat: no-repeat;
  background-size: 100% 12px;
  background-repeat: no-repeat;
  background-position: center 50px;
  padding: 0 20px;
  position: relative;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.ticket__text {
  color: #ffffff;
  line-height: 2;
  text-align: center;
  margin-top: 18px;
}
.ticket__button-wrap {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 46px auto 70px;
}
.ticket__button-wrap::before, .ticket__button-wrap::after {
  content: "";
  position: absolute;
  display: block;
  background-color: #f4f4f4;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  animation: decoBlink 1.5s steps(1, end) infinite;
}
@keyframes decoBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.ticket__button-wrap::before {
  top: -17px;
  left: -35px;
  width: 35px;
  height: 40px;
  -webkit-mask-image: url("../img/top/en/item/item_deco-left.svg");
          mask-image: url("../img/top/en/item/item_deco-left.svg");
}
.ticket__button-wrap::after {
  bottom: -20px;
  right: -40px;
  width: 33px;
  height: 43px;
  -webkit-mask-image: url("../img/top/en/item/item_deco-right.svg");
          mask-image: url("../img/top/en/item/item_deco-right.svg");
}
.ticket__button-wrap .c-button .c-button__text {
  justify-content: center;
  font-weight: 900;
}

.ticket__button-wrap .c-button:hover {
  opacity: 1;
}
.ticket__button-wrap .c-button:not(.c-button--white):hover {
  background-color: #ffffff;
}
.ticket__button-wrap .c-button:not(.c-button--white):hover .c-button__text {
  color: #cf275f;
}
.ticket__button-wrap .c-button:not(.c-button--white):hover .c-button__text::after {
  background-color: #cf275f;
}

.ticket__button-wrap .c-button+.c-button {
  margin-top: 15px;
}

.ticket__image-wrap {
  width: clamp(200px, 50%, 1200px);
  height: auto;
  max-height: 400px;
  aspect-ratio: 6/4;
  border-radius: 30px 0 0;
  overflow: hidden;
  margin-top: 40px;
}
.ticket__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
@media screen and (max-width: 1024px) {
  .ticket__image-wrap {
    max-height: 100%;
    aspect-ratio: 6 / 9;
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .ticket.contents {
    align-items: center;
    padding-bottom: 50px;
  }
  .ticket__image-wrap {
    border-radius: 30px 0 0 30px;
  }
}
@media screen and (max-width: 680px) {
  #ticket .container {
    padding-left: 0;
  }
  .ticket.contents {
    flex-direction: column;
    gap: 0;
    padding-bottom: 0;
  }
  .ticket__text-wrap {
    width: 100%;
    text-align: left;
    padding-right: 16px;
  }
  .ticket__heading {
    font-size: 50px;
  }
  .ticket__text {
    text-align: left;
  }
  .ticket__image-wrap {
    aspect-ratio: 2 / 1;
    width: 100%;
    border-radius: 30px 0 0 0;
  }
  .ticket__button-wrap {
    margin: 76px auto;
  }
  .ticket__button-wrap .c-button {
    padding: 18px 20px;
  }
  .ticket__button-wrap .c-button .c-button__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  .ticket__button-wrap {
    width: 90%;
    max-width: 340px;
  }
  .ticket__button-wrap .c-button.c-button--white .c-button__text {
    display: block;
    text-align: center;
  }
  .ticket__button-wrap::before {
    left: -20px;
    width: 25px;
  }
  .ticket__button-wrap::after {
    right: -20px;
    width: 20px;
  }
}
@media screen and (max-width: 530px) {
  .ticket__heading {
    font-size: 8vw;
    background-position: center 8vw;
    padding: 0;
  }
}


/* Highlights */
#highlights {
  background-image: url("../img/top/en/item/item_mt-illust.png");
  background-size: 230px 80px;
  background-position: top 90px right calc((100vw - var(--container-width)) / 2);
  background-repeat: no-repeat;
}
#highlights .highlights.contents {
  padding: 0;
  margin-top: 50px;
}
#highlights .slider-container {
  width: 100%;
  height: 778px;
  overflow: hidden;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0 115px;
  z-index: 1;
}
#highlights .slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  padding: 0;
  bottom: 110px;
}
#highlights .slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  border-radius: 20px;
}
#highlights .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
#highlights .slider-text-wrap,
#highlights .slider-text-buttont-wrap {
  position: relative;
  width: 90%;
  max-width: 1290px;
  margin: 0 auto;
  z-index: -1;
}
#highlights .slider-text-buttont-wrap {
  z-index: 5;
}
#highlights .slider-text-wrap::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 1290px;
  height: 240px;
  position: absolute;
  top: 35px;
  left: 0;
  background-color: #f4f4f4;
  z-index: -1;
}
#highlights .slider-text {
  margin: 0;
  font-size: 1.4rem;
  font-weight: bold;
}
#highlights .slider-text span {
  display: block;
  white-space: nowrap;
  font-size: 48px;
  line-height: 1.8;
  text-align: left;
  font-weight: 900;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#highlights .slider-text span:nth-child(1) {
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}
#highlights .slider-text span:nth-child(2) {
  -webkit-transition: opacity 0.8s ease-out 0.4s, -webkit-transform 0.8s ease-out 0.4s;
  transition: opacity 0.8s ease-out 0.4s, -webkit-transform 0.8s ease-out 0.4s;
  transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
  transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s, -webkit-transform 0.8s ease-out 0.4s;
}
#highlights .slider-text.is-fade span {
  opacity: 0;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: opacity 0.2s ease-in 0s, -webkit-transform 0.2s ease-in 0s;
  transition: opacity 0.2s ease-in 0s, -webkit-transform 0.2s ease-in 0s;
  transition: opacity 0.2s ease-in 0s, transform 0.2s ease-in 0s;
  transition: opacity 0.2s ease-in 0s, transform 0.2s ease-in 0s, -webkit-transform 0.2s ease-in 0s;
}
#highlights .slider-text-button {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-top: 20px;
  margin-left: 15px;
}

  /* ========================================================
    A. PC・タブレット用（501px以上）
  ======================================================== */

@media (min-width: 501px) {
  #highlights .slider-container {
    --base-slide: 21.65vw;
    --base-gap: 2vw;
    padding-bottom: 55%;
  }
  #highlights .slide {
    width: var(--base-slide);
    aspect-ratio: 413/641;
    -webkit-transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1), -webkit-box-shadow 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1), -webkit-box-shadow 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 1.2s cubic-bezier(0.25, 1, 0.5, 1), -webkit-box-shadow 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  }
}
@media (min-width: 501px) and (max-width: 999px) {
  #highlights .slider-track {
    gap: var(--base-gap);
    -webkit-transform: translateX(calc(-1 * (var(--base-slide) * 3 + var(--base-gap) * 3) - var(--base-slide) * 0.75));
            transform: translateX(calc(-1 * (var(--base-slide) * 3 + var(--base-gap) * 3) - var(--base-slide) * 0.75));
  }
  #highlights .slider-track.is-moving {
    -webkit-transition: -webkit-transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transition: -webkit-transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transform: translateX(calc(-1 * (var(--base-slide) * 3 + var(--base-gap) * 3) - (var(--base-slide) * 0.75 + var(--base-slide) + var(--base-gap))));
            transform: translateX(calc(-1 * (var(--base-slide) * 3 + var(--base-gap) * 3) - (var(--base-slide) * 0.75 + var(--base-slide) + var(--base-gap))));
  }
  #highlights .slide:nth-child(7) {
    width: calc(var(--base-slide) * 1.5);
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  }
  #highlights .slider-track.is-moving .slide:nth-child(8) {
    width: calc(var(--base-slide) * 1.5);
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  }
  #highlights .slider-track.is-moving .slide:nth-child(7) {
    width: var(--base-slide);
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0);
            box-shadow: 0 0 30px rgba(0, 0, 0, 0);
  }
}
@media (min-width: 501px) and (min-width: 1000px) {
  #highlights .slider-container {
    --base-slide: 216.5px;
    --base-gap: 20px;
    padding-bottom: 0;
  }
  #highlights .slider-track {
    left: 50%;
    gap: var(--base-gap);
    -webkit-transform: translateX(calc(-500px + (var(--base-slide) * 3 + var(--base-gap) * 3) * -1 + var(--base-slide) * 0.75 * -1));
            transform: translateX(calc(-500px + (var(--base-slide) * 3 + var(--base-gap) * 3) * -1 + var(--base-slide) * 0.75 * -1));
  }
  #highlights .slider-track.is-moving {
    -webkit-transition: -webkit-transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transition: -webkit-transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transform: translateX(calc(-500px + (var(--base-slide) * 3 + var(--base-gap) * 3) * -1 + (var(--base-slide) * 0.75 + var(--base-slide) + var(--base-gap)) * -1));
            transform: translateX(calc(-500px + (var(--base-slide) * 3 + var(--base-gap) * 3) * -1 + (var(--base-slide) * 0.75 + var(--base-slide) + var(--base-gap)) * -1));
  }
  #highlights .slide:nth-child(7) {
    width: calc(var(--base-slide) * 1.5);
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  }
  #highlights .slider-track.is-moving .slide:nth-child(8) {
    width: calc(var(--base-slide) * 1.5);
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  }
  #highlights .slider-track.is-moving .slide:nth-child(7) {
    width: var(--base-slide);
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0);
            box-shadow: 0 0 30px rgba(0, 0, 0, 0);
  }
}

  /* ========================================================
    B. スマホ用（500px以下）
  ======================================================== */

@media (max-width: 500px) {
  #highlights .slider-container {
    --base-slide: 30vw;
    --base-gap: 3vw;
    height: 0;
    padding-bottom: 85%;
  }
  #highlights .slider-track {
    gap: var(--base-gap);
    -webkit-transform: translateX(calc(-1 * (var(--base-slide) * 3 + var(--base-gap) * 3) - var(--base-slide) * 0.55));
            transform: translateX(calc(-1 * (var(--base-slide) * 3 + var(--base-gap) * 3) - var(--base-slide) * 0.55));
  }
  #highlights .slider-track.is-moving {
    -webkit-transition: -webkit-transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transition: -webkit-transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transform: translateX(calc(-1 * (var(--base-slide) * 3 + var(--base-gap) * 3) - (var(--base-slide) * 0.55 + var(--base-slide) + var(--base-gap))));
            transform: translateX(calc(-1 * (var(--base-slide) * 3 + var(--base-gap) * 3) - (var(--base-slide) * 0.55 + var(--base-slide) + var(--base-gap))));
  }
  #highlights .slide {
    width: var(--base-slide);
    aspect-ratio: 413/641;
    -webkit-transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1), -webkit-box-shadow 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1), -webkit-box-shadow 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 1.2s cubic-bezier(0.25, 1, 0.5, 1), -webkit-box-shadow 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  }
  #highlights .slide:nth-child(6) {
    width: calc(var(--base-slide) * 1.4);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  }
  #highlights .slider-track.is-moving .slide:nth-child(7) {
    width: calc(var(--base-slide) * 1.4);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  }
  #highlights .slider-track.is-moving .slide:nth-child(6) {
    width: var(--base-slide);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media screen and (max-width: 999px) {
  #highlights {
    background-size: 150px 65px;
    background-position: top 30px right 10px;
  }
  #highlights .slider-container {
    height: 87vw;
  }
  #highlights .slider-text span {
    font-size: 6vw;
  }
}
@media screen and (max-width: 750px) {
  #highlights .slider-container {
    height: 90vw;
  }
}
@media screen and (max-width: 600px) {
  #highlights .slider-container {
    height: 94vw;
  }
}
@media screen and (max-width: 500px) {
  #highlights .slider-container {
    height: 110vw;
  }
}
@media screen and (max-width: 460px) {
  #highlights .slider-container {
    height: 130vw;
  }
  #highlights .slider-text-button {
    margin-left: 5px;
  }
  #highlights .slider-text-button .c-button {
    padding: 8px 12px;
  }
  #highlights .slider-text-button .c-button .c-button__text {
    gap: 5px;
  }
}


/* Overview */
.overview {
  display: block;
  width: 100vw;
  height: 100vh;
  max-height: 960px;
}

#overview .slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #ffffff;
}
#overview .slider {
  width: 100%;
  height: 100%;
}
#overview .slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-in-out;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}
#overview .slide-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: inset -5px 5px 30px rgba(0, 0, 0, 0.15);
          box-shadow: inset -5px 5px 30px rgba(0, 0, 0, 0.15);
}
#overview .slide-item.active {
  opacity: 1;
  pointer-events: auto;
}
#overview .slide-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#overview .slide-text {
  width: calc(100vw - 160px);
  max-width: 550px;
  position: absolute;
  bottom: 45px;
  left: 80px;
  background: #ffffff;
  color: #333333;
  padding: 20px 24px 20px 20px;
  border-radius: 30px;
  z-index: 10;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.25));
}
#overview .slide-text__inner {
  border-left: 5px solid #113d3d;
  text-align: left;
  padding-left: 20px;
}
#overview .slide-text h3 {
  margin: 0 0 5px 0;
  font-size: 18px;
}
#overview .slide-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
#overview .arrow-group {
  position: absolute;
  bottom: -3px;
  right: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
  mix-blend-mode: lighten;
}
#overview .arrow {
  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: 82px;
  height: 60px;
  background: rgba(225, 225, 225, 0.8);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  cursor: pointer;
}
#overview .arrow::after {
  content: "";
  display: block;
  width: 18px;
  height: 30px;
  background-color: #113d3d;
  -webkit-mask-image: url("../img/top/en/icon/icon_simple-arrow.svg");
          mask-image: url("../img/top/en/icon/icon_simple-arrow.svg");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
#overview .arrow.prev {
  border-radius: 20px 0 0 0;
}
#overview .arrow.prev::after {
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
#overview .arrow.next {
  border-radius: 0 20px 0 0;
}
#overview .arrow:hover {
  background: #113d3d;
}
#overview .arrow:hover::after {
  background-color: #ffffff;
}
@media screen and (max-width: 1120px) {
  #overview .slide-text {
    left: 15px;
    bottom: 15px;
  }
  #overview .arrow-group {
    right: 15px;
  }
}
@media screen and (max-width: 760px) {
  #overview .slide-text {
    width: 70%;
    max-width: 510px;
    padding: 15px 20px 15px 20px;
  }
  #overview .slide-text__inner {
    padding-left: 15px;
  }
}
@media screen and (max-width: 660px) {
  #overview .arrow-group {
    right: -3px;
    bottom: 15px;
    flex-direction: column;
  }
  #overview .arrow {
    width: 50px;
    height: 50px;
  }
  #overview .arrow.prev,
  #overview .arrow.next {
    border-radius: 20px 0 0 20px;
  }
  #overview .arrow::after {
    height: 20px;
  }
  #overview .slide-text {
    width: 90%;
    max-width: calc(90% - 40px);
  }
}
@media screen and (max-width: 550px) {
  .overview {
    height: 60vh;
  }
  #overview .slide-text {
    border-radius: 20px;
  }
  #overview .slide-text .slide-text__inner p {
    display: none;
  }
}


/* Sample Itinerary */
.sample-box {
  --main-row-gap: clamp(10px, 1.5vw, 28px);
  --sub-row-gap: clamp(10px, 1.5vw, 25px);
  --sub-col-gap: clamp(10px, 1.5vw, 20px);
}
.sample-box:nth-child(even) {
  background-color: #ffffff;
}
.sample-box:nth-child(even) .sample-box__heading {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#f4f4f4));
  background-image: linear-gradient(#f4f4f4, #f4f4f4);
}
.sample-box:nth-child(odd) {
  background-color: #f4f4f4;
}
.sample-box:nth-child(odd) .sample-box__heading {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff));
  background-image: linear-gradient(#ffffff, #ffffff);
}
.sample-box {
  position: relative;
  padding: 50px calc((100vw - var(--container-width)) / 2) 80px;
}
.sample-box__heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 60px 10px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: 100% 20px;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.sample-box__heading-number {
  display: block;
  font-family: "Coiny", system-ui;
  font-size: clamp(20px, 2vw, 50px);
  color: #113d3d;
  line-height: 1;
  text-align: center;
}
.sample-box__heading-text {
  font-size: clamp(20px, 2vw, 32px);
  color: #113d3d;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
  -webkit-filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  margin: 0;
}
.sample-box__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--main-row-gap);
  margin-top: 40px;
}
.sample-box__image-top {
  width: calc((100% - var(--main-row-gap)) / 2);
}
.sample-box__image-top .sample-box__image {
  border-radius: 60px 0 0 60px;
  overflow: hidden;
}
.sample-box__image-bottom {
  width: calc((100% - var(--main-row-gap)) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--sub-row-gap) var(--sub-col-gap);
}
.sample-box__image-bottom .sample-box__image {
  width: calc((100% - var(--sub-row-gap)) / 2);
  height: calc((100% - var(--sub-col-gap)) / 2);
  aspect-ratio: 315 / 303;
}
.sample-box__image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.sample-box__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: inset -5px 5px 30px rgba(0, 0, 0, 0.15);
          box-shadow: inset -5px 5px 30px rgba(0, 0, 0, 0.15);
}
.sample-box__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sample-box__button-wrap {
  width: 40vw;
  position: absolute;
  right: -10px;
  bottom: 90px;
}
.sample-box__button {
  position: relative;
  width: 100%;
  display: block;
  border: 4px solid #113d3d;
  background-color: #ffffff;
  border-radius: 30px 0 0 30px;
  padding: 14px 60px;
  z-index: 0;
}
.sample-box__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #113d3d;
  border-radius: 30px 0 0 30px;
  z-index: -1;
  -webkit-transition: width 0.3s ease;
  opacity: 0;
  transition: width 0.3s ease, opacity 0.3s ease;
}
.sample-box__button:hover {
  opacity: 1;
}
.sample-box__button:hover::before {
  width: 100%;
  border: 2px solid #ffffff;
  opacity: 1;
}
.sample-box__button:hover .sample-box__button-text {
  color: #ffffff;
}
.sample-box__button:hover .sample-box__button-text::after {
  background-color: #ffffff;
}
.sample-box__button-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  z-index: 1;
}
.sample-box__button-text::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: #113d3d;
  -webkit-mask-image: url("../img/top/en/icon/icon_arrow.svg");
          mask-image: url("../img/top/en/icon/icon_arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  margin-top: 3px;
}
@media screen and (max-width: 1024px) {
  .sample-box__button {
    padding: 10px 30px;
  }
  .sample-box__button-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .sample-box {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .sample-box__images {
    margin-top: 20px;
  }
  .sample-box__image-top .sample-box__image {
    border-radius: 30px 0 0 30px;
  }
  .sample-box__button-wrap {
    bottom: 30px;
  }
}
@media screen and (max-width: 540px) {
  .sample-box {
    --main-row-gap: 5px;
    --sub-row-gap: 5px;
    --sub-col-gap: 5px;
    padding: 30px 10px;
  }
  .sample-box__button-wrap {
    bottom: 15px;
  }
  .sample-box__button {
    border-width: 2px;
    padding: 6px 20px;
  }
  .sample-box__button-text {
    gap: 10px;
    font-size: 14px;
  }
  .sample-box__button-text::after {
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 425px) {
  .sample-box__images {
    flex-direction: column;
  }
  .sample-box__image-top {
    width: 100%;
  }
  .sample-box__image-bottom {
    width: 100%;
  }
  .sample-box__image-top .sample-box__image {
    border-radius: 30px 30px 0 0;
  }
  .sample-box__image-bottom .sample-box__image:nth-child(3) {
    border-radius: 0 0 0 30px;
    overflow: hidden;
  }
}


/* Season */
.season.contents {
  width: 100%;
  max-width: 970px;
  padding: 85px 0 75px;
  margin: 0 auto;
}
.season__heading {
  font-size: 32px;
  color: #113d3d;
  background-image: url("../img/top/en/item/item_mt-illust02.png");
  background-size: 232px 85px;
  background-position: top right;
  background-repeat: no-repeat;
  margin: 0;
}
.season__text {
  font-size: 20px;
  background-color: #f4f4f4;
  border-radius: 30px;
  padding: 20px 30px;
  margin: 20px 0 0 0;
}
.season__buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 25px;
  margin-top: 25px;
}
.season__button {
  width: fit-content;
}

@media screen and (max-width: 680px) {
  .season.contents {
    padding: 60px 0 90px;
  }
  .season__heading {
    font-size: clamp(16px, 6vw, 32px);
    background-size: 190px 65px;
    padding-top: 80px;
  }
  .season__text {
    font-size: 16px;
    border-radius: 10px;
    padding: 10px 15px;
  }
}



/* Fare */
#fare {
  background-color: #113d3d;
  padding-bottom: 200px;
}
#fare .c-h2-header {
  border-bottom-color: #ffffff;
}
#fare .c-h2-header__text {
  color: #ffffff;
}
#fare .container {
  margin-top: 40px;
}

.fare.contents {
  border-radius: 65px;
  padding: 65px clamp(25px, 5vw, 100px) 110px;
}

.fare-introduction {
  width: 100%;
  max-width: 755px;
  margin: 0 auto 25px;
}
.fare-introduction__image {
  width: 100%;
}
.fare-introduction__text {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.fare-block {
  background-color: #f4f4f4;
  border-radius: 30px;
}
.fare-block__inner {
  padding: 35px 45px;
}
.fare-block__main {
  margin-top: 35px;
}

.fare-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 43px;
}
.fare-heading__icon {
  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: 77px;
  height: 77px;
  border-radius: 10px;
  background-color: #113d3d;
}
.fare-heading__icon::after {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.fare-heading__icon--bus::after {
  background-image: url("../img/top/en/icon/icon_bus.svg");
}
.fare-heading__icon--ropeway::after {
  background-image: url("../img/top/en/icon/icon_ropeway.svg");
}
.fare-heading__main {
  width: calc(100% - 110px);
}
.fare-heading__text {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}
.fare-heading__route {
  font-size: 24px;
  font-weight: 600;
  text-align: left;
  line-height: 1.2;
  margin: 0;
}

.fare-main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px clamp(15px, 4vw, 50px);
}
.fare-main::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 10px;
  height: calc(100% - 80px);
  background-color: #f4f4f4;
}
.fare-main__item {
  width: calc((100% - 10px) / 2);
  padding-bottom: 20px;
}
.fare-main__item:first-child {
  padding-right: clamp(15px, 4vw, 50px);
}
.fare-main__item:last-child {
  padding-left: clamp(15px, 4vw, 50px);
}
.fare-main__heading {
  background-color: #f4f4f4;
  font-size: 24px;
  color: #113d3d;
  text-align: center;
  border-radius: 20px;
  padding: 12px;
  margin: 0;
}
.fare-main__contents {
  margin-top: 30px;
}
.fare-main__core {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
.fare-main__core-sub {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
  color: #ffffff;
  background-color: #113d3d;
  border-radius: 10px;
  padding: 10px 15px;
  margin-top: 8px;
}
.fare-main__core-price span {
  display: block;
  color: #113d3d;
  font-weight: 600;
  text-align: right;
}
.fare-main__core-price span:first-child {
  font-size: 64px;
}
.fare-main__core-price span:last-child {
  font-size: 24px;
  margin-top: 10px;
}
.fare-main__detail {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: right;
  text-decoration: underline;
  margin-top: 15px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  display: block;
  width: fit-content;
  color: #113D38;
  margin-left: auto;

  background: none;
  border: none;
  padding: 0;
  font: inherit;
}
.fare-main__detail span {
  display: inline-block;
  text-decoration: underline;
}
.fare-main__detail::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  background-image: url("../img/top/en/icon/icon_note.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 0px 5px -3px 0;
}
.fare-main__detail:hover {
  opacity: 0.5;
  text-decoration: underline;
}
.fare-main__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 16px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-image: url("../img/top/en/icon/icon_attention.svg");
  background-repeat: no-repeat;
  background-size: 50px 50px;
  background-position: top 5px left;
  padding-left: 65px;
  margin-top: 30px;
}
.fare-main__note {
  width: 100%;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
}
.fare-main__button-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.fare-main__button-wrap .c-button__text {
  font-size: 24px;
}

.fare-plus {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  margin: 30px auto;
}
.fare-plus::before, .fare-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #113d3d;
}
.fare-plus::before {
  width: 9px;
  height: 100%;
}
.fare-plus::after {
  width: 100%;
  height: 9px;
}
@media screen and (max-width: 1200px) {
  .fare-main {
    width: 100%;
    max-width: calc(100% - 30px);
    flex-direction: column;
  }
  .fare-main::before {
    content: none;
  }
  .fare-main__item {
    width: 100%;
    padding: 0;
  }
  .fare-main__item:first-child {
    padding: 0 0 40px 0;
  }
  .fare-main__item:last-child {
    padding: 0;
  }
  .fare-main__core {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .fare.contents {
    border-radius: 40px;
    padding-bottom: 65px;
  }
  .fare-block__inner {
    padding: 35px 20px;
  }
  .fare-block__main {
    margin-top: 20px;
  }
  .fare-heading {
    gap: 15px;
  }
  .fare-heading__icon {
    width: 50px;
    height: 50px;
  }
  .fare-heading__icon::after {
    width: 32px;
    height: 32px;
  }
  .fare-heading__main {
    width: calc(100% - 65px);
  }
  .fare-heading__text {
    font-size: 4vw;
  }
  .fare-heading__route {
    font-size: clamp(13px, 2.4vw, 24px);
  }
  .fare-main {
    max-width: 100%;
    padding: 50px clamp(15px, 4vw, 50px);
  }
  .fare-main__item:first-child {
    padding: 0 0 50px 0;
  }
  .fare-main__heading {
    font-size: 20px;
    padding: 0;
  }
  .fare-main__contents {
    margin-top: 20px;
  }
  .fare-main__core-sub {
    font-size: 16px;
  }
  .fare-main__core-price span:first-child {
    font-size: 50px;
  }
  .fare-main__core-price span:last-child {
    font-size: 20px;
  }
  .fare-main__detail {
    font-size: 16px;
  }
  .fare-main__detail::before {
    width: 16px;
    height: 16px;
    margin-bottom: -2px;
  }
  .fare-main__note {
    font-size: 16px;
  }
  .fare-main__button-wrap .c-button__text {
    font-size: 16px;
  }

  .fare-plus {
    width: 25px;
    height: 25px;
    margin: 20px auto;
  }
  .fare-plus::before {
    width: 6px;
  }
  .fare-plus::after {
    height: 6px;
  }
}
@media screen and (max-width: 540px) {
  .fare.contents {
    padding-bottom: 25px;
  }
  .fare-introduction__text {
    line-height: 1.5;
  }
  .fare-main__core {
    flex-direction: column;
    gap: 5px;
  }
  .fare-main__core-sub {
    padding: 0 15px;
    margin: 0 auto;
  }
  .fare-main__core-price {
    margin: 0 auto;
  }
  .fare-main__core-price span {
    text-align: center;
  }
}
@media screen and (max-width: 425px) {
  .fare.contents {
    padding: 50px 10px 10px;
  }
  .fare-heading {
    flex-direction: column;
    gap: 5px;
  }
  .fare-heading__text {
    font-size: 20px;
  }
  .fare-heading__main {
    width: 100%;
  }
  .fare-block__inner {
    padding: 35px 10px;
  }
  .fare-main {
    padding: 20px 10px 40px;
  }
  .fare-main__item:first-child {
    padding-bottom: 30px;
  }
  .fare-main__core-price span:first-child {
    font-size: 40px;
  }
  .fare-main__core-price span:last-child {
    font-size: 16px;
  }
  .fare-main__detail {
    font-size: 12px;
  }
  .fare-main__detail::before {
    width: 14px;
    height: 14px;
    margin-bottom: -2px;
  }
  .fare-main__bottom {
    padding-left: 35px;
    background-size: 30px 30px;
    gap: 10px 16px;
  }
  .fare-main__note {
    font-size: 14px;
  }
}


.bg-mountain {
  display: block;
  width: 110vw;
  height: auto;
  aspect-ratio: 1540 / 175;
  background-color: #113d3d;
  margin-bottom: -30px;
}
.bg-mountain__img {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../img/top/en/item/item_mt-bg.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: -5vw;
}


/* # =================================================================
# Footer
# ================================================================= */
footer .row.justify-content-between:has(.menu-map) {
  display: block;
}
footer .row.justify-content-between:has(.menu-map) .footer__content--info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 10px;
}
footer .row.justify-content-between:has(.menu-map) .footer__content--info .logo {
  max-width: 100%;
  width: 100%;
}
footer .row.justify-content-between:has(.menu-map) .footer__content--info .logo img {
  max-width: 200px;
  height: auto;
}
footer .row.justify-content-between:has(.menu-map) .footer__content--info .adress {
  margin: 0;
}
footer .row.justify-content-between:has(.menu-map) .footer__content--info .menu-map {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 420 / 314;
  margin-top: -150px;
}

footer .row.justify-content-between:has(.menu-map) .col-lg-auto.pc{
  margin-top: 80px;
}

@media screen and (max-width: 1199px) {
  footer .row.justify-content-between:has(.menu-map) .footer__content--info .menu-map {
    margin-top: 0;
  }
  footer ul#menu-footer-menu3-en.menu > li a {
    display: inline-block;
  }
}