/* ==============================
  Slide & Tunnel Cart Page
  元サイトのカート色味・3/2/1列レイアウト
============================== */

.pop-page-wrap{
  background: var(--base-offwhite);
}

.pop-page{
  --white:#fff;
  --card:#f1f1f1;
  --text:#202020;
  --sub:#555;
  --teal:#08beb8;
  --red:#e93535;
  --line:#dcdcdc;
  --gray:#d7d7d7;

  position:relative;
  overflow:hidden;
  color:var(--text);
  font-family:"Zen Kaku Gothic New","Noto Sans JP","Yu Gothic",sans-serif;
  padding:60px 20px 0;
}

.pop-page *,
.pop-page *::before,
.pop-page *::after{
  box-sizing:border-box;
}

.pop-page img{
  display:block;
  max-width:100%;
}

.pop-page a{
  color:inherit;
  text-decoration:none;
}

/* HERO */
.pop-hero,
.cart-layout,
.pop-cta{
  position:relative;
  z-index:2;
  width:min(1180px,100%);
  margin-inline:auto;
}

.pop-hero{
  padding:56px 0 44px;
  text-align:center;
}

.pop-hero-en{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  margin:0 0 16px;
  color:var(--teal);
  font-size:18px;
  line-height:1;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.pop-hero-en span{
  display:block;
  width:86px;
  height:3px;
  background:var(--teal);
  border-radius:999px;
}

.pop-hero h1{
  margin:0 0 18px;
  color:#111;
  font-size:clamp(36px,3vw,58px);
  line-height:1.25;
  font-weight:900;
  letter-spacing:.06em;
}

.pop-hero-text > p:last-child{
  max-width:820px;
  margin:0 auto;
  color:#444;
  font-size:15px;
  line-height:2;
  font-weight:800;
}

/* CATEGORY */
.cart-layout{
  padding-bottom:90px;
}

.cart-category{
  margin-bottom:58px;
}

.cart-heading{
  margin:0 0 34px;
  text-align:center;
}

.cart-heading p{
  margin:0 0 10px;
  color:var(--teal);
  font-size:18px;
  line-height:1;
  font-weight:900;
  letter-spacing:.06em;
}

.cart-heading h2{
  margin:0;
  color:#202020;
  font-size:clamp(30px,4vw,48px);
  line-height:1.35;
  font-weight:900;
  letter-spacing:.04em;
}

/* PC 3 columns / iPad 2 columns / SP 1 column */
.cart-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  column-gap:34px;
  row-gap:58px;
}

/* CARD */
.cart-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  background:#f1f1f1;
  background:var(--card,#f1f1f1);
  border-radius:20px;
  padding:16px;
  overflow:hidden;
}

.cart-card-head{
  display:grid;
  grid-template-columns:58px 1fr;
  gap:14px;
  align-items:start;
  min-height:78px;
  margin-bottom:14px;
}

.cart-card-head span{
  display:grid;
  place-items:center;
  width:58px;
  height:58px;
  background:#fff;
  color:#111;
  font-size:20px;
  line-height:1;
  font-weight:900;
}

.cart-card-head h3{
  margin:0;
  color:#111;
  font-size:17px;
  line-height:1.45;
  font-weight:900;
  letter-spacing:.02em;
}

.cart-img{
  display:grid;
  place-items:center;
  width:100%;
  aspect-ratio:1.33/1;
  margin-bottom:16px;
  background:#fff;
  overflow:hidden;
}

.cart-img img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
}

.cart-info{
  margin-top:auto;
}

.cart-material{
  margin:0 0 12px;
  color:#222;
  font-size:13px;
  line-height:1.65;
  font-weight:800;
}

.cart-spec{
  margin:0 0 12px;
  padding:12px 10px;
  background:var(--gray);
  border-radius:6px;
  color:#111;
  text-align:center;
  font-size:13px;
  line-height:1.55;
  font-weight:900;
}

.cart-price{
  margin:0 0 10px;
  padding:12px 10px;
  background:#fff;
  border:1px solid var(--line);
  color:#111;
  text-align:center;
  font-size:15px;
  line-height:1.5;
  font-weight:900;
}

.cart-note{
  margin:0 0 12px;
  color:var(--red);
  text-align:center;
  font-size:13px;
  line-height:1.7;
  font-weight:900;
}

