@charset "UTF-8";

.bg-base {
  background-color: #fff;
}

/* section */
.section {
  color: #000;

  .section_header {
    .section_title {
      margin: 0 0 43px;
      font-size: 20px;
    }
  }
}

/* 背景画像固定 */
.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(65vh - 65px);
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0;

  /* MV 背景 */
  &.mv_bg {
    background-image: url("../img/plan/mv_01.webp");
  }
}

/* MV  */
.mv {
  position: relative;
  height: calc(65vh - 65px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  width: 100%;
  object-fit: cover;
  pointer-events: none;

  .mv_inner {
    position: absolute;
    z-index: 1;
    padding: 0 20px;
    bottom: 110px;

    .mv_catch {
      font-family: "Bebas Neue", sans-serif;
      font-size: 80px;
      font-weight: 100;
      margin-bottom: 7px;
      line-height: 1.5;
    }

    .mv_text {
      font-size: 24px;
      font-weight: bold;
    }
  }
}

/* SERIES */
.series {
  padding: 37px 0 50px;

  .series_header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;

    img {
      width: 350px;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    .series_title {
      line-height: 1.5;
      font-size: 20px;
      font-weight: bold;
    }
  }

  .series_inner {
    display: flex;
    justify-content: space-between;
    gap: 55px;
    margin: 80px auto 0;

    .series_item {
      .series_item_wrap {
        display: flex;
        justify-content: space-between;
        gap: 23px;
      }

      .grade {
        &::after {
          content: "";
          display: block;
          width: 100%;
          height: 21px;
          background-image: url("../img/plan/arrow_down.svg");
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center;
          margin-top: 28px;
        }

        .grade_inner {
          margin: 0 auto;
          width: max-content;
          display: flex;
          align-items: flex-start;
          gap: 3px;

          .grade_title {
            letter-spacing: 0.5px;
            font-size: 16px;
            font-weight: bold;

            span {
              display: block;
              font-size: 8px;
              font-weight: normal;
            }
          }

          .grade_note {
            font-size: 35px;
            font-weight: bold;
            line-height: 0.9;
          }
        }
      }

      .series_item_inner {
        width: 191px;

        .series_thumb {
          position: relative;
          margin-bottom: 25px;

          img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 10px;
          }
        }

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

          .link_btn {
            height: 27px;
            padding: 0 20px;
            line-height: 26px;
            font-size: 14px;
          }
        }
      }
    }
  }

  .series_caption {
    margin-top: 56px;
    font-size: 9px;
    line-height: 1.7;
  }
}

/* COMFORT */
.comfort {
  .comfort_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto;

    .comfort_item {
      border-radius: 12px;
      overflow: hidden;

      .comfort_thumb {
        position: relative;

        img {
          display: block;
          width: 100%;
          height: auto;
          object-fit: cover;
        }

        .comfort_info {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          height: 100%;
          padding: 12px 15px;
          color: #fff;

          .comfort_info_title {
            height: auto !important;
            line-height: 1.5;
            font-size: 22px;
            font-weight: bold;
          }

          .comfort_info_text {
            position: absolute;
            bottom: 15px;
            line-height: 1.5;
            font-size: 14px;
            font-weight: normal;
          }
        }
      }
    }
  }
}

/* INSULATION */
.insulation {
  padding: 70px 0 0;

  .insulation_inner {
    display: grid;
    grid-template-columns: 265px 1fr;
    align-items: center;
    gap: 56px;
    padding: 0 20px;

    .insulation_figure {
      margin: 0 auto;
      width: 100%;

      img {
        display: block;
        width: 100%;
        height: auto;
      }
    }

    .insulation_eyebrow {
      margin: 0 0 5px;
      line-height: 2;
      font-size: 16px;
      font-weight: bold;
      color: #de7a09;
    }

    .insulation_title {
      margin: 0 0 10px;
      line-height: 1.5;
      font-size: 24px;
    }

    .insulation_lead {
      margin: 0;
      letter-spacing: 0.5px;
      line-height: 1.5;
      font-size: 16px;
      color: #271d20;
    }
  }
}

