/* =============================
   LP: Complete Care
   ============================= */

/* ---- Global Tokens ---- */
.complete-care{
  --cr-accent:#513d36;
  --cr-text: var(--cr-accent);
  --cr-bg:#fff8ef;

  --cr-max:1000px;
  --cr-gutter:92%;

  --cr-py:clamp(28px,5vw,56px);
  --cr-lead-fz:clamp(17px,3vw,24px);
  --cr-h2-fz:clamp(22px,3.4vw,32px);
  --cr-text-fz:clamp(15px,2.1vw,17px);

}

/* 共通見出し */
.complete-care h2{
  font-size:clamp(24px,3vw,32px);
  font-weight:600;
  color:var(--cr-text);
  line-height:1.4;
  margin:0 0 clamp(24px,4vw,40px);
  background:none;
  border:none;
}

/* セクション余白 */
.complete-care .section-space{
  padding-block:clamp(60px,8vw,100px);
}

.complete-care__intro.section-space,
.complete-care__message.section-space{
  padding-block:clamp(40px,6vw,70px);
}

/* -------- SP共通調整 -------- */
@media (max-width: 767px){
  .complete-care .section-space{ padding-block:40px; }

  .complete-care h2{
    font-size:clamp(20px,5vw,26px);
    text-align:left;
    margin:0 0 24px;
    padding:0 8px; 
  }
}

/* =============================
   1st view
   ============================= */

