@charset "utf-8";

/*top-tl*/
#limited-edition-tl{
    text-align: center;
    padding: 5rem 0;
    background-color: #ffffff;
}
@media screen and (max-width : 768px){ 
    #limited-edition-tl{
        padding: 3rem 0;
    }
}
#limited-edition-tl h2{
    font-size: 1.75rem;
    font-family: var(--font-bold);
}

/*------------------------------------------------
section
------------------------------------------------*/
.a1-r{
    font-family: "A1ゴシック R JIS2004","A1 Gothic R JIS2004";
    font-size: 1rem;
    letter-spacing: 0.1rem;
}
.a1-m{
    font-family: "A1ゴシック M JIS2004","A1 Gothic M JIS2004";
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    text-align: center;
}
.limited-edition-sec{
  color: #fff;
  position: relative;
  background-color: #171922;  
}

.limited-edition-sec h3{
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.limited-edition-sec img{
    width: 77%;
    height: auto;
    vertical-align: bottom;
}
@media screen and (max-width : 768px){ 
    .limited-edition-sec img{
      width: 88%;
      margin: 130px auto 186px;
  }
}

/*----------------------------------------------------------
↓　パララックスエリア　↓
----------------------------------------------------------*/
/* ==========================================
   PC用のベーススタイル
   ========================================== */
.scroll-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.scroll-section  img{
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
}
.bg-1 { background-image: url('../images/01pc.jpg'); opacity: 1; }
.bg-2 { background-image: url('../images/02pc.jpg'); }
.bg-3 { background-image: url('../images/03pc.jpg'); }
.bg-4 { background-image: url('../images/04pc.jpg'); }
.bg-5 { background-image: url('../images/05pc.jpg'); }
.bg-6 { background-image: url('../images/06pc.jpg'); }

.panel-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}

.panel.p-1 { visibility: visible; }

.panel .content_txt picture{
  display: flex;
}

.panel .content_txt img{
  width: 100%;
  height: auto;
}

.p-2 .content_txt{
  max-width: 800px;
  margin: 0 auto;
}
.p-4 .content_txt{
  max-width: 280px;
}
@media (max-width: 767px) {
  .p-4 .content_txt{
    max-width: 230px;
  }
}
.p-6 .content_txt:nth-child(1){
  max-width: 368px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-6 .content_txt:nth-child(1){
    max-width: 260px;
  }
}
.p-6 .content_txt:nth-child(2){
  max-width: 360px;
  margin: 10rem auto 0;
}
@media (max-width: 767px) {
  .p-6 .content_txt:nth-child(2){
    max-width: 250px;
    margin: 5rem auto 0;
  }
}

.content {
  font-size: 3rem;
  color: white;
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
}
.p-1 .content {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 768px) {
    .sp_only{
        display: none;
    }

  .panel:last-child {
    height: auto !important; /* 100vh の固定を解除 */
    min-height: 100vh;      /* 最低でも画面いっぱいの高さは維持 */
    padding: 68px 0;
    overflow: visible !important; /* 中身を見切れさせない */
    box-sizing: border-box;
  }
  .panel:last-child .content {
    height: auto !important;
    overflow: visible !important;
    position: relative; /* GSAPでの位置調整を安定させる */
  }
}

/* ※PC用のベーススタイルは前回のままでOKです */

/* ==========================================
   スマホ用の設定（画面幅 767px 以下）
   ========================================== */
@media (max-width: 767px) {
  .scroll-section {
    height: auto;
    overflow: visible;
  }

  /* PC用の固定背景ラッパーはスマホでは非表示にする */
  .bg-wrapper {
    display: none;
  }

  .panel-container {
    height: auto;
  }

  .panel {
    position: relative; /* 子要素の背景画像を基準にするため */
    width: 100%;
    min-height: 100vh; /* パララックス効果をわかりやすくするため高さを少し確保 */
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    overflow: hidden; /* ★ 動いた背景画像がはみ出さないようにマスクする */
    box-sizing: border-box;
  }
  .panel.p-1,
  .panel.p-3,
  .panel.p-5 {
    height: auto;
    min-height: 0;
    padding: 0;
  }

  /* ★ スマホ用の背景画像配置（各パネルの中に個別に敷き詰める） */

  /* スマホ用背景画像の土台 */
  .sp-bg {
    display: block;
    position: absolute;
    /* ★ パネルより上下に30%ずつ大きく広げて配置（のりしろを作る） */
    top: -30%; 
    left: 0;
    width: 100%;
    height: 160%; 
    background-size: cover;
    background-position: center;
    z-index: 1;
    pointer-events: none;
    will-change: transform; /* アニメーションを滑らかにする */
  }

  /* 各パネルの背景画像を指定 */
  .sp-bg-2 { background-image: url('../images/02sp.jpg'); }
  .sp-bg-4 { background-image: url('../images/04sp.jpg'); }
  .sp-bg-6 { background-image: url('../images/06sp.jpg'); }
  

  /* コンテンツが背景画像より前に来るように設定 */
  .content {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5); /* 画像の上でも文字を読みやすく */
    opacity: 0;
    transform: translateY(30px);
  }
}
/*----------------------------------------------------------
↑　パララックスエリア　↑
----------------------------------------------------------*/