/* CART FORM */
.cart-form{
  display:grid;
  grid-template-columns:56px 1fr;
  gap:8px;
  align-items:center;
  margin-top:12px;
}

.cart-form input{
  width:100%;
  height:34px;
  border:1px solid #ddd;
  background:#fff;
  color:#222;
  text-align:center;
  font-size:13px;
  font-weight:800;
}

.cart-form button{
  width:100%;
  min-height:36px;
  border:0;
  background:#009ad6;
  color:#fff;
  font-size:13px;
  line-height:1;
  font-weight:900;
  cursor:pointer;
  transition:.2s;
}

.cart-form button::before{
  content:"🛒";
  margin-right:6px;
}

.cart-form button:hover{
  filter:brightness(.95);
  transform:translateY(1px);
}

/* CTA */
.pop-cta{
  margin-bottom:70px;
  padding:40px 24px;
  background:var(--teal);
  color:#fff;
  text-align:center;
  border-radius:28px;
  box-shadow:0 18px 45px rgba(1,200,189,.22);
}

.pop-cta h2{
  margin:0 0 12px;
  font-size:clamp(24px,4vw,36px);
  font-weight:900;
}

.pop-cta p{
  margin:0 0 24px;
  font-size:14px;
  line-height:1.9;
  font-weight:800;
}

.pop-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:230px;
  min-height:48px;
  padding:12px 28px;
  background:#fff;
  color:#08aaa4;
  border-radius:999px;
  font-size:14px;
  font-weight:900;
}

/* iPad: 2 columns */
@media(max-width:1024px){
  .cart-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    column-gap:28px;
    row-gap:54px;
  }
}

/* Mobile: 1 column */
@media(max-width:640px){
  .pop-page{
    padding:34px 12px 0;
  }

  .pop-hero{
    padding:44px 0 34px;
  }

  .pop-hero-en{
    gap:12px;
    font-size:15px;
  }

  .pop-hero-en span{
    width:42px;
    height:3px;
  }

  .pop-hero h1{
    font-size:30px;
  }

  .pop-hero-text > p:last-child{
    text-align:left;
    font-size:13px;
  }

  .cart-heading{
    margin-bottom:24px;
  }

  .cart-grid{
    grid-template-columns:1fr;
    row-gap:38px;
  }

  .cart-card{
    padding:14px;
    border-radius:18px;
  }

  .cart-card-head{
    grid-template-columns:50px 1fr;
    min-height:auto;
  }

  .cart-card-head span{
    width:50px;
    height:50px;
    font-size:17px;
  }

  .cart-card-head h3{
    font-size:16px;
  }

  .pop-cta{
    border-radius:22px;
    padding:32px 18px;
  }
}

/* ===============================
  SVG decoration
  PC / iPad / Mobile responsive
  ※デザイン本体・カードレイアウトは変更しない
=============================== */

.pop-page-wrap{
  position:relative;
  overflow:hidden;
}

.pop-page{
  position:relative;
  overflow:visible;
  z-index:0;
}

.pop-hero,
.cart-layout,
.pop-cta,
.block-secret-section{
  position:relative;
  z-index:2;
}

.pop-page-wrap .ps_object1,
.pop-page-wrap .ps_object2,
.pop-page-wrap .ps_object3,
.pop-page-wrap .ps_object4{
  position:absolute;
  height:auto;
  max-width:none;
  object-fit:contain;
  pointer-events:none;
  z-index:-1;
  opacity:0;
  animation:matSvgPoyonUp 2s cubic-bezier(.19,1,.22,1) forwards;
  will-change:transform, opacity;
}

/* ---------- PC ---------- */
.pop-page-wrap .ps_object1{
  width:30%;
  top:18px;
  left:-9vw;
  animation-delay:.2s;
}

.pop-page-wrap .ps_object2{
  width:30%;
  top:40%;
  right:0;
  animation-delay:.45s;
}

.pop-page-wrap .ps_object3{
  width:30%;
  top:18px;
  right:-5vw;
  animation-delay:.7s;
}

.pop-page-wrap .ps_object4{
  width:30%;
  right:-4vw;
  bottom:90px;
  animation-delay:.95s;
}

