@charset "utf-8";

/* CSS Document */
.l-header {
  transition: opacity 0.5s;
  transition-delay: 4s;
}

.l-header__menu {
  >.l-header__list {
    transition: transform 0.5s;
    transition-delay: 4s;
  }
}

body.js-loading {
  width: 100%;
  height: 100%;
  position: fixed;
  overflow-y: scroll;

  .l-header {
    opacity: 0;
    pointer-events: none;
  }

  .l-header__menu {
    >.l-header__list {
      transform: translateY(-8rem) !important;

      @media screen and (max-width: 768px) {
        transform: translateY(-5.6rem) !important;
      }
    }
  }
}

body,
.l-villa .box_text {
  transition: background 0.5s;
}

body.dark,
body.dark .l-villa .box_text {
  background: #293534;
  color: #fdfcfb;
}

body.dark .l-villa .experiences .box .item h4 {
  color: #fdfcfb;
}

main {
  overflow: clip;
}

/* loading Section */
.l-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e7e2d7;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;

  .js-loading & {
    opacity: 1;
    pointer-events: all;
  }

  .scene01,
  .scene02 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-duration: 1s;
    animation-name: fade-in, fade-out;
    animation-iteration-count: 1;
    animation-delay: 0.5s, 3.5s;

    p {
      text-align: center;
      font-size: 2.4rem;
      letter-spacing: 0.27em;
      font-weight: 700;
    }
  }

  .scene02 {
    animation-name: fade-in;
    animation-delay: 4s;
  }

  .progress {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    border: 0.1rem solid #414a47;
    border-left-color: rgba(65, 74, 71, 0.2);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5.6rem;
    margin: 0 auto;
    z-index: 10;
    animation: rotation 2s linear infinite;
  }

  @media screen and (max-width: 768px) {

    .scene01,
    .scene02 {
      p {
        font-size: 1.8rem;
      }
    }
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* MV Section */
.l-mv {
  position: relative;

  .ttl_mv {
    position: absolute;
    left: 11.2rem;
    bottom: 6.4rem;
    color: #fff;
    z-index: 10;

    .en {
      display: block;
      font-size: 12.4rem;
      line-height: 1;
      font-weight: 400;
      overflow: hidden;

      >span {
        display: block;
        transition: transform 1.5s cubic-bezier(0.93, 0, 0.61, 0.99);
        transition-delay: 2s;
      }

      &:nth-of-type(2) {
        margin-left: 8.1rem;
        margin-top: -5.5rem;

        >span {
          transition-delay: 2.2s;

          >span {
            &:nth-child(1) {
              letter-spacing: -0.08em;
            }

            &:nth-child(2) {
              letter-spacing: -0.07em;
            }
          }
        }
      }

      &:nth-of-type(3) {
        margin-left: 3.1rem;
        margin-top: -5.5rem;

        >span {
          transition-delay: 2.4s;

          >span {
            &:nth-child(1) {
              letter-spacing: -0.04em;
            }

            &:nth-child(2) {
              letter-spacing: -0.02em;
            }

            &:nth-child(3) {
              letter-spacing: -0.08em;
            }

            &:nth-child(4) {
              letter-spacing: -0.07em;
            }
          }
        }
      }
    }

    .jp01 {
      display: block;
      font-size: 2.8rem;
      font-weight: 700;
      line-height: 1.76;
      margin-left: 12rem;
      overflow: hidden;

      >span {
        display: block;
        transition: transform 1.5s cubic-bezier(0.93, 0, 0.61, 0.99);
        transition-delay: 2.8s;
      }

      &:nth-of-type(4) {
        margin-top: 0.8rem;

        >span {
          transition-delay: 2.6s;
        }
      }
    }
  }

  .box.movie {
    &::after {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(11, 65, 67, 0.7) 0%, rgba(11, 65, 67, 0) 22rem), rgba(18, 127, 96, 0.19);
    }

    video,
    img {
      width: 100%;
      height: 100svh;
      object-fit: cover;
      pointer-events: none;
    }
  }

  .dec_text {
    font-size: 1rem;
    white-space: nowrap;
    writing-mode: vertical-rl;
    position: absolute;
    top: 0;
    right: 8rem;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    transition: opacity 0.5s;
    transition-delay: 4s;
  }

  .js-loading & {
    .ttl_mv {
      .en {
        >span {
          transform: translateY(100%);
        }
      }

      .jp01 {
        >span {
          transform: translateY(100%);
        }
      }
    }

    .dec_text {
      opacity: 0;
    }
  }

  @media screen and (max-width: 768px) {
    .ttl_mv {
      left: 2.4rem;

      .en {
        font-size: 6.6rem;

        &:nth-of-type(2) {
          margin-left: 4.55rem;
          margin-top: -2.8rem;
        }

        &:nth-of-type(3) {
          margin-left: 1.74rem;
          margin-top: -2.8rem;
        }
      }

      .jp01 {
        font-size: 1.6rem;
        margin-left: 6.743rem;

        &:nth-of-type(4) {
          margin-top: 0.4rem;
        }
      }
    }

    .dec_text {
      top: auto;
      right: 3rem;
      bottom: 9.7rem;
    }
  }
}