.l-container{
  position: relative;
}

.dedicated_equipment{
  background: #F5F5F5;
}

.dedicated_equipment_itembox img{
  width: 100%;
  height: auto;
}

.dedicated_equipment_itembox {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width : 768px){ 
  .dedicated_equipment_itembox {
    gap: 30px;
  }
}

.dedicated_equipment_itembox .dedicated_equipment_item{
  width: calc(50% - 25px);
}
@media screen and (max-width : 768px){ 
  .dedicated_equipment_itembox .dedicated_equipment_item{
    width: 100%;
  }
}

.dedicated_equipment_itembox .dedicated_equipment_item p{
  text-indent: -1rem;
  margin-top: 1rem;
  padding-left: 1rem;
}

.dedicated_equipment_list ul{
  list-style-type: none;
  margin-top: 55px;
  padding: 0;
}

.dedicated_equipment_list ul li{
  text-indent: -1rem;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
}

.dedicated_equipment_list ul li:last-child{
  margin-bottom: 0;
}


@media print, screen and (min-width: 769px) {
  .limitededition360 a{
      transition: opacity .4s ease;
  }

  .limitededition360 a:hover{
      opacity: .7
  }
}

/*------------------------------------------------
select-type
------------------------------------------------*/

.l-container__inner{
    padding: 90px 20px ;
}
@media screen and (max-width: 768px) {
    .l-container__inner{
        padding: 55px 30px ;
    }
}

.type-section img{
    width: 100%;
    height: auto;
}

