@charset "utf-8";
/* CSS Document */

/* 共通 */
.wrapper_bc {
  background: #293534;
  overflow: hidden;
}

.ttl02 {
  color: #fdfcfb;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 103%;
  @media screen and (max-width: 768px) {
  }
}

.btn02 {
  position: relative;
  z-index: 0;
  display: block;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 700;
  /* line-height: 200%; */
  display: flex;
  align-items: center;
  gap: 0.8rem;
  .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);
    }
  }
  svg {
    display: none;
    width: 6rem;
    transition: 0.3s;
    transform-origin: center;
  }

  &::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;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 2.8rem;
    margin: auto 0;
    transition:
      width 0.3s,
      height 0.3s;
  }
  &: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);
    }
  }

  &.set_invert {
    &::after {
      filter: invert(100%);
    }
    &::before {
      filter: invert(100%);
    }
  }
}
/* 邸宅---------------------------------------------------------- */
/* Sub MV Section */
.page_residence .l-submv01 {
  &::after {
    background-image: url("../img/residence/mv.jpg");
    background-position: 70% 0;
  }
}

.l-concept {
  padding: 32rem 0 4.6rem;
  color: #fdfcfb;
  .inner {
    margin: 0 auto 11.2rem;
    width: 121.6rem;
    .ttl02 {
      position: relative;
      z-index: 0;
      margin-bottom: 6.2rem;
      font-size: 1.9rem;
      font-weight: 400;
      line-height: 103%;
      &::after {
        content: "";
        display: block;
        position: absolute;
        z-index: 0;
        background-color: #fdfcfb;
        bottom: 0;
        left: 50%;
        transform: translate(0, 0);
        width: 1px;
        height: 15rem;
      }
    }
    .text-head {
      margin-bottom: 4.8rem;
      text-align: center;
      .en {
        margin-bottom: 3rem;
        display: block;
        font-size: 1.7rem;
        font-weight: 400;
        line-height: 120%;
        letter-spacing: 0.07em;
      }
      strong {
        overflow: hidden;
        display: inline-block;
        font-size: 3rem;
        font-weight: 700;
        line-height: 159%;
      }
    }
    .text_concept {
      font-size: 1.6rem;
      font-weight: 400;
      line-height: 200%;
      letter-spacing: 0.07em;
      text-align: center;
      & + .text_concept {
        margin-top: 2em;
      }
    }
  }
  .block_img {
    position: relative;
    z-index: 0;
    margin: 0 auto;
    width: 144rem;
    /*
    aspect-ratio: 1440/1124;
    */
    aspect-ratio: 1440/800;
    .box_img {
      position: absolute;
      z-index: 1;
      overflow: hidden;
      will-change: transform;

      &.img01 {
        width: 40.4rem;
        top: -17.8rem;
        left: 0;
      }
      &.img02 {
        width: 56.4rem;
        top: 32.2rem;
        left: 22.9rem;
      }
      &.img03 {
        width: 54.6rem;
        top: 13.5rem;
        right: 0;
      }
      &.img04 {
        width: 28rem;
        top: 77.2rem;
        right: 28.1rem;
      }
      img {
        display: block;
        width: 100%;
        height: auto;
        will-change: transform;
        transform: scale(1.2);
      }
    }
  }
  @media screen and (max-width: 768px) {
    padding: 24rem 0 4.6rem;
    .inner {
      margin: 0 auto 6rem;
      width: 32.6rem;
      .text-head {
        margin-bottom: 4.8rem;
        text-align: center;
        strong {
          font-size: 2.8rem;
        }
      }
      .text_concept {
        font-size: 1.4rem;
        text-align: left;
        & + .text_concept {
          margin-top: 1.6em;
        }
      }
    }
    .block_img {
      z-index: 1;
      width: 39rem;
      aspect-ratio: 390/400;
      .box_img {
        position: absolute;
        z-index: 1;
        overflow: hidden;
        will-change: transform;

        &.img01 {
          width: 15.9rem;
          top: 2rem;
          left: 0;
        }
        &.img02 {
          width: 20.2rem;
          top: 30rem;
          left: 2rem;
        }
        &.img03 {
          width: 20.2rem;
          top: -3rem;
          right: 0;
        }
        &.img04 {
          width: 12.53rem;
          top: 22rem;
          right: 2rem;
        }
      }
    }
  }
}
/* Features Section */
.l-features {
  position: relative;
  z-index: 0;
  padding: 16.3rem 0 12.8rem;
  width: 144rem;
  margin: 0 auto;
  .ttl02 {
    margin: 0 auto 6rem;
    width: 121.6rem;
  }
  .inner {
    width: 130rem;
    margin: 0 auto 0 0;
    li {
      color: #fdfcfb;
      display: flex;
      padding-bottom: 13rem;
      &.card01 {
        background: #2f6c67;
        .box_text {
          padding-top: 20.7rem;
        }
      }
      &.card02 {
        background: #e7e2d7;
        color: #465352;
        .btn02 {
          svg {
            rect {
              stroke: #465352 !important;
            }
            path {
              fill: #465352 !important;
              stroke: #465352 !important;
            }
          }
        }
      }
      &.card03 {
        background: #465352;
      }
      &.card04 {
        background: rgba(47, 108, 103, 0.2);
      }
      .box_img {
        width: 69rem;
      }
      .box_text {
        padding: 15.1rem 6.4rem 6.4rem;
        width: 74.2rem;

        .ttl03 {
          margin-bottom: 2.2rem;
          font-size: 2.4rem;
          font-weight: 700;
          line-height: 180%;
          .en {
            display: block;
            font-size: 1.4rem;
            font-style: normal;
            line-height: 120%;
            margin-bottom: 1rem;
          }
        }
        p {
          font-size: 1.4rem;
          font-weight: 400;
          line-height: 192%;
          letter-spacing: 0.07em;
        }
      }
      .btn02 {
        margin-top: 5.2rem;
      }
    }
  }
  .dec_text {
    position: absolute;
    top: -13.5rem;
    right: -2.6rem;
    opacity: 0.1;
    color: #fff;
    font-size: 12.4rem;
    font-weight: 400;
    writing-mode: sideways-lr;
  }
  @media screen and (max-width: 768px) {
    position: relative;
    z-index: 0;
    padding: 8rem 0 8rem;
    width: 100%;

    .ttl02 {
      margin: 0 auto 6rem;
      width: 32.6rem;
    }
    .inner {
      width: 32.6rem;
      li {
        flex-flow: column;
        padding-bottom: 0;
        &.card01 {
          .box_text {
            padding-top: 2.4rem;
          }
        }
        .box_img {
          width: calc(100% - 2.4rem);
        }
        .box_text {
          padding: 2.4rem 2.4rem 7.2rem;
          width: 100%;

          .ttl03 {
            margin-bottom: 2.2rem;
            font-size: 2.4rem;
            font-weight: 700;
            line-height: 180%;
            .en {
              display: block;
              font-size: 1.4rem;
              font-style: normal;
              line-height: 120%;
              margin-bottom: 1rem;
            }
          }
          p {
            font-size: 1.4rem;
            font-weight: 400;
            line-height: 192%;
            letter-spacing: 0.07em;
          }
        }
        .btn02 {
          margin-top: 5.2rem;
        }

        &:nth-last-of-type(odd) {
          .box_img {
            margin-left: auto;
          }
        }
      }
    }
    .dec_text {
      top: 40rem;
      right: -1.4rem;
      font-size: 8rem;
    }
  }
}