@keyframes matSvgPoyonUp{
  0%{
    opacity:0;
    transform:translateY(90px) scale(.82);
  }

  60%{
    opacity:1;
    transform:translateY(-12px) scale(1.04);
  }

  80%{
    transform:translateY(5px) scale(.98);
  }

  100%{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

/* ---------- iPad ---------- */
@media(max-width:1024px){
.pop-page-wrap .ps_object1{
  width:30%;
  top:18px;
  left:-9vw;
  animation-delay:.2s;
}

.pop-page-wrap .ps_object2{
  width:30%;
  top:40%;
  right:0;
  animation-delay:.45s;
}

.pop-page-wrap .ps_object3{
  width:30%;
  top:18px;
  right:-5vw;
  animation-delay:.7s;
}

.pop-page-wrap .ps_object4{
  width:30%;
  right:-4vw;
  bottom:90px;
  animation-delay:.95s;
}

}

/* ---------- Mobile ---------- */
@media(max-width:767px){
  
  
.pop-page-wrap .ps_object1{
  width:30%;
  top:18px;
  left:-9vw;
  animation-delay:.2s;
}

.pop-page-wrap .ps_object2{
  width:30%;
  top:40%;
  right:0;
  animation-delay:.45s;
}

.pop-page-wrap .ps_object3{
  width:30%;
  top:18px;
  right:-5vw;
  animation-delay:.7s;
}

.pop-page-wrap .ps_object4{
  width:30%;
  right:-4vw;
  bottom:90px;
  animation-delay:.95s;
}

}

@media(max-width:430px){
.pop-page-wrap .ps_object1{
  width:30%;
  top:18px;
  left:-9vw;
  animation-delay:.2s;
}

.pop-page-wrap .ps_object2{
  width:30%;
  top:40%;
  right:0;
  animation-delay:.45s;
}

.pop-page-wrap .ps_object3{
  width:30%;
  top:18px;
  right:-5vw;
  animation-delay:.7s;
}

.pop-page-wrap .ps_object4{
  width:30%;
  right:-4vw;
  bottom:90px;
  animation-delay:.95s;
}

}
/* ==========================
   Order Button
========================== */

.cart-order-btn{
    width:100%;
    max-width:250px;   /* ←350→250に */
    height:56px;       /* ←84→56 */

    display:flex;
    align-items:center;
    justify-content:space-between;

    background:#fff;
    border:3px solid #2c2c2c;
    border-radius:999px;

    color:#2c2c2c;
    text-decoration:none;
    overflow:hidden;

    transition:.3s;
}

.cart-order-text{
    flex:1;
    text-align:center;
    font-size:18px;    /* ←34→18 */
    font-weight:900;
    letter-spacing:.08em;
}

.cart-order-icon{
    width:52px;        /* ←78→52 */
    height:100%;
    border-left:3px solid #2c2c2c;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;
}

.cart-order-icon svg{
    width:20px;
    height:20px;
}

/* Hover */

.cart-order-btn:hover{
    background:#2c2c2c;
    color:#fff;
}

.cart-order-btn:hover .cart-order-icon{
    border-left-color:#fff;
}

/* スマホ */

@media(max-width:767px){

    .cart-order-btn{
        max-width:210px;
        height:50px;
    }

    .cart-order-text{
        font-size:16px;
    }

    .cart-order-icon{
        width:46px;
    }

    .cart-order-icon svg{
        width:18px;
        height:18px;
    }

}
.cart-order-btn{
    display:flex;
    align-items:center;
    justify-content:space-between;

    width:100%;
    max-width:250px;
    height:56px;

    margin:18px auto 0;   /* ← 真ん中にする */

    background:#fff;
    border:3px solid #2c2c2c;
    border-radius:999px;

    color:#2c2c2c;
    text-decoration:none;
    overflow:hidden;

    transition:.3s;
}
.breadcrumb_link_text a{
 color:var(--base-gray);
}
.block-secret-section{

  padding:80px 20px 70px;
  position:relative;
  overflow:hidden;
}

.block-secret-inner{
  max-width:1120px;
  margin:0 auto;
  text-align:center;
}

.block-secret-en{
  margin:0 0 8px;
  color:#08BEB8;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
}

.block-secret-title{
  margin:0 0 34px;
  font-size:38px;
  line-height:1.4;
  font-weight:900;
  color:#222;
}

.block-secret-title span{
  color:#FF4F66;
}

.block-secret-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-bottom:38px;
}

.block-secret-points article{
  position:relative;
  background:#fff;
  border-radius:20px;
  padding:24px 16px 26px;
  box-shadow:0 12px 30px rgba(70,50,20,.1);
}

.block-secret-points b{
  position:absolute;
  top:-18px;
  left:20px;
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  background:#08BEB8;
  color:#fff;
  border-radius:16px 16px 20px 16px;
  font-size:18px;
  font-weight:900;
}

.block-secret-points article:nth-child(2) b{
  background:#FF8A00;
}

.block-secret-points article:nth-child(3) b{
  background:#21B88B;
}

.block-secret-points p{
  margin:0 0 14px;
  font-size:14px;
  line-height:1.6;
  font-weight:900;
}

.block-secret-points h3{
  margin:0;
  font-size:28px;
  line-height:1.35;
  font-weight:900;
}

.block-secret-copy{
  margin:0 0 30px;
  font-size:18px;
  line-height:1.8;
  font-weight:900;
}

.block-secret-copy strong{
  color:#08BEB8;
  font-size:32px;
}

.block-secret-main{
  margin:0 auto 34px;
}

.block-secret-main img{
  width:100%;
  display:block;
  border-radius:0;
}

.block-secret-feature{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:0;
  margin:0 auto 34px;
  background:#fffdf8;
  border-radius:28px;
  box-shadow:0 14px 34px rgba(70,50,20,.1);
  overflow:hidden;
}

.block-secret-feature article{
  padding:28px;
  text-align:left;
}

.block-secret-feature article:first-child{
  border-right:1px dashed #e6d8bd;
}

.block-secret-feature h3{
  position:relative;
  margin:0 0 18px;
  padding-left:44px;
  font-size:22px;
  line-height:1.5;
  font-weight:900;
}

.block-secret-feature h3::before{
  content:"★";
  position:absolute;
  left:0;
  top:0;
  color:#FF4F66;
  font-size:30px;
}

.block-secret-feature article:nth-child(2) h3::before{
  color:#FF9900;
}

.block-secret-feature img{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:16px;
}

.block-secret-feature p{
  margin:0;
  font-size:14px;
  line-height:1.9;
  font-weight:700;
}

.block-secret-custom{
  padding:26px 28px 30px;

}

.block-secret-custom > h3{
  margin:0 0 22px;
  color:black;
  font-size:26px;
  line-height:1.45;
  font-weight:900;
}

.block-custom-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
}

