@charset "UTF-8";
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: メディアクエリー*/
/* 切り替えポイントの設定 */
/* 処理 */
:root {
  --color-primary: #00b9b9;
  --color-white: #fff;
  --color-black: #000;
  --color-green: #3d5650;
  --color-gray: #666;
  --color-light-gray: #6e7875;
  --bg: #e4efec;
  --color-footer-bg: #e9e9e9;
  --color-nav-bg: rgba(255, 255, 255, 0.85);
  --color-nav-current: #e0faf4;
  --shadow-default: 0 2px 8px rgba(0, 0, 0, 0.13);
  --shadow-large: 0 4px 24px rgba(0, 0, 0, 0.13);
  --font-en: "Bricolage Grotesque", sans-serif;
  --font-ja: "Zen Kaku Gothic New", "Yu Gothic", "Meiryo", sans-serif;
  --max-width: 800px;
  --content-width: 1440px;
  --transformrate: 0, 0, 0.56, 0.99;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: フォントサイズ */
html {
  font-size: 0.6944444444vw;
}
@media screen and (min-width: 1440px) {
  html {
    font-size: 10px;
  }
}
@media only screen and (max-width: 760px) {
  html {
    font-size: 2.6666666667vw;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: body*/
body {
  background: var(--bg);
  color: var(--color-black);
  font-family: var(--font-ja);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 1279px) {
  body {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 960px) {
  body {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 760px) {
  body {
    font-size: 1.3rem;
  }
}
body.fallwinter {
  --color-primary: #e9af44;
  --bg: #f5f2ed;
  --bg-secondary: #f5f2ed;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

p,
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

svg {
  fill: none;
}

.en,
:lang(en),
.number {
  font-family: var(--font-en);
}

.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 6rem;
}
@media only screen and (max-width: 960px) {
  .container {
    padding: 0 4rem;
  }
}
@media only screen and (max-width: 760px) {
  .container {
    padding: 0 2rem;
  }
}

.icon-blank {
  margin: auto;
  width: 1.6rem;
  aspect-ratio: 1/1;
  stroke: var(--color-black);
  fill: none;
  -webkit-transition: stroke 0.5s;
  transition: stroke 0.5s;
}

.dummy-img {
  width: 100%;
  max-width: 400px;
  height: 200px;
  background: #ccc;
  display: block;
  margin: 8px 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.--hover-label {
  text-decoration: none;
  color: var(--color-black);
}
.--hover-label .label {
  position: relative;
}
.--hover-label .label::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-black);
  position: absolute;
  bottom: -2px;
  left: 0;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}
.--hover-label:hover .label::after {
  width: 100%;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: header */
.header .logo {
  width: 18.3rem;
  display: block;
  position: fixed;
  left: 3rem;
  top: 2.7rem;
  z-index: 1000;
  border-radius: 0px 0px 0px 10px;
}
@media only screen and (max-width: 760px) {
  .header .logo {
    width: 14.8rem;
    left: 2rem;
    top: 3.9rem;
  }
}
.header .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: multiply;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: nav-contact */
.nav-contact {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2rem;
  padding: 2rem;
}
@media only screen and (max-width: 760px) {
  .nav-contact {
    padding: 0;
    display: block;
    width: 100%;
  }
}
.nav-contact > .label {
  color: var(--color-green);
  line-height: normal;
}
@media only screen and (max-width: 760px) {
  .nav-contact > .label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.8rem 0;
    text-align: center;
    background: var(--color-white);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.2rem;
    font-size: 1.2rem;
    color: var(--color-primary);
    line-height: 1;
  }
}
.nav-contact .small {
  font-size: 0.7333333333em;
}
@media only screen and (max-width: 760px) {
  .nav-contact .small {
    font-size: 0.8rem;
    color: var(--color-black);
  }
}
.nav-contact .contact-link {
  border-radius: 60px;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 14rem;
  height: 6rem;
}
@media only screen and (max-width: 760px) {
  .nav-contact .contact-link {
    position: absolute;
    top: 3.7rem;
    right: 1.8rem;
    width: 8rem;
    height: 4rem;
    z-index: 1000;
  }
}
.nav-contact .contact-link .label {
  color: var(--color-white);
  position: relative;
}
@media only screen and (max-width: 760px) {
  .nav-contact .contact-link .label {
    font-size: 1.3rem;
  }
}
.nav-contact .contact-link .label::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}
.nav-contact .contact-link:hover .label::after {
  width: 100%;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: accommodation */
.accommodation-link {
  position: fixed;
  left: 2rem;
  bottom: 2rem;
  z-index: 10;
  text-decoration: none;
  padding: 1.5rem;
  background: #fff;
  color: var(--color-black);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  border: 1px solid var(--color-black);
  border-width: 1px 0;
}
@media only screen and (max-width: 760px) {
  .accommodation-link {
    left: 0.5rem;
    bottom: 0.5rem;
    padding: 1rem;
  }
}
.accommodation-link .en {
  color: var(--color-primary);
  font-size: 0.9rem;
  letter-spacing: 0.018em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media only screen and (max-width: 760px) {
  .accommodation-link .en {
    font-size: 0.7rem;
    letter-spacing: 0.014em;
  }
}
.accommodation-link .link-text {
  font-family: "Zen Kaku Gothic Antique";
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 760px) {
  .accommodation-link .link-text {
    font-size: 1.4rem;
    letter-spacing: 0.028em;
  }
}
.accommodation-link .link-text .highlight {
  color: var(--color-primary);
  font-size: 2.4rem;
  letter-spacing: 0.048em;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media only screen and (max-width: 760px) {
  .accommodation-link .link-text .highlight {
    font-size: 1.7rem;
    letter-spacing: 0.034em;
  }
}
.accommodation-link svg {
  margin-bottom: 0.7rem;
  width: 1.8rem;
  aspect-ratio: 1/1;
  stroke: var(--color-black);
  -webkit-transition: stroke 0.5s;
  transition: stroke 0.5s;
}
@media only screen and (max-width: 760px) {
  .accommodation-link svg {
    width: 1.4rem;
  }
}
.accommodation-link:hover svg {
  stroke: var(--color-primary);
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: footer */
.footer {
  background: var(--color-footer-bg);
  padding-block: 6rem 8rem;
  position: relative;
  z-index: 11;
}
@media only screen and (max-width: 760px) {
  .footer {
    padding-block: 3rem;
  }
}
.footer .footer-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 auto;
  padding: 0 6rem;
}
@media only screen and (max-width: 760px) {
  .footer .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 2rem;
    gap: 5rem;
  }
}
.footer .footer-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media only screen and (max-width: 760px) {
  .footer .footer-left {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer .footer-left .footer-logo {
  width: 22.4rem;
  height: auto;
  mix-blend-mode: multiply;
}
@media only screen and (max-width: 760px) {
  .footer .footer-left .footer-logo {
    width: 18.4rem;
  }
}
.footer .footer-left .footer-address {
  font-size: 1.3rem;
  color: var(--color-light-gray);
  letter-spacing: 0.026em;
}
@media only screen and (max-width: 760px) {
  .footer .footer-left .footer-address {
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-align: center;
  }
}
.footer .footer-sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 6rem;
}
@media only screen and (max-width: 760px) {
  .footer .footer-sns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.footer .footer-sns a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  color: var(--color-black);
  text-decoration: none;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}
.footer .footer-sns a .en {
  position: relative;
}
.footer .footer-sns a .en::after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--color-black);
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}
.footer .footer-sns a::after {
  content: "";
  display: block;
  width: 1.1rem;
  aspect-ratio: 1/1;
  background-image: url("../images/icon_blank.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: -webkit-filter 0.5s;
  transition: -webkit-filter 0.5s;
  transition: filter 0.5s;
  transition: filter 0.5s, -webkit-filter 0.5s;
}
.footer .footer-sns a:hover .en::after {
  width: 100%;
}
.footer .footer-right {
  max-width: 720px;
  width: 100%;
  margin: auto 0;
}
.footer .footer-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 2rem;
}
@media only screen and (max-width: 760px) {
  .footer .footer-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
@media only screen and (max-width: 760px) {
  .footer .footer-nav li {
    border-bottom: 1px solid var(--color-white);
  }
  .footer .footer-nav li:first-child {
    border-top: 1px solid var(--color-white);
  }
}
.footer .footer-nav a {
  color: var(--Style, #000);
  font-family: "Zen Kaku Gothic New";
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.026em;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 760px) {
  .footer .footer-nav a {
    padding: 1rem 0;
  }
}
.footer .footer-nav a:hover .en::after {
  width: 100%;
}
.footer .footer-nav .en {
  font-size: 1rem;
  letter-spacing: 0.02em;
  position: relative;
}
.footer .footer-nav .en::after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--color-black);
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}
.footer .footer-bottom {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 9rem;
}
@media only screen and (max-width: 960px) {
  .footer .footer-bottom {
    margin-top: 6rem;
  }
}
@media only screen and (max-width: 760px) {
  .footer .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    gap: 3rem;
  }
}
.footer .footer-copyright {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.26px;
}
@media only screen and (max-width: 760px) {
  .footer .footer-copyright {
    font-size: 1rem;
    letter-spacing: 0.02em;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: navi */
.nav {
  position: fixed;
  top: 11rem;
  left: 3.6rem;
  z-index: 1000;
  mix-blend-mode: difference;
  pointer-events: none;
}
@media only screen and (max-width: 760px) {
  .nav {
    display: none;
  }
}
.nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.nav a {
  pointer-events: auto;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 3px;
}
.nav a .en {
  font-size: 1rem;
  letter-spacing: 0.02em;
  position: relative;
}
.nav a .en::after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #fff;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}
.nav a:hover .en::after, .nav a.current .en::after {
  width: 100%;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: svg */
svg {
  fill: none;
}

.icon-vector01 {
  width: 13.6rem;
  aspect-ratio: 136/66;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.fallwinter .icon-vector01 {
  width: 30.5rem;
  aspect-ratio: 305/269;
}
@media only screen and (max-width: 760px) {
  .fallwinter .icon-vector01 {
    width: 20rem;
  }
}

.icon-vector02 {
  width: 37rem;
  aspect-ratio: 370/93;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 760px) {
  .icon-vector02 {
    width: 17rem;
  }
}

.icon-vector03 {
  width: 45.4rem;
  aspect-ratio: 454/216;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 760px) {
  .icon-vector03 {
    width: 19rem;
  }
}
.fallwinter .icon-vector03 {
  width: 14.5rem;
  aspect-ratio: 145/126;
}
@media only screen and (max-width: 760px) {
  .fallwinter .icon-vector03 {
    width: 7rem;
  }
}

.icon-vector04 {
  width: 19.6rem;
  aspect-ratio: 196/95;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 760px) {
  .icon-vector04 {
    width: 7rem;
  }
}
.fallwinter .icon-vector04 {
  width: 36.7rem;
  aspect-ratio: 367/311;
}
@media only screen and (max-width: 760px) {
  .fallwinter .icon-vector04 {
    width: 19rem;
  }
}

.icon-vector05 {
  width: 46rem;
  aspect-ratio: 46/22;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: hero */
.icon-vector01 {
  stroke: var(--color-primary);
}

.icon-vector02 {
  stroke: var(--color-primary);
}

.hero {
  display: grid;
  grid-template-columns: 52.4305555556% auto;
  padding-left: 10rem;
  padding-top: 5rem;
  padding-bottom: 3.9rem;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-bottom: 3.5rem;
    padding-top: 10rem;
    min-height: 100dvh;
  }
}
.hero .hero-vector01 {
  position: absolute;
  bottom: 0rem;
  right: 6.7rem;
  z-index: 1;
  -webkit-transform: rotate(133deg);
          transform: rotate(133deg);
  width: 17rem;
}
@media only screen and (max-width: 760px) {
  .hero .hero-vector01 {
    right: -1rem;
    bottom: 35rem;
    width: 9rem;
  }
}
.hero .hero-vector01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero .hero-vector02 {
  position: absolute;
  top: 17rem;
  right: -2.2rem;
  z-index: 2;
}
@media only screen and (max-width: 760px) {
  .hero .hero-vector02 {
    top: 10.3rem;
    right: 15.6rem;
  }
  .hero .hero-vector02 svg {
    width: 7rem;
  }
}
.hero .hero-vector03 {
  position: absolute;
  right: -5.9rem;
  bottom: 5.2rem;
}
@media only screen and (max-width: 760px) {
  .hero .hero-vector03 {
    right: 1rem;
    bottom: 7rem;
  }
}
.hero .hero-vector04 {
  position: absolute;
  top: 3.4rem;
  left: 53.5rem;
}
@media only screen and (max-width: 760px) {
  .hero .hero-vector04 {
    left: -3rem;
    top: 19rem;
  }
}
.hero .hero-main {
  width: 100%;
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 760px) {
  .hero .hero-main {
    position: static;
  }
}
.hero .hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 755/786;
  overflow: hidden;
  -webkit-mask-image: url("../images/mask.webp");
          mask-image: url("../images/mask.webp");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media only screen and (max-width: 760px) {
  .hero .hero-slider {
    position: absolute;
    width: 29rem;
    height: auto;
    top: 21rem;
    left: -2rem;
  }
}
.hero .hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 2.5s ease-in-out, -webkit-transform 6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 2.5s ease-in-out, -webkit-transform 6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 2.5s ease-in-out, transform 6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 2.5s ease-in-out, transform 6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.hero .hero-img.active {
  opacity: 1;
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  z-index: 1;
}
.hero .hero-campaign {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7.5rem;
  margin-left: -1.5rem;
  max-width: 490px;
}
@media only screen and (max-width: 760px) {
  .hero .hero-campaign {
    margin-left: 5rem;
    margin-right: 2rem;
    gap: 0;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.hero .campaign-title {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 49rem;
  aspect-ratio: 490/474;
}
@media only screen and (max-width: 760px) {
  .hero .campaign-title {
    position: static;
    width: 100%;
  }
}
.hero .campaign-title .en {
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--color-primary);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media only screen and (max-width: 760px) {
  .hero .campaign-title .en {
    -webkit-transform: none;
            transform: none;
    top: 10.9rem;
    left: 4.7rem;
  }
}
.hero .campaign-title .en .nopc {
  display: none;
}
@media only screen and (max-width: 760px) {
  .hero .campaign-title .en .nopc {
    display: block;
  }
}
.hero .campaign-title .img {
  position: absolute;
  top: 2.3rem;
  left: 9rem;
  width: 26rem;
  aspect-ratio: 26/40;
}
@media only screen and (max-width: 760px) {
  .hero .campaign-title .img {
    top: 10rem;
    left: 19rem;
    width: 13rem;
  }
}
.hero .campaign-title .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero .campaign-title .ja {
  position: absolute;
  top: 5rem;
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 1.2rem;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}
@media only screen and (max-width: 760px) {
  .hero .campaign-title .ja {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    -webkit-transform: none;
            transform: none;
    left: unset;
    top: unset;
    right: 3rem;
    bottom: 18rem;
    z-index: 2;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 760px) {
  .hero .campaign-title .ja.pc {
    display: none;
  }
}
.hero .campaign-title .ja.sp {
  display: none;
}
@media only screen and (max-width: 760px) {
  .hero .campaign-title .ja.sp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.hero .campaign-title .ja > span {
  background: #fff;
}
.hero .campaign-title .ja .highlight {
  font-family: "Bricolage Grotesque";
  color: var(--color-primary);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1.38px;
}
.hero .campaign-period {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  position: relative;
}
@media only screen and (max-width: 760px) {
  .hero .campaign-period {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    position: absolute;
    bottom: 5rem;
    right: 2rem;
  }
}
.hero .campaign-period .period-row {
  display: grid;
  gap: 5px;
}
.hero .campaign-period .period-label {
  font-size: 1.3rem;
  letter-spacing: 0.026em;
}
@media only screen and (max-width: 760px) {
  .hero .campaign-period .period-label {
    font-size: 1rem;
  }
}
.hero .campaign-period .period-value {
  position: relative;
  color: var(--color-green);
  font-size: 1rem;
  letter-spacing: 0.02em;
  width: 22.8rem;
}
@media only screen and (max-width: 760px) {
  .hero .campaign-period .period-value {
    width: 15.6rem;
  }
}
.hero .campaign-period .period-value img {
  width: 100%;
  height: 100%;
  aspect-ratio: 228/58;
}
.hero .campaign-period .period-value .label {
  position: absolute;
  white-space: nowrap;
  bottom: 0;
  right: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  color: var(--color-black);
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: access */
.access-vector01 {
  position: absolute;
  left: 7rem;
  top: -9rem;
  width: 30rem;
}
@media only screen and (max-width: 760px) {
  .access-vector01 {
    left: -1rem;
    top: 5rem;
    width: 15rem;
  }
}
.access-vector01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.access-vector02 {
  position: absolute;
  right: 5rem;
  bottom: -12rem;
  z-index: 1;
  width: 30rem;
}
@media only screen and (max-width: 760px) {
  .access-vector02 {
    right: -1rem;
    bottom: 50rem;
    width: 15rem;
    z-index: 0;
  }
}
.access-vector02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.access-vector03 {
  position: absolute;
  right: 25rem;
  bottom: -3rem;
  z-index: 2;
}
@media only screen and (max-width: 760px) {
  .access-vector03 {
    display: none;
  }
}
.access-vector03 svg {
  width: 26rem;
}

.access-section {
  position: relative;
}
@media only screen and (max-width: 760px) {
  .access-section {
    overflow: hidden;
  }
}
.access-section .container {
  position: relative;
  padding-inline: 18rem 9.7rem;
}
@media only screen and (max-width: 760px) {
  .access-section .container {
    padding-inline: 2rem;
  }
}
.access-section .access-layout {
  padding-block: 13rem 9.3rem;
  display: grid;
  grid-template-columns: 1fr 61.8228718831%;
  gap: 4.4rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media only screen and (max-width: 760px) {
  .access-section .access-layout {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-block: 12rem 6rem;
    gap: 0;
  }
}
.access-section .access-left .en {
  width: 10rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--color-black);
  position: absolute;
  top: 3rem;
  left: 0;
}
@media only screen and (max-width: 760px) {
  .access-section .access-left .en {
    width: 7rem;
    top: 10rem;
  }
}
.access-section .access-left .title {
  border-bottom: 1px solid var(--color-black);
  display: grid;
  margin-bottom: 1rem;
}
.access-section .access-left .title .small {
  font-size: 2rem;
}
@media only screen and (max-width: 760px) {
  .access-section .access-left .title .small {
    font-size: 1.3rem;
  }
}
.access-section .access-left .title .label {
  color: var(--color-primary);
  font-size: 4rem;
}
@media only screen and (max-width: 760px) {
  .access-section .access-left .title .label {
    font-size: 3rem;
  }
}
.access-section .access-left .access-desc {
  margin-top: 5rem;
  line-height: 1.9;
}
@media only screen and (max-width: 760px) {
  .access-section .access-left .access-desc {
    margin-top: 3rem;
  }
}
.access-section .access-right {
  aspect-ratio: 719/600;
  width: 100%;
}
.access-section .access-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: spots */
[class*=spot-vector] {
  z-index: -1;
}
[class*=spot-vector] img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.spot-vector01 {
  position: absolute;
  top: -2rem;
  right: -4rem;
  width: 22rem;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media only screen and (max-width: 760px) {
  .spot-vector01 {
    width: 12rem;
    z-index: -1;
    -webkit-transform: none;
            transform: none;
    top: -5rem;
  }
}

.spot-vector02 {
  position: absolute;
  top: -6rem;
  left: -21rem;
}
@media only screen and (max-width: 760px) {
  .spot-vector02 {
    top: -2rem;
    left: -7rem;
    width: 15rem;
  }
}
.spot-vector02 svg {
  width: 40rem;
  aspect-ratio: 402/191;
}
@media only screen and (max-width: 760px) {
  .spot-vector02 svg {
    width: 19rem;
  }
}

.spot-vector03 {
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 27rem;
}
@media only screen and (max-width: 760px) {
  .spot-vector03 {
    top: -5rem;
    right: -3rem;
    width: 12rem;
  }
}
.spot-vector03 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.spot-vector04 {
  position: absolute;
  bottom: -6rem;
  right: -29rem;
}
@media only screen and (max-width: 760px) {
  .spot-vector04 {
    right: -10rem;
    width: 15rem;
  }
}
.spot-vector04 svg {
  width: 40rem;
  aspect-ratio: 402/191;
}
@media only screen and (max-width: 760px) {
  .spot-vector04 svg {
    width: 19rem;
  }
}

.spot-vector05 {
  position: absolute;
  top: -17rem;
  left: -15rem;
  width: 27rem;
}
@media only screen and (max-width: 760px) {
  .spot-vector05 {
    top: -4rem;
    left: -4rem;
    width: 12rem;
  }
}
.spot-vector05 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.spot-vector06 {
  position: absolute;
  bottom: -15rem;
  right: -8rem;
  width: 36rem;
}
@media only screen and (max-width: 760px) {
  .spot-vector06 {
    right: -6rem;
    bottom: -6rem;
    width: 12rem;
  }
}
.spot-vector06 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.spots-vector01 {
  position: absolute;
  top: -3rem;
  left: 5rem;
}
@media only screen and (max-width: 760px) {
  .spots-vector01 {
    left: 2rem;
    top: 0rem;
    width: 11rem;
  }
}
.spots-vector01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.spots-section {
  position: relative;
  overflow: hidden;
  background: var(--color-primary);
}
.spots-section:before {
  background-color: var(--bg);
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1440/198;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-mask-image: url("../images/mask02.webp");
          mask-image: url("../images/mask02.webp");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
@media only screen and (max-width: 760px) {
  .spots-section:before {
    aspect-ratio: 375/85;
    -webkit-mask-image: url("../images/mask01.webp");
            mask-image: url("../images/mask01.webp");
  }
}
.spots-section .section-title {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin: 0;
  position: relative;
}
@media only screen and (max-width: 760px) {
  .spots-section .section-title {
    gap: 2.6rem;
  }
}
.spots-section .section-title .ja {
  font-family: "Zen Kaku Gothic Antique";
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.09em;
}
@media only screen and (max-width: 760px) {
  .spots-section .section-title .ja {
    font-size: 2.6rem;
    letter-spacing: 0.052em;
  }
}
.spots-section .section-title .ja .small {
  font-size: 0.7777777778em;
  letter-spacing: 0.07em;
}
.spots-section .section-title .en {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 2rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 760px) {
  .spots-section .section-title .en {
    font-size: 1.3rem;
    letter-spacing: 0.026em;
  }
}
.spots-section .spot-bg {
  padding-block: 12rem 16rem;
}
@media only screen and (max-width: 760px) {
  .spots-section .spot-bg {
    padding-block: 5rem 8rem;
  }
}
.spots-section .spot-list {
  display: grid;
  gap: 8rem;
}
@media only screen and (max-width: 760px) {
  .spots-section .spot-list {
    gap: 4rem;
  }
}
.spots-section .spot-list .spot-featured {
  background: var(--f-4-f-1-ed, #edf4f2);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 760px) {
  .spots-section .spot-list .spot-featured {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.spots-section .spot-list .spot-featured::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  margin: auto;
  pointer-events: none;
}
.fallwinter .spots-section .spot-list .spot-featured::before {
  background: var(--bg-secondary);
}
.spots-section .spot-list .spot-featured:nth-child(even) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media only screen and (max-width: 760px) {
  .spots-section .spot-list .spot-featured:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.spots-section .spot-list .spot-featured svg {
  stroke: var(--color-white);
}
.spots-section .spot-list .spot-images {
  position: relative;
  aspect-ratio: 64/65;
  width: 51.6129032258%;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 760px) {
  .spots-section .spot-list .spot-images {
    width: 100%;
    height: auto;
  }
}
.spots-section .spot-list .spot-img {
  overflow: hidden;
}
.spots-section .spot-list .spot-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.spots-section .spot-list .spot-images-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.spots-section .spot-list .spot-images-slider .spot-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
  display: block;
  pointer-events: none;
}
.spots-section .spot-list .spot-images-slider .spot-img.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.spots-section .spot-list .spot-images-slider .spot-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.spots-section .spot-list .spot-images-slider-nav-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding-bottom: 0.5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(61, 86, 80, 0)), to(#3d5650));
  background: -webkit-linear-gradient(top, rgba(61, 86, 80, 0) 0%, #3d5650 100%);
  background: linear-gradient(180deg, rgba(61, 86, 80, 0) 0%, #3d5650 100%);
  z-index: 1;
}
.spots-section .spot-list .spot-images-slider-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 760px) {
  .spots-section .spot-list .spot-images-slider-nav {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 0.5rem;
  }
}
.spots-section .spot-list .spot-images-slider-nav .spot-img {
  cursor: pointer;
  pointer-events: all;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  width: 7rem;
  aspect-ratio: 1/1;
  opacity: 0.6;
}
@media only screen and (max-width: 760px) {
  .spots-section .spot-list .spot-images-slider-nav .spot-img {
    width: 4rem;
  }
}
.spots-section .spot-list .spot-images-slider-nav .spot-img.active {
  opacity: 1;
}
.spots-section .spot-list .spot-images-slider-nav .spot-img.active img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.spots-section .spot-list .spot-images-slider-nav .spot-img:hover {
  opacity: 0.8;
}
.spots-section .spot-list .spot-images-slider-nav .spot-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.spots-section .spot-list .spot-content {
  padding: 4rem 8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
  width: 48.3870967742%;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 760px) {
  .spots-section .spot-list .spot-content {
    width: 100%;
    padding: 2rem;
    gap: 1.4rem;
  }
}
.spots-section .spot-list .spot-content .desc {
  display: grid;
  gap: 2.4rem;
}
@media only screen and (max-width: 760px) {
  .spots-section .spot-list .spot-content .desc {
    gap: 1.4rem;
  }
}
.spots-section .spot-list .spot-content .desc .en {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--3-d-5650, #3d5650);
  line-height: normal;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 760px) {
  .spots-section .spot-list .spot-content .desc .en {
    font-size: 1.2rem;
  }
}
.spots-section .spot-list .spot-content .desc .en .number {
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 760px) {
  .spots-section .spot-list .spot-content .desc .en .number {
    font-size: 1.4rem;
    letter-spacing: 0.028em;
  }
}
.spots-section .spot-list .spot-content .desc .title {
  color: var(--color-primary);
  font-family: "Zen Kaku Gothic Antique";
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.07em;
  margin: 0;
}
@media only screen and (max-width: 760px) {
  .spots-section .spot-list .spot-content .desc .title {
    font-size: 2.5rem;
    letter-spacing: 0.05em;
  }
}
.spots-section .spot-list .spot-content .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 1rem;
  padding: 1rem 2rem 1rem 1rem;
  border-radius: 5px 30px 30px 5px;
  background: var(--color-white);
  width: 24rem;
  height: 6rem;
  text-decoration: none;
  color: var(--color-black);
}
@media only screen and (max-width: 760px) {
  .spots-section .spot-list .spot-content .btn {
    width: 22rem;
    height: 5rem;
  }
}
.spots-section .spot-list .spot-content .btn .en {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: var(--color-primary);
  font-size: 1rem;
  line-height: normal;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 760px) {
  .spots-section .spot-list .spot-content .btn .en {
    font-size: 0.8rem;
    letter-spacing: 0.016em;
  }
}
.spots-section .spot-list .spot-content .btn .label {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.036em;
  position: relative;
}
@media only screen and (max-width: 760px) {
  .spots-section .spot-list .spot-content .btn .label {
    font-size: 1.3rem;
    letter-spacing: 0.026em;
  }
}
.spots-section .spot-list .spot-content .btn .label:before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--color-primary);
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}
.spots-section .spot-list .spot-content .btn .icon-blank {
  margin-right: 0;
  stroke: var(--color-primary);
}
.spots-section .spot-list .spot-content .btn:hover {
  color: var(--color-primary);
}
.spots-section .spot-list .spot-content .btn:hover .label:before {
  width: 100%;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: about */
.about-section {
  padding-block: 14.5rem 6rem;
  position: relative;
}
@media only screen and (max-width: 760px) {
  .about-section {
    padding-block: 8rem 0;
    overflow: hidden;
  }
}
.about-section .about-layout {
  display: grid;
  grid-template-columns: 65.2777777778% auto;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 10rem;
}
@media only screen and (max-width: 760px) {
  .about-section .about-layout {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 3rem;
  }
}
.about-section .about-vector1 {
  position: absolute;
  top: 4rem;
  right: 20rem;
  width: 30.5rem;
}
@media only screen and (max-width: 760px) {
  .about-section .about-vector1 {
    right: unset;
    left: 0;
    top: 15rem;
    width: 15rem;
  }
}
.about-section .about-vector1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-section .about-vector2 {
  position: absolute;
  left: 35rem;
  bottom: 0;
}
@media only screen and (max-width: 760px) {
  .about-section .about-vector2 {
    top: 22rem;
    left: 3rem;
    bottom: unset;
    width: 17rem;
  }
}
.about-section .about-vector2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-section .about-vector3 {
  position: absolute;
  top: 35rem;
  right: 4rem;
  z-index: -1;
  width: 14.5rem;
}
@media only screen and (max-width: 760px) {
  .about-section .about-vector3 {
    right: unset;
    top: 50rem;
    left: 0;
    width: 10rem;
  }
}
.about-section .about-vector3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-section .about-vector4 {
  position: absolute;
  top: -2rem;
  left: 5rem;
  z-index: -1;
}
@media only screen and (max-width: 760px) {
  .about-section .about-vector4 {
    display: none;
  }
}
.about-section .about-left {
  position: relative;
  padding-top: 8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 760px) {
  .about-section .about-left {
    padding-top: 3rem;
  }
}
.about-section .about-left .about-title-main {
  position: absolute;
  top: 0;
  left: 5rem;
  margin: 0;
  aspect-ratio: 484/122;
  width: 48rem;
}
@media only screen and (max-width: 760px) {
  .about-section .about-left .about-title-main {
    width: 20rem;
    left: 2rem;
  }
}
.about-section .about-left .about-title-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-section .about-left .about-images {
  display: grid;
  grid-template-columns: 67.0212765957% 1fr;
}
.about-section .about-left .about-images .about-image-sub {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about-section .about-left .about-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-section .about-right {
  position: relative;
}
@media only screen and (max-width: 760px) {
  .about-section .about-right {
    padding-inline: 5rem;
  }
}
.about-section .about-right .about-title-vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: var(--color-primary);
  font-size: 2em;
  font-weight: bold;
  line-height: 1.4;
  margin: auto;
}
@media only screen and (max-width: 760px) {
  .about-section .about-right .about-title-vertical {
    margin-right: 0;
  }
}
.about-section .about-right .about-title-vertical .about-title-small {
  color: var(--color-black);
  font-size: 0.7em;
}
.about-section .about-right .about-title-en-vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: var(--font-en);
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 760px) {
  .about-section .about-right .about-title-en-vertical {
    left: 5rem;
  }
}
.about-section .about-right .about-desc-vertical {
  border-top: 1px solid var(--color-black);
  margin-top: 8rem;
  padding-top: 8rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.7rem;
}
@media only screen and (max-width: 760px) {
  .about-section .about-right .about-desc-vertical {
    margin-top: 3rem;
    padding-top: 3rem;
    margin-left: auto;
    gap: 1rem;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: coupon */
.coupon-banner {
  background: var(--color-primary);
  padding: 0 3.5rem;
  display: block;
  text-decoration: none;
  color: var(--color-black);
}
@media only screen and (max-width: 760px) {
  .coupon-banner {
    padding: 0 2rem;
  }
}
.coupon-banner:hover {
  background: var(--color-white);
}
.coupon-banner:hover .coupon-banner-left .coupon-circle {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.coupon-banner:hover .coupon-banner-right .coupon-desc span {
  color: var(--color-primary);
}
.coupon-banner .coupon-banner-inner {
  border: 1px solid var(--color-black);
  border-width: 1px 0;
  display: grid;
  grid-template-columns: 36rem 1fr;
  padding: 1rem 0;
}
@media only screen and (max-width: 760px) {
  .coupon-banner .coupon-banner-inner {
    grid-template-columns: auto 1fr;
  }
}
.coupon-banner .coupon-banner-left {
  border-right: 1px dashed var(--color-black);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4rem;
}
@media only screen and (max-width: 760px) {
  .coupon-banner .coupon-banner-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0.8rem;
    padding-block: 3rem;
    padding-inline: 0 2rem;
  }
}
.coupon-banner .coupon-banner-left .coupon-circle {
  border-radius: 50%;
  border: 1px solid var(--color-white);
  padding: 1.7rem 2.8rem;
  color: var(--color-white);
  letter-spacing: 0.03em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transition: border-color 0.5s, color 0.5s;
  transition: border-color 0.5s, color 0.5s;
}
@media only screen and (max-width: 760px) {
  .coupon-banner .coupon-banner-left .coupon-circle {
    padding: 1.3rem 2rem;
  }
}
.coupon-banner .coupon-banner-left .coupon-campaign {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  letter-spacing: 0.03em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.coupon-banner .coupon-banner-right .coupon-desc {
  font-size: 3rem;
}
@media only screen and (max-width: 760px) {
  .coupon-banner .coupon-banner-right .coupon-desc {
    font-size: 1.6rem;
  }
}
.coupon-banner .coupon-banner-right .coupon-desc span {
  color: var(--color-white);
  font-weight: bold;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}
@media only screen and (max-width: 760px) {
  .coupon-banner .coupon-banner-right .coupon-desc span {
    display: block;
  }
}
.coupon-banner .coupon-banner-right .coupon-desc .en {
  font-size: 1.6666666667em;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.coupon-banner .coupon-banner-right .coupon-link {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  color: var(--color-black);
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 4rem 0;
}
@media only screen and (max-width: 760px) {
  .coupon-banner .coupon-banner-right .coupon-link {
    padding-left: 2rem;
  }
}
.coupon-banner .coupon-banner-right .coupon-link .icon-blank {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 7.5rem;
  margin: auto;
  width: 3.8rem;
  aspect-ratio: 1/1;
  stroke: var(--color-black);
  -webkit-transition: stroke 0.5s;
  transition: stroke 0.5s;
}
@media only screen and (max-width: 760px) {
  .coupon-banner .coupon-banner-right .coupon-link .icon-blank {
    display: none;
  }
}
.coupon-banner .coupon-banner-right .coupon-link-text {
  font-size: 1.7rem;
  font-weight: 700;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}
@media only screen and (max-width: 760px) {
  .coupon-banner .coupon-banner-right .coupon-link-text {
    font-size: 1.2rem;
    letter-spacing: 0.024em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.8rem;
  }
}
.coupon-banner .coupon-banner-right .coupon-link-text span {
  position: relative;
}
.coupon-banner .coupon-banner-right .coupon-link-text span:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  bottom: -2px;
  left: 0;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}
@media only screen and (max-width: 760px) {
  .coupon-banner .coupon-banner-right .coupon-link-text .icon-blank {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--color-black);
    position: static;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: overview */
.overview-section {
  padding-block: 12rem 10rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 760px) {
  .overview-section {
    padding-block: 9rem 8rem;
  }
}
.overview-section .container {
  display: grid;
  grid-template-columns: 1fr 66.8789808917%;
  gap: 4rem;
}
@media only screen and (max-width: 760px) {
  .overview-section .container {
    grid-template-columns: 1fr;
    gap: 5.6rem;
  }
}
.overview-section .overview-vector01 {
  position: absolute;
  top: 21rem;
  left: 3.4rem;
  z-index: -1;
  width: 30rem;
}
@media only screen and (max-width: 760px) {
  .overview-section .overview-vector01 {
    top: 9rem;
    right: -6rem;
    left: unset;
  }
}
.overview-section .overview-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  white-space: nowrap;
}
.overview-section .overview-left .title {
  font-family: "Zen Kaku Gothic Antique";
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}
.overview-section .overview-left .en {
  line-height: 1.3;
  font-weight: 500;
  text-transform: capitalize;
}
.overview-section .overview-table {
  width: 100%;
  border-collapse: collapse;
}
.overview-section .overview-table th,
.overview-section .overview-table td {
  border-bottom: 1px solid var(--color-primary);
  padding: 2rem 0;
  text-align: left;
  font-weight: 500;
}
@media only screen and (max-width: 760px) {
  .overview-section .overview-table th,
  .overview-section .overview-table td {
    font-size: 1.3rem;
    letter-spacing: 0.026em;
  }
}
.overview-section .overview-table th {
  width: 15rem;
}
@media only screen and (max-width: 760px) {
  .overview-section .overview-table th {
    width: 10rem;
  }
}
.overview-section .overview-table b {
  font-size: 1.3333333333em;
  font-weight: 500;
}
@media only screen and (max-width: 760px) {
  .overview-section .overview-table b {
    font-size: 1em;
  }
}
.overview-section .overview-table .note {
  font-size: 0.8666666667em;
}
.overview-section .coupon-table-wrap {
  margin-top: 6rem;
}
@media only screen and (max-width: 760px) {
  .overview-section .coupon-table-wrap {
    margin-top: 3rem;
  }
}
.overview-section .coupon-table {
  width: 100%;
  border-radius: 1rem;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0 1px;
  overflow: hidden;
}
.overview-section .coupon-table th {
  background: var(--color-green);
  color: var(--color-white);
  font-weight: 500;
  padding: 2rem;
  line-height: normal;
  white-space: nowrap;
}
@media only screen and (max-width: 760px) {
  .overview-section .coupon-table th {
    font-size: 1.2rem;
    letter-spacing: 0.024em;
    padding: 2rem 1rem;
  }
}
.fallwinter .overview-section .coupon-table th {
  background: #352e18;
}
.overview-section .coupon-table th br {
  display: none;
}
@media only screen and (max-width: 760px) {
  .overview-section .coupon-table th br {
    display: block;
  }
}
.overview-section .coupon-table td {
  border-right: 1px solid #c8c8c8;
  background: #eaeaea;
  padding: 2rem;
  text-align: center;
  line-height: normal;
  white-space: nowrap;
}
@media only screen and (max-width: 760px) {
  .overview-section .coupon-table td {
    font-size: 1.2rem;
    letter-spacing: 0.024em;
    padding: 2rem 0.5rem;
  }
}
.overview-section .coupon-table td:last-child {
  border-right: none;
}
.overview-section .coupon-table b {
  font-family: var(--font-en);
  font-size: 1.3333333333em;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 760px) {
  .overview-section .coupon-table b {
    font-size: 1.5em;
    letter-spacing: 0.036em;
  }
}
.overview-section .coupon-table .main {
  color: var(--color-primary);
  line-height: 1;
}
.overview-section .coupon-table .main b {
  font-size: 2em;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 760px) {
  .overview-section .coupon-table .main b {
    font-size: 1.6666666667em;
    letter-spacing: 0.04em;
  }
}
.overview-section .overview-contact th {
  font-weight: 500;
  text-align: left;
  width: 15rem;
}
.overview-section .overview-contact tr:not(:first-child) th,
.overview-section .overview-contact tr:not(:first-child) td {
  padding-top: 5px;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: contact */
.contact-section {
  padding-block: 14rem 12rem;
  background-image: url(../images/contact_bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 760px) {
  .contact-section {
    padding-block: 6rem;
  }
}
.fallwinter .contact-section {
  background-image: url(../images/fallwinter/contact_bg.webp);
}
.contact-section .container {
  display: grid;
  grid-template-columns: 1fr 66.8789808917%;
  gap: 4rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-white);
  padding-inline: 10rem;
}
@media only screen and (max-width: 960px) {
  .contact-section .container {
    padding-inline: 5rem;
  }
}
@media only screen and (max-width: 760px) {
  .contact-section .container {
    grid-template-columns: 1fr;
    padding-inline: 2rem;
    gap: 5rem;
  }
}
.contact-section .contact-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
}
@media only screen and (max-width: 760px) {
  .contact-section .contact-left {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}
.contact-section .contact-left .title {
  font-size: 3rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
  margin: 0;
}
@media only screen and (max-width: 760px) {
  .contact-section .contact-left .title {
    font-size: 2.5rem;
    letter-spacing: 0.05em;
  }
}
.contact-section .contact-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media only screen and (max-width: 760px) {
  .contact-section .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.contact-section .contact-card {
  display: grid;
  gap: 2rem;
  text-align: center;
}
@media only screen and (max-width: 760px) {
  .contact-section .contact-card {
    gap: 1rem;
  }
}
.contact-section .contact-card .title {
  font-size: 2rem;
  line-height: normal;
  letter-spacing: 0.04em;
  margin: 0;
}
@media only screen and (max-width: 760px) {
  .contact-section .contact-card .title {
    font-size: 1.6rem;
    letter-spacing: 0.032em;
  }
}
.contact-section .contact-card .desc {
  color: var(--color-white);
  text-decoration: none;
  border: 1px solid var(--color-white);
  border-radius: 1rem;
  place-content: center;
  place-items: center;
  display: grid;
  gap: 1rem;
  height: 14rem;
}
.contact-section .contact-card .desc.--form .label {
  font-size: 2.4rem;
}
@media only screen and (max-width: 760px) {
  .contact-section .contact-card .desc.--form .label {
    font-size: 1.8rem;
    letter-spacing: 0.036em;
  }
}
.contact-section .contact-card .desc:hover .label span:after {
  width: 100%;
}
.contact-section .contact-card .label {
  font-size: 3rem;
}
@media only screen and (max-width: 760px) {
  .contact-section .contact-card .label {
    font-size: 2.2rem;
    letter-spacing: 0.044em;
  }
}
.contact-section .contact-card .label span {
  position: relative;
}
.contact-section .contact-card .label span:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}
.contact-section .contact-card .copy {
  color: #808080;
  font-size: 1.6rem;
  line-height: normal;
  letter-spacing: 0.032em;
}
@media only screen and (max-width: 760px) {
  .contact-section .contact-card .copy {
    font-size: 1.2rem;
    letter-spacing: 0.024em;
  }
}
.contact-section .contact-card .icon-blank {
  stroke: var(--color-white);
  width: 2.2rem;
  height: 2.2rem;
}
@media only screen and (max-width: 760px) {
  .contact-section .contact-card .icon-blank {
    width: 1.7rem;
    height: 1.7rem;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: accommodation */
.accommodation-section .accommodation-slider {
  display: block;
  padding-block: 1.6rem;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 760px) {
  .accommodation-section .accommodation-slider {
    padding-block: 2.8rem;
  }
}
.accommodation-section .accommodation-slider::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--color-black);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 7rem);
}
@media only screen and (max-width: 760px) {
  .accommodation-section .accommodation-slider::before {
    width: calc(100% - 4rem);
  }
}
.accommodation-section .accommodation-slider::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--color-black);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 7rem);
}
@media only screen and (max-width: 760px) {
  .accommodation-section .accommodation-slider::after {
    width: calc(100% - 4rem);
  }
}
.accommodation-section .accommodation-slider:hover .slider-container {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.accommodation-section .accommodation-slider:hover .title .label:after {
  width: 100%;
}
.accommodation-section .accommodation-slider:hover .icon-blank {
  stroke: var(--color-primary);
}
.accommodation-section .slider-container {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-animation: scroll 30s linear infinite;
          animation: scroll 30s linear infinite;
  will-change: transform;
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.accommodation-section .slider-item {
  display: grid;
  grid-template-columns: 1fr 3.8rem 16rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  color: var(--color-black);
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-left: 4rem;
}
@media only screen and (max-width: 760px) {
  .accommodation-section .slider-item {
    grid-template-columns: 1fr 2.4rem 13rem;
    padding-left: 2rem;
  }
}
.accommodation-section .slider-item .title {
  line-height: 1.3;
  letter-spacing: 0.06rem;
  display: grid;
  gap: 1.6rem;
  white-space: nowrap;
}
.accommodation-section .slider-item .title .label {
  font-size: 3rem;
  position: relative;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}
@media only screen and (max-width: 760px) {
  .accommodation-section .slider-item .title .label {
    font-size: 1.4rem;
    letter-spacing: 0.028em;
  }
}
.accommodation-section .slider-item .title .label:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-black);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}
@media only screen and (max-width: 760px) {
  .accommodation-section .slider-item .title .en {
    font-size: 1.3rem;
    letter-spacing: 0.02em;
  }
}
.accommodation-section .slider-item .icon-blank {
  width: 3.8rem;
  height: 3.8rem;
  -webkit-transition: stroke 0.5s;
  transition: stroke 0.5s;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media only screen and (max-width: 760px) {
  .accommodation-section .slider-item .icon-blank {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.accommodation-section .slider-item .img {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.accommodation-section .slider-item .img.--01 {
  width: 13.2rem;
}
.accommodation-section .slider-item .img.--02 {
  width: 16.5rem;
}
.accommodation-section .slider-item .img img {
  aspect-ratio: 165/116;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.accommodation-section .accommodation-bnr .link {
  position: relative;
  padding-block: 8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  color: var(--color-white);
  text-decoration: none;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
  overflow: hidden;
  max-width: unset;
}
@media screen and (min-width: 1441px) {
  .accommodation-section .accommodation-bnr .link {
    padding-inline: calc((100vw - 1440px) / 2);
  }
}
@media only screen and (max-width: 760px) {
  .accommodation-section .accommodation-bnr .link {
    padding-block: 7.5rem;
  }
}
.accommodation-section .accommodation-bnr .link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/special_bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  inset: 0;
  margin: auto;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.fallwinter .accommodation-section .accommodation-bnr .link::before {
  background-image: url(../images/fallwinter/special_bg.webp);
}
.accommodation-section .accommodation-bnr .link:hover::before {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.accommodation-section .accommodation-bnr .link:hover .title .label:after {
  width: 100%;
}
.accommodation-section .accommodation-bnr .title {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.6rem;
  margin: 0;
  line-height: 1.3;
  font-weight: 500;
}
.accommodation-section .accommodation-bnr .title .label {
  font-size: 3rem;
  letter-spacing: 0.06rem;
  position: relative;
}
@media only screen and (max-width: 760px) {
  .accommodation-section .accommodation-bnr .title .label {
    font-size: 2rem;
    letter-spacing: 0.04em;
  }
}
.accommodation-section .accommodation-bnr .title .label:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}
.accommodation-section .accommodation-bnr .title .en {
  letter-spacing: 0.03rem;
}
@media only screen and (max-width: 760px) {
  .accommodation-section .accommodation-bnr .title .en {
    font-size: 1.3rem;
    letter-spacing: 0.026em;
  }
}
.accommodation-section .accommodation-bnr .icon-blank {
  position: relative;
  stroke: var(--color-white);
  width: 3.8rem;
  height: 3.8rem;
}
@media only screen and (max-width: 760px) {
  .accommodation-section .accommodation-bnr .icon-blank {
    width: 2.4rem;
    height: 2.4rem;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: ドロワーナビゲーション btn */
.drawer-nav-btn {
  all: unset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 3.7rem;
  right: 10.5rem;
  z-index: 1000;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4rem;
  width: 5rem;
  color: var(--color-primary);
  -webkit-transition: 0.5s cubic-bezier(var(--transformrate));
  transition: 0.5s cubic-bezier(var(--transformrate));
  opacity: 0;
  pointer-events: none;
  border-radius: 60px;
  border: 1px solid var(--color-primary);
  background: var(--f-4-f-1-ed, #edf4f2);
}
@media only screen and (max-width: 760px) {
  .drawer-nav-btn {
    opacity: 1;
    pointer-events: all;
  }
}
.drawer-nav-btn .d-btn__label {
  font-family: var(--font-en);
  font-size: 1.2rem;
  position: relative;
  text-align: center;
  white-space: nowrap;
  display: block;
  width: 100%;
}
.drawer-nav-btn .d-btn__label span {
  position: absolute;
  inset: 0;
  height: 1em;
  margin: auto;
  line-height: 1;
  -webkit-transition: opacity 0.5s cubic-bezier(var(--transformrate)), background-color 0.5s cubic-bezier(var(--transformrate));
  transition: opacity 0.5s cubic-bezier(var(--transformrate)), background-color 0.5s cubic-bezier(var(--transformrate));
}

.label__opne {
  opacity: 1;
}

.label__close {
  opacity: 0;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: ドロワーナビゲーション btn - open*/
.drawer-nav-btn.open .d-btn__label .label__opne {
  opacity: 0;
}
.drawer-nav-btn.open .d-btn__label .label__close {
  opacity: 1;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: ドロワーナビゲーション */
.site-header__drawer-nav {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  min-height: 100vh;
  pointer-events: none;
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
  -webkit-transition: -webkit-clip-path 0.3s cubic-bezier(var(--transformrate)) 0.5s;
  transition: -webkit-clip-path 0.3s cubic-bezier(var(--transformrate)) 0.5s;
  transition: clip-path 0.3s cubic-bezier(var(--transformrate)) 0.5s;
  transition: clip-path 0.3s cubic-bezier(var(--transformrate)) 0.5s, -webkit-clip-path 0.3s cubic-bezier(var(--transformrate)) 0.5s;
}
.site-header__drawer-nav::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.site-header__drawer-nav .drawer-nav__inner {
  background: var(--bg);
  width: 100%;
  height: 100dvh;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  will-change: opacity;
  -webkit-transition: opacity 0.3s cubic-bezier(var(--transformrate)) 0.5s;
  transition: opacity 0.3s cubic-bezier(var(--transformrate)) 0.5s;
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.site-header__drawer-nav .drawer-nav__inner::-webkit-scrollbar {
  display: none;
}
.site-header__drawer-nav .nav {
  position: static;
  display: block;
  padding-top: 16rem;
  padding-bottom: 8rem;
}
.site-header__drawer-nav .nav .nav-link {
  font-size: 1.8rem;
  white-space: nowrap;
}
.site-header__drawer-nav .nav .nav-link .en {
  font-size: 1.2rem;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: ドロワーナビゲーション - open */
body.open .site-header__drawer-nav {
  pointer-events: all;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  -webkit-transition: -webkit-clip-path 0.5s cubic-bezier(var(--transformrate));
  transition: -webkit-clip-path 0.5s cubic-bezier(var(--transformrate));
  transition: clip-path 0.5s cubic-bezier(var(--transformrate));
  transition: clip-path 0.5s cubic-bezier(var(--transformrate)), -webkit-clip-path 0.5s cubic-bezier(var(--transformrate));
}
body.open .site-header__drawer-nav .drawer-nav__inner {
  opacity: 1;
  -webkit-transition: opacity 0.5s cubic-bezier(var(--transformrate));
  transition: opacity 0.5s cubic-bezier(var(--transformrate));
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: デバッグ用 *//*# sourceMappingURL=style.css.map */