/* Overview Section */
.l-overview {
  padding: 22.4rem 0 20.8rem;
  color: #fdfcfb;
  .inner {
    margin: 0 auto;
    width: 117.4rem;
    .box_ttl {
      margin-bottom: 16.8rem;
      display: flex;
      gap: 24.2rem;
      .ttl02 {
        .jp01 {
          margin-top: 1.2rem;
          display: block;
          font-size: 2.6rem;
          font-weight: 700;
          line-height: 120%;
        }
      }
      p {
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 192%;
        letter-spacing: 0.07em;
      }
    }
    .block_overview {
      figure {
        margin: 0 auto 19.2rem;
        width: 94rem;
      }
      .data_overview {
        margin: 0 auto;
        width: 88.8rem;
        h3 {
          margin-bottom: 3rem;
          font-size: 2rem;
          font-weight: 700;
          line-height: 187%;
        }
        dl {
          font-size: 1.4rem;
          font-weight: 400;
          line-height: 192%;
          letter-spacing: 0.07em;
          .card_overview {
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            padding: 2.4rem 0;
            display: flex;
            gap: 1.2rem;
            dt {
              width: 16rem;
              padding-left: 1.2rem;
            }
            dd {
              width: 71.6rem;
            }
          }
        }
      }
    }
  }
  @media screen and (max-width: 768px) {
    padding: 12rem 0 12rem;
    .inner {
      width: 32.6rem;
      .box_ttl {
        margin-bottom: 8rem;
        flex-flow: column;
        gap: 3rem;
      }
      .block_overview {
        figure {
          margin: 0 calc(50% - 50vw) 8rem;
          width: 100vw;
          padding: 0 1rem;
        }
        .data_overview {
          margin: 0 auto;
          width: 100%;

          h3 {
            margin-bottom: 3rem;
          }
          dl {
            .card_overview {
              padding: 1.6rem 0;
              flex-flow: column;
              gap: 1.2rem;
              dt {
                width: 100%;
                padding-left: 1.2rem;
              }
              dd {
                width: 100%;
                padding-left: 1.2rem;
              }
            }
          }
        }
      }
    }
  }
}
/* ヴィラ---------------------------------------------------------- */
/* Residence Link Area */
.l-residence_link {
  margin: 0 auto;
  padding: 14.4rem 0;
  width: 102.2rem;
  display: flex;
  justify-content: space-between;
  a {
    padding-bottom: 3.6rem;
    width: 44.6rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: 180%;
    figure {
      margin-bottom: 2.4rem;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
      transition: clip-path 0.5s;
      img {
        display: block;
        transition: transform 0.5s;
      }
    }
    .jp02 {
      margin-top: 0.5rem;
      display: block;
      font-size: 1.2rem;
      font-style: normal;
      line-height: 200%;
      letter-spacing: 0.07em;
    }
    &:hover,
    &:active {
      figure {
        clip-path: polygon(8% 8%, 92% 8%, 92% 92%, 8% 92%);
        img {
          transform: scale(1.15);
        }
      }
    }
  }
  @media screen and (max-width: 768px) {
    padding: 8rem 0;
    width: 32.4rem;
    flex-flow: column;
    gap: 1rem;
    a {
      border: 1px solid #9eadab;
      padding-bottom: 2.4rem;
      width: 100%;
      transition: 0.3s;
      figure {
        aspect-ratio: 1 /0.5;
        margin-bottom: 2.4rem;
        img {
          object-fit: cover;
          height: 100%;
        }
      }
    }
  }
}