.block-custom-grid > div{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:18px;
  align-items:center;
  text-align:left;
}

.block-custom-grid h4{
  grid-column:1 / -1;
  margin:0;
  color:#01C8BD;
  font-size:18px;
  font-weight:900;
}

.block-custom-grid > div:nth-child(2) h4{
  color:#08BEB8;
}

.block-custom-grid img{
  width:100%;
  max-height:110px;
  object-fit:contain;
}

.block-custom-grid p{
  margin:0;
  font-size:13px;
  line-height:1.8;
  font-weight:700;
}

@media(max-width:767px){
  .block-secret-section{
    padding:54px 14px 56px;
  }

  .block-secret-title{
    font-size:26px;
  }

  .block-secret-points{
    grid-template-columns:1fr;
    gap:22px;
  }

  .block-secret-copy{
    font-size:14px;
  }

  .block-secret-copy strong{
    font-size:22px;
  }

  .block-secret-feature{
    grid-template-columns:1fr;
  }

  .block-secret-feature article:first-child{
    border-right:none;
    border-bottom:1px dashed #e6d8bd;
  }

  .block-secret-feature article{
    padding:20px;
  }

  .block-secret-feature h3{
    font-size:18px;
  }

  .block-secret-custom{
    padding:22px 16px;
  }

  .block-secret-custom > h3{
    font-size:20px;
  }

  .block-custom-grid{
    grid-template-columns:1fr;
  }

  .block-custom-grid > div{
    grid-template-columns:1fr;
    text-align:center;
  }

  .block-custom-grid img{
    max-height:130px;
  }
}
/* ===============================
   右下追従ボタン
================================ */

/* PC */
.floating-reference{
    position:fixed;
    right:28px;
    bottom:28px;
    z-index:9999;

    display:flex;
    flex-direction:column;
    gap:16px;
}