/* btn */
.btn00 {
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  position: relative;

  &::after {
    content: "";
    display: block;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    box-sizing: border-box;
    border: 0.1rem solid rgba(70, 83, 82, 0.2);
    transition: background 0.5s;
  }

  &::before {
    content: "";
    display: block;
    width: 0.9rem;
    height: 0.9rem;
    border-top: 0.2rem solid #465352;
    border-right: 0.2rem solid #465352;
    transform: rotate(45deg) scale(0.9);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2.8rem;
    margin: auto 0;
    transition:
      width 0.3s,
      height 0.3s;
  }

  .slot_ani {
    position: relative;
    display: inline-block;
    transition: 0.3s;
    transform-origin: 50% 0%;
    transform-style: preserve-3d;

    &::after {
      content: attr(data-text);
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 0;
      z-index: -1;
      transform-origin: 50% 0%;
      -webkit-transform: translate3d(0, 107%, 0) rotateX(-90deg);
      transform: translate3d(0, 107%, 0) rotateX(-90deg);
    }
  }

  @media (hover: hover) {
    &:hover {
      &::after {
        background: #465352;
      }

      &::before {
        width: 0.6rem;
        height: 0.6rem;
        border-radius: 50%;
        background: #d9d9d9;
        border-color: transparent;
        right: 2.7rem;
      }

      .slot_ani {
        transform: translate3d(0, 0, -30px) rotateX(90deg);
      }
    }
  }
}

/* Story Section */
.l-story {
  padding: 20.8rem 0 24rem;

  .inner {
    position: relative;
    z-index: 0;

    padding: 0 0 25rem;
    margin: 0 auto;
    width: 65.97%;

    .box_text {
      .ttl02 {
        margin: 0 0 4.7rem -11.1rem;
        font-size: 2rem;
        font-style: normal;
        font-weight: 400;
      }

      .text_heading {
        margin-bottom: 5.6rem;

        .en {
          margin-bottom: 3.3rem;
          display: block;
          font-size: 1.3rem;
          font-style: normal;
          font-weight: 400;
        }

        strong {
          font-size: 3rem;
          font-style: normal;
          font-weight: 700;
          line-height: 166%;

          >span {
            display: inline-block;
            overflow: hidden;

            >span {
              display: inline-block;
              transform: translateY(100%);
              transition: transform 1s cubic-bezier(0.93, 0, 0.61, 0.99);
            }

            &:nth-of-type(2) {
              >span {
                transition-delay: 0.2s;
              }
            }

            &:nth-of-type(3) {
              >span {
                transition-delay: 0.4s;
              }
            }
          }

          &.show {
            >span {
              >span {
                transform: none;
              }
            }
          }
        }
      }

      .text_story {
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 400;
        line-height: 200%;
        letter-spacing: 0.07em;
        padding-left: 2.8em;

        &:nth-of-type(n + 2) {
          margin-top: 2em;
        }
      }
    }

    .box_map {
      position: absolute;
      z-index: -1;
      bottom: -0.6rem;
      right: calc(50% - 50vw);
      width: 110.3rem;
    }
  }

  .box_img {
    overflow: hidden;
    display: flex;

    .card_img {
      width: 300vw;
      animation: story_bc 80s linear infinite;

      img {
        display: block;
        width: 300vw;
        max-width: none;
      }
    }
  }

  @media screen and (max-width: 768px) {
    padding: 10.2rem 0 6.4rem;

    .inner {
      padding: 0;
      width: 75.38%;

      .box_text {
        .ttl02 {
          margin: 0 0 4.5rem -1.7rem;
        }

        .text_heading {
          margin-bottom: 3.2rem;

          .en {
            margin-bottom: 3.4rem;
          }

          strong {
            font-size: 2.4rem;
            line-height: 1.4;
          }
        }

        .text_story {
          font-size: 1.3rem;
          padding-left: 0;
        }
      }

      .box_map {
        position: static;
        margin: -47px calc(50% - 50vw) -51px;
        width: 100vw;
      }
    }

    .box_img {
      .card_img {
        width: 850vw;
        animation: story_bc 60s linear infinite;

        img {
          width: 850vw;
          object-fit: cover;
        }
      }
    }
  }
}