/* Villas Area */
.l-villas {
  padding-bottom: 20.8rem;
  width: 144rem;
  @media screen and (min-width: 1920px) {
    width: 100dvw;
  }
  .inner {
    display: flex;
    flex-flow: column;
    gap: 19.2rem;
    .card_room {
      position: relative;
      display: flex;
      &:nth-of-type(6) {
        .room_data {
          .layout {
            width: 30.8rem;
          }
        }
      }
      .room_image {
        overflow: hidden;
        position: sticky;
        z-index: 0;
        top: 0;
        left: 0;
        z-index: 0;
        width: 50vw;
        height: 100vh;
        height: 100svh;
        height: 100dvh;
        align-self: flex-start;
        margin-left: calc(50% - 50vw);
        @media screen and (min-width: 1920px) {
          margin-left: 0;
        }
        .swiper-wrapper {
          transition-timing-function: cubic-bezier(0.38, 0.96, 0.65, 0.99) !important;
        }

        .swiper-pagination {
          bottom: 2.4rem;
        }

        .swiper-slide {
          overflow: hidden;
          img {
            transform: scale(1.1);
            transition-delay: 2s;
            transition: transform 0;
            object-fit: cover;
            object-position: center;
            height: 100%;
          }
          &.is-animating {
            img {
              transform: scale(1);
              transition: transform 4s ease-out;
              transition-delay: 2s;
            }
          }
        }

        .swiper-pagination-bullet {
          background: #fdfcfb !important;
          opacity: 0.5;
        }
        .swiper-pagination-bullet-active {
          opacity: 1;
        }
      }
      .room_data {
        padding: 5rem 6.4rem 4.8rem;
        width: 50%;
        display: flex;
        flex-flow: column;
        align-items: center;

        @media screen and (min-width: 1920px) {
          padding: 0;
          width: 50vw;
        }

        .room_no {
          text-align: center;
          .floor {
            margin-bottom: 2rem;
            display: block;
            font-size: 1.6rem;
            font-weight: 400;
          }
          .no {
            font-size: 3.6rem;
            font-weight: 700;
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            sup {
              font-size: 1.4rem;
              font-weight: 400;
              transform: translateY(0.6rem);
            }
          }
        }
        .layout {
          margin: 4.8rem 0;
          width: 20.8rem;
        }
        .text_head {
          font-size: 1.8rem;
          font-style: normal;
          font-weight: 700;
          line-height: 192%;
          text-align: center;
        }
        .room_text {
          margin: 8rem auto 2.4rem;
          width: 38rem;
          font-size: 1.4rem;
          font-weight: 400;
          line-height: 192%;
          letter-spacing: 0.07em;
        }
        .room_list {
          margin: 0 auto;
          width: 38rem;
          font-size: 1.4rem;
          font-weight: 400;
          line-height: 192%;
          letter-spacing: 0.07em;
          display: flex;
          flex-flow: column;
          li {
            display: flex;
            &::before {
              content: "・";
              display: block;
              align-self: center;
            }
          }
        }
      }
    }
  }

  @media screen and (max-width: 768px) {
    padding-bottom: 8rem;
    width: 39rem;
    .inner {
      gap: 8rem;
      .card_room {
        flex-flow: column;
        &:nth-of-type(6) {
          .room_data {
            .layout {
              width: 30.8rem;
            }
          }
        }
        .room_image {
          position: relative;
          width: 100%;
          align-self: flex-start;
          margin: 0;
          height: auto;
          .swiper-pagination {
            bottom: 2.4rem;
          }
          .swiper-pagination-bullet {
            background: #fdfcfb !important;
            opacity: 0.5;
          }
          .swiper-pagination-bullet-active {
            opacity: 1;
          }
        }
        .room_data {
          padding: 3rem 2.2rem 4.8rem;
          width: 100%;
          display: flex;
          flex-flow: column;
          align-items: center;
          .room_no {
            text-align: center;
            .floor {
              margin-bottom: 2rem;
              display: block;
              font-size: 1.6rem;
              font-weight: 400;
            }
            .no {
              font-size: 3.6rem;
              font-weight: 700;
              display: flex;
              align-items: flex-start;
              gap: 0.6rem;
              sup {
                font-size: 1.4rem;
                font-weight: 400;
                transform: translateY(0.6rem);
              }
            }
          }

          .layout {
            margin: 4.8rem 0;
            width: 20.8rem;
          }
          .room_text {
            margin: 4rem auto 3.2rem;
            width: 100%;
          }
          .room_list {
            width: 100%;
          }
        }
      }
    }
  }
}

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

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

  >.header-change {
    padding-top: 22.9rem;
  }

  h5,p{
    color:#FFF;
  }

  .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;*/
    margin: 0 auto;
    /*padding-bottom: 26rem;*/

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

        h3 {
          color:#FFF;
          .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;
        }

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

        .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);
            mask-position: inherit;
          }

          @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;*/
          color: #fdfcfb;
          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;*/
      margin: 0 auto;
      /*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;
          }

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

          &:nth-child(7) {
            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;
  }
}
/* 施設・敷地---------------------------------------------------------- */
/* Description Section */
/* .l-description.adjust_facilities {
  .inner {
    .ttl02.en {
      .jp01 {
        br {
        }
      }
    }
    p {
      br {
      }
    }
  }
} */