.complete-care__hero{
  position: relative;
  overflow: hidden;

  background-image: url("../images/complete_care/rabbit_mv-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: clamp(40px, 6vw, 96px) 0;
}

.cc-hero{
  position: relative;

  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 36px;

  display: grid;
  grid-template-columns: minmax(420px, 560px) 1fr;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.cc-hero__inner{
  max-width: 560px;
  padding: clamp(14px, 2vw, 22px);
  border-radius: 16px;


  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(2px);
}

.cc-hero__logoArea{
  margin-bottom: 14px;
}
.cc-hero__logo{
  height: 60px;
  width: auto;
  display: block;
}


.cc-hero__title{
  margin: 0 0 12px;
  font-size: clamp(24px, 3.5vw, 42px);
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: var(--cr-text);
}


.cc-hero__sub{
  margin: 0 0 18px;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.9;
  max-width: 34em;
  color: var(--cr-text);
}


.cc-hero__visual{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.cc-hero__product{
  width: min(680px, 100%);
  height: auto;
  display: block;

  transform: translateX(12px);
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.14));
}


@media (min-width: 1400px){
  .cc-hero{
    max-width: 1360px;
  }
  .cc-hero__product{
    width: min(720px, 100%);
    transform: translateX(18px);
  }
}

/* ===== SP ===== */
@media (max-width: 767px){
  .complete-care__hero{
    background-image: url("../images/complete_care/rabbit_mv-bg_sp.jpg");
    background-position: left center;
    padding: 32px 0 40px;
  }

  .cc-hero{
    grid-template-columns: 1fr;
    padding-inline: 16px;
  }

  .cc-hero__inner{
    max-width: none;
    border-radius: 14px;
  }

  .cc-hero__visual{
    order: 2;
    justify-content: center;
  }

  .cc-hero__product{
    width: min(520px, 92%);
    transform: none;
    margin-top: 16px;
  }

  .cc-hero__logo{
    height: 48px;
  }
}


/* =============================
   Intro
   ============================= */

.complete-care__intro{ background-color:var(--cr-bg); }

.cc-intro__inner{
  width:min(var(--cr-max), var(--cr-gutter));
  margin:0 auto;
  color:var(--cr-text);
}
.cc-intro__text{
  font-size:var(--cr-text-fz);
  line-height:1.9;
  text-align:center;
  margin:0;
}

/* =============================
   Message
   ============================= */

.complete-care__message{ background-color:#fff; }

.cc-message__inner{
  width:min(var(--cr-max), var(--cr-gutter));
  margin:0 auto;
  color:var(--cr-text);
  font-size:var(--cr-text-fz);
  line-height:1.9;
}

.cc-message__title{
  font-size:clamp(18px,2.6vw,22px);
  font-weight:600;
  margin:0 0 16px;
  text-align:center;
}

.cc-message__inner p + p{ margin-top:0.8em; }

/* =============================
   Product blocks
   ============================= */

.complete-care__product{ background-color:#fff; }

.cc-product{
  width:min(var(--cr-max), var(--cr-gutter));
  margin:0 auto;
  color:var(--cr-text);
}

.cc-product__inner{
  display:grid;
  gap:clamp(16px,3vw,24px);
}

.cc-product__content{
  font-size:var(--cr-text-fz);
  line-height:1.7;
}

.cc-product__label{
  font-size:clamp(14px,2.1vw,16px);
  margin:0 0 2px;
}

.cc-product__title{
  font-size:var(--cr-h2-fz);
  margin:0 0 6px;
}

.cc-product__desc{
  line-height:1.7;
  margin:0 0 8px;
}

.cc-product__points{
  margin:0 0 12px;
  padding-left:1.2em;
  line-height:1.7;
}
.cc-product__points li + li{ margin-top:2px; }

.cc-product__cta{ margin-top:4px; }

.cc-product__image{ margin:0; }

.cc-product__image-ph{
  width:100%;
  aspect-ratio:4/3;
  background:#e5e5e5;
  display:grid;
  place-items:center;
  font-size:13px;
  color:rgba(0,0,0,.6);
}

/* ボタン */
.cc-product__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:.6em 1.4em;
  border-radius:6px;
  border:1px solid var(--cr-accent);
  color:var(--cr-accent);
  text-decoration:none;
  font-size:14px;
  background-color:#fff;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, transform .06s ease;
}
.cc-product__btn:hover,
.cc-product__btn:focus-visible{
  background-color:var(--cr-accent);
  color:#fff;
  box-shadow:0 4px 10px rgba(0,0,0,.18);
}
.cc-product__btn:active{ transform:translateY(1px); }


@media (min-width: 768px){
  .cc-product__inner{
    grid-template-columns: 1.2fr 1fr;
    align-items:center;
  }
  .cc-product__inner--reverse{
    grid-template-columns:1fr 1.2fr;
  }
  .cc-product__inner--reverse .cc-product__content{ order:2; }
  .cc-product__inner--reverse .cc-product__image{ order:1; }
}

/* =============================
   Product badges
   ============================= */

.cc-product__badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 520px;

  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.cc-product__badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 7px 11px;
  font-size: 13px;
  line-height: 1;
  color: #fff;
  background: var(--cr-accent); 
  border-radius: 6px;
}

.cc-product__badge::before{
  content: "✓";
  font-weight: 700;
}


/* =============================
   Closing
   ============================= */

.cc-closing__inner{
  width:min(var(--cr-max), var(--cr-gutter));
  margin:0 auto;
  text-align:center;
  color:var(--cr-text);
}
.cc-closing__lead{
  font-size:clamp(16px,2.2vw,20px);
  font-weight:600;
  margin:0 0 10px;
}
.cc-closing__text{
  font-size:var(--cr-text-fz);
  line-height:2;
}

/* =============================
   Bottom CTA buttons
   ============================= */

.complete-care__bottom{
  background:
    url("../images/complete_care/bottom-bg.jpg") center/cover no-repeat,
    var(--cr-bg);
  padding-block:clamp(60px,8vw,100px);
}

.cc-bottom__inner{
  width:min(var(--cr-max), 96%);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:14px;
  justify-content:center;
}

.cc-bottom__btn{
  display:block;
  padding:12px 20px;
  text-align:center;
  border-radius:6px;
  background:#fff;
  color:var(--cr-accent);
  text-decoration:none;
  box-shadow:0 2px 0 rgba(0,0,0,.15);
  font-size:14px;
}

.cc-bottom__btn:hover,
.cc-bottom__btn:focus-visible{
  background-color:var(--cr-accent);
  color:#fff;
  box-shadow:0 4px 10px rgba(0,0,0,.18);
  text-decoration:none;
}

@media (min-width: 768px){
  .cc-bottom__inner{ flex-direction:row; }
  .cc-bottom__btn{ min-width:260px; }
}