/* SPECS */
.specs {
  .specs_divider {
    height: 1px;
    background: #000;
  }

  .specs_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 22px;
    position: relative;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: calc(50% + 0.5px);
      width: 1px;
      background: #000;
      transform: translateX(-50%);
    }

    .specs_item {
      display: grid;
      grid-template-columns: 123px 1fr;
      gap: 16px;
      align-items: start;
      padding: 20px 2px 20px 10px;

      .specs_thumb {
        margin: 0;
        border-radius: 10px;
        overflow: hidden;
        width: 123px;
        height: 160px;

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
          filter: saturate(0.95);
          border-radius: 10px;
        }
      }

      .specs_content {
        display: flex;
        flex-direction: column;

        .specs_badge {
          align-self: flex-start;
          font-size: 12px;
          font-weight: bold;
          color: #fff;
          background: #271d20;
          padding: 0px 5px;
          letter-spacing: 1px;
          margin: 4px 0 9px;
          line-height: 1.5;
          display: inline-block;
        }

        .specs_title {
          margin: 0 0 4px;
          font-size: 18px;
          font-weight: bold;
          line-height: 1.5;
        }

        .specs_text {
          margin: 0;
          font-size: 12px;
          line-height: 1.5;
          color: #271d20;
        }
      }
    }
  }
}

/* PACKAGE-PLAN */
.package-plan {
  background-color: #fff;

  .package-plan_header {
    text-align: center;
    padding: 80px 0 45px;
    width: 90%;
    margin: 0 auto;

    .package-plan_title {
      line-height: 1.5;
      letter-spacing: 0.1px;
      font-family: "Bebas Neue", sans-serif;
      font-size: 40px;
      font-weight: normal;
    }
    .package-plan_subtitle {
      margin: 0 0 45px;
      line-height: 1.5;
      letter-spacing: 1px;
      font-size: 20px;
      font-weight: bold;
    }
    .package-plan_lead {
      line-height: 1.5;
      font-size: 16px;
      margin: 0;
    }
  }
}

/* mk-slider */
.mk-slider {
  img {
    height: 200px;
  }

  .swiper-pagination-bullet {
    background: #d9d9d9;
  }
}

/* package-plan modal */
.package-plan_modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  .modal_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
  }

  .modal_content {
    position: relative;
    width: 1000px;
    max-width: 80%;
    margin: 5vh auto;
    height: 100vh;
    max-height: max-content;

    .modal_close {
      position: absolute;
      top: 3vh;
      right: 30px;
      font-size: 32px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 2;
    }

    .modal_inner {
      background: #fff;
      padding: 30px 30px 50px;
      height: 80vh;
      overflow: auto;
      max-height: max-content;

      .modal_header {
        display: flex;
        gap: 40px;
        margin-bottom: 35px;

        .modal_left {
          img {
            width: 30vw;
            max-width: 460px;
            border-radius: 6px;
            object-fit: cover;
          }
        }

        .modal_right {
          flex: 1;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          margin: 12px 0 7px;

          .modal_text {
            .modal_title {
              font-size: 30px;
              font-weight: bold;
              margin-bottom: 16px;
            }

            .modal_desc {
              font-size: 18px;
              line-height: 1.4;
            }
          }

          .modal_price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            margin-top: 20px;
            background: #000;
            height: 60px;
            padding: 0 17px;

            .label {
              padding: 10px 0 6px;
              line-height: 1;
              font-family: "Bebas Neue", sans-serif;
              font-size: 30px;
              color: #fff;
            }

            .value {
              line-height: 1;
              font-weight: bold;
              font-size: 20px;
              color: #fff;

              span {
                font-size: 30px;
                font-weight: bold;
              }
            }
          }
        }
      }

      .modal_thumbs {
        display: flex;
        gap: 37px 5px;
        flex-wrap: wrap;
        justify-content: space-between;



        .thumb_long {
          width: 100%;

          img {
            width: 100%;
            border-radius: 10px;
            margin-bottom: 8px;
            object-fit: cover;
          }

          p {
            font-size: 18px;
            text-align: center;
          }

        .thumb {
          width: 32%;

          img {
            width: 100%;
            border-radius: 10px;
            margin-bottom: 8px;
            object-fit: cover;
          }

          p {
            font-size: 18px;
            text-align: center;
          }
        }
      }
    }
  }
}
}
/* CTA */
.cta {
  padding: 110px 0 130px;

  .cta_card {
    max-width: 700px;
    margin: 0 auto;
    padding: 47px 0 35px;
    text-align: center;
    border-radius: 10px;
    background: #f9f9f9;

    .cta_title {
      line-height: 1.5;
      letter-spacing: 1px;
      font-size: 24px;
      font-weight: bold;
    }

    .cta_lead {
      margin: 30px auto 50px;
      line-height: 1.5;
      font-size: 15px;
    }

    .cta_link {
      .link_btn {
        min-width: 300px;
        height: 48px;
        line-height: 48px;
        font-size: 15px;
      }
    }
  }
}


