/* =========================================================
  壁面マット・パネル page
  配置は変えず、Pop'nLandトンマナ
========================================================= */

.hekimen-page-wrap{
  --main:#01C8BD;
  --main-dark:#00a79f;
  --cream:#F5F2EA;
  --white:#fff;
  --text:#242424;
  --sub:#5d5750;
  --yellow:#F4CC00;
  --orange:#FF7E00;
  --red:#EE4848;
  --purple:#752DB7;
  --line:#e7ded2;
  --shadow:0 18px 45px rgba(96,70,32,.12);

  background:var(--cream);
}

.hekimen-page-wrap *{
  box-sizing:border-box;
}

.hekimen-page-wrap img{
  display:block;
  max-width:100%;
  height:auto;
}

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

/* 背景 */
.hekimen-page-wrap{
  position:relative;
  overflow:hidden;
}


/* 共通幅 */
.hekimen-page-wrap .hero,
.hekimen-page-wrap .products,
.hekimen-page-wrap .parts-search,
.hekimen-page-wrap .category-search{
  position:relative;
  z-index:2;
  width:min(1180px,100%);
  padding-inline:18px;
}

/* HERO */
.hekimen-page-wrap .hero{
  padding-top:64px;
  text-align:center;
}

.hekimen-page-wrap .kicker{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:26px;
  margin-bottom:14px;
}

.hekimen-page-wrap .kicker span{
  width:92px;
  height:3px;
  background:var(--main);
  border-radius:999px;
}

.hekimen-page-wrap .kicker strong{
  color:var(--main);
  font-size:25px;
  line-height:1;
  letter-spacing:.09em;
  font-weight:900;
}

.hekimen-page-wrap .hero h1{
  margin:0;
  font-size:clamp(30px,4vw,42px);
  line-height:1.35;
  font-weight:900;
  letter-spacing:.05em;
}

.hekimen-page-wrap .category-name{
  display:table;
  margin:0 auto 5px;
  padding:0 18px 6px;
  font-size:3rem;
  line-height:1.45;
  font-weight:900;
}

.hekimen-page-wrap .lead{
  max-width:900px;
  margin:0 auto;
  color:var(--sub);
  font-size:16px;
  line-height:2.05;
  font-weight:700;
}

/* PRODUCTS */
.hekimen-page-wrap .products{
  padding-bottom:72px;
}

.hekimen-page-wrap .products h2{
  margin:0 0 34px;
  text-align:center;
  font-size:clamp(28px,4vw,36px);
  line-height:1.4;
  font-weight:900;
}


.hekimen-page-wrap .product-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
}

.hekimen-page-wrap .product-card{
  position:relative;
  min-height:500px;
  padding:24px 20px 72px;
  border:1px solid rgba(44,35,24,.08);
  border-radius:18px;
  background:var(--white);
  box-shadow:var(--shadow);
}

.hekimen-page-wrap .num{
  position:absolute;
  left:18px;
  top:18px;
  width:44px;
  height:44px;
  display:flex;
  justify-content:center;
  align-items:center;
  border-radius:50%;
  background:var(--main);
  color:#fff;
  font-size:18px;
  font-weight:900;
}

.hekimen-page-wrap .product-card h3{
  margin:0 0 3px;
  padding-left:56px;
  font-size:17px;
  line-height:1.42;
  font-weight:900;
}

.hekimen-page-wrap .size{
  margin:0 0 18px;
  padding-left:56px;
  color:var(--sub);
  font-size:13px;
  font-weight:800;
}

.hekimen-page-wrap .product-card > img{
  width:100%;
  height:178px;
  object-fit:contain;
  margin:10px auto 14px;


  border-radius:16px;
}

.hekimen-page-wrap .colors{
  display:flex;
  align-items:center;
  gap:9px;
  min-height:24px;
  margin:0 0 4px;
}

.hekimen-page-wrap .colors span{
  width:20px;
  height:20px;
  border-radius:50%;
  display:inline-block;
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.05);
}

