@charset "UTF-8";

body:not(.loaded) {
  opacity: 0;
  pointer-events: none;
}

body.loaded {
  opacity: 1;
  transition: opacity 0.8s ease;
}

/* MV  */
.mv {
  .bg_video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
  }

  .mask_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
    pointer-events: none;
  }

  .black_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s linear;
  }

  .hero {
    position: relative;
    height: 130vh;

    .hero_inner {
      position: absolute;
      top: 63vh;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      text-align: center;
      color: #fff;

      .hero_title {
        font-family: "Bebas Neue", sans-serif;
        font-weight: normal;
        line-height: 1.5;
        font-size: 80px;
      }

      .hero_desc {
        line-height: 1.5;
        font-size: 24px;
        font-weight: bold;
      }
    }
  }

  .desc {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: transparent;
    text-align: center;

    .desc_inner {
      display: flex;
      flex-direction: column;
      gap: 80px;

      .desc_title {
        font-size: 32px;
        font-weight: bold;
        line-height: 1.6;
      }

      p {
        font-size: 15px;
        line-height: 2;
      }
    }
  }
}

/* reason */
.reason {
  padding: 20px 0 100px;
  background-color: #000;
  color: #fff;

  .reason_header {
    margin-bottom: 53px;
    line-height: 1.5;
    font-weight: bold;

    .reason_header_title {
      font-size: 20px;
    }
  }

  .reason_inner {
    .comfort_grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin: 53px auto 150px;

      .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;
            padding: 20px;
            color: #fff;

            .comfort_info_title {
              line-height: 1.5;
              font-size: 22px;
              font-weight: bold;
            }

            .comfort_info_text {
              margin-top: 18px;
              line-height: 1.3;
              font-size: 14px;
            }
          }
        }
      }
    }

    .reason_movie {
      display: block;
      margin: 0 auto;
      text-align: center;

      .reason_movie_title {
        margin-bottom: 15px;
        line-height: 1.6;
        font-size: 14px;
        font-weight: bold;

        span {
          display: block;
          font-size: 18px;
        }
      }
    }
  }
}

/* PANEL */
.panel {
  .panel-item {
    position: relative;
    height: 100vh;
    scroll-snap-align: start;
    view-timeline-name: --panel;
    view-timeline-axis: block;

    .bg {
      position: fixed;
      inset: 0;
      z-index: -1;
      opacity: 0;
      will-change: opacity;
      animation: fade both linear;
      animation-timeline: --panel;
      animation-range: entry 0% cover 35%;
    }

    &.panel-architect {
      .bg {
        background: url("../img/concept_new/architect.webp") center/cover
          no-repeat;
      }
    }

    &.panel-coordinator {
      .bg {
        background: url("../img/concept_new/coordinator.webp") center/cover
          no-repeat;
      }
    }
    &.panel-performance {
      .bg {
        background: url("../img/concept_new/performance.webp") center/cover
          no-repeat;
      }

      .panel_inner {
        .panel_hero {
          .panel_hero_lead {
            margin: 20px auto 60px;
          }
        }
      }
    }

    .panel_inner {
      position: relative;
      z-index: 0; /* 背景より前面 */
      height: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 12vh clamp(16px, 4vw, 48px);
      display: grid;
      align-content: center;
      gap: 16px;
      text-align: center;
      color: #fff;

      .panel_hero {
        line-height: 1.5;

        .panel_hero_title {
          font-size: 26px;

          span {
            display: block;
            font-size: 36px;
          }
        }

        .panel_hero_lead {
          margin: 20px auto 85px;
          font-size: 20px;
          font-weight: bold;
        }
      }

      .panel_desc {
        margin: 0 auto 33px;

        .panel_desc_title {
          font-size: 16px;
          font-weight: bold;
        }

        .panel_desc_lead {
          margin: 20px auto 0;
          font-size: 15px;
        }
      }
    }
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

:focus-visible {
  outline: 2px dashed #9ad;
  outline-offset: 4px;
}

/* PLAN */
.plan {
  padding-bottom: 200px;
  background-color: #000;
  color: #fff;

  .plan_header {
    text-align: center;
    margin: 120px auto 70px;
    line-height: 1.5;

    .plan_header_title {
      margin-bottom: 28px;
      font-size: 32px;
      font-weight: bold;
    }

    .plan_header_subtitle {
      font-size: 20px;
      font-weight: bold;
    }

    .plan_header_desc {
      margin-top: 16px;
      font-size: 15px;
    }
  }

  .plans_grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 2px solid #cfcfcf;
    border-radius: 10px;

    li {
      display: grid;
      justify-items: center;
      align-content: center;
      padding: 20px 22px 27px;
      position: relative;

      &:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 15px;
        bottom: 15px;
        right: 0;
        width: 1px;
        background: #cfcfcf;
        border-radius: 1px;
      }

      .plan_series {
        margin: 0 0 2px;
        font-weight: bold;
        font-size: 16px;

        b {
          letter-spacing: 1px;
          font-size: 30px;
        }
      }

      .plan_pill {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3px;
        margin: 8px auto;
        background: #fff;
        color: #000;
        border-radius: 30px;
        padding: 3px 35px 5px 22px;

        .plan_pill-label {
          font-weight: bold;
          font-size: 16px;
        }

        .plan_ua {
          font-size: 8px;
        }

        .plan_pill-grade {
          font-weight: bold;
          font-size: 35px;
          line-height: 1;
        }
      }

      .plan_price {
        display: grid;
        grid-auto-flow: column;
        font-weight: bold;

        .plan_price-main {
          line-height: 1.4;
          font-weight: bold;
          font-size: 40px;
        }

        .plan_price-sub {
          font-size: 16px;
        }

        .plan_price-sub span {
          font-size: 10px;
        }
      }
    }
  }

  .plan-notes {
    margin: 14px 0 28px 5px;
    line-height: 1.7;
    font-size: 9px;
    text-align: left;
    list-style: none;
  }

  .plan_circle_img {
    display: grid;
    justify-items: center;
    margin: 0 auto 70px;
  }
}