/* Facilities Section */
.l-facilities {
  margin-bottom: 32rem;
  .list_facilities {
    .card_facilities {
      &.facilities01 {
        display: block;
        margin-bottom: 19rem;

        .slide_facilities {
          margin: 0 auto;
          /* width: 144rem; */
          width: 100vw;
          margin: 0 calc(50% - 50vw);
        }

        .box_text {
          margin: 0 auto;
          padding: 6.4rem 17.7rem 6.4rem 29.2rem;
          /* margin: 0 17.7rem 0 29.2rem; */
          width: 144rem;
          .ttl02_2 {
            margin-bottom: 4rem;
            font-size: 3rem;
            font-weight: 700;
            line-height: 120%;

            .en {
              display: block;
              font-size: 1.4rem;
              font-weight: 700;
              margin: 0.2rem 0 0 0.8rem;
            }
          }
          p {
            padding-left: 22.2rem;
            strong {
              margin-bottom: 2.45rem;
              text-align: left;
            }
          }
        }
      }
      &.facilities02 {
        margin-bottom: 11.2rem;
      }
      &.facilities03 {
        flex-flow: row-reverse;
        margin-bottom: 11.2rem;
      }
      display: flex;
      justify-content: center;
      align-items: center;
      .slide_facilities {
        overflow: hidden;
        position: relative;
        width: 72rem;

        .swiper-wrapper {
          transition-timing-function: cubic-bezier(0.38, 0.96, 0.65, 0.99) !important;
        }

        .swiper-slide {
          overflow: hidden;
          img {
            transform: scale(1.1);
            transition-delay: 2s;
            transition: transform 0;
          }
          &.is-animating {
            img {
              transform: scale(1);
              transition: transform 4s ease-out;
              transition-delay: 2s;
            }
          }
        }
        .swiper-pagination {
          bottom: 2.4rem;
        }
        .swiper-pagination-bullet {
          background: #fdfcfb !important;
          opacity: 0.5;
        }
        .swiper-pagination-bullet-active {
          opacity: 1;
        }
      }
      .box_text {
        padding: 0 17rem;
        width: 72rem;
        .ttl02 {
          margin-bottom: 2.4rem;
          color: #465352;
          text-align: center;
        }
        p {
          font-size: 1.4rem;
          font-weight: 400;
          line-height: 192%;
          letter-spacing: 0.07em;
          strong {
            margin-bottom: 8rem;
            text-align: center;
            display: block;
            font-size: 2rem;
            font-weight: 700;
            line-height: 187%;
          }
        }
        .btn02.jp01 {
          margin-top: 8.4rem;
        }
      }
    }
  }
  @media screen and (max-width: 768px) {
    margin-bottom: 16rem;
    .list_facilities {
      .card_facilities {
        &.facilities01 {
          margin-bottom: 7.2rem;
          .slide_facilities {
            width: 100%;
          }
          .box_text {
            width: 32.6rem;
            padding: 6.4rem 0 6.4rem;
            .ttl02_2 {
              margin-bottom: 4rem;
              font-size: 3rem;
              font-weight: 700;
              line-height: 120%;

              .en {
                display: block;
                font-size: 1.4rem;
                font-weight: 700;
                margin: 0.2rem 0 0 0.8rem;
              }
            }
            p {
              padding-left: 0;
              strong {
                letter-spacing: -0.05em;
              }
            }
          }
        }
        &.facilities02 {
          margin-bottom: 7.2rem;
        }
        &.facilities03 {
          flex-flow: column;
        }
        flex-flow: column;
        .slide_facilities {
          width: 100%;

          .swiper-pagination {
            bottom: 2.4rem;
          }
          .swiper-pagination-bullet {
            background: #fdfcfb !important;
            opacity: 0.5;
          }
          .swiper-pagination-bullet-active {
            opacity: 1;
          }
        }
        .box_text {
          padding: 6.4rem 0;
          margin: 0 auto;
          width: 32.6rem;
          .ttl02 {
            margin-bottom: 2.4rem;
          }
          p {
            strong {
              margin-bottom: 4rem;
              font-size: 1.8rem;
            }
          }
          .btn02.jp01 {
            margin: 4.2rem auto 0;
          }
        }
      }
    }
  }
}
/* Pickup Section */
.l-pickup {
  padding-bottom: 20rem;
  .inner {
    margin: 0 auto;
    width: 117.4rem;

    .ttl02 {
      margin-bottom: 6rem;
      color: var(--Color-Text-Base, #465352);
      .jp01 {
        margin-top: 1.2rem;
        display: block;
        font-size: 3rem;
        font-weight: 700;
        line-height: 120%;
      }
    }
  }
  .list_pickup {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    gap: 11.2rem 0;
    &::after {
      content: "";
      width: 36.7rem;
      height: 0;

      place-self: center;
      inset: 0;
    }
    .card_pickup {
      width: 36.7rem;

      .ttl03 {
        margin: 2.4rem 0 1.2rem;
        font-size: 2rem;
        font-weight: 700;
        line-height: 187%;
      }
      p {
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 192%;
        letter-spacing: 0.07em;
      }
    }
  }
  @media screen and (max-width: 768px) {
    padding-bottom: 12.8rem;
    .inner {
      width: 32.6rem;
      .ttl02 {
        margin-bottom: 6rem;
      }
    }
    .list_pickup {
      gap: 7.2rem 0;
      .card_pickup {
        width: 36.7rem;
        .ttl03 {
          margin: 1.2rem 0 0.6rem;
        }
      }
    }
  }
}