.floating-reference-btn{
    width:135px;
    height:135px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    background:#fff;
    border-radius:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.15);

    text-decoration:none;
    transition:.3s;
}

.floating-reference-btn:hover{
    transform:translateY(-4px);
}

.floating-reference-btn img{
    width:44px;
    height:44px;
    margin-top:10px;
}

.floating-reference-btn span{
    font-size:15px;
    font-weight:700;
    line-height:1.5;
    text-align:center;
    color:#444;
}


/* ===============================
   iPad
================================ */

@media (max-width:1024px){

.floating-reference{
    right:20px;
    bottom:20px;

    flex-direction:row;   /* ← 横並び */
    gap:12px;
}

.floating-reference-btn{
    width:95px;
    height:95px;
    border-radius:16px;
}

.floating-reference-btn img{
    width:30px;
    height:30px;
    margin-top:6px;
}

.floating-reference-btn span{
    font-size:11px;
}

}


/* ===============================
   スマホ
================================ */

@media (max-width:767px){

.floating-reference{
    right:10px;
    bottom:10px;

    flex-direction:row;   /* ← 横並び */
    gap:8px;
}

.floating-reference-btn{
    width:78px;
    height:78px;
    border-radius:14px;
}

.floating-reference-btn img{
    width:24px;
    height:24px;
    margin-top:4px;
}

.floating-reference-btn span{
    font-size:10px;
    line-height:1.3;
}

}

/* =========================================================
   ALL ITEMより上：配置崩れ調整
   ※色・装飾はそのまま、画像と文章の揃えのみ調整
========================================================= */
.slide-cart-page{
  overflow:visible;
}

.slide-cart-page .block-secret-section{
  position:relative;
  z-index:2;
  overflow:visible;
}

.slide-cart-page .block-secret-inner{
  width:min(1120px,100%);
  margin:0 auto;
}

.slide-cart-page .block-secret-main{
  width:100%;
  max-width:980px;
  margin:0 auto 38px;
}

.slide-cart-page .block-secret-main img{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
  object-position:center;
}

/* トンネル・すべり台・階段：PCは3カラムで均等配置 */
.slide-cart-page .block-secret-feature{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  background:transparent;
  border-radius:0;
  box-shadow:none;
  overflow:visible;
  margin:0 auto 38px;
}

.slide-cart-page .block-secret-feature article{
  min-width:0;
  display:flex;
  flex-direction:column;
  height:100%;
  padding:24px;
  background:#fffdf8;
  border-radius:24px;
  box-shadow:0 14px 34px rgba(70,50,20,.1);
  text-align:left;
}

.slide-cart-page .block-secret-feature article:first-child{
  border-right:none;
}

.slide-cart-page .block-secret-feature h3{
  min-height:66px;
  margin:0 0 16px;
  display:flex;
  align-items:flex-start;
}

.slide-cart-page .block-secret-feature img{
  width:100%;
  height:180px;
  margin:0 0 16px;
  padding:10px;
  background:#fff;
  border-radius:14px;
  object-fit:contain;
  object-position:center;
}

.slide-cart-page .block-secret-feature p{
  flex:1;
  margin:0;
  padding:14px 14px 0;
  text-align:left;
  font-size:14px;
  line-height:1.9;
  font-weight:700;
}

/* 特長・カラー/サイズ：画像と文章の位置を揃える */
.slide-cart-page .block-secret-custom{
  max-width:1060px;
  margin:0 auto 34px;
}

.slide-cart-page .block-custom-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}

.slide-cart-page .block-custom-grid > div{
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  height:100%;
  padding:22px 20px;
  background:#fff;
  border-radius:20px;
  text-align:center;
}

.slide-cart-page .block-custom-grid h4{
  width:100%;
  min-height:54px;
  margin:0 0 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  line-height:1.55;
}

.slide-cart-page .block-custom-grid img{
  width:100%;
  max-width:260px;
  height:150px;
  margin:0 auto 14px;
  object-fit:contain;
  object-position:center;
}

.slide-cart-page .block-custom-grid p{
  width:100%;
  max-width:420px;
  margin:0 auto 8px;
  text-align:center;
  font-size:13px;
  line-height:1.9;
  font-weight:700;
}

.slide-cart-page .block-custom-grid p:last-child{
  margin-bottom:0;
}