@keyframes story_bc {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Three Hours Section */
.l-threehours {
  position: relative;
  z-index: 0;
  padding: 20.8rem 0 0;
  margin: 16rem 0 20.8rem;

  &::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    background-color: #465352;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 1px;
    height: 15rem;
    opacity: 0.3;
  }

  >.inner {
    margin: 0 auto;
    padding-bottom: 17rem;
    width: 121.6rem;

    .ttl02 {
      text-align: center;
      font-size: 3rem;
      font-style: normal;
      font-weight: 700;
      line-height: 166%;
      overflow: hidden;

      >span {
        display: block;
        transform: translateY(100%);
        transition: transform 1s cubic-bezier(0.93, 0, 0.61, 0.99);
      }

      &.show {
        >span {
          transform: none;
        }
      }
    }

    p {
      margin: 2.4rem 0 5.6rem;
      text-align: center;
      font-size: 1.4rem;
      font-style: normal;
      font-weight: 400;
      line-height: 192%;
      letter-spacing: 0.07em;
    }

    .list_icon {
      display: flex;
      justify-content: center;

      li {
        width: 22.4rem;
        aspect-ratio: 1;
        font-size: 1.8rem;
        font-style: normal;
        font-weight: 700;
        line-height: 192%;
        display: flex;
        flex-flow: column;
        padding-top: 3.6rem;
        align-items: center;

        .icon01 {
          width: 13.7rem;
          margin-bottom: -1rem;
        }

        .icon02 {
          width: 14.6rem;
          margin-bottom: -1rem;
        }

        .icon03 {
          width: 6.8rem;
          margin-bottom: -1rem;
        }
      }
    }
  }

  .scroll_area {
    height: 700dvh;

    .inner {
      width: 100%;
      padding: 12px;
      position: sticky;
      top: 0;
      left: 0;
    }

    .scroll_item {
      position: relative;
      height: calc(100dvh - 24px);

      &.sea,
      &.stay {
        position: absolute;
        top: 12px;
        left: 12px;
        right: 12px;
        overflow: hidden;
        height: 0;
        transition: height 0.7s;
        z-index: 2;
      }

      &.stay {
        z-index: 3;
      }

      .scroll_wrap {
        width: 100%;
        height: calc(100dvh - 24px);
        position: relative;

        .progress {
          position: absolute;
          left: 0;
          right: 0;
          bottom: 0;
          height: .6rem;

          .progress_bar {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 0;
            background: rgba(255, 255, 255, .5);
          }
        }
      }

      .box_ttl {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        width: 480px;
        aspect-ratio: 1;
        border-radius: 50%;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        color: #fdfcfb;
        /* border: 1px solid rgba(255, 255, 255, .3); */
        border-radius: 50%;
        z-index: 2;

        .c-btn-circle_svg {
          position: absolute;
          width: 100%;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          height: 100%;
          border-radius: 50%;
          transition: all cubic-bezier(0, 1.25, 0.6, 1.33) 0.5s;

          &:before {
            content: "";
            display: block;
            position: absolute;
            top: 1px;
            right: 1px;
            bottom: 1px;
            left: 1px;
            border: rgba(255, 255, 255, 0.2) solid 1px;
            border-radius: 50%;
          }

          ._svg {
            width: 100%;
            max-width: 100%;
            border-radius: 50%;
            -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
            stroke-dasharray: 1300px 1300px;
            stroke-dashoffset: 1300px;
            opacity: 1;
            fill: none;
            stroke: #fff;
            stroke-width: 1;
            -webkit-animation: svg-circle-hover-out 2s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
            animation: svg-circle-hover-out 2s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;

            &:hover {
              animation: svg-circle-hover 2s cubic-bezier(0.075, 0.82, 0.165, 1) 0s forwards;
            }
          }
        }

        h3 {
          font-size: 36px;
          font-style: normal;
          font-weight: 400;
          line-height: 100%;
        }

        p {
          margin: 39px 0 4.8rem;
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 192%;
          letter-spacing: 0.07em;
          text-align: center;

          strong {
            display: block;
            font-size: 30px;
            letter-spacing: 0;
            font-style: normal;
            margin-bottom: 4px;
            font-weight: 700;
            line-height: 166%;
            overflow: hidden;

            >span {
              display: block;
              transition: 0.3s;
              transform-origin: 50% 0%;
              transform-style: preserve-3d;

              &::after {
                content: attr(data-text);
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 0;
                z-index: -1;
                transform-origin: 50% 0%;
                -webkit-transform: translate3d(0, 107%, 0) rotateX(-90deg);
                transform: translate3d(0, 107%, 0) rotateX(-90deg);
              }
            }
          }
        }

        .dec_text {
          font-size: 18px;
          font-style: normal;
          font-weight: 700;
          line-height: 192%;
        }

        @media (hover: hover) {
          &:hover {
            p {
              strong {
                >span {
                  transform: translate3d(0, 0, -30px) rotateX(90deg);
                }
              }
            }
          }
        }
      }

      .wrapper_thumbnail {
        width: 424px;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 36px;
        margin: 0 auto;

        li {
          position: relative;
          cursor: pointer;

          &::after {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 1px solid transparent;
            background: rgba(0, 0, 0, 0.5);
            transition:
              border-color 0.3s,
              background 0.3s;
          }

          &.swiper-slide-thumb-active {
            &::after {
              border: 1px solid #fff;
              background: none;
            }
          }
        }
      }
    }

    &.scene02 {
      .scroll_item {
        &.sea {
          height: calc(100dvh - 24px);
        }

        &.stay {
          transition-delay: 0.5s;
        }
      }
    }

    &.scene03 {
      .scroll_item {
        &.stay {
          height: calc(100dvh - 24px);
        }

        &.sea {
          transition-delay: 0.5s;
        }
      }
    }
  }

  .wrapper_slide {
    overflow: hidden;
    position: relative;
    z-index: 0;
    margin: 0 auto;

    &::after {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(55, 27, 27, 0.43);
      z-index: 2;
    }

    .island & {
      &::after {
        background: rgba(27, 55, 39, 0.64);
      }
    }

    .sea & {
      &::after {
        background: rgba(48, 110, 126, 0.33);
      }
    }
  }

  .block_slide {
    .card_slide {
      position: relative;
      z-index: 0;
      display: flex;
      flex-flow: column;
      align-items: center;
      justify-content: center;

      figure {
        width: 100%;

        img {
          width: 100%;
          height: calc(100dvh - 24px);
          object-fit: cover;
        }

        .anim-target {
          display: block;
          transform-origin: center;
          transform: scale(1.2);
          transition: transform 10s;
        }
      }

      &.is-anim {
        figure {
          img {
            transform: scale(1);
          }
        }
      }
    }
  }

  @keyframes ani_scale01 {
    0% {
      transform: scale(1.2);
    }

    100% {
      transform: scale(1);
    }
  }

  @media screen and (max-width: 768px) {
    padding: 20.5rem 0 11rem;
    margin: 8rem 0 0;

    >.inner {
      padding-bottom: 10rem;
      width: auto;

      .ttl02 {
        font-size: 2.4rem;
      }

      p {
        font-size: 1.3rem;
      }

      .list_icon {

        /*
        display: block;
        */
        li {
          width: 18rem;
          margin: 0 auto;
          font-size: 1.3rem;
          padding-top: 2rem;

          .icon01 {
            width: 8.59rem;
            margin-bottom: -0.5rem;
          }

          .icon02 {
            width: 9.3rem;
            margin-bottom: -0.5rem;
          }

          .icon03 {
            width: 4.1rem;
            margin-bottom: -0.5rem;
          }
        }
      }
    }

    .scroll_area {
      height: auto;

      .inner {
        width: 100%;
        padding: 1.2rem;
        position: relative;
        top: auto;
        left: auto;
      }

      .scroll_item {
        height: auto;

        &.sea,
        &.stay {
          margin-top: 8rem;
          position: relative;
          top: auto;
          left: auto;
          right: auto;
          height: auto;
        }

        .scroll_wrap {
          height: auto;
        }

        .box_ttl {
          position: relative;
          top: auto;
          left: auto;
          right: auto;
          bottom: auto;
          width: auto;
          aspect-ratio: unset;
          transform: none !important;
          margin-top: 4rem;
          color: inherit;
          border: 0;
          border-radius: 0;

          .c-btn-circle_svg {
            display: none;
          }

          h3 {
            font-size: 2.4rem;
          }

          p {
            margin: 2rem 0 0;
            font-size: 1.3rem;

            strong {
              font-size: 2.4rem;
              margin-bottom: 0.4rem;
            }
          }

          .dec_text {
            margin-top: 4rem;
            width: 20.8rem;
            font-size: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 0.1em solid rgba(14, 25, 21, 0.3);
            position: relative;

            &::before {
              content: "";
              display: block;
              width: 3rem;
              height: 3rem;
              background: url(../img/common/icon_arrow_btn01.svg) no-repeat left top / 100% auto;
              position: absolute;
              right: 0;
              top: 0;
            }
          }
        }

        .wrapper_thumbnail {
          margin-top: 1rem;
          width: auto;
          position: relative;
          left: auto;
          right: auto;
          bottom: auto;
        }
      }

      &.scene02 {
        .scroll_item {
          &.sea {
            height: auto;
          }
        }
      }

      &.scene03 {
        .scroll_item {
          &.stay {
            height: auto;
          }
        }
      }
    }

    .block_slide {
      .card_slide {
        figure {
          img {
            height: auto;
          }
        }
      }
    }
  }
}

