/* Google Fonts読み込み */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@700;900&family=BIZ+UDPMincho:wght@700&display=swap');

:root{
  --header-h: 90px;
  --banner-h: 56px;
}

body{
  padding-top: var(--header-h);
}

/* =HERO（cm-inner前提：書き換え版）= */
.hero-section {
  position: relative;
  width: 100%;
  height: calc(95svh - var(--header-h) - var(--banner-h));
  min-height: 420px;
  background-color: #f3f4f6;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-gradient{
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.8) 0%,
    rgba(255,255,255,.52) 66%,
    rgba(255,255,255,.38) 78%,
    rgba(255,255,255,.19) 88%,
    rgba(255,255,255,0) 100%
  );
}

.hero-section .cm-inner{
  position: relative;
  z-index: 10;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 0;
  display: flex;
}

.hero-content{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.hero-title{
  margin-bottom: 32px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  color: #000;
}
.hero-title h1{
  margin: 0;
  font-size: 48px;
  line-height: 1.4;
  letter-spacing: .08em;
  text-shadow: 4px 4px 4px #fff;
}

.hero-subtitle{
  margin-bottom: 40px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  color: #000;
}
.hero-subtitle p{
  font-size: 24px;
  margin: 0 0 4px;
}
.hero-subtitle .product-name{
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  letter-spacing: .05em;
}
.hero-subtitle .product-name-part2{ letter-spacing: .15em; }
.hero-subtitle .ranking{ letter-spacing: normal; }

.hero-cta{
  position: relative;
  background: #b4e522;
  color: #000;
  font-weight: 500;
  font-size: 20px;
  padding: 12px 56px 12px 40px;
  border: 0;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  display: inline-flex;
  align-items: center;
  letter-spacing: .08em;
  transition: background-color .2s;
  text-decoration: none;
  border-radius: 6px;
}
.hero-cta:hover{ background: #a3d11f; }

.hero-cta-icon{
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #000;
  transition: transform .2s;
}
.hero-cta:hover .hero-cta-icon{
  transform: translateY(-50%) translateX(4px);
}

/* =販売代理店様募集中（cm-inner前提：書き換え版）= */
.colorme-ad-banner{
  width: 100%;
  height: var(--banner-h);
  background: #000;
  border-top: 3px solid #B4E522;
  border-bottom: 3px solid #B4E522;
}

.colorme-ad-banner .cm-inner{
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.colorme-ad-banner .banner-inner{
  display: flex;
  align-items: center;
  gap: 15px;
}

.colorme-ad-banner .arrow-icon{
  width: 45px;
  display: flex;
  align-items: center;
}
.colorme-ad-banner .arrow-icon svg{
  width: 100%;
  height: auto;
  display: block;
}
.colorme-ad-banner .arrow-icon.flip{ transform: scaleX(-1); }

.colorme-ad-banner .banner-text{
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 2px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.colorme-ad-banner .text-white{ color: #fff; }

.colorme-ad-banner .text-red-underline{
  color: #ff0000;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

/* hover */
.colorme-ad-banner{
  transition: background-color 0.2s ease;
}

.colorme-ad-banner .text-white,
.colorme-ad-banner .text-red-underline{
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.colorme-ad-banner .arrow-icon path{
  transition: fill 0.2s ease;
}

.colorme-ad-banner:hover{
  background:#B4E522;
}

.colorme-ad-banner:hover .text-white{
  color:#000;
}

.colorme-ad-banner:hover .text-red-underline{
  color:#ff0000;
  text-decoration-color:#ff0000;
}

.colorme-ad-banner:hover .arrow-icon path{
  fill:#000;
}

/* =インフォメーション（新着情報）※cm-inner前提：書き換え版= */
.news-container, .news-container *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.news-container{
  background: #f2f2f2;
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
}

.news-container .cm-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.news-title{
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  letter-spacing: 3.12px;
  text-decoration: underline;
  margin: 0;
}

.news-content{
  width: 100%;
  display: flex;
  justify-content: center;
}

.news-list{
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: .64px;
  padding: 0 20px;
  width: 100%;
  max-width: 800px;
}

.news-item{
  display: flex;
  gap: 8px;
  width: 100%;
}

.news-date{
  width: 100px;
  flex-shrink: 0;
  white-space: nowrap;
}

.news-text{
  flex: 1;
  word-break: break-word;
  overflow-wrap: break-word;
}

.news-text a{
  color: #0066cc;
  text-decoration: none;
}
.news-text a:hover{
  text-decoration: underline;
}

/* =KOB0REIN 共通（cm-inner前提：書き換え版）= */
.koborein-container{
  width: 100%;
  margin: 0;
}
.koborein-container *{ box-sizing: border-box; }

.koborein-container .cm-inner{
  width: 100%;
  max-width: 964px;
  margin: 0 auto;
  padding: 40px 40px 70px 40px;
}

.section-inner{ 
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
}
.section-inner--gray{ background: transparent; }

.section-title{
  font-family:'Noto Serif JP', serif;
  font-weight:900;
  font-size:24px;
  line-height:1.4;
  text-align:center;
  color:#629531;
  letter-spacing:3.12px;
  margin:0 0 30px;
}

/* Section 1: なぜ必要？ */
.section-why-necessary{ background:#fff; }

.content-wrapper{
  display:flex;
  flex-direction:column;
  gap:40px;
  align-items:center;
  padding:20px 0 0;
  width:100%;
}
.why-box,.why-us-box{
  display:flex;
  gap:16px;
  align-items:flex-start;
  width:100%;
  max-width:844px;
}
.green-bar{
  background:#629531;
  width:8px;
  border-radius:2px;
  flex-shrink:0;
}

.green-bar-tall{
  background:#629531;
  width:8px;
  border-radius:2px;
  flex-shrink:0;
}

.green-bar,
.green-bar-tall{
  background:#629531;
  width:8px;
  border-radius:2px;
  flex-shrink:0;
  align-self:stretch;
}

.why-content,.why-us-content{ display:flex; flex-direction:column; gap:4px; width:100%; }

.subsection-title{
  font-family:'Noto Serif JP', serif;
  font-weight:900;
  font-size:22px;
  line-height:1.4;
  color:#629531;
  text-decoration:underline;
  letter-spacing:2.88px;
  margin:0;
}
.check-item{ display:flex; gap:8px; align-items:flex-start; padding:12px 0; }
.check-mark{ font-weight:700; font-size:16px; line-height:24px; width:27px; margin:0; flex-shrink:0; }
.check-text{ font-weight:500; font-size:16px; line-height:24px; letter-spacing:1.2px; margin:0; }
.underline-green{ text-decoration:underline; text-decoration-color:#629531; text-decoration-thickness:2px; }

.notes{ display:flex; flex-direction:column; gap:12px; padding:0 20px; width:100%; max-width:844px; }
.note-item{ display:flex; gap:8px; align-items:flex-start; }
.note-asterisk{ font-weight:700; font-size:18px; line-height:28px; margin:0; flex-shrink:0; }
.note-text{ font-weight:500; font-size:18px; line-height:28px; margin:0; }

/* Section 2: 何ができる？ */
.section-what-can-do{
  background:#f2f2f2;
  width:100%;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  padding:0;
  overflow-x:clip;
}

.section-what-can-do .cm-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 40px 70px 40px;
  background: transparent;
}

.section-header-gradient{
  position:relative;
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}
.header-bg{ width:100%; height:100px; display:block; }
.header-title{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Noto Serif JP', serif;
  font-weight:900;
  font-size:22px;
  line-height:28px;
  color:#fff;
  letter-spacing:3.12px;
  text-shadow:3px 3px 4px rgba(0,0,0,.3);
  margin:0;
  padding:0 16px;
}
.section-header-gradient--with-notch .header-title{
  height:22px;
  inset:0 0 auto 0;
  transform:translateY(22px);
}

.section-content-2{ display:flex; flex-direction:column; gap:42px; align-items:center; }
.subtitle-box{ display:flex; flex-direction:column; gap:4px; align-items:center; width:100%; }
.section-subtitle{
  font-family:'Noto Sans JP', sans-serif;
  font-weight:700;
  font-size:24px;
  line-height:1.2;
  text-align:center;
  margin:0;
}
.subtitle-line{ width:428px; height:3px; margin-top:4px; max-width:100%; }

.points-container{ display:flex; gap:24px; align-items:stretch; justify-content:center; flex-wrap:wrap; width:100%; }
.point-card{ background:#fff; display:flex; flex-direction:column; gap:20px; padding:15px 0; width:303px; min-height:304px; box-shadow:0 1px 2px rgba(0,0,0,.05); }
.point-badge{ background:linear-gradient(180deg,#7FC863 0%,#64AD48 100%); display:flex; align-items:center; height:42px; padding-left:20px; border-radius:0 8px 8px 0; width:162px; }
.point-label{ font-family:'Noto Serif JP', serif; font-weight:700; font-size:28px; line-height:1; color:#fff; letter-spacing:1.12px; }
.point-number{ background:#fff; border-radius:50%; width:32px; height:32px; display:flex; align-items:center; justify-content:center; font-weight:500; font-size:22px; color:#4d8438; margin-left:auto; margin-right:12px; }
.point-content{ display:flex; flex-direction:column; gap:12px; padding:0 20px 30px; }

.point-title{
  font-family:'Noto Sans JP', sans-serif;
  font-weight:700;
  font-size:22px;
  line-height:32px;
  letter-spacing:1.76px;
  text-decoration:underline;
  text-decoration-color:#629531;
  text-decoration-thickness:2px;
  margin:0;
  min-height:80px;
  display:block;
}
.point-description{ font-weight:400; font-size:16px; line-height:28px; letter-spacing:.64px; margin:0; }

/* Section 3: どう安全？ */
.section-how-safe{ background:#fff; }

.section-how-safe .safety-subtitle{
  font-weight: 500;
}

.section-content-3{ display:flex; flex-direction:column; gap:50px; align-items:center; }
.safety-header{ display:flex; flex-direction:column; gap:16px; align-items:center; text-align:center; width:100%; }
.safety-title{ font-weight:700; font-size:24px; line-height:1.4; letter-spacing:1.04px; text-decoration:underline; margin:0; }
.safety-subtitle{ font-weight:700; font-size:22px; line-height:1.8; letter-spacing:1.92px; margin:0; }
.safety-cards{ display:flex; gap:20px; align-items:stretch; justify-content:center; flex-wrap:wrap; width:100%; }
.safety-card{ background:#fff; display:flex; flex-direction:column; gap:30px; padding:25px 16px; width:430px; max-width:100%; box-shadow:6px 6px 17px rgba(0,0,0,.25); }
.safety-image{ width:100%; height:auto; aspect-ratio:404/221; object-fit:cover; }
.safety-description{ font-weight:500; font-size:20px; line-height:36px; letter-spacing:1.2px; margin:0; }
.safety-note{ background:#f2f2f2; padding:30px 40px; border-radius:8px; box-shadow:6px 6px 17px rgba(0,0,0,.25); width:100%; }
.safety-note p{ margin:0; font-weight:500; font-size:20px; line-height:32px; text-align:center; letter-spacing:1px; }

/* =商品ラインナップ */
.product-lineup-section{
  background:#f2f2f2;
  width:100%;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  padding:56px 0;
}

.product-lineup-section h3{
  margin-top:0;
}

.product-lineup-section *{ box-sizing:border-box; }
.product-lineup-section .cm-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.product-lineup-section .product-lineup-container{
  width: 100%;
  margin: 0;
  padding: 0;
  max-width: none;
}

.product-lineup-section .product-lineup-header{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  margin-bottom:28px;
}

.product-lineup-section .product-lineup-title{
  font-family:'BIZ UDPMincho', serif;
  font-size:30px;
  font-weight:700;
  letter-spacing:2px;
  margin:0;
}
.product-lineup-section .title-underline{
  width:100%;
  max-width:954px;
  height:3px;
  background:#000;
}

.product-lineup-section .product-list{
  display:flex;
  flex-direction:column;
  gap:28px;
}

.product-lineup-section .product-card{
  background:#fff;
  width:100%;
  max-width: clamp(860px, 82vw, 912px);
  margin:0 auto;
  box-shadow: 6px 6px 17px rgba(0,0,0,.25);
}

.product-lineup-section .product-card-inner{
  padding: 32px 32px;
}

.product-lineup-section .product-header{
  margin-bottom: 10px;
}

.product-lineup-section .lineup-product-name{
  font-family:'Noto Sans JP', sans-serif;
  font-size:22px;
  font-weight:700;
  letter-spacing:1.2px;
  padding: 6px 8px;
  margin-bottom: 0px;
}
.product-lineup-section .lineup-product-name .product-size{ font-weight:700; letter-spacing:1px; }

.product-lineup-section .product-header-line{
  width:100%;
  height:2px;
  background:#64AD48;
}
.product-lineup-section .product-header-line-alt{ background:#77B75F; }

.product-lineup-section .product-content{
  display:flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0 20px;
}

.product-lineup-section .product-info{
  width: clamp(260px, 28vw, 320px);
  display:flex;
  flex-direction:column;
  gap:10px;
}

.product-lineup-section .product-description{
  font-family:'Noto Sans JP', sans-serif;
  font-size:18px;
  font-weight:700;
  letter-spacing:.6px;
  line-height:1.5;
  margin:0;
}

.product-lineup-section .product-specs{ display:flex; flex-direction:column; gap:4px; }
.product-lineup-section .specs-title{
  font-family:'Noto Sans JP', sans-serif;
  font-size:18px;
  font-weight:700;
  letter-spacing:.8px;
  text-decoration:underline;
  line-height:1.6;
  margin:0 0 4px 0;
}

.product-lineup-section .spec-item{ display:flex; gap:8px; align-items:flex-start; }
.product-lineup-section .spec-dot{
  width:12px; height:12px;
  border-radius:50%;
  background:#64AD48;
  margin-top:10px;
  flex:0 0 auto;
}
.product-lineup-section .spec-label,
.product-lineup-section .spec-value{
  font-family:'Noto Sans JP', sans-serif;
  font-size:16px;
  font-weight:500;
  letter-spacing:.6px;
  line-height:1.6;
  margin:0;
}

.product-lineup-section .product-price{ margin-top:4px; }
.product-lineup-section .product-price .price-large{
  font-family:'Noto Serif JP', serif;
  font-size:34px;
  font-weight:900;
  color:#d10000;
}
.product-lineup-section .product-price .price-small{
  font-family:'Noto Serif JP', serif;
  font-size:18px;
  font-weight:700;
  color:#d10000;
}

.product-lineup-section .product-button{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#64ad48;
  color:#fff;
  font-family:'Noto Sans JP', sans-serif;
  font-size:18px;
  font-weight:700;
  letter-spacing:1px;
  height:52px;
  text-decoration:none;
  border:0;
  width: 100%;
  border-radius: 4px;
}
.product-lineup-section .product-button:hover{ background:#5a9d41; }

.product-lineup-section .product-image-wrapper{
  display:flex;
  justify-content: center;
  align-items: center;
}
.product-lineup-section .product-image{ max-width:100%; height:auto; object-fit:contain; display:block; }

.product-lineup-section .product-inquiry{ margin-top:22px; }
.product-lineup-section .inquiry-divider{
  width:100%;
  height:2px;
  background:#e3e3e3;
  margin:0 auto 12px;
}

.product-lineup-section .inquiry-pdf-button{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  background:#dc2626;
  color:#fff;
  height:auto;
  min-height:52px;
  padding:10px 24px;
  text-decoration:none;
  width:100%;
  max-width:360px;
  margin-left:auto;
  margin-right:auto;
  border-radius:4px;
}
.product-lineup-section .inquiry-pdf-button:hover,
.product-lineup-section .inquiry-pdf-button:focus{
  background:#b91c1c !important;
  color:#fff !important;
  text-decoration:none !important;
}

.product-lineup-section .inquiry-pdf-icon{
  flex-shrink:0;
}

.product-lineup-section .inquiry-pdf-text{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  line-height:1.4;
}

.product-lineup-section .inquiry-pdf-main{
  font-size:16px;
  font-weight:700;
  letter-spacing:.5px;
}

.product-lineup-section .inquiry-pdf-sub{
  font-size:11px;
  font-weight:400;
  opacity:.9;
}

.product-lineup-section .inquiry-content{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
  padding-left: 0;
  padding-right: 0;
}
.product-lineup-section .inquiry-title{
  font-size:18px;
  font-weight:700;
  color:#629531;
  letter-spacing:1px;
  text-decoration:underline;
  margin:0;
  text-align:center;
}
.product-lineup-section .inquiry-items{ display:flex; gap:24px; justify-content:center; align-items:center; flex-wrap:wrap; }
.product-lineup-section .inquiry-item{
  display:flex; gap:8px; align-items:center;
  font-size:16px;
  letter-spacing:.4px;
}
.product-lineup-section .inquiry-note{
  margin:0; 
  text-align: center;
  font-size:16px; 
}

.product-lineup-section .inquiry-button{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#64ad48;
  color:#fff;
  height:52px;
  font-size:18px;
  font-weight:700;
  letter-spacing:1px;
  text-decoration:none;
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 4px;
}
.product-lineup-section .inquiry-button:hover{ background:#5a9d41; }

.product-lineup-section .product-intro{ padding:16px 10px; margin-bottom:8px; }
.product-lineup-section .intro-title{ font-size:18px; font-weight:700; margin:0 0 4px 0; line-height:1.6; }
.product-lineup-section .intro-subtitle{ font-size:16px; font-weight:500; margin:0; line-height:1.6; }
.product-lineup-section .purchase-method-title{
  font-family:'Noto Serif JP', serif;
  font-size:22px;
  font-weight:900;
  letter-spacing:1.5px;
  text-align:center;
  text-decoration:underline;
  margin:12px 0;
}

.product-lineup-section .purchase-options{
  display:flex;
  gap:20px;
  justify-content:center;
  align-items:stretch;
}
.product-lineup-section .purchase-option{
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:16px;
  max-width:400px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.product-lineup-section .option-header{
  background:#64ad48;
  color:#fff;
  font-family:'Noto Serif JP', serif;
  font-size:22px;
  font-weight:900;
  text-align:center;
  padding:8px 10px;
}

.product-lineup-section .option-images{
  max-width:100%;
  height:auto;
  overflow:hidden;
  object-fit:cover;
  display:block;
  padding:0 10px;
}

.product-lineup-section .option-details{
  display:flex;
  flex-direction:column;
  padding:0 30px;
}

.product-lineup-section .option-spec{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-family:'Noto Serif JP', serif;
  font-size:20px;
  font-weight:900;
  letter-spacing:.6px;
  flex-wrap:wrap;
  gap:6px 16px;
}
.product-lineup-section .spec-value-price{ color:#d10000; }
.product-lineup-section .price-tax{ font-size:14px; color:#d10000; }

.product-lineup-section .option-features{
  list-style:none;
  padding:0 30px;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:4px;
  min-height:120px;
}
.product-lineup-section .option-features li{
  font-family:'Noto Serif JP', serif;
  font-size:16px;
  line-height:1.6;
}

.product-lineup-section .option-button{
  display:flex;
  align-items:center;
  justify-content:center;

  background:#64ad48;
  color:#fff;

  font-family:'Noto Sans JP', sans-serif;
  font-size:18px;
  font-weight:900;

  height:64px;

  text-decoration:none;
  text-align:center;
  line-height:1.3;

  width:calc(100% - 48px);
  margin:16px auto 24px;

  border-radius:4px;
}

.product-lineup-section .option-button:hover{
  background:#5a9d41;
}

.product-lineup-section .color-variation{ margin-top:16px; }
.product-lineup-section .color-divider{
  width:100%;
  height:2px;
  background:#e3e3e3;
  margin:0 auto 16px;
}
.product-lineup-section .color-title{
  font-size:20px; font-weight:700; text-align:center; text-decoration:underline; margin:0 0 6px 0;
}
.product-lineup-section .color-list{ font-size:16px; text-align:center; margin:0 0 10px 0; }
.product-lineup-section .color-circles{ display:flex; gap:20px; justify-content:center; align-items:center; flex-wrap:wrap; }
.product-lineup-section .color-circle{
  width:44px; height:44px;
  border-radius:50%;
  overflow:hidden;
  background:#eee;
  border:1px solid #d9d9d9;
}
.product-lineup-section .color-thumb{ width:100%; height:100%; object-fit:cover; display:block; }

.product-lineup-section .product-card-small .product-content{
  align-items: stretch;
}

.product-lineup-section .product-card-small .product-info{
/*   width:311px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 280px; */
  justify-content: space-between;
}

.product-lineup-section .product-card-small .smallcard-top{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.product-lineup-section .product-feature-title{
  margin:0;
  font-size:18px;
  font-weight:700;
  line-height:1.25;
  letter-spacing:.6px;
}

.product-lineup-section .product-card-small .smallcard-bottom{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.product-lineup-section .product-card-small .product-image-wrapper-small{
  min-height: 280px;
  justify-content:center;
  align-items:center;
  flex: 1;
}

.product-lineup-section .product-feature-desc{
  margin:8px 0 0 0;
  font-size:16px;
  line-height:1.6;
}

.product-lineup-section .price-label{
  margin:12px 0 0 0;
  font-family:'Noto Serif JP', serif;
  font-weight:900;
  color:#d10000;
}

.product-lineup-section .price-value{ margin:4px 0 0 0; }
.product-lineup-section .price-value .price-large,
.product-lineup-section .price-value .price-small{ line-height:1; display:inline-block; }

.product-lineup-section .product-image-angle-1,
.product-lineup-section .product-image-hinge-1{
  max-width: 480px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.product-lineup-section .product-card:not(.product-card-small) .product-image{
  max-width: 480px;
  width: 100%;
}

/* =ご購入の流れ（cm-inner前提：書き換え版= */
.cm-section .purchase-flow-section,
.cm-section .purchase-flow-section *{
  box-sizing: border-box;
}

.cm-section .purchase-flow-section h1,
.cm-section .purchase-flow-section h2,
.cm-section .purchase-flow-section h3,
.cm-section .purchase-flow-section h4,
.cm-section .purchase-flow-section p,
.cm-section .purchase-flow-section ul,
.cm-section .purchase-flow-section li{
  margin: 0;
  padding: 0;
}

.cm-section .purchase-flow-section ul{ list-style: none; }

.cm-section .purchase-flow-section img{
  max-width: 100%;
  height: auto;
  display: block;
}

.cm-section .purchase-flow-section a{
  color: inherit;
  text-decoration: none;
}

.cm-section .purchase-flow-section{
  width: 100%;
  padding: 64px 0;
}

.cm-section .purchase-flow-section .cm-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.cm-section .purchase-flow-section .section-header{
  text-align: center;
  width: 100%;
  max-width: 1049px;
}

.cm-section .purchase-flow-section .main-title{
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1.04px;
  margin-bottom: 24px;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.cm-section .purchase-flow-section .main-subtitle{
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.96px;
  line-height: 34px;
}

.cm-section .purchase-flow-section .purchase-flow-container{
  display: flex;
  flex-direction: column;
  gap: 44px;
  width: 100%;
  max-width: 920px;
}

.cm-section .purchase-flow-section .flow-card{
  background: #fff;
  border-radius: 12px;
  box-shadow: 6px 6px 17px rgba(0, 0, 0, 0.25);
  width: 100%;
}

/* ▼すぐ購入 */
.cm-section .purchase-flow-section .flow-card:first-of-type .step-flow{
  max-width:900px;
  gap:20px;
}

/* ▼サイズ指定購入 */
.cm-section .purchase-flow-section .flow-card:nth-of-type(2) .step-flow{
  max-width:900px;
  gap:20px 44px;
}

.cm-section .purchase-flow-section .flow-card-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:clamp(20px,2vw,28px);
  gap:clamp(12px,1.5vw,24px);
}

.cm-section .purchase-flow-section .flow-icon{
  width: 92px;
  height: 92px;
  background-color: #64ad48;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.cm-section .purchase-flow-section .flow-icon img{
  width: 66px;
  height: 66px;
  display: block;
  object-fit: contain;
}

.cm-section .purchase-flow-section .flow-icon svg{
  width: 66px;
  height: 66px;
  display: block;
  flex: 0 0 auto;
}

.cm-section .purchase-flow-section .flow-title{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.04px;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.cm-section .purchase-flow-section .flow-title-section{
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cm-section .purchase-flow-section .flow-subtitle{
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1.92px;
  line-height: 42px;
}

.cm-section .purchase-flow-section .flow-subtitle-medium{
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1.92px;
  line-height: 42px;
}

.cm-section .purchase-flow-section .use-case-box{
  width: 100%;
  max-width: 832px;
  border: 3px solid #64ad48;
  border-radius: 12px;
  padding: 26px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cm-section .purchase-flow-section .use-case-title{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3.12px;
  text-align: center;
  line-height: 22px;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.cm-section .purchase-flow-section .use-case-items{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 44px;
  justify-content: center;
  align-items: center;
}

.cm-section .purchase-flow-section .use-case-items-wide{ gap: 10px 24px; }

.cm-section .purchase-flow-section .use-case-item{
  display: flex;
  align-items: center;
  gap: 4px;
}

.cm-section .purchase-flow-section .checkmark-icon{
  width: 18.644px;
  height: 15.811px;
  flex-shrink: 0;
  transform: rotate(-11.02deg);
}

.cm-section .purchase-flow-section .use-case-item span{
  font-size:18px;
  font-weight:400;
  letter-spacing:0.5px;
  line-height:1.6;
}

.cm-section .purchase-flow-section .step-flow{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(24px,3vw,40px);
  width: 100%;
  max-width:980px;
  margin:0 auto;
}

.cm-section .purchase-flow-section .step-badge{
  width:clamp(32px,3vw,42px);
  height:clamp(32px,3vw,42px);
  background-color: #64ad48;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size:clamp(18px,2vw,20px);
  font-weight: 400;
  line-height: 52px;
}

.cm-section .purchase-flow-section .step-item-small .step-label{
  font-size:clamp(16px,1.6vw,18px);
  letter-spacing: 0.96px;
  line-height:1.3;
  min-height:56px;
  height:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;    /* ← 折り返し中央 */
  font-weight:400;
}

.cm-section .purchase-flow-section .step-image-box{
  width: 205px;
  height: 183px;
  background-color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cm-section .purchase-flow-section .step-image-box img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cm-section .purchase-flow-section .step-item-small{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center; /* ←中央配置 */
  gap:clamp(6px,0.8vw,4px);
  width:190px;
  min-height:260px;
  padding:10px; /* ←上下余白追加 */
  position:relative;
  box-shadow:0 6px 18px rgba(0,0,0,0.12);
}

.cm-section .purchase-flow-section .step-image-box-small{
  width:clamp(130px,11vw,170px);
  height:clamp(100px,9vw,140px);
  background-color: #fff;
  padding:clamp(2px,0.6vw,2px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink:0;
}

.cm-section .purchase-flow-section .step-image-box-small img{
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}


.cm-section .purchase-flow-section .notice-box{
  width: 100%;
  max-width: 660px;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
}

/* サイズ確認の青背景 */
.cm-section .purchase-flow-section .notice-box-top{
  background:#FFF9E0;
  border:2px solid #FFCE00; 
  padding:10px;
  border-radius:8px 8px 0 0;
}

.cm-section .purchase-flow-section .notice-title{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3.12px;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  margin-bottom: 10px;
}

.cm-section .purchase-flow-section .notice-list{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.9;
  list-style: none;
  text-align: left;
  width: 100%;
  max-width: none;
}

.cm-section .purchase-flow-section .notice-emphasis{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.76px;
  line-height: 1.8;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  margin-top: 10px;
}

.cm-section .purchase-flow-section .notice-box-bottom{
  background-color: #ffce00;
  border-radius: 0 0 8px 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
}

.cm-section .purchase-flow-section .notice-box-bottom p{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.4px;
  line-height: 1.4;
  text-align: center;
}

.cm-section .purchase-flow-section .flow-button-container{
  display: flex;
  justify-content: center;
  width: 100%;
}

.cm-section .purchase-flow-section .flow-button{
  width: 247px;
  height: 46px;
  background-color: #64ad48;
  border-radius: 4px;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1.76px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.cm-section .purchase-flow-section .flow-button:hover{ opacity: 0.8; }

.cm-section .purchase-flow-section .contact-intro{
  text-align: center;
  width: 100%;
  max-width: 927px;
}

.cm-section .purchase-flow-section .contact-intro p{
  font-size: 18px;
  font-weight: 400;
  padding:0px 120px;
  letter-spacing: 0.96px;
}

.cm-section .purchase-flow-section .contact-methods{
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 927px;
}

.cm-section .purchase-flow-section .contact-card{
  width: 276px;
  background-color: #fff;
  border: 2px solid;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cm-section .purchase-flow-section .contact-card-phone{ border-color: #439bff; }
.cm-section .purchase-flow-section .contact-card-line{ border-color: #06c755; }
.cm-section .purchase-flow-section .contact-card-email{ border-color: #000; }

.cm-section .purchase-flow-section .contact-icon-circle{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.cm-section .purchase-flow-section .contact-icon-phone{ background-color: #439bff; }
.cm-section .purchase-flow-section .contact-icon-line{ background-color: #06c755; }
.cm-section .purchase-flow-section .contact-icon-email{ background-color: #000; }

.cm-section .purchase-flow-section .contact-icon-circle img{
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.cm-section .purchase-flow-section .contact-method-title{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.04px;
  text-align: center;
}

.cm-section .purchase-flow-section .contact-details{
  text-align: center;
  display: flex;
  flex-direction: column;
  gap:0px;
  min-height:80px;
}

.cm-section .purchase-flow-section .contact-phone-number{
  font-family: 'BIZ UDPGothic', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 8px;
}

.cm-section .purchase-flow-section .contact-hours{
  font-family: 'BIZ UDPGothic', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.64px;
  line-height: 24px;
}

.cm-section .purchase-flow-section .contact-response{
  font-family: 'BIZ UDPGothic', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.92px;
  line-height: 24px;
}

.cm-section .purchase-flow-section .contact-button{
  max-width: 280px;
  width: 100%;
  height: 40.5px;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.cm-section .purchase-flow-section .contact-button:hover{ opacity: 0.8; }
.cm-section .purchase-flow-section .contact-button-phone{ background-color: #439bff; }
.cm-section .purchase-flow-section .contact-button-line{ background-color: #06c755; }
.cm-section .purchase-flow-section .contact-button-email{ background-color: #000; border-radius: 4px; }

/* よくあるご相談内容 */
.cm-section .purchase-flow-section .consultation-topics{
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cm-section .purchase-flow-section .consultation-topics li{
  display:flex;
  align-items:flex-start;
  gap:8px;
}

.cm-section .purchase-flow-section .consultation-title{
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.cm-section .purchase-flow-section ul.notice-list{
  padding:2px !important;
}

.cm-section .purchase-flow-section .consultation-list{
  list-style: none;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 729px;
}

.cm-section .purchase-flow-section .consultation-list li{
  display:flex;
  align-items:center;
  gap:6px;
  font-family:'Noto Serif JP', serif;
  font-size:18px;
  font-weight:700;
  letter-spacing:0.96px;
  line-height:42px;
}

.cm-section .purchase-flow-section .check-green{
  color: #06c755;
  font-size: 24px;
  width: 33px;
  text-align: center;
  flex-shrink: 0;
}

/* =FAQ よくあるご質問= */

.faq-container,
.faq-container *{
  box-sizing: border-box;
}

.faq-container h1,
.faq-container h2,
.faq-container p{
  margin: 0;
}

.faq-container{
  position: relative;
  z-index: 0;
  width: 100%;
  background: #f2f2f2;
  font-family: 'Noto Sans JP','Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,sans-serif;
  color: #000;
  line-height: 1.6;
  padding: 64px 0;
}

.faq-container .cm-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.faq-container .faq-inner{
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
}

.faq-container .faq-header{
  text-align: center;
  margin-bottom: 40px;
}

.faq-container .faq-title{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.04px;
  text-decoration: underline;
  text-decoration-thickness: 12%;
  text-underline-offset: 4px;
  margin-bottom: 10px;
}

.faq-container .faq-subtitle{
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.88px;
  line-height: 1.7;
}

.faq-container .faq-content{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq-container .faq-section{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-container .section-title-wrapper{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-container .section-title{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2.08px;
  line-height: 34px;
}

.faq-container .section-line{
  width: 100%;
  height: 2px;
  display: block;
}

/* FAQ項目 */
.faq-container .faq-items{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-container .faq-item{
  border: 1px solid #64ad48;
  border-radius: 6px;
  background-color: #fff;
  overflow: hidden;
}

.faq-container .faq-question{
  background-color: #64ad48;
  color: #fff;
  padding: 15px 28px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  position: relative;
}

.faq-container .faq-question::-webkit-details-marker{ display: none; }
.faq-container .faq-question::marker{ display: none; }

.faq-container .faq-question::after{
  content: '▼';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform .3s ease;
  font-size: 12px;
}
.faq-container .faq-item[open] .faq-question::after{
  transform: translateY(-50%) rotate(180deg);
}
.faq-container .faq-question:hover{ background-color: #5a9d40; }

.faq-container .faq-answer{
  padding: 20px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
  line-height: 28px;
  color: #000;
}
.faq-container .faq-answer p + p{ margin-top: 0; }

.faq-container .faq-answer strong{ font-weight: 700; }

.faq-container .link-text{
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

/* =主な販売先= */
.sales-destinations,
.sales-destinations *{
  box-sizing: border-box;
}
.sales-destinations h2,
.sales-destinations p{
  margin: 0;
}

.sales-destinations{
  width: 100%;
  background: #fff;
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
}

.sales-destinations .cm-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 32px;
}

.sales-destinations .sales-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.sales-destinations .sales-header{
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.sales-destinations .sales-title{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.04px;
  text-decoration: underline;
  text-decoration-thickness: 12%;
  text-underline-offset: 4px;
  line-height: 1.4;
}

.sales-destinations .sales-subtitle{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.2px;
  line-height: 1.6;
}

.sales-destinations .sales-grid{
  display: grid;
  grid-template-columns: repeat(3, 220px);
  justify-content: center;
  column-gap: 24px;
  row-gap: 20px;
}

.sales-destinations .sales-item{
  width: 100%;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sales-destinations .sales-icon{
  width: 160px;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sales-destinations .sales-icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sales-destinations .sales-label{
  font-family: 'BIZ UDPGothic', sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}

/* =会社概要= */
.company-overview-section{
  width: 100%;
  background: #f2f2f2;
  font-family: 'Noto Sans JP','Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,sans-serif;
  color: #000;
  line-height: 1.6;
}

/* テーマ側の.cm-innerの癖を潰す（flex等の事故防止） */
.company-overview-section .cm-inner{
  display: block;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px;
}

/* BOX幅（狭める本体） */
.company-overview-wrapper{
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

/* タイトル：24px */
.company-overview-title{
  margin: 0 0 32px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.04px;
  text-decoration: underline;
  text-decoration-thickness: 12%;
  text-underline-offset: 4px;
  line-height: 1.4;
}

/* 行のまとまり（gapはここに効く） */
.company-overview-section .info-sections{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 1行 */
.company-overview-section .info-row{
  background: #fff;

  padding: 18px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* 左ラベル */
.company-overview-section .info-label{
  flex: 0 0 110px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .6px;
  line-height: 1.6;
  padding-top: 2px;
}

/* 右内容（通常行） */
.company-overview-section .info-content{
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .6px;
  line-height: 1.8;
  padding-top: 2px;
  word-break: break-word;
}

/* 本社：住所＋画像（かぶり防止の本丸） */
.company-overview-section .info-content-headquarters{
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap; /* ←これで重なり消える */
}

.company-overview-section .address-info{
  flex: 1 1 320px;
  min-width: 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .6px;
}

.company-overview-section .address-info p{
  margin: 0;
  line-height: 1.9;
}

/* 画像 */
.company-overview-section .building-image{
  flex: 0 0 240px;
  width: 240px;
  height: 180px;
  overflow: hidden;
}

.company-overview-section .building-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==Responsive== */
@media (max-width:768px){
  :root{
    --header-h: 70px;
  }
  body{
    padding-top:70px;
  }
  
  /* 共通余白 */
  .hero-section .cm-inner,
  .colorme-ad-banner .cm-inner,
  .news-container .cm-inner,
  .koborein-container .cm-inner,
  .section-what-can-do .cm-inner,
  .product-lineup-section .cm-inner,
  .cm-section .purchase-flow-section .cm-inner,
  .faq-container .cm-inner,
  .sales-destinations .cm-inner,
  .company-overview-section .cm-inner{
    padding-left:16px;
    padding-right:16px;
  }

  /* セクション上下余白 */
  .news-container .cm-inner,
  .koborein-container .cm-inner,
  .section-what-can-do .cm-inner,
  .product-lineup-section,
  .cm-section .purchase-flow-section,
  .faq-container,
  .sales-destinations .cm-inner,
  .company-overview-section .cm-inner{
    padding-top:56px;
    padding-bottom:56px;
  }

  /* タイトル */
  .news-title,
  .section-title,
  .product-lineup-section .product-lineup-title,
  .cm-section .purchase-flow-section .main-title,
  .faq-container .faq-title,
  .sales-destinations .sales-title,
  .company-overview-title{
    font-size:22px;
  }

/* HERO */
  .hero-section {
  position: relative;
  width: 100%;
  height: calc(100svh - var(--header-h) - var(--banner-h));
  min-height: 420px;
  background-color: #f3f4f6;
  overflow: hidden;
}
  
.hero-content{
  width: 100%;
  height: 95%;
}
  
.hero-section .hero-content{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  padding-top:18px;
  position:relative;
  height:100%;
}

.hero-content{
  gap:18px;
  }
  
.hero-section .cm-inner{
  position:relative;
  padding:0px 20px;
  z-index:2;
}
  
.hero-title {
  margin-bottom: 0px;
}

.hero-title h1{
  font-size:32px;
  line-height:1.3;
  text-shadow: 2px 2px 2px #fff;
}

.hero-subtitle{
  margin:0px;
  line-height:1.4;
}

.hero-subtitle p{
  font-size:18px;
  margin:0;
}

.hero-subtitle .product-name{
  margin-bottom:0px;
}

.hero-cta{
  position:absolute;
  left:0;
  font-size:16px;
  padding:12px 48px 12px 32px;
  margin:0;
  bottom:44px;
  margin-top:0;
}

.hero-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
}

.hero-bg img{
  display:block;
  width:109%;
  height:109%;
  object-fit:cover;
}

.hero-gradient{
  display:none;
}

  /* バナー */
  .colorme-ad-banner .banner-text{ font-size:18px; }
  .colorme-ad-banner .arrow-icon{ width:32px; }
  
  .colorme-ad-banner{
  transition: background-color 0.2s ease;
}

.colorme-ad-banner .text-white,
.colorme-ad-banner .text-red-underline{
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.colorme-ad-banner .arrow-icon path{
  transition: fill 0.2s ease;
}

.colorme-ad-banner:hover{
  background:#B4E522;
}

.colorme-ad-banner:hover .text-white{
  color:#000;
}

.colorme-ad-banner:hover .text-red-underline{
  color:#ff0000;
  text-decoration-color:#ff0000;
}

.colorme-ad-banner:hover .arrow-icon path{
  fill:#000;
}

  /* NEWS */
  .news-list{ padding:0; }
  .news-item{
    flex-direction:column;
    gap:4px;
  }
  .news-date{ width:auto; }

  /* KOB0REIN */
  .subsection-title{ font-size:20px; }
  .check-text{
    font-size:15px;
    line-height:1.8;
    letter-spacing:.4px;
  }
  .note-text{
    font-size:14px;
    line-height:1.8;
  }

  /* 何ができる */
  .section-subtitle{ font-size:20px; }
  .points-container{ gap:18px; }

  .point-card{
    width:100%;
    max-width:360px;
    min-height:auto;
  }

  .point-title{
    font-size:18px;
    line-height:1.6;
    min-height:auto;
  }

  .point-description{
    font-size:14px;
    line-height:1.8;
  }

  .safety-card{
    width:100%;
    max-width:520px;
  }

  .safety-title{ font-size:20px; }
  .safety-subtitle{ font-size:18px; }

  .safety-note{
    padding:18px 24px;
  }

  .safety-note p{
    font-size:14px;
    line-height:1.6;
  }
  
  .safety-description{
    font-size:16px;
    line-height:1.8;
    letter-spacing:1.0px;
  }

  .section-what-can-do .cm-inner{
    padding-top:26px;
  }

  .section-how-safe .cm-inner{
    padding-top:26px;
  }
  
  /* 商品ラインナップ */
  .product-lineup-section{
    padding-left:0;
    padding-right:0;
  }
  
　.product-lineup-section .product-header{
  　margin-bottom:14px;
　}
  
  .product-lineup-section .product-description{
    letter-spacing:.4px;
    line-height:1.7;
    font-size:18px;
    font-weight:700;
    margin-top:8px;
    margin-bottom:10px;
  }

  .product-lineup-section .product-content{
    flex-direction:column-reverse;
    padding:0;
    gap:0px;
  }

  .product-lineup-section .product-text{
    font-size:15px;
    line-height:1.8;
    margin-top:8px; 
    margin-bottom:16px;
  }
  
  .product-lineup-section .product-info{
    width:100%;
    padding-left:12px;
    padding-right:12px;
    gap:4px;
  }

  .product-lineup-section .product-intro{
    padding:8px 10px;
  }
  
  .product-lineup-section .purchase-options{
    flex-direction:column;
  }

  .product-lineup-section .purchase-option{
    max-width:520px;
    width:100%;
    margin:0 auto;
    gap:8px;
  }

  .product-lineup-section .option-images{
    display:flex;
    justify-content:center;
  }

  .product-lineup-section .option-image{
  width:auto;
  max-width:100%;
  display:block;
}

  .product-lineup-section .product-card-inner{
  padding:20px 18px;
  }

  .product-lineup-section .lineup-product-name{
    font-size:18px;
    letter-spacing:1.0px;
  }
  
  .product-lineup-section .option-button{
    margin-top:0px;
  }

  .product-lineup-section .product-price{
    margin-top:8px;
    margin-bottom:0px;
 }
  
  .product-lineup-section .product-price .price-large{
    font-size:28px;
  }
    
  .product-lineup-section .product-image{
    width:auto;
    max-width:100%;
    margin:0 auto;
  }

  .product-lineup-section .product-image-wrapper{
    width:100%;
    display:flex;
    justify-content:center;
    margin-bottom:10px;
  }
  
  .product-lineup-section .product-image-wrapper img{
    display:block;
  }
  
  .product-lineup-section .inquiry-items{
    gap:4px;
   }

  .product-lineup-section .inquiry-content{
    padding-left: 12px;
    padding-right: 12px;
   }
  
  .product-lineup-section .color-title{
    font-size:18px;
    font-weight:700;
    text-align:center;
    text-decoration:underline;
    margin:0 0 6px 0;
  }

  /* ===== ご購入の流れ SP ===== */
/* セクション余白 */
.cm-section .purchase-flow-section{
  padding:40px 0;
}

/* 内側 */
.cm-section .purchase-flow-section .cm-inner{
  padding:0 20px;
  gap:28px;
}

/* タイトル */
.cm-section .purchase-flow-section .main-title{
  font-size:20px;
  margin-bottom:16px;
}

.cm-section .purchase-flow-section .flow-icon{
  width:82px;
  height:82px;  
  }
  
.cm-section .purchase-flow-section .flow-icon img{
  width:56px;
  height:56px;
  }
  
.cm-section .purchase-flow-section .step-image-box-small img{
  max-width:100%;
  max-height:100%;
  }
  
.cm-section .purchase-flow-section .use-case-items{
    gap: 6px;
  }
  
.cm-section .purchase-flow-section .main-subtitle{
  font-size:15px;
  line-height:1.5;
}

/* カード */
.cm-section .purchase-flow-section .flow-card-inner{
  padding:20px 10px;
  gap:16px;
}

/* タイトル */
.cm-section .purchase-flow-section .flow-title{
  font-size:18px;
  line-height:1.4;
}

.cm-section .purchase-flow-section .flow-subtitle,
.cm-section .purchase-flow-section .flow-subtitle-medium{
  font-size:16px;
  line-height:1.7;
}

/* このような場合 */
.cm-section .purchase-flow-section .use-case-box{
  padding:16px;
  border-width:2px;
  gap:12px;
}

.cm-section .purchase-flow-section .checkmark-icon{
  width: 12.644px;
  height: 13.811px;
}
  
.cm-section .purchase-flow-section .use-case-title{
  font-size:16px;
}

.cm-section .purchase-flow-section .use-case-item span{
  font-size:15px;
  line-height:1.6;
}

/* ステップ */
.cm-section .purchase-flow-section .step-flow{
  gap:20px;
}

/* ステップカード */
.cm-section .purchase-flow-section .step-item-small{
  width:240px;
  min-height:210px;
}

/* ステップ番号 */
.cm-section .purchase-flow-section .step-badge{
  width:36px;
  height:36px;
  font-size:16px;
}

/* ステップタイトル */
.cm-section .purchase-flow-section .step-label{
  font-size:14px;
  line-height:1.4;
}
  
.cm-section .purchase-flow-section .step-item-small .step-label{
  min-height: 36px;
  }

/* ステップ画像 */
.cm-section .purchase-flow-section .step-image-box-small{
  width:120px;
  height:90px;
}

/* ボタン */
.cm-section .purchase-flow-section .flow-button{
  width:200px;
  height:42px;
  font-size:16px;
}

.cm-section .purchase-flow-section .notice-title{
  font-size: 18px;
  letter-spacing: 1.5px;
}
  
.cm-section .purchase-flow-section .notice-box-bottom p{
  font-size:14px;
  }
  
.cm-section .purchase-flow-section .notice-list{
  letter-spacing: 0px;
  font-size: 14px;
  }
  
.cm-section .purchase-flow-section .notice-emphasis{
  font-size: 12px;
  letter-spacing: 1.76px;
  line-height: 1.8;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  margin-top: 10px;
}

.cm-section .purchase-flow-section .contact-intro p{
  font-size:14px;
  padding:0px 20px;
  }
  
/* 問い合わせカード */
.cm-section .purchase-flow-section .contact-methods{
  flex-direction:column;
  align-items:center;
  gap:20px;
}

.cm-section .purchase-flow-section .contact-card{
  max-width:360px;
  width:100%;
  min-height:auto;
  padding:12px;
  gap:8px;
}

.cm-section .purchase-flow-section .contact-icon-circle{
  width: 70px;
  height: 70px;  
  }

.cm-section .purchase-flow-section .contact-icon-circle img{
  width: 60px;
  height: 60px;
  object-fit: contain;
}
  
.cm-section .purchase-flow-section .consultation-list li{
  display:flex;
  align-items:flex-start;
  gap:0px;
  font-size:14px;
  letter-spacing:0.96px;
  line-height:24px;
}
  
.cm-section .purchase-flow-section .consultation-title{
  font-size: 19px;
}
  
.cm-section .purchase-flow-section .check-green{
  font-size: 12px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}
  
  /* FAQ */
  .faq-container{
    font-saize:22px;
    padding:30px 0;
  }

.faq-container .cm-inner{
  padding-left:28px;
  padding-right:28px;
}
  .faq-container .faq-inner{ max-width:100%; }
  .faq-container .faq-subtitle{ font-size:16px; }

  
  /* 主な販売先 */
  .sales-destinations .sales-grid{
  grid-template-columns:repeat(2,1fr);
  gap:42px 40px;
  justify-items:center;
  }

  .sales-destinations .sales-item{
  max-width:160px;
  text-align:center;
  }

  .sales-destinations .sales-icon{
    width:110px;
    height:auto;
  }

  .sales-destinations .sales-label{
    font-size:18px;
    font-weight:500;
  }

  .sales-destinations .sales-subtitle{
    font-size:16px;
    font-weight:500;
    padding:0px 28px;
  }

  /* 会社概要 */
.company-overview-wrapper{
  max-width:100%;
}

.company-overview-section .info-row{
  display:block;
  padding:16px;
}

.company-overview-section .info-label{
  width:100%;
  font-weight:600;
  margin-bottom:6px;
}

.company-overview-section .info-content-headquarters{
  display:block;
}

.company-overview-section .building-image{
  width:100%;
  max-width:320px;
  height:auto;
  margin-top:12px;
}

.company-overview-section .info-label,
.company-overview-section .info-content,
.company-overview-section .address-info{
  font-size:14px;
  letter-spacing:.2px;
  line-height:1.8;
}


}