.type-section:not(:last-child) {
    margin-bottom: 80px;
}
@media print, screen and (min-width: 769px) {
    .type-section:not(:last-child) {
        margin-bottom: 150px;
    }
}
  .type-section-heading {
    margin: 0 auto 60px;
    font-size: 20px;
    font-family: var(--font-bold);
    text-align: center;
}
.type-section-heading::after {
    content: "";
    width: 50px;
    height: 4px;
    margin: 20px auto 0;
    display: block;
    background-color: #000;
}

  .select-color .imgs {
    max-width: 980px;
    margin: 0 auto
  }
  .select-color .imgs img{
    width: 100%;
    height: auto;
  }
  .select-color .imgs > div {
    padding-top: calc(310 / 980 * 100%);
    position: relative
  }
  @media screen and (max-width: 768px) {
    .select-color .imgs > div {
        padding-top: calc(974.77 / 980 * 100%);
    }
  }
  .select-color .imgs > div > div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    transition: .5s;
    display: none;
  }
  .select-color .imgs > div > div.on {
    opacity: 1;
    display: block;
  }
  .select-color .names {
    margin: 0 auto
  }
  .select-color .names p {
    display: none;
    text-align: center
  }
  .select-color .names p.on {
    display: block
  }
  .select-color .icons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 1.5em auto 0
  }
  @media screen and (max-width: 768px) {
    .select-color .icons {
        gap: 10px;
    }
  }
  .select-color .icons > a {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: opacity .4s ease;
  }
  .select-color .icons > a:nth-child(1) {
    background:#A92E36;
  }
  .select-color .icons > a.on::before,
  .select-color .icons > a.on::after{
    content: "";
    display: block;
    position: absolute;
    transform: rotate(45deg);
  }
  .select-color .icons > a.on:before {
    top: calc(50% - 12px);
    left: calc(50% - 12px);
    width: 24px;
    height: 24px;
    background-color: #000;
    border: 2px solid #fff;
    border-radius: 50%;
  }
  .select-color .icons > a.on::after {
    top: 13px;
    left: 16px;
    width: 7px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
  .select-color .icons > a:hover {
    opacity: .7
  }
  .select-color .cautions {
    margin: 3em auto;
  }
  .select-color .cautions p {
    font-size: .75em;
    font-family: var(--font-light);
    color: #c00;
    display: none;
  }
  @media print, screen and (min-width: 769px) {
    .select-color .cautions p {
      text-align: center;
    }
  }
  .select-color .cautions p.on {
    display: block;
  }

  .type-interior-color__name {
    text-align: center;
    margin-bottom: 10px;
  }

  @media print, screen and (min-width: 769px) {
    .type-interior-color__name {
        margin-bottom: 16px;
    }
  }

  @media print, screen and (min-width: 769px) {
    .type-lineup .c-grid .c-grid__col{
      width: 490px;
      padding: 0 15px;
      margin: 0 auto;
    }
  }
  
  .type-lineup__card {
    padding: 16px;
    width: auto;
    background-color: #f8f8f8;
    margin-bottom: 15px;
  }

@media print, screen and (min-width : 769px){ 
  .type-lineup__card {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: calc(30 / 16* 1em);
    height: 100%;
  }
}
  .p-single-type-buttons__wrap {
    justify-content: center;
  }

  .p-single-type-grid__button {
    flex: 1 0 calc((100% - 10px) / 2);
  }

  .type-lineup__name {
    font-size: 18px;
    font-family: var(--font-bold);
    margin-bottom: 12px;
  }

  .type-lineup__lead {
    font-size: 13px;
    line-height: 1.5em;
    border-top: 2px #b5b5b5 solid;
    padding: 10px 0 0;
  }

  @media print, screen and (min-width : 769px){ 
    .type-lineup__lead {
        font-size: 15px;
    }
  }

  .c-text--size-ss {
    font-size: 12px;
    font-family: var(--font-light);
  }

  .type-lineup__item {
    margin-top: 20px;
    display: flex;
    gap: 24px;
  }
  @media screen and (max-width: 768px) {
    .type-lineup__item {
        max-width: 300px;
        gap: unset;
        justify-content: space-between;
    }
  }

  .type-lineup__type {
    width: 60px;
    height: 45px;
    font-size: 3.75vw;
    background-color: #e5e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  @media print, screen and (min-width : 769px){ 
    .type-lineup__type {
        width: 45px;
    }
  }

  @media print, screen and (min-width : 769px){ 
    .type-lineup__type {
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
  }

  .type-lineup__price {
    font-size: 24px;
    line-height: 1;
    font-family: var(--font-bold);
  }

  @media print, screen and (min-width : 769px){ 
    .type-lineup__price {
        font-size: 30px;
    }
  }

  .type-lineup__price .yen {
    font-size: 14px;
  }

  @media print, screen and (min-width : 769px){ 
    .type-lineup__price .yen {
        font-size: 16px;
    }
  }

  .type-lineup__without-tax {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1;
    font-family: var(--font-light);
  }

  .type-lineup__tax-img {
    display: inline-block;
    width: 45px;
    margin-left: 10px;
  }

  @media print, screen and (min-width : 769px){ 
    .type-lineup__tax-img {
        width: 60px;
    }
  }

  .p-single-type-buttons__block {
    width: 100%;
    margin: 0 auto;
  }
  @media print, screen and (min-width : 769px){ 
    .p-compare-type-item {
        display: flex;
        padding-top: 0;
        margin-right: 0;
        margin-left: 0;
      }
  }

  @media screen and (max-width: 768px) {
    .p-compare-type-item {
        display: block;
        padding-top: 0;
      }
  }
  @media screen and (max-width: 768px) {
  .p-single-type-buttons__wrap .p-compare-type-item__inner {
    width: 100%;
    }
    }
  .p-single-type-grid__buttons {
    gap: 10px;
    margin-bottom: 10px;
  }
  @media screen and (max-width: 768px) {
    .p-single-type-grid__buttons {
        display: block;
        margin-bottom: 10px;
    }
    .p-single-type-grid__button{
        margin-bottom: 10px;
    }
  }
  .c-list--type.indent-n > li {
    padding-left: 0;
    text-indent: 0;
}

.type-lineup__button-wrapper{
  margin-top: 1em;
}

.c-button-favorite-round{
  max-width: 158px;
  margin: 0 auto;
}
.survey_wrap_compare .l-container__inner-pb-60{
      padding-top: 30px!important;
}
@media screen and (max-width: 768px) {
  .section_survey{
      margin-top: 0!important;
  }
  .survey_wrap_compare .l-container__inner-pb-60{
      padding-top: 40px!important;
  }
  .p-compare-type-container__inner.hondaon {
      padding: 70px 30px!important;
  }
}
.p-compare-type-notes {
    margin-top: 10px!important;
}