@media(max-width:1024px){
  .slide-cart-page .block-secret-section{
    padding:70px 18px 64px;
  }

  .slide-cart-page .block-secret-feature{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
  }

  .slide-cart-page .block-secret-feature article{
    padding:18px 14px;
    border-radius:20px;
  }

  .slide-cart-page .block-secret-feature h3{
    min-height:58px;
    padding-left:34px;
    font-size:18px;
  }

  .slide-cart-page .block-secret-feature h3::before{
    font-size:24px;
  }

  .slide-cart-page .block-secret-feature img{
    height:140px;
    padding:8px;
  }

  .slide-cart-page .block-secret-feature p{
    padding:10px 4px 0;
    font-size:12px;
    line-height:1.75;
  }

  .slide-cart-page .block-custom-grid{
    gap:18px;
  }
}

@media(max-width:767px){
  .slide-cart-page .block-secret-section{
    padding:52px 14px 56px;
  }

  .slide-cart-page .block-secret-title{
    margin-bottom:28px;
    font-size:26px;
  }

  .slide-cart-page .block-secret-main{
    margin-bottom:28px;
  }

  .slide-cart-page .block-secret-feature{
    grid-template-columns:1fr;
    gap:18px;
    margin-bottom:30px;
  }

  .slide-cart-page .block-secret-feature article{
    padding:20px;
    border-radius:22px;
  }

  .slide-cart-page .block-secret-feature h3{
    min-height:auto;
    font-size:18px;
  }

  .slide-cart-page .block-secret-feature img{
    height:190px;
  }

  .slide-cart-page .block-secret-feature p{
    padding:12px 6px 0;
    text-align:center;
    font-size:13px;
  }

  .slide-cart-page .block-custom-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .slide-cart-page .block-custom-grid > div{
    padding:20px 16px;
  }

  .slide-cart-page .block-custom-grid h4{
    min-height:auto;
    font-size:17px;
  }

  .slide-cart-page .block-custom-grid img{
    height:150px;
  }
}
@media(max-width:767px){
  .block-secret-points{
    grid-template-columns:1fr;
  }
}

/* =========================================================
   FIX：選ばれる秘密 01/02/03
   スマホでも3カラムを維持
========================================================= */
@media(max-width:767px){
  .slide-cart-page .block-secret-points,
  .block-secret-points{
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:10px !important;
    margin-bottom:30px;
  }

  .slide-cart-page .block-secret-points article,
  .block-secret-points article{
    min-width:0;
    padding:24px 7px 16px !important;
    border-radius:14px;
    text-align:center;
  }

  .slide-cart-page .block-secret-points b,
  .block-secret-points b{
    top:-14px;
    left:50% !important;
    transform:translateX(-50%);
    width:38px;
    height:38px;
    font-size:13px;
    border-radius:12px;
  }

  .slide-cart-page .block-secret-points p,
  .block-secret-points p{
    margin:8px 0;
    font-size:10px;
    line-height:1.45;
    font-weight:900;
  }

  .slide-cart-page .block-secret-points h3,
  .block-secret-points h3{
    margin:0;
    font-size:13px;
    line-height:1.45;
    font-weight:900;
  }
}

@media(max-width:390px){
  .slide-cart-page .block-secret-points,
  .block-secret-points{
    gap:7px !important;
  }

  .slide-cart-page .block-secret-points article,
  .block-secret-points article{
    padding:22px 5px 14px !important;
  }

  .slide-cart-page .block-secret-points p,
  .block-secret-points p{
    font-size:9px;
  }

  .slide-cart-page .block-secret-points h3,
  .block-secret-points h3{
    font-size:12px;
  }
}