/* BTN */
.concept_btn {
  width: 100%;
  margin: 0 auto;
  text-align: center;

  a {
	display: inline-block;
	min-width: 135px;
	height: 37px;
	line-height: 37px;
	padding: 0 23px;
	border-radius: 50px;
	border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	color: #fff;
	text-decoration: none;
	font-size: 12px;
	transition: all 0.2s ease;
	margin: 1%;
  }
}

@media screen and (max-width: 768px) {
  /* MV */
  .mv {
    max-width: 90%;
    margin: 0 auto;

    .hero {
      height: 100vh;

      .hero_inner {
        top: 30vh;

        .hero_title {
          padding: 10px 0 20px;
          font-size: clamp(40px, 13vw, 50px);
        }

        .hero_desc {
          font-size: clamp(17px, 5vw, 20px);
        }
      }
    }

    .desc {
      height: 100vh;

      .desc_inner {
        gap: 50px;

        .desc_title {
          font-size: clamp(23px, 6.8vw, 27px);
        }

        p {
          font-size: clamp(13px, 3.2vw, 18px);
        }
      }
    }
  }

  /* reason */
  .reason {
    padding: 5% 2% 15%;

    .reason_header {
      margin-bottom: 30px;

      .reason_header_title {
        font-size: clamp(18px, 5vw, 20px);
      }
    }

    .reason_inner {
      .comfort_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 35px auto 80px;
        padding: 0;

        .comfort_item {
          border-radius: 12px;
          overflow: hidden;

          .comfort_thumb {
            .comfort_info {
              padding: 10px;

              .comfort_info_title {
                font-size: clamp(12px, 3.5vw, 16px);
              }

              .comfort_info_text {
		display:none;
                margin-top: 10px;
                line-height: 1.6;
                font-size: clamp(10px, 2.7vw, 13px);
              }
            }
          }
        }
      }

      .reason_movie {
        .reason_movie_title {
          display: block;
          font-size: 14px;
          font-weight: bold;

          span {
            font-size: 18px;
          }
        }

        iframe {
          max-width: 100%;
        }
      }
    }
  }

  /* PANEL */
  .panel {
    .panel-item {
      &.panel-performance {
        .panel_inner {
          .panel_hero {
            .panel_hero_lead {
              margin: 20px auto 60px;
            }
          }
        }
      }

      .panel_inner {
        max-width: 100%;

        .panel_hero {
          .panel_hero_title {
            font-size: clamp(19px, 5.4vw, 22px);
            line-height: 1.4;

            span {
              font-size: clamp(24px, 7vw, 30px);
            }
          }

          .panel_hero_lead {
            margin: 20px auto 50px;
            font-size: clamp(15px, 4.7vw, 18px);
          }
        }

        .panel_desc {
          .panel_desc_title {
            font-size: clamp(13px, 3.8vw, 15px);
          }

          .panel_desc_lead {
            font-size: clamp(11px, 3.2vw, 13px);
          }
        }
      }
    }
  }

  /* PLAN */
  .plan {
    padding-bottom: 100px;

    .plan_header {
      margin: 70px auto 50px;

      .plan_header_title {
        margin-bottom: 15px;
        font-size: clamp(19px, 6vw, 23px);
      }

      .plan_header_subtitle {
        font-size: clamp(12px, 3.5vw, 14px);
      }

      .plan_header_desc {
                margin: 1em 10%;
                font-size: 3.5vw;
      }
    }

    .plans_grid {
      grid-template-columns: repeat(1, 1fr);
      margin: 0 10%;
      gap: 20px;
      padding: 30px 0 20px;

      li {
        padding: 0 0 10px;

        &:not(:last-child)::after {
          top: unset;
          bottom: 0;
          right: unset;
          width: 90%;
          height: 1px;
        }

        .plan_series {
          margin: 0;
          font-size: clamp(14px, 4.2vw, 16px);

          b {
            font-size: clamp(25px, 7.4vw, 30px);
          }
        }

        .plan_pill {
          gap: 10px;
          margin: 10px auto;
          padding: 7px 0;
          width: 80%;

          .plan_pill-label {
            font-size: clamp(14px, 4vw, 16px);
          }

          .plan_ua {
            font-size: clamp(10px, 3vw, 12px);
          }

          .plan_pill-grade {
            font-size: 35px;
          }
        }

        .plan_price {
          line-height: 1.5;

          .plan_price-main {
            line-height: 1.7;
            font-size: clamp(32px, 9vw, 35px);
          }

          .plan_price-sub {
            font-size: clamp(14px, 4vw, 16px);
          }

          .plan_price-sub span {
            font-size: clamp(10px, 3vw, 12px);
          }
        }
      }
    }

    .plan-notes {
      margin: 14px 20px 28px 20px;
      line-height: 1.7;
      font-size: 9px;
      text-align: left;
      list-style: none;
    }

    .plan_circle_img {
      display: grid;
      justify-items: center;
      margin: 0 auto 70px;

      img {
        width: 95%;
      }
    }
  }

  /* BTN */
  .concept_btn {
    margin: 0 auto;

    a {
	min-width: fit-content;
	height: 3em;
	line-height: 3em;
	font-size: clamp(11px, 3.5vw, 13px);
  margin: 0.5em;
    }
  }
}
