/* A (More) Modern CSS Reset - Andy Bell */
/* https://piccalil.li/blog/a-more-modern-css-reset/ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  color: #0e221c;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

a {
  text-decoration: none;
  color: #0e221c;
}

li {
  list-style: none;
}

body {
  font-family: "Shippori Mincho", serif;
}

.main #gl-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: -1;
}

.sidebar {
  width: 21.18vw;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  padding-top: 2.22vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  pointer-events: none;
}
.sidebar .sidebar-link {
  pointer-events: auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 3.68vw;
}
.sidebar .sidebar-link .sidebar-link-booking {
  width: 5.97vw;
  height: 2.29vw;
  font-size: 1.11vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #0e221c;
  border-radius: 5px;
}
.sidebar .sidebar-link .sidebar-menu {
  width: 5.76vw;
  height: 1.39vw;
  position: relative;
  display: block;
  cursor: pointer;
}
.sidebar .sidebar-link .sidebar-menu span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #0e221c;
  display: block;
  transition: transform 0.3s, top 0.3s, bottom 0.3s;
  transform-origin: center center;
}
.sidebar .sidebar-link .sidebar-menu span:last-child {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #0e221c;
  display: block;
}
.sidebar .sidebar-link .sidebar-menu.is-active span {
  top: calc(50% - 0.5px);
  transform: rotate(13.5deg);
}
.sidebar .sidebar-link .sidebar-menu.is-active span:last-child {
  top: calc(50% - 0.5px);
  bottom: auto;
  transform: rotate(-13.5deg);
}
.sidebar .sidebar-logo {
  width: 12.71vw;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.sidebar .sidebar-logo img {
  mix-blend-mode: difference;
}
.sidebar .sidebar-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 21.18vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.sidebar .sidebar-nav.is-open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.sidebar .sidebar-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.39vw;
}
.sidebar .sidebar-nav ul li a {
  font-size: 1.11vw;
  color: #0e221c;
}
.sidebar .sidebar-go-to-top {
  width: 8.96vw;
  height: 8.96vw;
  display: block;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 2.22vw;
  position: relative;
  transition: opacity 0.3s ease;
  pointer-events: auto;
}
.sidebar .sidebar-go-to-top .sidebar-go-to-top-circle {
  width: 100%;
  height: 100%;
  animation: rotate-text 12s linear infinite;
}
.sidebar .sidebar-go-to-top .sidebar-go-to-top-circle text {
  font-size: 0.76vw;
  fill: #0e221c;
  letter-spacing: 0.05em;
}
.sidebar .sidebar-go-to-top .sidebar-go-to-top-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer {
  padding-top: 2.99vw;
  padding-bottom: 1.74vw;
  padding-right: 0.76vw;
  padding-left: 8.33vw;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.footer .footer-copy {
  position: absolute;
  top: 3.82vw;
  left: 0.76vw;
  font-size: 0.69vw;
  writing-mode: vertical-rl;
}
.footer .footer-info {
  display: flex;
  gap: 1.39vw;
}
.footer .footer-info h2 {
  font-size: 2.5vw;
  font-weight: normal;
}
.footer .footer-info .footer-info-detail {
  display: flex;
  flex-direction: column;
}
.footer .footer-info .footer-info-detail .footer-address {
  font-size: 0.97vw;
  line-height: 1.8;
}
.footer .footer-info .footer-info-detail .footer-contact {
  display: flex;
  flex-direction: column;
  margin-bottom: 4.03vw;
}
.footer .footer-info .footer-info-detail .footer-contact p {
  font-size: 0.97vw;
  display: flex;
  align-items: center;
  line-height: 1.8;
}
.footer .footer-info .footer-info-detail .footer-contact p a {
  font-size: 0.97vw;
}
.footer .footer-info .footer-info-detail .footer-reservation p {
  font-size: 1.11vw;
  margin-bottom: 0.9vw;
  letter-spacing: 0.1em;
}
.footer .footer-info .footer-info-detail .footer-reservation a {
  width: 18.06vw;
  aspect-ratio: 4.48/1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #0e221c;
  gap: 0.97vw;
  font-size: 1.11vw;
}
.footer .footer-info .footer-info-detail .footer-reservation a svg {
  width: 0.59vw;
  aspect-ratio: 1/2;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .footer-link {
  width: 13.19vw;
  display: flex;
  flex-direction: column;
  gap: 1.04vw;
}
.footer .footer-link li {
  width: -moz-fit-content;
  width: fit-content;
}
.footer .footer-link li a {
  display: block;
  width: 100%;
  font-size: 0.97vw;
}

.sp-header {
  display: none;
}

@media (max-width: 767px) {
  .sidebar {
    display: none;
  }
  .sp-header {
    display: flex;
    align-items: center;
    gap: 4.98vw;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3.73vw 4.98vw;
    z-index: 999;
    pointer-events: none;
  }
  .sp-header .sp-header-logo {
    pointer-events: auto;
    margin-right: auto;
  }
  .sp-header .sp-header-logo img {
    width: 19.9vw;
    aspect-ratio: 1/1;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .sp-header .sp-header-booking {
    pointer-events: auto;
    width: 17.41vw;
    height: 7.46vw;
    font-size: 3.23vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #0e221c;
    border-radius: 5px;
  }
  .sp-header .sp-header-menu {
    pointer-events: auto;
    width: 9.95vw;
    height: 3.73vw;
    position: relative;
    cursor: pointer;
    z-index: 1;
  }
  .sp-header .sp-header-menu span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #0e221c;
    display: block;
    transition: transform 0.3s, top 0.3s, bottom 0.3s;
    transform-origin: center center;
  }
  .sp-header .sp-header-menu span:last-child {
    top: auto;
    bottom: 0;
  }
  .sp-header .sp-header-menu.is-active span {
    top: calc(50% - 0.5px);
    transform: rotate(13.5deg);
  }
  .sp-header .sp-header-menu.is-active span:last-child {
    top: calc(50% - 0.5px);
    bottom: auto;
    transform: rotate(-13.5deg);
  }
  .sp-header .sp-header-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
  }
  .sp-header .sp-header-nav.is-open {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
  .sp-header .sp-header-nav ul {
    display: flex;
    flex-direction: column;
    gap: 6.47vw;
  }
  .sp-header .sp-header-nav ul li a {
    font-size: 4.98vw;
    color: #0e221c;
  }
  .footer {
    flex-direction: column;
    padding: 9.95vw 4.98vw 4.98vw;
  }
  .footer .footer-copy {
    position: static;
    writing-mode: horizontal-tb;
    font-size: 2.49vw;
    margin-top: 7.46vw;
    text-align: center;
    order: 3;
  }
  .footer .footer-info {
    flex-direction: column;
    gap: 4.98vw;
  }
  .footer .footer-info h2 {
    font-size: 7.46vw;
  }
  .footer .footer-info .footer-info-detail .footer-address {
    font-size: 2.99vw;
  }
  .footer .footer-info .footer-info-detail .footer-contact {
    margin-bottom: 7.46vw;
  }
  .footer .footer-info .footer-info-detail .footer-contact p,
  .footer .footer-info .footer-info-detail .footer-contact p a {
    font-size: 2.99vw;
  }
  .footer .footer-info .footer-info-detail .footer-reservation p {
    font-size: 3.48vw;
    margin-bottom: 2.49vw;
  }
  .footer .footer-info .footer-info-detail .footer-reservation a {
    width: 52.24vw;
    font-size: 3.48vw;
    gap: 2.49vw;
  }
  .footer .footer-info .footer-info-detail .footer-reservation a svg {
    width: 1.74vw;
  }
  .footer .footer-link {
    width: 100%;
    gap: 2.99vw;
    margin-top: 7.46vw;
    order: 2;
  }
  .footer .footer-link li a {
    font-size: 2.99vw;
  }
}
@keyframes rotate-text {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.kv {
  border-radius: 0 0 50px 0;
  width: 78.82vw;
  overflow: hidden;
}
.kv img {
  width: 100%;
  aspect-ratio: 1.44/1;
}
@media (max-width: 767px) {
  .kv {
    width: 100%;
    border-radius: 0;
  }
  .kv img {
    aspect-ratio: 1/1.44;
  }
}

.lead {
  padding-top: 12.64vw;
  padding-bottom: 12.57vw;
  position: relative;
  overflow-x: clip;
}
.lead .lead-brush-1 {
  position: absolute;
  left: -4.51vw;
  top: -2.78vw;
  width: 51.74vw;
  aspect-ratio: 3.71/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.lead .lead-brush-2 {
  position: absolute;
  top: 29.31vw;
  right: -14.51vw;
  width: 53.4vw;
  aspect-ratio: 2.72/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.lead .lead-message {
  width: 100%;
  padding-bottom: 17.92vw;
  padding-left: 21.32vw;
}
.lead .lead-message .lead-message-inner {
  position: relative;
}
.lead .lead-message .lead-message-inner span {
  font-size: 0.69vw;
  position: absolute;
  transform-origin: left top;
  transform: rotate(-90deg) translateX(-100%);
  top: 0;
  left: -2.78vw;
  display: block;
  white-space: nowrap;
}
.lead .lead-message .lead-message-inner span::before {
  content: "";
  width: 13.75vw;
  border-top: 0.5px solid #0e221c;
  position: absolute;
  top: 50%;
  right: 110%;
}
.lead .lead-message .lead-message-inner h2 {
  font-size: 1.46vw;
  margin-bottom: 2.78vw;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
.lead .lead-message .lead-message-inner p {
  font-size: 1.04vw;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
.lead .lead-images {
  display: flex;
  align-items: center;
  gap: 3.47vw;
}
.lead .lead-images img:first-child {
  width: 23.06vw;
  aspect-ratio: 1.44/1;
}
.lead .lead-images img:nth-child(2) {
  width: 16.6vw;
  aspect-ratio: 1/1.81;
}
.lead .lead-images img:last-child {
  width: 32.08vw;
  aspect-ratio: 1.67/1;
}
@media (max-width: 767px) {
  .lead {
    padding-top: 20vw;
    padding-bottom: 40vw;
  }
  .lead .lead-brush-1 {
    width: 100vw;
    top: -4.98vw;
  }
  .lead .lead-brush-2 {
    width: 100vw;
    top: auto;
    bottom: 2vw;
  }
  .lead .lead-message {
    padding-left: 9.95vw;
    padding-right: 4.98vw;
    padding-bottom: 9.95vw;
  }
  .lead .lead-message .lead-message-inner span {
    display: none;
  }
  .lead .lead-message .lead-message-inner h2 {
    font-size: 4.23vw;
    margin-bottom: 4.98vw;
  }
  .lead .lead-message .lead-message-inner p {
    font-size: 3.23vw;
  }
  .lead .lead-images {
    flex-direction: column;
    gap: 3.73vw;
    padding: 0 4.98vw;
  }
  .lead .lead-images img:first-child,
  .lead .lead-images img:nth-child(2),
  .lead .lead-images img:last-child {
    width: 100%;
  }
}

.guestroom {
  border-top: 0.5px solid #0e221c;
  padding-top: 14.65vw;
  padding-bottom: 26.04vw;
  position: relative;
  padding-left: 7.08vw;
}
.guestroom .guestroom-brush-1 {
  position: absolute;
  bottom: -7.22vw;
  left: -14.93vw;
  width: 67.57vw;
  aspect-ratio: 2.64/1;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 50;
}
.guestroom .guestroom-inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9.44vw;
}
.guestroom .guestroom-inner h2 {
  font-size: 6.39vw;
  text-align: center;
  font-weight: normal;
  white-space: nowrap;
  writing-mode: vertical-rl;
}
.guestroom .guestroom-inner .guestroom-details {
  width: 68.89vw;
  position: relative;
}
.guestroom .guestroom-inner .guestroom-details .guestroom-floor-img {
  width: 55.83vw;
  margin-left: auto;
}
.guestroom .guestroom-inner .guestroom-details .guestroom-floor-img img {
  width: 100%;
  height: 100%;
  margin-bottom: 3.26vw;
}
.guestroom .guestroom-inner .guestroom-details .guestroom-floor-img p {
  font-size: 1.04vw;
  letter-spacing: 0.1em;
  line-height: 2;
}
.guestroom .guestroom-inner .guestroom-details .guestroom-floor-guide {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.guestroom .guestroom-inner .guestroom-details .guestroom-floor-guide ul {
  width: 15.63vw;
}
.guestroom .guestroom-inner .guestroom-details .guestroom-floor-guide ul.is-hidden {
  display: none;
}
.guestroom .guestroom-inner .guestroom-details .guestroom-floor-guide ul li {
  width: 100%;
  height: 2.71vw;
  display: flex;
  align-items: center;
  font-size: 1.39vw;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.guestroom .guestroom-inner .guestroom-details .guestroom-floor-guide ul li:hover {
  border-bottom: 2px solid #0e221c;
}
.guestroom .guestroom-inner .guestroom-details .guestroom-floor-guide .guestroom-stairs {
  width: 10.56vw;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  position: absolute;
  left: 0;
  bottom: 2.92vw;
}
.guestroom .guestroom-inner .guestroom-details .guestroom-floor-guide .guestroom-stairs .guestroom-floor-btn {
  width: 6.81vw;
  height: 2.64vw;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.74vw;
  border: 1px solid #0e221c;
  position: absolute;
  bottom: 2.64vw;
  right: -1.11vw;
}
.guestroom .guestroom-inner .guestroom-details .guestroom-floor-guide .guestroom-stairs svg {
  width: 100%;
  height: 100%;
}
.guestroom .facility {
  padding-left: 4.24vw;
}
.guestroom .facility .facility-list {
  display: flex;
  align-items: center;
  gap: 7.64vw;
}
.guestroom .facility .facility-list .facility-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.56vw;
}
.guestroom .facility .facility-list .facility-item img {
  width: 10.42vw;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.guestroom .facility .facility-list .facility-item span {
  font-size: 1.46vw;
}
@media (max-width: 767px) {
  .guestroom {
    padding-top: 14.93vw;
    padding-bottom: 40vw;
    padding-left: 4.98vw;
    padding-right: 4.98vw;
  }
  .guestroom .guestroom-brush-1 {
    width: 100vw;
    bottom: -6vw;
    left: -12vw;
  }
  .guestroom .guestroom-inner {
    flex-direction: column;
    margin-bottom: 9.95vw;
  }
  .guestroom .guestroom-inner h2 {
    font-size: 9.95vw;
    writing-mode: horizontal-tb;
    margin-bottom: 7.46vw;
  }
  .guestroom .guestroom-inner .guestroom-details {
    width: 100%;
  }
  .guestroom .guestroom-inner .guestroom-details .guestroom-floor-img {
    width: 100%;
  }
  .guestroom .guestroom-inner .guestroom-details .guestroom-floor-img img {
    margin-bottom: 4.98vw;
  }
  .guestroom .guestroom-inner .guestroom-details .guestroom-floor-img p {
    font-size: 3.23vw;
  }
  .guestroom .guestroom-inner .guestroom-details .guestroom-floor-guide {
    position: static;
    height: auto;
    margin-top: 7.46vw;
    display: flex;
    gap: 3.73vw;
  }
  .guestroom .guestroom-inner .guestroom-details .guestroom-floor-guide .guestroom-stairs {
    position: relative;
    width: 24.88vw;
    flex-shrink: 0;
  }
  .guestroom .guestroom-inner .guestroom-details .guestroom-floor-guide .guestroom-stairs .guestroom-floor-btn {
    position: absolute;
    bottom: 4.98vw;
    right: -3.73vw;
    width: 17.41vw;
    height: 7.46vw;
    font-size: 3.98vw;
  }
  .guestroom .guestroom-inner .guestroom-details .guestroom-floor-guide ul {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    width: 100%;
  }
  .guestroom .guestroom-inner .guestroom-details .guestroom-floor-guide ul.is-hidden {
    display: none;
  }
  .guestroom .guestroom-inner .guestroom-details .guestroom-floor-guide ul li {
    width: 50%;
    height: auto;
    font-size: 3.48vw;
    padding: 1.49vw 0;
    border-bottom: 2px solid transparent;
  }
  .guestroom .facility {
    padding-left: 0;
  }
  .guestroom .facility .facility-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.98vw;
  }
  .guestroom .facility .facility-list .facility-item {
    gap: 1.49vw;
  }
  .guestroom .facility .facility-list .facility-item img {
    width: 27.36vw;
  }
  .guestroom .facility .facility-list .facility-item span {
    font-size: 3.23vw;
  }
}

.experience {
  width: 100%;
  position: relative;
}
.experience .experience-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}
.experience .experience-bg,
.experience .experience-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.experience .experience-bg {
  transition: background 0.3s ease;
}
.experience .experience-stars {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.experience .experience-star {
  position: absolute;
  width: 0.14vw;
  height: 0.14vw;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 100%;
}
.experience .experience-star:nth-child(3n) {
  width: 0.21vw;
  height: 0.21vw;
  background-color: #fff;
}
.experience .experience-star:nth-child(5n) {
  width: 0.07vw;
  height: 0.07vw;
  background-color: rgba(255, 255, 255, 0.6);
}
.experience .experience-star {
  animation: experience-blink var(--duration) infinite calc(var(--delay));
}
.experience .experience-content {
  position: relative;
  z-index: 10;
  margin-top: -100vh;
  margin-top: -100dvh;
  color: #fff;
}
.experience .experience-content .experience-content-inner {
  padding-top: 21.53vw;
  padding-bottom: 9.03vw;
  padding-left: 9.03vw;
}
.experience .experience-content .experience-content-inner h2 {
  font-size: 6.39vw;
  font-weight: normal;
  margin-bottom: 7.85vw;
}
.experience .experience-content .experience-content-inner .timeline .timeline-item {
  display: flex;
  gap: 2.36vw;
  margin-bottom: 1.39vw;
}
.experience .experience-content .experience-content-inner .timeline .timeline-item img {
  width: 20.35vw;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.experience .experience-content .experience-content-inner .timeline .timeline-item .timeline-item-text {
  width: 24.31vw;
  padding-top: 1.04vw;
}
.experience .experience-content .experience-content-inner .timeline .timeline-item .timeline-item-text .time {
  display: block;
  font-size: 1.81vw;
  letter-spacing: 0.1em;
  margin-bottom: 1.25vw;
}
.experience .experience-content .experience-content-inner .timeline .timeline-item .timeline-item-text h3 {
  font-size: 1.39vw;
  margin-bottom: 0.63vw;
}
.experience .experience-content .experience-content-inner .timeline .timeline-item .timeline-item-text p {
  font-size: 0.9vw;
}
@media (max-width: 767px) {
  .experience .experience-star {
    width: 0.5vw;
    height: 0.5vw;
  }
  .experience .experience-star:nth-child(3n) {
    width: 0.75vw;
    height: 0.75vw;
  }
  .experience .experience-star:nth-child(5n) {
    width: 0.25vw;
    height: 0.25vw;
  }
  .experience .experience-content .experience-content-inner {
    padding-top: 24.88vw;
    padding-bottom: 12.44vw;
    padding-left: 4.98vw;
    padding-right: 4.98vw;
  }
  .experience .experience-content .experience-content-inner h2 {
    font-size: 9.95vw;
    margin-bottom: 9.95vw;
  }
  .experience .experience-content .experience-content-inner .timeline .timeline-item {
    flex-direction: column;
    gap: 3.73vw;
    margin-bottom: 9.95vw;
  }
  .experience .experience-content .experience-content-inner .timeline .timeline-item img {
    width: 100%;
  }
  .experience .experience-content .experience-content-inner .timeline .timeline-item .timeline-item-text {
    width: 100%;
    padding-top: 0;
  }
  .experience .experience-content .experience-content-inner .timeline .timeline-item .timeline-item-text .time {
    font-size: 4.98vw;
    margin-bottom: 2.49vw;
  }
  .experience .experience-content .experience-content-inner .timeline .timeline-item .timeline-item-text h3 {
    font-size: 3.98vw;
    margin-bottom: 2.49vw;
  }
  .experience .experience-content .experience-content-inner .timeline .timeline-item .timeline-item-text p {
    font-size: 3.23vw;
  }
}

.local {
  padding-top: 29.86vw;
  padding-bottom: 18.13vw;
  position: relative;
  border-bottom: 0.5px solid #0e221c;
}
.local .local-brush-1 {
  position: absolute;
  top: 18.19vw;
  left: -6.94vw;
  width: 50.07vw;
  aspect-ratio: 1.67/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.local .local-inner {
  padding-left: 9.72vw;
}
.local .local-inner h2 {
  font-size: 6.39vw;
  font-weight: normal;
  padding-left: 29.86vw;
  padding-bottom: 5.56vw;
}
.local .local-inner .local-map {
  display: flex;
  gap: 1.6vw;
}
.local .local-inner .local-map .local-guide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.local .local-inner .local-map .local-guide .local-guide-info {
  width: 9.86vw;
  aspect-ratio: 1/1;
  border: 1px solid #0e221c;
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.69vw;
}
.local .local-inner .local-map .local-guide .local-guide-info h4 {
  font-size: 1.32vw;
  font-weight: normal;
  text-align: center;
}
.local .local-inner .local-map .local-guide .local-guide-info p {
  font-size: 0.76vw;
  text-align: center;
}
.local .local-inner .local-map .local-map-frame {
  width: 78.68vw;
  aspect-ratio: 1.57/1;
  border: 1px solid #000;
}
@media (max-width: 767px) {
  .local {
    padding-top: 40vw;
    padding-bottom: 14.93vw;
  }
  .local .local-brush-1 {
    width: 100vw;
    top: 3vw;
    left: -15vw;
  }
  .local .local-inner {
    padding-left: 4.98vw;
    padding-right: 4.98vw;
  }
  .local .local-inner h2 {
    font-size: 9.95vw;
    padding-left: 0;
    padding-bottom: 7.46vw;
  }
  .local .local-inner .local-map {
    flex-direction: column;
    gap: 4.98vw;
  }
  .local .local-inner .local-map .local-guide {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.73vw;
    justify-items: center;
  }
  .local .local-inner .local-map .local-guide .local-guide-info {
    width: 27.36vw;
    gap: 1.49vw;
  }
  .local .local-inner .local-map .local-guide .local-guide-info h4 {
    font-size: 3.23vw;
  }
  .local .local-inner .local-map .local-guide .local-guide-info p {
    font-size: 2.24vw;
  }
  .local .local-inner .local-map .local-map-frame {
    width: 100%;
  }
}

.activity {
  padding-top: 16.88vw;
  padding-bottom: 21.11vw;
  position: relative;
  overflow: hidden;
}
.activity .activity-brush-1 {
  position: absolute;
  bottom: 8.33vw;
  right: -16.18vw;
  width: 58.06vw;
  aspect-ratio: 1.66/1;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 100;
}
.activity .activity-lead {
  position: relative;
  width: 100%;
  height: 34.65vw;
  margin-bottom: 5.42vw;
}
.activity .activity-lead h2 {
  position: absolute;
  top: 50%;
  right: 3.68vw;
  transform: translateY(-50%);
  font-size: 6.39vw;
  font-weight: normal;
  text-align: center;
}
.activity .activity-lead img {
  width: 85.49vw;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  left: -6.67vw;
}
.activity .activity-inner {
  padding-left: 8.33vw;
  display: flex;
  gap: 5.63vw;
  margin-bottom: 4.58vw;
}
.activity .activity-inner h3 {
  font-size: 3.47vw;
  font-weight: normal;
}
.activity .activity-inner .activity-detail p {
  padding-top: 0.69vw;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-size: 1.04vw;
  margin-bottom: 1.81vw;
}
.activity .activity-inner .activity-detail .activity-detail-link a {
  display: flex;
  align-items: baseline;
  gap: 0.76vw;
}
.activity .activity-inner .activity-detail .activity-detail-link a svg {
  width: 12.36vw;
  aspect-ratio: 16.18/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.activity .activity-inner .activity-detail .activity-detail-link a span {
  font-size: 1.11vw;
}
.activity .activity-slider .activity-swiper {
  overflow: hidden;
}
.activity .activity-slider .activity-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.activity .activity-slider .activity-swiper .swiper-slide {
  width: 18.68vw;
}
.activity .activity-slider .activity-swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 1/1.15;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .activity {
    padding-top: 14.93vw;
    padding-bottom: 22vw;
  }
  .activity .activity-brush-1 {
    width: 60vw;
    right: -14.93vw;
    bottom: 0;
  }
  .activity .activity-lead {
    height: auto;
    margin-bottom: 7.46vw;
  }
  .activity .activity-lead img {
    position: static;
    width: 100%;
  }
  .activity .activity-lead h2 {
    position: static;
    transform: none;
    font-size: 9.95vw;
    padding: 4.98vw 4.98vw 0;
  }
  .activity .activity-inner {
    flex-direction: column;
    padding-left: 4.98vw;
    padding-right: 4.98vw;
    gap: 3.73vw;
    margin-bottom: 7.46vw;
  }
  .activity .activity-inner h3 {
    font-size: 7.46vw;
  }
  .activity .activity-inner .activity-detail p {
    font-size: 3.23vw;
    margin-bottom: 3.73vw;
  }
  .activity .activity-inner .activity-detail .activity-detail-link a {
    gap: 2.49vw;
  }
  .activity .activity-inner .activity-detail .activity-detail-link a svg {
    width: 29.85vw;
  }
  .activity .activity-inner .activity-detail .activity-detail-link a span {
    font-size: 3.23vw;
  }
  .activity .activity-slider .activity-swiper .swiper-slide {
    width: 44.78vw;
  }
}

.location {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 13.89vw;
}
.location h2 {
  font-size: 6.39vw;
  font-weight: normal;
  margin-bottom: 4.17vw;
}
.location .location-address {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #0e221c;
  padding-bottom: 0.35vw;
  gap: 0.69vw;
  margin-bottom: 4.17vw;
}
.location .location-address svg {
  width: 0.97vw;
  aspect-ratio: 1/1.64;
  -o-object-fit: contain;
     object-fit: contain;
}
.location .location-address p {
  font-size: 0.97vw;
}
.location .location-map {
  width: 100%;
  aspect-ratio: 2.05/1;
  border: 1px solid #000;
}
@media (max-width: 767px) {
  .location {
    padding-top: 14.93vw;
  }
  .location h2 {
    font-size: 9.95vw;
    margin-bottom: 4.98vw;
  }
  .location .location-address {
    gap: 2.49vw;
    padding-bottom: 1.24vw;
    margin-bottom: 4.98vw;
  }
  .location .location-address svg {
    width: 2.99vw;
  }
  .location .location-address p {
    font-size: 2.99vw;
  }
  .location .location-map {
    aspect-ratio: 1/1;
  }
}

.about {
  padding-top: 12.36vw;
  padding-left: 8.33vw;
  padding-bottom: 12.29vw;
}
.about h2 {
  font-size: 6.39vw;
  font-weight: normal;
  margin-bottom: 5.83vw;
}
.about .about-content {
  width: 70.49vw;
  border-top: 1px solid #0e221c;
}
.about .about-content ul {
  width: 100%;
}
.about .about-content ul li {
  width: 100%;
  height: 5.83vw;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #0e221c;
}
.about .about-content ul li .about-key {
  width: 17.57vw;
  font-size: 1.11vw;
}
.about .about-content ul li .about-value {
  line-height: 2;
  font-size: 1.11vw;
}
@media (max-width: 767px) {
  .about {
    padding-top: 14.93vw;
    padding-left: 4.98vw;
    padding-right: 4.98vw;
    padding-bottom: 14.93vw;
  }
  .about h2 {
    font-size: 9.95vw;
    margin-bottom: 7.46vw;
  }
  .about .about-content {
    width: 100%;
  }
  .about .about-content ul li {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 3.73vw 0;
  }
  .about .about-content ul li .about-key {
    width: 100%;
    font-size: 3.48vw;
    margin-bottom: 1.49vw;
  }
  .about .about-content ul li .about-value {
    font-size: 3.23vw;
  }
}

.reservation {
  width: 100%;
  aspect-ratio: 2.05/1;
  background-image: url("../img/reservation.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.reservation a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reservation a span {
  width: 14.86vw;
  aspect-ratio: 3.75/1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
  font-size: 1.94vw;
}
@media (max-width: 767px) {
  .reservation {
    aspect-ratio: 1/1.2;
  }
  .reservation a span {
    width: 44.78vw;
    font-size: 4.48vw;
  }
}

@keyframes experience-blink {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0.2;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
  }
}
@media (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}