.hekimen-page-wrap .green{background:#39a929;}
.hekimen-page-wrap .lime{background:#90c73d;}
.hekimen-page-wrap .yellow{background:#f8d620;}
.hekimen-page-wrap .orange{background:#f7931e;}
.hekimen-page-wrap .beige{background:#dfbd85;}
.hekimen-page-wrap .brown{background:#8c5227;}
.hekimen-page-wrap .cream{background:#f5efe4;}
.hekimen-page-wrap .pink{background:#f38ab7;}

.hekimen-page-wrap .color-note{
  margin:0 0 12px;
  color:#444;
  font-size:12px;
  font-weight:700;
  text-align:right;
}

.hekimen-page-wrap .spec-tags{
  display:grid;
  grid-template-columns:1fr 1.2fr 1.45fr;
  gap:6px;
  list-style:none;
  padding:0;
  margin:14px 0 10px;
}

.hekimen-page-wrap .spec-tags li{
  min-height:31px;
  display:flex;
  justify-content:center;
  align-items:center;
  border-radius:999px;
  background:#eefbf9;
  color:var(--main-dark);
  font-size:11px;
  font-weight:900;
}

.hekimen-page-wrap .spec-list{
  margin:0;
  border-top:1px solid #e3dfd9;
}

.hekimen-page-wrap .spec-list div{
  display:grid;
  grid-template-columns:74px 1fr;
  min-height:30px;
  border-bottom:1px solid #e3dfd9;
}

.hekimen-page-wrap .spec-list dt,
.hekimen-page-wrap .spec-list dd{
  margin:0;
  padding:7px 5px;
  font-size:12px;
  line-height:1.35;
  font-weight:800;
}

.hekimen-page-wrap .spec-list dt{
  background:#faf9f7;
  color:#333;
}

.hekimen-page-wrap .product-card > a{
  position:absolute;
  left:20px;
  right:20px;
  bottom:18px;
  height:42px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  border-radius:999px;
  background:var(--main);
  color:#fff;
  font-size:14px;
  font-weight:900;
  box-shadow:0 5px 0 var(--main-dark);
  transition:.24s ease;
}

.hekimen-page-wrap .product-card > a:hover{
  transform:translateY(2px);
  box-shadow:0 3px 0 var(--main-dark);
}

/* SEARCH */
.hekimen-page-wrap .parts-search,
.hekimen-page-wrap .category-search{
  padding-top:40px;
  padding-bottom:56px;
  border-top:1px dashed #c9c2b8;
}

.hekimen-page-wrap .parts-search h2,
.hekimen-page-wrap .category-search h2{
  margin:0 0 24px;
  text-align:center;
  font-size:28px;
  line-height:1.4;
  font-weight:900;
}

.hekimen-page-wrap .parts-search h2 span,
.hekimen-page-wrap .category-search h2 span{
  display:inline-block;
  width:30px;
  height:30px;
  margin-right:10px;
  vertical-align:-6px;
  border:4px solid var(--main);
  border-radius:50%;
  position:relative;
}

.hekimen-page-wrap .parts-search h2 span::after,
.hekimen-page-wrap .category-search h2 span::after{
  content:"";
  position:absolute;
  width:13px;
  height:4px;
  right:-11px;
  bottom:0;
  background:var(--main);
  border-radius:999px;
  transform:rotate(45deg);
}

.hekimen-page-wrap .search-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.hekimen-page-wrap .search-grid a{
  min-height:104px;
  padding:16px 12px;
  border:1.8px solid #d7eeee;
  border-radius:14px;
  background:#fff;
  text-align:center;
  box-shadow:0 8px 18px rgba(72,55,29,.06);
  transition:.24s ease;
}

.hekimen-page-wrap .search-grid strong{
  display:block;
  margin-bottom:9px;
  font-size:13px;
  line-height:1.4;
  font-weight:900;
}

.hekimen-page-wrap .search-grid em,
.hekimen-page-wrap .category-grid em{
  display:block;
  margin:0 auto;
  background:
    linear-gradient(45deg,#f2f2f2 25%,transparent 25%,transparent 75%,#f2f2f2 75%),
    linear-gradient(45deg,#f2f2f2 25%,transparent 25%,transparent 75%,#f2f2f2 75%);
  background-color:#fff;
  background-size:16px 16px;
  background-position:0 0,8px 8px;
}

.hekimen-page-wrap .search-grid em{
  width:62px;
  height:44px;
  border:2px dashed var(--main);
  border-radius:10px;
}

.hekimen-page-wrap .search-grid a:hover,
.hekimen-page-wrap .category-grid a:hover{
  transform:translateY(-3px);
  border-color:var(--main);
}

/* CATEGORY */
.hekimen-page-wrap .category-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.hekimen-page-wrap .category-grid a{
  padding:20px 10px;
  border-radius:18px;
  background:#fff;
  text-align:center;
  box-shadow:0 8px 18px rgba(72,55,29,.06);
  transition:.24s ease;
}

.hekimen-page-wrap .category-grid em{
  width:82px;
  height:82px;
  border:2px dashed var(--main);
  border-radius:50%;
  margin-bottom:10px;
}

.hekimen-page-wrap .category-grid strong{
  display:block;
  font-size:13px;
  line-height:1.3;
  font-weight:900;
}

.hekimen-page-wrap .note{
  margin:28px 0 0;
  text-align:center;
  color:#777168;
  font-size:13px;
}

/* CONTACT */
.hekimen-page-wrap .contact-area{
  position:relative;
  z-index:3;
  margin-top:0;
  padding:78px 18px 76px;
  background:var(--main);
  color:#fff;
}

.hekimen-page-wrap .wave-top{
  position:absolute;
  left:0;
  right:0;
  top:-1px;
  height:34px;
  background:radial-gradient(24px 24px at 24px 34px,var(--cream) 23px,transparent 24px) 0 0/48px 34px repeat-x;
}

.hekimen-page-wrap .contact-inner{
  width:min(820px,100%);
  margin:0 auto;
  text-align:center;
}

.hekimen-page-wrap .contact-inner h2{
  margin:0 0 18px;
  color:#fff;
  font-size:32px;
  font-weight:900;
  letter-spacing:.05em;
}

.hekimen-page-wrap .contact-inner h2::after{
  content:"";
  display:block;
  width:64px;
  height:2px;
  margin:12px auto 0;
  background:#fff;
}

.hekimen-page-wrap .contact-inner p{
  margin:0 0 30px;
  color:#fff;
  font-size:13px;
  line-height:1.9;
  font-weight:700;
}

.hekimen-page-wrap .contact-buttons{
  display:grid;
  grid-template-columns:1fr 1.25fr;
  gap:18px;
  margin-bottom:18px;
}

.hekimen-page-wrap .contact-btn,
.hekimen-page-wrap .catalog-btn{
  position:relative;
  min-height:70px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:18px 54px 18px 26px;
  border-radius:12px;
  background:#fff;
  color:#1f1f1f;
  font-size:17px;
  font-weight:900;
  box-shadow:0 12px 26px rgba(0,89,86,.16);
  transition:.24s ease;
}

.hekimen-page-wrap .contact-btn:hover,
.hekimen-page-wrap .catalog-btn:hover{
  transform:translateY(-3px);
}

.hekimen-page-wrap .tel-text{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.hekimen-page-wrap .tel-text strong{
  font-size:24px;
  line-height:1.1;
}

.hekimen-page-wrap .tel-text small{
  margin-top:5px;
  font-size:11px;
  line-height:1.3;
  font-weight:700;
}

.hekimen-page-wrap .catalog-btn{
  width:min(330px,100%);
  margin:0 auto;
  min-height:62px;
  font-size:15px;
}

/* responsive */
@media(max-width:1024px){
  .hekimen-page-wrap .product-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hekimen-page-wrap .search-grid,
  .hekimen-page-wrap .category-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:640px){


  .hekimen-page-wrap .hero{
    padding-top:44px;
  }

  .hekimen-page-wrap .kicker span{
    width:44px;
  }

  .hekimen-page-wrap .lead{
    text-align:center;
    font-size:13px;

  }

  .hekimen-page-wrap .product-grid,
  .hekimen-page-wrap .search-grid,
  .hekimen-page-wrap .category-grid,
  .hekimen-page-wrap .contact-buttons{
    grid-template-columns:1fr;
  }

  .hekimen-page-wrap .product-card{
    min-height:auto;
  }

  .hekimen-page-wrap .contact-btn,
  .hekimen-page-wrap .catalog-btn{
    width:100%;
  }
}
/* ===============================
  Woody Wall Product Cards
================================ */

.ww-products{
  position:relative;
  z-index:2;
  width:min(1240px,100%);
  margin:0 auto;

}

.ww-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:34px;
}

.ww-card{
  position:relative;
  background:#f1f1f1;
  border-radius:18px;
  padding:12px 12px 24px;
  overflow:hidden;
}

.ww-head{
  display:flex;
  align-items:flex-start;
  gap:12px;
  min-height:74px;
}

.ww-head span{
  flex:0 0 auto;
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  background:#fff;
  color:#222;
  font-size:18px;
  line-height:1;
  font-weight:900;
}

.ww-head h3{
  margin:5px 0 0;
  color:#111;
  font-size:14px;
  line-height:1.65;
  font-weight:900;
  letter-spacing:.04em;
}

.ww-img{
  position:relative;
  width:100%;
  height:250px;
  background:#fff;
  display:grid;
  place-items:center;
  overflow:hidden;
  margin-bottom:20px;
}

.ww-img img{
  width:70%;
  height:100%;
  object-fit:contain;
  object-position:center;
  display:block;
}

.ww-nav{
  position:absolute;
  bottom:14px;
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border:2px solid #08beb8;
  border-radius:50%;
  background:#fff;
  color:#08beb8;
  font-size:19px;
  line-height:1;
  font-weight:900;
  cursor:pointer;
  padding:0;
}

.ww-prev{
  left:12px;
}

.ww-next{
  right:12px;
}

.ww-size{
  min-height:50px;
  background:#d9d9d9;
  border-radius:7px;
  padding:10px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:20px;
}

.ww-size p{
  margin:0;
  color:#222;
  font-size:11px;
  line-height:1.45;
  font-weight:900;
}

.ww-size a{
  flex:0 0 auto;
  white-space:nowrap;
  background:#fff;
  border:1px solid #222;
  border-radius:999px;
  padding:4px 13px;
  color:#111;
  font-size:11px;
  line-height:1;
  font-weight:900;
  text-decoration:none;
}

.ww-price{
  display:grid;
  grid-template-columns:1fr 120px;
  min-height:42px;
  border:1px solid #d8d8d8;
  background:#fff;
  margin-bottom:22px;
}

.ww-price span,
.ww-price strong{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:8px;
  color:#111;
  font-size:13px;
  line-height:1.35;
  font-weight:900;
  text-align:center;
}

.ww-price strong{
  border-left:1px solid #d8d8d8;
  white-space:nowrap;
}

.ww-price small{
  font-size:9px;
  margin-left:1px;
}

.ww-btn{

  height:50px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  border:2px solid #111;
  border-radius:999px;
  background:#fff;
  color:#111;
  text-decoration:none;
  font-size:16px;
  line-height:1;
  font-weight:900;
}

.ww-btn i{
  width:2px;
  height:28px;
  background:#111;
  position:relative;
  display:block;
}

.ww-btn i::after{
  content:"→";
  position:absolute;
  left:16px;
  top:50%;
  transform:translateY(-50%);
  font-style:normal;
  font-size:24px;
  line-height:1;
}

.ww-note{
  margin:18px 0 0;
  color:#f00;
  text-align:center;
  font-size:12px;
  line-height:1.6;
  font-weight:900;
}

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

/* smartphone */
@media(max-width:640px){
  .ww-products{
    padding:32px 14px 70px;
  }

  .ww-grid{
    grid-template-columns:1fr;
    gap:26px;
  }

  .ww-card{
    border-radius:16px;
  }

  .ww-head h3{
    font-size:13px;
  }

  .ww-img{
    height:230px;
  }

  .ww-price{
    grid-template-columns:1fr 118px;
  }

  .ww-btn{
    height:48px;
    font-size:12px;
  }
}
.ww-img img{
  transition:opacity .18s ease;
}

.ww-nav{
  z-index:10;
}

.ww-nav:hover{
  background:#08beb8;
  color:#fff;
}
.ww-size-tabs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  margin-top:18px;
}

.ww-size-tabs button{
  border:none;
  background:#fff;
  border-radius:10px 10px 0 0;
  padding:12px 6px;
  font-size:14px;
  font-weight:900;
  cursor:pointer;
}

.ww-size-tabs button.is-active{
  background:#d9d9d9;
}

.ww-size-tabs b{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  margin-left:6px;
  border-radius:50%;
  background:#08beb8;
  color:#fff;
  font-size:18px;
}

.ww-size{
  border-radius:0 0 7px 7px;
  margin-bottom:20px;
}

.ww-price + .ww-price{
  margin-top:-22px;
}
.ww-grid{
   display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,380px));
    justify-content:center;
    gap:34px;
}

.ww-card{
  min-width:0;

}

@media(max-width:1024px){
  .ww-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media(max-width:640px){
  .ww-grid{
    grid-template-columns:1fr;
  }
}

.hekimen-page-wrap .hero,
.hekimen-page-wrap .products,
.hekimen-page-wrap .parts-search,
.hekimen-page-wrap .category-search{
  position:relative;
  z-index:2;
  width:min(1180px,100%);
  margin-inline:auto;
  padding-inline:18px;
}



/* ===============================
SVG
=============================== */
.hero{
    position:relative;
}

.hero-inner{
    width:min(1180px,100%);
    margin:0 auto;
}

.ps_object1,
.ps_object2,
.ps_object3,
.ps_object4{
    position:absolute;
    height:auto;
    object-fit:contain;
    pointer-events:none;
}

/* ---------- PC ---------- */
.ps-page{
  position:relative;
  width:min(1180px,100%);
  margin:0 auto;
  overflow:visible;
  padding-bottom:10%;
}
.ps_object1{
    width:40%;
    top:30%;
    left:0;
}

.ps_object2{
    width:20%;
    top:100%;
    right:0;
}
.ps_object3{
    width:20%;
    top:150%;
    left:0;
}




/* ---------- Tablet ---------- */

@media (max-width:1024px){

.ps_object1{
    width:40%;
    top:30%;
    left:0;
}

.ps_object2{
    width:20%;
    top:100%;
    right:0;
}
.ps_object3{
    width:20%;
    top:150%;
    left:0;
}

}


/* ---------- Mobile ---------- */

@media (max-width:767px){

.ps_object1{
    width:50%;
    top:90%;
    left:0;
}

.ps_object2{
    width:20%;
    top:30%;
    right:0;
}
.ps_object3{
    width:20%;
    top:40%;
    left:0;
}

}
/* ===============================
  SVG 下からポワン
=============================== */

.hekimen-page-wrap .ps_object1,
.hekimen-page-wrap .ps_object2,
.hekimen-page-wrap .ps_object3{
    opacity:0;
    animation:svgPoyonUp 2s ease-out forwards;
}

.hekimen-page-wrap .ps_object1{
    animation-delay:.2s;
}

.hekimen-page-wrap .ps_object2{
    animation-delay:.7s;
}

.hekimen-page-wrap .ps_object3{
    animation-delay:1.2s;
}

@keyframes svgPoyonUp{

    0%{
        opacity:0;
        transform:translateY(120px) scale(.7);
    }

    55%{
        opacity:1;
        transform:translateY(-18px) scale(1.08);
    }

    75%{
        transform:translateY(8px) scale(.98);
    }

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

}
/* ========================================
  右下追従ボタン
======================================== */

.floating-reference{
    position:fixed;
    right:22px;
    bottom:26px;
    z-index:9999;

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

/* ボタン */

.floating-reference-btn{

    width:130px;
    height:130px;

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

    gap:8px;

    text-decoration:none;
    text-align:center;

    color:#242424;

    font-family:"Zen Kaku Gothic New",sans-serif;
    font-weight:900;

    background:url("../img/reference_btn_bg.svg") center/contain no-repeat;

    transition:.25s ease;
}

.floating-reference-btn:hover{

    transform:translateY(-4px);

}

/* 文字 */

.floating-reference-btn span{

    font-size: 16px;
    font-weight: bold;
    line-height: 1.1;
    text-align: center;

}

/* アイコン */

.floating-reference-btn img{

    width:40px;
    height:40px;
    object-fit:contain;

}



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

@media(max-width:1024px){

.floating-reference{

    right:12px;
    left:auto;
    bottom:16px;

    transform:none;

    flex-direction:row;

    gap:8px;

}

.floating-reference-btn{

    width:96px;
    height:96px;

}

.floating-reference-btn span{

    font-size:12px;
    line-height:1.25;

}

.floating-reference-btn img{

    width:26px;
    height:26px;

}

}




/* ========================================
      SP
======================================== */

@media(max-width:640px){

.floating-reference{

    right:8px;
    left:auto;

    bottom:10px;

    gap:6px;

}

.floating-reference-btn{

    width:82px;
    height:82px;

}

.floating-reference-btn span{

    font-size:10px;
    line-height:1.2;

}

.floating-reference-btn img{

    width:22px;
    height:22px;

}

}
/* ===============================
 商品説明
=============================== */

.pt-section{
    padding:140px 40px 100px;
}

.pt-inner{
    max-width:1500px;
    margin:auto;
    display:grid;
    grid-template-columns:45% 55%;
    align-items:center;
    gap:30px;
}

.pt-title-row{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.pt-icon{
    width:50px;
    height:34px;
    border-radius:50%;
    background:conic-gradient(#0D92DF 0 35%,#7131C7 35% 70%,#08BEB8 70% 100%);
}

.pt-title-row h1{
    margin:0;
    font-size:30px;
    font-weight:900;
}

.pt-dash{
    width:420px;
    border-top:3px dashed #ccc;
    margin:0 0 30px;
}

.pt-content h2{
    color:#08BEB8;
    font-size:20px;
    line-height:1.6;
    margin-bottom:20px;
    font-weight: 700;
}

.pt-lead{
    font-size:15px;
    line-height:1.9;
    margin-bottom:30px;
    font-weight: 700;
}

.pt-spec-table{
    border-radius:10px;
    overflow:hidden;
    margin-bottom:30px;
}

.pt-spec-row{
    display:grid;
    grid-template-columns:110px 1fr;
}

.pt-spec-row-4{
    grid-template-columns:110px 145px 110px 1fr;
}

.pt-spec-head{
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
    font-weight:900;
    padding:12px;
    border:1px solid #eee;
}

.pt-spec-data{
    display:flex;
    align-items:center;
    background:#fafafa;
    padding:12px;
    border:1px solid #eee;
    font-weight: 700;
}

.pt-btn{
    width:240px;
    height:64px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 35px;
    border:3px solid #222;
    border-radius:999px;
    color:#222;
    background:#fff;
    text-decoration:none;
    font-weight:900;
    transition:.3s;
}

.pt-btn:hover{
    background:#222;
    color:#fff;
}

.pt-btn i{
    width:28px;
    height:2px;
    background:#222;
    position:relative;
}

.pt-btn i::before,
.pt-btn i::after{
    content:"";
    position:absolute;
    right:0;
    width:10px;
    height:2px;
    background:#222;
}

.pt-btn i::before{
    transform:rotate(45deg);
    top:-3px;
}

.pt-btn i::after{
    transform:rotate(-45deg);
    top:3px;
}

.pt-image-box{
    display:flex;
    justify-content:center;
}

.pt-image-box img{
    width:100%;
    max-width:500px;
    border-radius:30px;
}

/* ---------- Tablet ---------- */

@media(max-width:1200px){

    .pt-inner{
        grid-template-columns:1fr;
    }

}

/* ---------- SP ---------- */

@media(max-width:640px){

    .pt-section{
        padding:90px 20px 50px;
    }

    .pt-title-row h1{
        font-size:24px;
    }

    .pt-content h2{
        font-size:18px;
    }

    .pt-lead{
        font-size:13px;
    }

    .pt-spec-row,
    .pt-spec-row-4{
        grid-template-columns:90px 1fr;
    }

    .pt-image-box img{
        border-radius:20px;
    }

}

/* =========================================================
  PC 商品説明エリア中央寄せ調整
  ※既存デザインは変更せず、左右に寄りすぎる部分だけ調整
========================================================= */

@media (min-width:1025px){

  .pt-inner{
    width:min(1180px, 100%);
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
  }

  .pt-content{
    max-width:500px;
    margin-left:auto;
  }

  .pt-image-area{
    display:flex;
    justify-content:flex-start;
  }

  .pt-image-box{
    display:flex;
    justify-content:flex-start;
  }

  .pt-image-box img{
    width:100%;
    max-width:520px;
  }

}

/* =========================================================
  mainproduct / 商品説明エリア調整
  PC・iPad：横並び
  SP：縦並び＋画像を製造国の上へ
========================================================= */

/* iPadでもPCと同じ横並び */
@media (min-width:641px) and (max-width:1200px){

  .pt-section{
    padding:110px 28px 70px;
  }

  .pt-inner{
    width:min(1080px, 100%);
    max-width:1080px;
    margin:0 auto;
    display:grid;
    grid-template-columns:48% 52%;
    align-items:center;
    gap:34px;
  }

  .pt-content{
    max-width:460px;
    margin-left:auto;
  }

  .pt-title-row{
    gap:12px;
    margin-bottom:16px;
  }

  .pt-icon{
    width:42px;
    height:28px;
  }

  .pt-title-row h1{
    font-size:25px;
  }

  .pt-dash{
    width:100%;
    max-width:340px;
    margin-bottom:22px;
  }

  .pt-content h2{
    font-size:17px;
    margin-bottom:14px;
  }

  .pt-lead{
    font-size:13px;
    line-height:1.8;
    margin-bottom:22px;
  }

  .pt-spec-table{
    margin-bottom:22px;
  }

  .pt-spec-head,
  .pt-spec-data{
    padding:9px 10px;
    font-size:13px;
  }

  .pt-spec-row{
    grid-template-columns:90px 1fr;
  }

  .pt-spec-row-4{
    grid-template-columns:90px 120px 90px 1fr;
  }

  .pt-btn{
    width:210px;
    height:56px;
    padding:0 28px;
    font-size:14px;
  }

  .pt-image-area{
    display:flex;
    justify-content:flex-start;
  }

  .pt-image-box{
    justify-content:flex-start;
  }

  .pt-image-box img{
    width:100%;
    max-width:400px;
    border-radius:24px;
  }

}

/* スマホ：画像を製造国の上へ */
@media (max-width:640px){

  .pt-inner{
    display:flex;
    flex-direction:column;
  }

  .pt-content{
    display:flex;
    flex-direction:column;
    width:100%;
  }

  .pt-image-area{
    order:2;
    width:100%;
    margin:4px 0 22px;
  }

  .pt-spec-table{
    order:3;
  }

  .pt-btn{
    order:4;
  }

  .pt-content .pt-title-row{
    order:0;
  }

  .pt-content .pt-dash{
    order:0;
  }

  .pt-content h2{
    order:0;
  }

  .pt-content .pt-lead{
    order:0;
  }

  .pt-image-box img{
    max-width:300px;
    margin:0 auto;
  }

}
/* =========================================================
  SP：キャッチコピー位置は変えず、画像だけ製造国の上へ
========================================================= */
@media (max-width:640px){

  .pt-inner{
    display:flex !important;
    flex-direction:column !important;
  }

  .pt-content{
    display:contents !important;
  }

  .pt-title-row{
    order:1;
  }

  .pt-dash{
    order:2;
  }

  .pt-content h2{
    order:3;
  }

  .pt-lead{
    order:4;
  }

  .pt-image-area{
    order:5;
    width:100%;
    margin:0 0 22px;
  }

  .pt-spec-table{
    order:6;
    width:100%;
  }

  .pt-btn{
    order:7;
  }

  .pt-image-box{
    justify-content:center;
  }

  .pt-image-box img{
    max-width:280px;
    width:100%;
    margin:0 auto;
    border-radius:20px;
  }

}
/* PC・iPadは今まで通り */
.pt-image-area-sp{
  display:none;
}

/* スマホだけ画像を製造国の上へ */
@media(max-width:640px){

  .pt-image-area-pc{
    display:none !important;
  }

  .pt-image-area-sp{
    display:block !important;
    width:100%;
    margin:0 0 22px;
  }

  .pt-image-area-sp .pt-image-box{
    justify-content:center;
  }

  .pt-image-area-sp img{
    max-width:280px;
    width:100%;
    margin:0 auto;
    border-radius:20px;
  }

}
/* ==========================
   ALL ITEM 見出し
========================== */

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

.vaultingbox-products-en{
    margin:0 0 12px;
    color:var(--main);
    font-size:2rem;
    line-height:1;
    font-weight:900;
    letter-spacing:.08em;

    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;
}

/* =========================================================
   ウレタンクッション
   「他のパーツを選ぶ」部分の左右余白のみ調整
   ※ template_block_other の実際のクラスに合わせて指定
========================================================= */

#series-select{
  width:100%;
  max-width:none;
  margin:0;
  padding:0;
}

#series-select > .other-parts-page{
  width:100%;
  max-width:none;
  margin-left:0;
  margin-right:0;
}

#series-select .op-inner{
  width:min(1500px, calc(100% - 40px));
  max-width:1500px;
  margin-left:auto;
  margin-right:auto;
}

@media (max-width:1024px){
  #series-select .op-inner{
    width:calc(100% - 32px);
  }
}

@media (max-width:767px){
  #series-select .op-inner{
    width:calc(100% - 28px);
  }
}