/* Villa Section */
.l-villa {
  padding: 2.1rem 0 0;

  .ttl02 {
    max-width: 108.6rem;
    width: calc(100% - 2rem);
    margin: 0 auto 8.9rem;

    .en {
      font-size: 6.6rem;
      font-weight: 400;
      display: block;
      overflow: hidden;

      >span {
        display: block;
        transform: translateY(100%);
        transition: transform 1s cubic-bezier(0.93, 0, 0.61, 0.99);
      }
    }

    .jp01 {
      font-size: 2rem;
      font-weight: 700;
      display: block;
      padding-left: 7.4rem;
      margin-top: 2rem;
      position: relative;

      &::before {
        content: "";
        display: block;
        width: 3.2rem;
        height: 0.1rem;
        background: #465352;
        transform: rotate(120deg);
        position: absolute;
        left: 4.7rem;
        top: 0.9rem;
      }
    }

    &.show {
      .en {
        >span {
          transform: none;
        }
      }
    }
  }

  .inner {
    display: flex;
    align-items: flex-end;
    padding-bottom: 6.4rem;

    .image {
      width: calc(50% + 24.8rem);
      overflow: hidden;
    }
  }

  .box_text {
    background: #e7e2d7;
    width: 63.5rem;
    margin-left: -22.6rem;
    padding: 8rem 9.6rem 3.2rem;
    position: relative;
    z-index: 2;

    p {
      font-size: 1.4rem;
      letter-spacing: 0.07em;
      line-height: 1.92;

      +p {
        margin-top: 1.92em;
      }
    }

    .btn00 {
      margin-top: 9.6rem;
    }
  }

  .experiences {
    max-width: 131.2rem;
    margin: 19.2rem auto 0;
    padding-bottom: 26rem;

    .ttl {
      width: 90.6rem;
      margin: 0 6.5rem 12.8rem auto;
      display: flex;
      justify-content: space-between;

      h3 {
        .en {
          display: block;
          font-size: 1.9rem;
          font-weight: 400;
        }

        .jp01 {
          display: block;
          font-size: 3rem;
          font-weight: 700;
          margin-top: 2.3rem;
          overflow: hidden;

          >span {
            display: block;
            transform: translateY(100%);
            transition: transform 1s cubic-bezier(0.93, 0, 0.61, 0.99);
          }
        }

        &.show {
          .jp01 {
            >span {
              transform: none;
            }
          }
        }
      }

      p {
        width: 41.1rem;
        margin-right: 4.4rem;
        font-size: 1.6rem;
        letter-spacing: 0.07em;
        line-height: 2;
      }
    }

    .box {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 4.4rem;

      .item {
        margin: 0 6.9rem;
        position: relative;

        &:nth-child(2) {
          margin-top: 22.4rem;
        }

        &:nth-child(3) {
          margin: -6rem 0 0 13.8rem;
        }

        &:nth-child(4) {
          margin: 32.1rem 7.9rem 0 5.9rem;
        }

        &:nth-child(5) {
          margin-top: -17rem;
        }

        .image {
          display: block;
          overflow: hidden;
          mask-repeat: no-repeat;
          mask-size: 200% 100%;
          mask-position: -100% 0;
          mask-image: radial-gradient(circle farthest-corner at 100% 0, #000 60%, transparent 90%);

          &.show {
            animation: maskAnimation 3s forwards cubic-bezier(0.215, 0.61, 0.355, 1);
          }

          @media (hover: hover) {
            &:hover {
              .image_wrap {
                clip-path: inset(8.387%);

                img {
                  transform: scale(1.15);
                }
              }
            }
          }

          .image_wrap {
            display: block;
            clip-path: inset(0%);
            transition: clip-path 0.5s ease;

            img {
              transition: transform 0.5s ease;
            }
          }
        }

        h4 {
          white-space: nowrap;
          writing-mode: vertical-rl;
          font-size: 1.7rem;
          color: #465352;
          font-weight: 400;
          transform: rotate(180deg);
          position: absolute;
          top: -3.9rem;
          left: -3.2rem;
          opacity: 0.6;
          transition: color 0.5s;
        }

        h5 {
          font-size: 2.4rem;
          margin: 3.3rem 0 3.2rem;
          font-weight: 700;
        }

        p {
          font-size: 1.4rem;
          line-height: 1.93;
          letter-spacing: 0.07em;

          +p {
            margin-top: 1.93em;
          }
        }
      }
    }
  }

  @media screen and (max-width: 768px) {
    padding: 2.1rem 0 0;

    .ttl02 {
      max-width: 32.6rem;
      width: auto;
      margin: 0 auto 8.6rem;

      .en {
        font-size: 4.4rem;
      }

      .jp01 {
        font-size: 1.6rem;
        margin-top: 1.8rem;
      }
    }

    .inner {
      display: block;
      padding-bottom: 0;

      .image {
        width: 100%;

        img {
          object-fit: cover;
          width: 100%;
          height: 38rem;
        }
      }
    }

    .box_text {
      width: auto;
      margin-left: 0;
      padding: 4rem 3.2rem 3.2rem;

      p {
        font-size: 1.3rem;

        .pc {
          display: none;
        }
      }
    }

    .experiences {
      max-width: none;
      margin: 17.9rem auto 0;
      padding-bottom: 16.5rem;

      .ttl {
        width: 32.6rem;
        margin: 0 auto 6.4rem;
        display: block;

        h3 {
          margin-bottom: 5.2rem;

          .en {
            font-size: 1.4rem;
          }

          .jp01 {
            font-size: 2.2rem;
            margin-top: 1.9rem;
          }
        }

        p {
          width: auto;
          margin-right: 0;
          font-size: 1.3rem;

          .pc {
            display: none;
          }
        }
      }

      .box {
        display: block;

        .item {
          margin: 0 3.2rem 0 5.6rem;

          &:nth-child(2) {
            margin-top: 10.2rem;
          }

          &:nth-child(3) {
            margin: 9.2rem 3.2rem 0 5.6rem;
          }

          &:nth-child(4) {
            margin: 9.2rem 3.2rem 0 5.6rem;
          }

          &:nth-child(5) {
            margin: 9.2rem 3.2rem 0 5.6rem;
          }

          h4 {
            font-size: 1.2rem;
            top: -1.9rem;
            left: -2.2rem;
          }

          h5 {
            font-size: 2rem;
            margin: 3.2rem 0 2.9rem;
          }

          p {
            font-size: 1.3rem;
          }
        }
      }
    }
  }
}

@keyframes maskAnimation {
  0% {
    -webkit-mask-position: -100% 0;
  }

  100% {
    -webkit-mask-position: 100% 0;
  }
}

/* Guide Section */
.l-guide {
  background: #3b8781;
  color: #fff;
  padding: 17.6rem 0 20.8rem;

  .inner {
    .ttl02 {
      max-width: 108.6rem;
      margin: 0 auto 3rem;
      display: flex;
      align-items: center;

      .en {
        font-size: 6.6rem;
        font-weight: 400;
        overflow: hidden;

        >span {
          display: block;
          transform: translateY(100%);
          transition: transform 1s cubic-bezier(0.93, 0, 0.61, 0.99);
        }
      }

      .jp01 {
        font-size: 2rem;
        font-weight: 700;
        margin-top: 0.6rem;
        padding-left: 2.7rem;
        position: relative;

        &::before {
          content: "";
          display: block;
          width: 3.2rem;
          height: 0.1rem;
          background: #fff;
          transform: rotate(120deg);
          position: absolute;
          left: 0.1rem;
          top: 0.9rem;
        }
      }

      &.show {
        .en {
          >span {
            transform: none;
          }
        }
      }
    }

    .copy {
      max-width: 108.6rem;
      margin: 0 auto 8rem;
      padding: 0 7.5rem;
      font-size: 2.4rem;
      line-height: 1.8;
      font-weight: 700;
      letter-spacing: 0;

      >div {
        overflow: hidden;

        >span {
          display: inline-block;
          transform: translateY(100%);
          transition: transform 1s cubic-bezier(0.93, 0, 0.61, 0.99);

          span {
            margin: 0 -0.23em;
          }
        }

        &:nth-of-type(2) {
          >span {
            transition-delay: 0.2s;
          }
        }
      }

      &.show {
        >div {
          >span {
            transform: none;
          }
        }
      }
    }

    .box_img {
      display: flex;
      align-items: flex-start;

      .card_img01 {
        width: 22.05903%;
        margin-top: 4.8611%;
        flex-shrink: 0;
        z-index: 1;
        position: relative;

        img {
          width: 100%;
          aspect-ratio: 31.765 / 42.353;
          object-fit: cover;
        }
      }

      .card_img02 {
        width: 39.0056%;
        margin: 11.875% 0 0 -3.4028%;
        flex-shrink: 0;
        z-index: 0;
        position: relative;

        img {
          width: 100%;
          aspect-ratio: 56.168 / 42.159;
          object-fit: cover;
        }
      }

      .card_img03 {
        width: 28.7118%;
        margin-left: -3.4028%;
        flex-shrink: 0;
        z-index: 2;
        position: relative;

        img {
          width: 100%;
          aspect-ratio: 1;
          object-fit: cover;
        }
      }

      .card_img04 {
        width: 20.3083%;
        margin: 8.4028% 0 0 -3.4028%;
        flex-shrink: 0;
        z-index: 3;
        position: relative;

        img {
          width: 100%;
          aspect-ratio: 29.244 / 39;
          object-fit: cover;
        }
      }
    }

    .box_text {
      max-width: 108.8rem;
      margin: 7.7rem auto 0;
      padding: 0 23.4rem 0 34rem;

      p {
        font-size: 1.6rem;
        line-height: 2;
        letter-spacing: 0.07em;
      }
    }

    .btn00 {
      margin-top: 5.6rem;

      &::after {
        border-color: rgba(255, 255, 255, 0.3);
      }

      &::before {
        border-color: #fff;
      }
    }
  }

  @media screen and (min-width: 769px) {
    .inner {
      .copy {
        &.sp {
          display: none;
        }
      }
    }
  }

  @media screen and (max-width: 768px) {
    padding: 9.2rem 0 11.2rem;

    .inner {
      .ttl02 {
        max-width: 32.6rem;
        margin: 0 auto 3.4rem;
        display: block;

        .en {
          font-size: 4.4rem;
          display: block;
        }

        .jp01 {
          font-size: 1.6rem;
          margin-top: 1.7rem;
          padding-left: 7.4rem;
          display: block;

          &::before {
            left: 4.8rem;
            top: 0.8rem;
          }
        }
      }

      .copy {
        max-width: 32.6rem;
        margin: 0 auto 5.5rem;
        padding: 0;
        font-size: 1.6rem;

        &.pc {
          display: none;
        }

        >div {
          &:nth-of-type(3) {
            >span {
              transition-delay: 0.4s;
            }
          }
        }
      }

      .box_img {
        display: block;

        .card_img01 {
          width: 14.779rem;
          margin-top: 0;

          img {
            width: 14.779rem;
            height: 19.7rem;
          }
        }

        .card_img02 {
          width: 26.134rem;
          margin: -10rem 0.339rem 0 auto;

          img {
            width: 26.134rem;
            height: 19.612rem;
          }
        }

        .card_img03 {
          width: 19.237rem;
          margin: -1.6rem 0 0 5.4rem;

          img {
            width: 19.237rem;
            height: 19.237rem;
          }
        }

        .card_img04 {
          width: 13.606rem;
          margin: -7.5rem 0 0 22.385rem;

          img {
            width: 13.606rem;
            height: 18.158rem;
          }
        }
      }

      .box_text {
        max-width: 32.6rem;
        margin: 5.4rem auto 0;
        padding: 0;

        p {
          font-size: 1.3rem;

          .pc {
            display: none;
          }
        }
      }
    }
  }
}

/* Dining Section */
.l-dining {
  padding: 17.3rem 0 24rem;

  .ttl02 {
    max-width: 108.6rem;
    margin: 0 auto 5.6rem;

    .en {
      display: block;
      font-size: 6.6rem;
      font-weight: 400;
      overflow: hidden;

      >span {
        display: block;
        transform: translateY(100%);
        transition: transform 1s cubic-bezier(0.93, 0, 0.61, 0.99);
      }
    }

    .jp01 {
      display: block;
      font-weight: 700;
      font-size: 2rem;
      padding-left: 6.8rem;
      margin-top: 2rem;
      position: relative;

      &::before {
        content: "";
        display: block;
        width: 3.2rem;
        height: 0.1rem;
        background: #465352;
        transform: rotate(120deg);
        position: absolute;
        left: 4.1rem;
        top: 0.9rem;
      }
    }

    &.show {
      .en {
        >span {
          transform: none;
        }
      }
    }
  }

  .inner {
    max-width: calc(50% + 54.3rem);
    margin-left: auto;
    display: flex;
    align-items: flex-start;

    .box_img {
      padding-top: 8rem;
      width: 52.1rem;
      position: relative;

      .card_img02 {
        width: 29.4rem;
        position: absolute;
        bottom: 5.8rem;
        left: 31.2rem;
      }
    }

    .box_text {
      flex: 1;
      padding: 0.2rem 0 0 15.7rem;

      h3 {
        font-size: 2.4rem;
        font-weight: 700;
        line-height: 1.8;
        margin-bottom: 2.6rem;

        >span {
          display: inline-block;
          overflow: hidden;

          >span {
            display: inline-block;
            transform: translateY(100%);
            transition: transform 1s cubic-bezier(0.93, 0, 0.61, 0.99);
          }

          &:nth-of-type(2) {
            >span {
              transition-delay: 0.2s;
            }
          }

          &:nth-of-type(3) {
            >span {
              transition-delay: 0.4s;
            }
          }
        }

        &.show {
          >span {
            >span {
              transform: none;
            }
          }
        }
      }

      p {
        font-size: 1.4rem;
        letter-spacing: 0.07em;
        line-height: 1.93;

        +p {
          margin-top: 1.93em;
        }
      }

      .btn00 {
        margin-top: 9.6rem;
      }
    }
  }

  @media screen and (max-width: 768px) {
    padding: 9.4rem 0 12rem;

    .ttl02 {
      max-width: 32.6rem;
      margin: 0 auto 8.7rem;

      .en {
        font-size: 4.4rem;
      }

      .jp01 {
        font-size: 1.6rem;
        padding-left: 7.4rem;
        margin-top: 1.7rem;

        &::before {
          left: 4.8rem;
          top: 0.8rem;
        }
      }
    }

    .inner {
      max-width: 32.6rem;
      margin: 0 auto;
      display: block;

      .box_img {
        padding-top: 0;
        width: auto;

        .card_img02 {
          width: 16rem;
          bottom: -9.767rem;
          left: 18.6rem;
        }
      }

      .box_text {
        padding: 15.2rem 0 0;

        h3 {
          font-size: 1.6rem;
          line-height: 1.4;
        }

        p {
          font-size: 1.3rem;
        }
      }
    }
  }
}

/* Info Section */
.l-info {
  padding: 15.7rem 0 9.6rem;

  .inner {
    max-width: 131.2rem;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: flex-start;

    .box_ttl {
      width: 45.2rem;

      .ttl02 {
        display: flex;
        align-items: center;

        .en {
          font-size: 6.6rem;
          display: block;
          font-weight: 400;
          overflow: hidden;

          >span {
            display: block;
            transform: translateY(100%);
            transition: transform 1s cubic-bezier(0.93, 0, 0.61, 0.99);
          }
        }

        .jp01 {
          display: block;
          font-size: 2rem;
          font-weight: 700;
          padding-left: 2.6rem;
          margin-top: 0.5rem;
          position: relative;

          &::before {
            content: "";
            display: block;
            width: 3.2rem;
            height: 0.1rem;
            background: #465352;
            transform: rotate(120deg);
            position: absolute;
            left: 0.1rem;
            top: 0.9rem;
          }
        }

        &.show {
          .en {
            >span {
              transform: none;
            }
          }
        }
      }
    }

    .btn00 {
      position: absolute;
      left: 0;
      top: 13.3rem;
    }

    .list_info {
      flex: 1;
      padding-top: 0.1rem;

      .card_info {
        border-bottom: 0.1rem solid #9eadab;

        a {
          display: flex;
          padding: 4.8rem 0;
          position: relative;

          &::before {
            content: "";
            display: block;
            width: 3.2rem;
            height: 3.2rem;
            background: #ccc5b7;
            border-radius: 50%;
            position: absolute;
            top: 0;
            bottom: 0;
            right: 3.9rem;
            margin: auto 0;
            opacity: 0;
            transition: opacity 0.3s;
          }

          &::after {
            content: "";
            display: block;
            width: 0.5rem;
            height: 0.5rem;
            border-top: 0.1rem solid #465352;
            border-right: 0.1rem solid #465352;
            transform: rotate(45deg);
            position: absolute;
            top: 0;
            bottom: 0;
            right: 5.4rem;
            margin: auto 0;
          }

          @media (hover: hover) {
            &:hover {
              &::before {
                opacity: 1;
              }
            }
          }

          time {
            width: 12.5rem;
            font-size: 1.6rem;
            line-height: 2;
          }

          .cate {
            width: 14rem;
            font-size: 1.6rem;
            line-height: 2;

            &::before {
              content: "[";
            }

            &::after {
              content: "]";
            }
          }

          .info_ttl {
            flex: 1;
            font-size: 1.6rem;
            line-height: 2;
            letter-spacing: 0.07em;
            font-weight: 400;
            padding-right: 15.4rem;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            -webkit-line-clamp: 2;
            line-clamp: 2;
          }
        }
      }
    }
  }

  @media screen and (max-width: 768px) {
    padding: 10.8rem 0 6.4rem;

    .inner {
      max-width: 32.6rem;
      display: block;

      .box_ttl {
        width: auto;

        .ttl02 {
          .en {
            font-size: 4.4rem;
          }

          .jp01 {
            font-size: 1.6rem;

            &::before {
              top: 0.8rem;
            }
          }
        }
      }

      .btn00 {
        position: relative;
        left: auto;
        top: auto;
        margin-top: 6rem;
      }

      .list_info {
        padding-top: 1.4rem;

        .card_info {
          a {
            padding: 3.2rem 4.6rem 3.2rem 0;
            flex-wrap: wrap;

            &::before {
              right: 0;
            }

            &::after {
              right: 1.5rem;
            }

            time {
              width: 10.5rem;
              font-size: 1.4rem;
            }

            .cate {
              width: calc(100% - 10.5rem);
              font-size: 1.3rem;
            }

            .info_ttl {
              flex: auto;
              width: 100%;
              font-size: 1.4rem;
              padding-right: 0;
              margin-top: 0.6rem;
            }
          }
        }
      }
    }
  }
}

@keyframes svg-circle-hover-out {
  0% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    stroke-dashoffset: 0;
  }

  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    stroke-dashoffset: -1300px;
  }
}

@keyframes svg-circle-hover {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    stroke-dashoffset: 1300px;
  }

  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    stroke-dashoffset: 0;
  }
}