/* =========================================================
   FIX：トンネルすべり台セットの特長 / 選べるカラー＆サイズ
   スマホでも2カラム横並びを維持
========================================================= */
@media(max-width:767px){
  .slide-cart-page .block-secret-custom{
    padding:20px 12px 22px;
    border-radius:22px;
  }

  .slide-cart-page .block-secret-custom > h3{
    margin-bottom:18px;
    font-size:18px;
    line-height:1.45;
  }

  .slide-cart-page .block-custom-grid,
  .block-custom-grid{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:10px !important;
    align-items:stretch;
  }

  .slide-cart-page .block-custom-grid > div,
  .block-custom-grid > div{
    min-width:0;
    display:flex !important;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    padding:14px 8px !important;
    border-radius:16px;
    text-align:center !important;
  }

  .slide-cart-page .block-custom-grid h4,
  .block-custom-grid h4{
    min-height:auto;
    margin:0 0 10px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:12px !important;
    line-height:1.45;
  }

  .slide-cart-page .block-custom-grid img,
  .block-custom-grid img{
    width:100%;
    max-width:130px;
    height:92px !important;
    margin:0 auto 10px;
    object-fit:contain;
    object-position:center;
  }

  .slide-cart-page .block-custom-grid p,
  .block-custom-grid p{
    width:100%;
    max-width:100%;
    margin:0 auto 6px;
    text-align:center !important;
    font-size:10px !important;
    line-height:1.65;
    font-weight:700;
  }

  .slide-cart-page .block-custom-grid p:last-child,
  .block-custom-grid p:last-child{
    margin-bottom:0;
  }
}

@media(max-width:390px){
  .slide-cart-page .block-secret-custom{
    padding:18px 10px 20px;
  }

  .slide-cart-page .block-custom-grid,
  .block-custom-grid{
    gap:8px !important;
  }

  .slide-cart-page .block-custom-grid > div,
  .block-custom-grid > div{
    padding:12px 6px !important;
  }

  .slide-cart-page .block-custom-grid h4,
  .block-custom-grid h4{
    font-size:11px !important;
  }

  .slide-cart-page .block-custom-grid img,
  .block-custom-grid img{
    max-width:112px;
    height:82px !important;
  }

  .slide-cart-page .block-custom-grid p,
  .block-custom-grid p{
    font-size:9px !important;
    line-height:1.6;
  }
}
/* ==========================
   ALL ITEM 見出し
========================== */

.vaultingbox-products-inner{
    text-align:center;
    margin-bottom: 100px;
}

.vaultingbox-products-en{
    margin:0 0 12px;
    color:var(--main);
    font-size:2rem;
    line-height:1;
    font-weight:900;
    letter-spacing:.08em;
    color: #01C8BD;
    display:flex;
    justify-content:center;
    align-items:center;
}

.vaultingbox-products-title{
    margin:0 0 60px;
    color:#222;
    font-size:clamp(30px,4vw,48px);
    line-height:1.42;
    font-weight:900;
    letter-spacing:.04em;
}

/* =========================================================
   TUNNEL FIRST VIEW ONLY
   woodenと同じく、PCは左に文字・右に写真
   ファーストビュー以外には影響しません
========================================================= */

.pop-page .pop-hero.pop-hero-horizontal{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:58px;
  align-items:center;
  width:min(1120px,100%);
  padding:56px 0 64px;
  text-align:left;
}

.pop-page .pop-hero-horizontal .pop-hero-text{
  min-width:0;
}

.pop-page .pop-hero-horizontal .pop-hero-en{
  justify-content:flex-start;
}

.pop-page .pop-hero-horizontal h1{
  margin:0 0 26px;
}

.pop-page .pop-hero-horizontal .pop-hero-text > p:last-child{
  max-width:none;
  margin:0;
}

.pop-page .pop-hero-image{
  overflow:hidden;
  aspect-ratio:4 / 3;
  background:#fff;
  border-radius:30px;
  box-shadow:0 18px 38px rgba(70,50,20,.12);
}

.pop-page .pop-hero-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

@media(max-width:1024px){
  .pop-page .pop-hero.pop-hero-horizontal{
    grid-template-columns:1fr;
    gap:42px;
    text-align:center;
  }

  .pop-page .pop-hero-horizontal .pop-hero-en{
    justify-content:center;
  }

  .pop-page .pop-hero-horizontal .pop-hero-text > p:last-child{
    max-width:820px;
    margin:0 auto;
  }

  .pop-page .pop-hero-image{
    width:min(760px,100%);
    margin:0 auto;
  }
}

@media(max-width:640px){
  .pop-page .pop-hero.pop-hero-horizontal{
    gap:28px;
    padding:44px 0 38px;
  }

  .pop-page .pop-hero-horizontal h1{
    margin-bottom:20px;
  }

  .pop-page .pop-hero-horizontal .pop-hero-text > p:last-child{
    text-align:left;
  }

  .pop-page .pop-hero-image{
    border-radius:22px;
  }
}