/* mk-slider-multi */
.mk-slider-multi {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;

  .mk-slider-multi__wrapper {
    position: relative;

    .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;

      img {
        width: 100%;
        max-height: 220px;
        max-width: 100%;
        aspect-ratio: 5 / 3;
        object-fit: cover;
        display: block;
        border-radius: 10px;
      }

      .swiper-slide_desc {
        margin-top: 12px;
        line-height: 1.5;
        text-align: center;
        font-weight: bold;
        font-size: 18px;
      }
    }

    .swiper-pagination {
      position: static !important;
      margin-top: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 30px;

      .swiper-pagination-bullet {
        width: 14px;
        height: 14px;
        background: #d9d9d9;
        opacity: 1;
        border-radius: 50%;
        transition: background 0.3s ease, transform 0.3s ease;

        &.swiper-pagination-bullet-active {
          background: #529abc;
          transform: scale(1.2);
        }
      }
    }
  }
}


@media screen and (max-width: 768px) {
  /* section */
  .section {
    .section_header {
      .section_title {
        margin: 0 0 30px;
        font-size: clamp(16px, 5.3vw, 20px);
      }
    }
  }

  /* 背景画像固定 */
  .bg {
    /* MV 背景 */
    &.mv_bg {
	background-position: left bottom;
	height: 58vh;
    }
  }

  /* MV  */
  .mv {
    height: calc(70vh - 50px - 80px);

    .mv_inner {
      max-width: 100%;

      .mv_catch {
        font-size: clamp(40px, 14vw, 55px);
        margin-bottom: 10px;
      }

      .mv_text {
        font-size: clamp(15px, 4.1vw, 18px);
      }
    }
  }

  /* SERIES */
  .series {
    padding: 37px 0 50px;

    .series_header {
      gap: 40px;

      img {
        width: 60%;
      }

      .series_title {
        font-size: clamp(16px, 5.4vw, 20px);
      }
    }

    .series_inner {
      gap: 70px;
      margin: 60px auto 0;
      flex-wrap: wrap;
      justify-content: center;

      .series_item {
        width: 100%;

        .series_item_wrap {
          gap: 4vw;
          justify-content: center;
        }

        .grade {
          &::after {
            height: 22px;
            margin-top: 8px;
          }

          .grade_inner {
            gap: 3px;

            .grade_title {
              text-align: center;
              font-size: clamp(13px, 4.2vw, 16px);

              span {
                font-size: clamp(8px, 2.9vw, 11px);
              }
            }

            .grade_note {
              font-size: clamp(30px, 9.3vw, 35px);
            }
          }
        }

        .series_item_inner {
          width: 47%;

          .series_thumb {
            margin-bottom: 10px;
          }

          .series_link {
            .link_btn {
              width: 100%;
              height: 37px;
              line-height: 36px;
              font-size: clamp(10px, 3.4vw, 13px);
              padding: 0;
            }
          }
        }
      }
    }

    .series_caption {
      margin-top: 45px;
      font-size: clamp(9px, 2.6vw, 10px);
    }
  }

  /* COMFORT */
  .comfort {
    .comfort_grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;

      .comfort_item {
        .comfort_thumb {
          img {
            height: 45vw;
            border-radius: 12px;
          }

          .comfort_info {
            padding: 10px;

            .comfort_info_title {
              font-size: clamp(12px, 3.5vw, 16px);
            }

            .comfort_info_text {
              margin-top: 10px;
              line-height: 1.6;
              font-size: clamp(10px, 2.7vw, 13px);
            }
          }
        }
      }
    }
  }

  /* INSULATION */
  .insulation {
    padding: 40px 0 60px;

    .insulation_inner {
      grid-template-columns: 1fr;
      padding: 0 10px;

      .insulation_eyebrow {
        font-size: clamp(16px, 5.3vw, 20px);
      }

      .insulation_figure {
        padding: 20px 0;
      }

      .insulation_title {
        font-size: clamp(18px, 5.6vw, 24px);
      }
      .insulation_lead {
        font-size: clamp(13px, 3.8vw, 15px);
      }
    }
  }

  /* SPECS */
  /* 1行 */
  /* .specs {
    .specs_row {
      display: block;

      &::before {
        content: none;
      }

      .specs_item {
        gap: 16px;
        padding: 20px 5px;
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #000;

        .specs_thumb {
          width: 100%;
        }

        .specs_content {
          .specs_badge {
            font-size: clamp(12px, 3.4vw, 13px);
          }

          .specs_title {
            font-size: clamp(18px, 5.4vw, 24px);
          }

          .specs_text {
            font-size: clamp(12px, 3.4vw, 13px);
          }
        }
      }
    }
  } */

  /* 2行 */
  .specs {
    .specs_row {
      grid-template-columns: 1fr 1fr;
      gap: 15px;

      .specs_item {
        gap: 16px;
        padding: 20px 5px;
        display: flex;
        flex-direction: column;

        .specs_thumb {
          width: 100%;
        }

        .specs_content {
          .specs_badge {
            font-size: clamp(11px, 3vw, 13px);
          }

          .specs_title {
            font-size: clamp(14px, 4.5vw, 24px);
          }

          .specs_text {
            font-size: clamp(12px, 3.4vw, 13px);
          }
        }
      }
    }
  }
    .package-plan_lead {
	font-size: clamp(12px, 3.5vw, 14px) !important;
	text-align: left;
    }

  /* package-plan modal */
  .package-plan_modal {
    .modal_content {
      max-width: 90%;

      .modal_close {
        top: -40px;
        right: 0;
        color: #fff;
      }

      .modal_inner {
        height: 70vh;
        padding: 30px 20px;

        .modal_header {
          flex-direction: column;
          gap: 20px;
          margin-bottom: 25px;

          .modal_left {
            img {
              max-width: 100%;
              width: 100%;
              height: 180px;
            }
          }

          .modal_right {
            margin: 0;

            .modal_text {
              .modal_title {
                margin-bottom: 10px;
                line-height: 1.3;
                font-size: clamp(17px, 5.5vw, 22px);
              }

              .modal_desc {
                font-size: clamp(12px, 3.6vw, 15px);
              }
            }

            .modal_price {
              .label {
                font-size: clamp(27px, 8vw, 32px);
              }

              .value {
                font-size: clamp(12px, 3.7vw, 15px);

                span {
                  font-size: clamp(17px, 5.5vw, 22px);
                }
              }
            }
          }
        }

        .modal_thumbs {
          gap: 20px 0;

          .thumb {
            width: 48%;

            p {
              line-height: 1.3;
              font-size: clamp(12px, 3.5vw, 14px);
            }
          }
        }
      }
    }
  }

  /* CTA */
  .cta {
    padding: 60px 0;

    .cta_card {
      max-width: 90%;
      margin: 0 auto;
      padding: 60px 20px;

      .cta_title {
        font-size: clamp(20px, 5vw, 24px);
      }

      .cta_lead {
        margin: 30px auto 40px;
        font-size: clamp(12px, 3.5vw, 15px);
      }

      .cta_link {
        .link_btn {
          width: 100%;
          height: 47px;
          line-height: 46px;
          font-size: clamp(13px, 3.9vw, 15px);
          padding: 0;
        }
      }
    }
  }
}