:root{
    --green:#21c58b;
    --green-dark:#16a34a;
    --text:#0f172a;
    /*--muted:#64748b;*/
    --bg:#ffffff;
    --card:#f1fff8;
  
    /* 画面幅の基準：SPは480、PCは980あたりが扱いやすい */
    --container-sp: 480px;
    --container-pc: 980px;
  }
  
  /* base */
  *{ box-sizing:border-box; }
  body{ margin:0; font-family:-apple-system,BlinkMacSystemFont,"Noto Sans JP","Hiragino Kaku Gothic ProN",sans-serif; color:var(--text); background:var(--bg); }
  img{ max-width:100%; height:auto; display:block; }
  a{ color:inherit; text-decoration:none; }
  
  .lp{
    width:100%;
    margin:0 auto;
    /* SPは狭め、PCでは広げる */
    max-width: var(--container-sp);
  }
  
  html, body{
    overflow-x: hidden;
  }


  /* PCで横幅を広げる */
  @media (min-width: 900px){
    .lp{ max-width: var(--container-pc); }
  }
  
  /* header */
  .lp-header{
    position:sticky;
    top:0;
    z-index:20;
    background:rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    border-bottom:1px solid rgba(0,0,0,.06);
    z-index: 20;
  }
  .lp-header__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:12px 16px;
  }
  .lp-brand__logo{ height:24px; }
  
  .lp-nav{
    display:none;
    gap:16px;
    font-size:13px;
    color:var(--muted);
  }
  .lp-nav__link:hover{ color:var(--text); }
  
  .lp-header__cta{
    background:#ff5b5b;
    color:#fff;
    font-weight:800;
    font-size:12px;
    padding:10px 14px;
    border-radius:999px;
  }
  
  /* PCだけナビ表示 */
  @media (min-width: 900px){
    .lp-nav{ display:flex; }
  }
  

/* ===== hamburger ===== */
.hamburger{
  display:none;          /* PCでは非表示 */
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  border-radius: 10px;
}
.hamburger__line{
  display:block;
  height: 3px;
  width: 100%;
  background: #0f172a;
  border-radius: 999px;
}
.hamburger__line + .hamburger__line{ margin-top: 6px; }

/* SP表示：PCのnavを隠して、ハンバーガーを出す */
@media (max-width: 899px){
  .lp-nav{ display:none; }
  .hamburger{ display:inline-flex; flex-direction:column; justify-content:center; }
}

/* 3本線の基本 */
.hamburger{
  position: relative;
}

.hamburger__line{
  transition: transform .18s ease, opacity .18s ease;
  transform-origin: center;
}

/* 開いてる時（aria-expanded="true"）は × にする */
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1){
  transform: translateY(9px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2){
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3){
  transform: translateY(-9px) rotate(-45deg);
}


/* ===== SP menu panel ===== */
.spMenu{
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 25;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(0,0,0,.10);
  padding: 10px 16px 14px;
}

.spMenu__link{
  display:block;
  padding: 12px 6px;
  font-weight: 800;
  color: #0f172a;
}
.spMenu__link + .spMenu__link{ border-top: 1px solid rgba(0,0,0,.06); }

.spMenu__btn{
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top: 10px;
  padding: 14px 14px;
  border-radius: 14px;
  font-weight: 900;
  background: #ff5b5b;
  color:#fff;
}

/* ドロップダウンの開閉アニメ（hidden切替と相性◎） */
.spMenu{
  transform-origin: top;
  animation: spMenuIn .16s ease-out;
}

@keyframes spMenuIn{
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menuOverlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.25);
  z-index: 15; /* header(20)より下に */
}



  /* hero */
  .hero{ padding:18px 16px 6px; }
  .hero__inner{
    display:grid;
    gap:18px;
  }
  .hero__title{ margin:0 0 8px; line-height:1; }
  .hero__titleMain{ display:block; font-size:44px; font-weight:900; letter-spacing:.02em; }
  .hero__titleSub{ display:inline-block; font-size:12px; font-weight:900; color:var(--green-dark); margin-top:6px; }
  .hero__lead{ margin:0 13px 10px; color:var(--muted); font-size:20px; line-height:1.7; }
  .hero__catch{ margin:0 13px 14px; font-weight:900; font-size:24px;}
  
  @media (max-width: 480px) {
    .hero__lead{ font-size: 18px; }
    .hero__catch{ font-size: 22px; }
    .hero__copy .btn{ margin-bottom: 10px; }
    .hero{ padding-bottom: 18px; }
    .hero__phone{ top: 0; }          /* もしtopが大きいなら下げる/上げる */
    .hero__screen{ top: 0; }
  }
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 80px;
    border-radius:999px;
    font-weight:900;
    font-size:20px;
    margin: 0 13px;
  }
  /* ボタン共通：SPは横長に */
@media (max-width: 480px){
  .btn{
    display: flex;
    justify-content: center;
    width: min(320px, 92%);
    margin-left: auto;
    margin-right: auto;
    padding: 14px 18px;
    border-radius: 999px;
  }
}
  .btn--primary{ background:#ff5b5b; color:#fff; }
  
  .hero__visual{
    position:relative;
    min-height: 220px;
  }
  .hero__phone{
    position:absolute;
    left:30%;
    top:0;
    width: 44%;
    max-width: 240px;
    z-index:2;
  }
  .hero__screen{
    position:absolute;
    right:0;
    top:14%;
    width: 52%;
    max-width: 320px;
    z-index:1;
  }
  
  /* PC時は2カラムに */
  @media (min-width: 900px){
    .hero{ padding:26px 24px 10px; }
    .hero__inner{
      grid-template-columns: 1.05fr .95fr;
      align-items:center;
      gap:24px;
    }
    .hero__lead{ font-size:20px; }
    .hero__visual{ min-height: 320px; }
    .hero__phone{ left:7%; width: 35%; }
    .hero__screen{ top:20%; width: 80%; }
  }
  
  /* ===== FV: SP版（完成デザイン寄せ） ===== */
.hero{
  padding-bottom: 0;
  overflow: hidden;
}

.hero__visual{
  min-height: 420px;     /* 画像が下に収まる高さを確保 */
  margin-top: 10px;
}
@media (max-width: 480px){
  .hero__visual{ min-height: 330px; }
}

/* スマホを前面・下寄せ */
.hero__phone{
  left: 1%;
  top: auto;
  bottom: 10px;
  width: 46%;
  max-width: 260px;
  z-index: 3;
}

/* TV/画面を右下寄せ（背面） */
.hero__screen{
  right: -25%;
  top: auto;
  bottom: 26px;
  width: 100%;
  max-width: 400px;
  z-index: 2;
  opacity: 1;
}

/* SPだけ：アイコン列との間を詰めるなら */
.marquee{
  padding-top: 6px;
}


  /* marquee */
  .marquee{
    padding: 10px 0 2px;
    overflow:hidden;
  }
  .marquee__track{
    display:flex;
    gap:14px;
    width:max-content;
    animation: marquee 30s linear infinite;
  }
  .marquee__group{
    display:flex;
    gap:14px;
    align-items:center;
  }
  .marquee__group img{
    width:48px;
    height:48px;
    border-radius:12px;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    padding:8px;
  }
  
  @media (prefers-reduced-motion: reduce){
    .marquee__track{ animation:none; }
  }
  
  @keyframes marquee{
    0%{ transform: translateX(0); }
    100%{ transform: translateX(-50%); } /* 2グループ分の半分だけ動かす */
  }
  
  /* video */
  .video{ padding: 14px 16px 24px; }
  .video__card{
    display:grid;
    grid-template-columns: 1fr;
    gap:12px;
    background: var(--card);
    border-radius: 18px;
    padding: 8px;
    background-color: #5CD6A2;
    justify-items: center;
  }
  
  .video__text{ text-align:right; }
  .video__title{ 
    margin: 0;
    font-size: 30px;
    color: #fff;
    font-family: 'Yomogi', cursive;
    font-weight: 400;
    line-height: 1.4;
  }
  .video__sub{ 
    margin:0;
    font-weight:400; 
    font-size: 34px; 
    color: #fff;
    font-family: 'Yomogi', cursive;
    line-height: 1.4;
  }
  /* ロゴ + 使用方法 を横並びにする行 */
.video__brand{
    display: flex;
    align-items: center;
    justify-content: center; /* 中央寄せ */
    gap: 12px;               /* ロゴと文字の間 */
  }
  
  /* 「使用方法」の余白を消す（pタグのデフォルトmarginが邪魔しがち） */
  .video__sub{
    margin: 0;
    font-weight: 900;
  }
  .video__ratio{
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
  }
  .video__thumb{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: none;
  }
  
  .video__thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* 再生ボタン */
  .video__play{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255,255,255,.9);
  }
  
  .video__play::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 14px 0 14px 22px;
    border-color: transparent transparent transparent #5CD6A2;
  }
  .video__ratio iframe{
    position: absolute;
    top: 0;
    left: 0;
  
    width: 100%;
    height: 100%;
  
    border: 0;
    display: block;
  }
  @media (min-width: 900px){
    .video{ padding: 18px 24px 34px; }
    .video__card{
      grid-template-columns: 1.2fr .8fr;
      align-items:center;
      gap:18px;
    }
  }

  @media (max-width: 768px){
    .video__ratio{
      aspect-ratio: 16 / 14;
    }
  }
  /* ===== news ===== */
.news{
    padding: 26px 16px 30px;
  }
  .news__inner{
    border-top: 1px solid rgba(0,0,0,.08);
    padding-top: 22px;
  }
  .news__title{
    margin: 0 0 14px;
    text-align: center;
    font-weight: 900;
    font-size: 26px;          /* 大きめ */
    letter-spacing: .02em;
    position: relative;
  }
  .news__title::after{
    content:"";
    display:block;
    width: 140px;
    height: 3px;
    margin: 10px auto 0;
    background: #26A871;
    border-radius: 999px;
  }
  
  .news__list{
    margin-top: 16px;
  }
  .news__item{
    display:grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 10px;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }
  .news__date{
    font-weight: 800;
    font-size: 18px;          /* 大きめ */
  }
  .news__text{
    font-size: 18px;          /* 大きめ */
    line-height: 1.7;
  }
  
  .news__more{
    display:flex;
    justify-content:center;
    margin-top: 18px;
  }
  .news__moreBtn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap: 10px;
    min-width: 240px;
    padding: 14px 18px;
    border: 2px solid #26A871;
    border-radius: 12px;
    font-weight: 900;
    font-size: 18px;          /* 大きめ */
    color: #0f172a;
    background: #fff;
  }
  .news__moreBtn:hover{
    background: rgba(33,197,139,.08);
  }

/* ===== common (文字サイズ少し大きめ) ===== */
:root{
  --green:#21c58b;
  --green-dark:#16a34a;
  --text:#0f172a;
  --muted:#64748b;
}

.btn--big{
  padding: 18px 80px;
  font-size: 20px;
}

/* ===== ① pain ===== */
.pain{
  background: linear-gradient(180deg, #0f6f57 0%, #20d86c 100%);
  color: #fff;
  padding: 48px 16px 44px;
  position: relative;
  overflow: hidden;
}
.pain__inner{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.pain__title{
  margin: 0 0 50px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .02em;
}
@media (max-width: 480px) {
  .pain__title{
    font-size: 26px;
    margin-bottom: 18px;
  }
}
.pain__avatar{
  width: 170px;
  height: 170px;
  border-radius: 999px;
  margin: 0 auto 20px;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.pain__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pain__list{
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
  text-align: left;
  display: grid;
  gap: 14px;
}
@media (min-width: 900px){
  /* チェック4行のブロックを中央寄せ＆幅を少し狭める */
  .pain__list{
    max-width: 600px;   /* 820px → 640px などに */
    margin-left: auto;
    margin-right: auto;
  }
}
.pain__item{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 700;
}
.pain__check{
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  margin-top: 3px;
}
.pain__note{
  margin: 26px auto 0;
  max-width: 820px;
  font-size: 14px;
  line-height: 1.6;
  opacity: .9;
}

/* ===== ② reason ===== */
.reason{
  background: #fff;
  color: var(--text);
  padding: 56px 16px 60px;
}
.reason__inner{
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
}
.reason__title{
  margin: 0 0 26px;
  font-weight: 900;
  font-size: 32px;
  line-height: 1.35;
}

.reason__subtitle{
  display: inline-block;
  margin-top: 10px;
  font-size: 26px;
}

@media (max-width: 480px) {
  .reason__title{
    font-size: 30px;
    margin-bottom: 18px;
  }
  .reason__subtitle{
    font-size: 26px;
  }
}
.reason__grid{
  margin-top: 24px;
  display: grid;
  gap: 22px;
}

/* SPは縦積み、PCは3カラム */
@media (min-width: 900px){
  .reason__grid{
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.reasonCard{
  background: #fff;
  border-radius: 18px;
  padding: 18px 18px 16px;
  position: relative;
}
.reasonCard__image{
  position: relative;
  margin: 10px auto 12px;
  width: 100%;
  max-width: 260px;
  padding-bottom: 18px;
}
.reasonCard__image img{
  width: 100%;
  height: auto;
  display: block;
}
.reasonCard__badge{
  background: #26A871;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  border-radius: 14px;
  min-height: 70px;               
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  position: absolute;
  left: 56%;
  bottom: 0;                      
  transform: translateX(-50%);
  z-index: 5;
  margin: 0;
  width: 92%;                     
  min-width: 0;                   
  max-width: 260px;     
}
.reasonCard__list{
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: grid;
  gap: 10px;
}
.reasonCard__list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
}
.reasonCard__check{
  flex: 0 0 44px;          
  width: 44px;
  height: 44px;            
  display: grid;
  place-items: center;
  margin-top: -8px;  
}
.reasonCard__check img{
  width: 28px;             /* アイコンの実サイズ */
  height: 28px;
  object-fit: contain;
  display: block;
}
.reason__cta{
  margin-top: 34px;
}


/* ===== ③ androidtv ===== */
.androidtv{
  padding: 70px 16px 70px;
  color: #fff;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0; 
}
.androidtv__inner{
  margin: 0 auto;
  text-align: center;
  position: relative;
  max-width: none;
  padding: 0;
}
.androidtv__title{
  font-size: 65px;
  font-weight: 900;
  letter-spacing: .02em;
  position: absolute;
  top: 40px;            
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin: 0;
  width: 100%;
  text-align: center;
  text-shadow: 0 6px 18px rgba(0,0,0,1.35);
}
@media (max-width: 480px){
  .androidtv__title{
    top: 16px;
    font-size: 24px;
  }
}
.androidtv__image{
  position: relative;
  max-width: none;
  margin: 0;
}
.androidtv__image img{
  width: 100%;
  height: auto;
  display: block;
}

/* セクションの背景を画面いっぱいに広げる */
.pain,
.androidtv{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* madein */
.madein{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, #0b5e4d 0%, #17c763 100%);
  padding: 78px 16px 82px;
  color: #fff;
}

.madein__inner{
  max-width: 1200px;
  margin: 0 auto;
}

.madein__title{
  margin: 0 0 50px;
  text-align: center;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: .02em;
}

.madein__row{
  display: grid;
  gap: 18px;
  align-items: center;
  justify-items: center; /* SPは中央 */
}

/* PC：全体を中央寄せしつつ、左列基準で重ねる */
@media (min-width: 900px){
  .madein__row{
    grid-template-columns: 1fr;   /* ← これで縦並び */
    justify-items: center;        /* 中央寄せ */
    justify-content: center;
    gap: 18px; 
  }
  .madein__box{
    margin-left: 0;              /* ← かぶり解除（縦なら不要） */
    text-align: center;          /* 好みで left でもOK */
  }
}

/* メダル */
.madein__badge{
  width: 320px;
  position: relative;
  z-index: 2;
}
.madein__badge img{
  width: 100%;
  height: auto;
  display: block;
}

/* 右の角丸ボックス */
.madein__box{
  width: 100%;
  max-width: 600px;
  background: rgba(219, 247, 235, 0.9);
  color: #0b6d57;
  border-radius: 18px;
  padding: 26px 26px;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.madein__box p{ margin: 0; }
.madein__box p + p{ margin-top: 10px; }

/* SP（～899px） */
@media (max-width: 899px){
  .madein{ padding: 36px 16px 40px; }
  .madein__title{ font-size: 26px; margin-bottom: 18px; }
  .madein__badge{ width: 200px; }
  .madein__box{
    margin-left: 0;
    max-width: 520px;
    padding: 18px 16px;
    font-size: 18px;
    border-radius: 16px;
  }
}

/* さらに小さいSP（～480px）だけ微調整 */
@media (max-width: 480px){
  .madein{ padding: 34px 16px 38px; }
  .madein__badge{ width: 170px; }
}

.diff{
  padding: 56px 16px 60px;
  background: #fff;
}
.diff__inner{
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.diff__title{
  margin: 0 0 50px;
  font-weight: 900;
  font-size: 34px;
  line-height: 1.35;
}

.diffTable{
  display: flex;
  justify-content: center;
}
.diffTable__grid{
  width: 100%;
  max-width: 620px;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr; /* 左=項目 / 中=CLAIR / 右=他社 */
  gap: 10px;
}

.diffCell{
  background: #eef1ef;
  border-radius: 0;
  padding: 18px 14px;
  font-weight: 700;
  font-size: 20px;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diffCell--blank{
  background: transparent;
}
.diffCell--label{
  justify-content: flex-start;
  padding-left: 22px;
  color: #0b5e4d;
}
.diffCell--clair{
  background: rgba(33,197,139,.55);
  color: #0f172a;
  border: 1px solid #066D36;
}
.diffCell--other{
  background: #eef1ef;
  color: #0f172a;
}
.diffCell--head{
  font-size: 22px;
}
.diffCell--center{
  font-size: 34px; 
  line-height: 1;
  font-weight: 600;
}
.diffCell__logo{
  width: 140px; 
  height: auto;
  display: block;
}

.diff__cta{
  margin-top: 26px;
}

/* SP最適化（添付のSPに寄せる） */
@media (max-width: 480px){
  .diff__title{ font-size: 26px; }
  .diffTable__grid{
    max-width: 340px;
    gap: 8px;
  }
  .diffCell{
    padding: 14px 10px;
    font-size: 13px;
  }
  .diffCell--center{ font-size: 28px; }
  .diffCell__logo{ width: 110px; }
  .diffCell--label{ padding-left: 14px; }
}

/* ===== ④ two steps ===== */
.twosteps{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, #0b6d57 0%, #17c763 100%);
  color: #fff;
  padding: 56px 16px 54px;
  position: relative;
  overflow: hidden; /* 背景アニメ用にも便利 */
  padding: 86px 16px 84px;
}

.twosteps__inner{
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.twosteps__title{
  margin: 0 0 50px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: .02em;
}

.twosteps__cards{
  display: grid;
  gap: 22px;
  justify-content: center;
}

/* PCは横並び */
@media (min-width: 900px){
  .twosteps__cards{
    grid-template-columns: repeat(2, 320px);
    align-items: start;
  }
}

.stepCircle{
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  display: grid;
  place-items: center;
  padding: 22px 18px;
}

.stepCircle__head{
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 6px;
}

.stepCircle__icon img{
  width: 78px;
  height: auto;
  display: block;
}

.stepCircle__text{
  font-size: 26px;
  font-weight: 900;
  line-height: 1.25;
}

.twosteps__box{
  margin: 26px auto 0;
  max-width: 720px;
  background: #fff;
  color: #0f172a;
  border-radius: 10px;
  padding: 18px 18px;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.6;
  margin-top: 34px; 
}

.twosteps__box p{ margin: 0; }
.twosteps__box p + p{ margin-top: 6px; }

.twosteps__note{
  margin: 18px auto 0;
  max-width: 780px;
  font-size: 14px;
  line-height: 1.6;
  opacity: .95;
  color: #000;
  margin-top: 22px; 
}

/* SP微調整 */
@media (max-width: 480px){
  .twosteps{ padding: 40px 16px 40px; }
  .twosteps__title{ font-size: 26px; margin-bottom: 18px; }
  .stepCircle{ width: 240px; height: 240px; }
  .stepCircle__head{ font-size: 18px; }
  .stepCircle__icon img{ width: 62px; }
  .stepCircle__text{ font-size: 20px; }
  .twosteps__box{ font-size: 16px; }
}

/* ===== ⑤ QA ===== */
.qa{
  padding: 56px 16px 60px;
  background: #fff;
  color: #0f172a;
}
.qa__inner{
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.qa__title{
  margin: 0 0 50px;
  font-size: 34px;
  font-weight: 900;
}

.qaCard{
  max-width: 780px;
  margin: 0 auto 18px;
  background: rgba(219, 247, 235, 0.85);
  border-radius: 18px;
  padding: 20px 18px;
  text-align: left;
}

.qaRow{
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}
.qaRow + .qaRow{ margin-top: 12px; }

.qaBadge{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 500;
  font-size: 20px;
}
.qaBadge.is-answer{
  background: #fff;
  color: #16a34a;
  border: 2px solid #16a34a;
}

.qaText{
  font-size: 22px;
  font-weight: 900;
  line-height: 1.6;
}

.qaRow.is-answer .qaText{
  font-weight: 800;
  font-size: 20px;
  color: rgba(15,23,42,.85);
}

.qa__cta{
  margin-top: 26px;
}

/* SP */
@media (max-width: 480px){
  .qa__title{ font-size: 26px; }
  .qaCard{ padding: 16px 14px; border-radius: 16px; }
  .qaRow{ grid-template-columns: 46px 1fr; gap: 12px; }
  .qaBadge{ width: 40px; height: 40px; font-size: 18px; }
  .qaText{ font-size: 18px; }
  .qaRow.is-answer .qaText{ font-size: 16px; }
}

/* ===== ⑦ Contact ===== */
.contact{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: rgba(219, 247, 235, 0.85); 
  padding: 56px 16px 56px;
}

.contact__inner{
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid #26A871;
  border-radius: 10px;
  padding: 34px 26px 30px;
}

.contact__title{
  margin: 0 0 22px;
  text-align: center;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: .02em;
}

.contact__cards{
  display: grid;
  gap: 22px;
  justify-content: center;
}

@media (min-width: 900px){
  .contact__cards{
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    max-width: 860px;
    margin: 0 auto;
  }
}

.contactCard{
  background: rgba(219, 247, 235, 0.9);
  border-radius: 10px;
  padding: 22px 18px;
  text-align: center;
}

.contactCard__head{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
}

.contactCard__icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #0b6d57;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.contactCard__icon img{
  width: 20px;
  height: auto;  display: block;
}
.contactCard__main{
  font-size: 32px;
  font-weight: 900;
  color: #0b6d57;
  text-decoration: none;
}

.contactCard__sub{
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 800;
  color: rgba(15,23,42,.8);
}
.contactCard__sub p{ margin: 0; }
.contactCard__sub p + p{ margin-top: 4px; }

/* SP */
@media (max-width: 480px){
  .contact{ padding: 32px 12px 32px; }
  .contact__inner{ padding: 18px 14px 18px; }
  .contact__title{ font-size: 24px; margin-bottom: 14px; }
  .contactCard{ padding: 16px 12px; }
  .contactCard__main{ font-size: 22px; }
  .contactCard__icon{ width: 38px; height: 38px; }
}

/* ===== ⑧ Footer ===== */
.siteFooter{
  padding: 46px 16px 28px;
  background: #fff;
  color: #0f172a;
}
.siteFooter__inner{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.siteFooter__logo{
  height: 34px;
  width: auto;
  display: inline-block;
}

.siteFooter__nav{
  margin: 22px auto 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  justify-content: center;
  font-weight: 800;
}

.siteFooter__link{
  color: rgba(15,23,42,.85);
  text-decoration: none;
  font-size: 14px;
}
.siteFooter__link:hover{ text-decoration: underline; }

.siteFooter__copy{
  display:block;
  margin-top: 10px;
  font-size: 11px;
  color: rgba(15,23,42,.55);
}

/* SP：縦並び寄り */
@media (max-width: 480px){
  .siteFooter{ padding: 34px 16px 22px; }
  .siteFooter__logo{ height: 30px; }
  .siteFooter__nav{ gap: 10px 16px; }
  .siteFooter__link{ font-size: 13px; }
}


/*background アニメーション*/
/* ===== triangle background (scoped) ===== */
.hero, .pain, .twosteps{
  position: relative;
  overflow: hidden; /* はみ出し防止 */
}

/* コンテンツは背景より手前 */
.hero__inner, .pain__inner, .twosteps__inner{
  position: relative;
  z-index: 1;
}

/* 背景レイヤー */
.triBg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.triShapes{
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

/* 図形の箱（移動だけ） */
.triShapes > li.triShape{
  position:absolute;
  width:var(--size,140px);
  height:var(--size,140px);
  left:var(--x,50%);
  top:var(--y,110%);
  transform:translate(-50%,0) rotate(0deg);
  animation: floatUp var(--dur,26s) linear infinite;
  animation-delay: var(--delay,0s);

  border-radius:0 !important;
  background:transparent !important;
}

/* 色/形は before に描画（薄さはここで固定） */
.triShapes > li.triShape::before{
  content:"";
  position:absolute;
  inset:0;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  opacity: var(--a, 0.18);
}

/* fill / line / dot（ZIPのまま） */
.triShapes > li.triShape.fill::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%2348C590' d='M50 10 Q56 10 60 16 L83 57 Q86 62 82 67 Q78 72 72 72 L28 72 Q22 72 18 67 Q14 62 17 57 L40 16 Q44 10 50 10 Z'/%3E%3C/svg%3E");
  filter: blur(0.35px);
}
.triShapes > li.triShape.line::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 Q56 10 60 16 L83 57 Q86 62 82 67 Q78 72 72 72 L28 72 Q22 72 18 67 Q14 62 17 57 L40 16 Q44 10 50 10 Z' fill='none' stroke='%2348C590' stroke-width='1.0' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.triShapes > li.triShape.dot::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 Q56 10 60 16 L83 57 Q86 62 82 67 Q78 72 72 72 L28 72 Q22 72 18 67 Q14 62 17 57 L40 16 Q44 10 50 10 Z' fill='none' stroke='%2348C590' stroke-width='1.0' stroke-linejoin='round' stroke-dasharray='2.2 3.2'/%3E%3C/svg%3E");
}

@keyframes floatUp{
  0%{ transform: translate(-50%, 0) rotate(0deg); }
  100%{ transform: translate(-50%, -140vh) rotate(720deg); }
}

/* 12個分（ZIPの10個 + 2個追加） */
.triShapes .triShape:nth-child(1){  --x:18%; --y:120%; --size:160px; --dur:40s; --delay:-8s;  --a:.10; }
.triShapes .triShape:nth-child(2){  --x:70%; --y:115%; --size:120px; --dur:28s; --delay:-2s;  --a:.18; }
.triShapes .triShape:nth-child(3){  --x:45%; --y:130%; --size:90px;  --dur:22s; --delay:-14s; --a:.06; }
.triShapes .triShape:nth-child(4){  --x:88%; --y:125%; --size:220px; --dur:46s; --delay:-20s; --a:.08; }
.triShapes .triShape:nth-child(5){  --x:28%; --y:135%; --size:140px; --dur:34s; --delay:-6s;  --a:.22; }
.triShapes .triShape:nth-child(6){  --x:60%; --y:140%; --size:110px; --dur:26s; --delay:-18s; --a:.14; }
.triShapes .triShape:nth-child(7){  --x:8%;  --y:128%; --size:120px; --dur:30s; --delay:-11s; --a:.12; }
.triShapes .triShape:nth-child(8){  --x:52%; --y:118%; --size:260px; --dur:55s; --delay:-25s; --a:.05; }
.triShapes .triShape:nth-child(9){  --x:78%; --y:138%; --size:100px; --dur:24s; --delay:-9s;  --a:.20; }
.triShapes .triShape:nth-child(10){ --x:36%; --y:122%; --size:160px; --dur:38s; --delay:-16s; --a:.10; }
.triShapes .triShape:nth-child(11){ --x:92%; --y:132%; --size:140px; --dur:44s; --delay:-12s; --a:.07; }
.triShapes .triShape:nth-child(12){ --x:12%; --y:142%; --size:200px; --dur:52s; --delay:-22s; --a:.06; }
.triShapes .triShape:nth-child(13){ --x:22%; --y:140%; --size:110px; --dur:30s; --delay:-7s;  --a:.12; }
.triShapes .triShape:nth-child(14){ --x:66%; --y:125%; --size:180px; --dur:48s; --delay:-19s; --a:.06; }
.triShapes .triShape:nth-child(15){ --x:40%; --y:135%; --size:90px;  --dur:24s; --delay:-13s; --a:.18; }
.triShapes .triShape:nth-child(16){ --x:84%; --y:145%; --size:130px; --dur:36s; --delay:-9s;  --a:.10; }
.triShapes .triShape:nth-child(17){ --x:10%; --y:120%; --size:240px; --dur:56s; --delay:-26s; --a:.05; }
.triShapes .triShape:nth-child(18){ --x:54%; --y:150%; --size:140px; --dur:40s; --delay:-15s; --a:.08; }
.triShapes .triShape:nth-child(19){ --x:30%; --y:145%; --size:90px;  --dur:22s; --delay:-4s;  --a:.16; }
.triShapes .triShape:nth-child(20){ --x:74%; --y:150%; --size:120px; --dur:34s; --delay:-10s; --a:.10; }
.triShapes .triShape:nth-child(21){ --x:56%; --y:132%; --size:200px; --dur:58s; --delay:-28s; --a:.05; }
.triShapes .triShape:nth-child(22){ --x:6%;  --y:140%; --size:110px; --dur:26s; --delay:-15s; --a:.12; }
.triShapes .triShape:nth-child(23){ --x:90%; --y:135%; --size:80px;  --dur:20s; --delay:-7s;  --a:.20; }
.triShapes .triShape:nth-child(24){ --x:44%; --y:148%; --size:140px; --dur:40s; --delay:-19s; --a:.08; }
.triShapes .triShape:nth-child(25){ --x:16%; --y:126%; --size:260px; --dur:64s; --delay:-32s; --a:.04; }
.triShapes .triShape:nth-child(26){ --x:62%; --y:155%; --size:100px; --dur:28s; --delay:-12s; --a:.14; }
/* 小さな粒（賑やか用） */
.triShapes > li.triShape.spark::before{
  background-image:none;
  background: none;
  opacity: var(--a, .20);
}

.triShapes > li.triShape.spark{
  width: var(--size, 10px);
  height: var(--size, 10px);
}

.triShapes > li.triShape.spark::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 999px;
  background: rgba(255,255,255,.55); /* 白寄りの粒 */
}


@media (prefers-reduced-motion: reduce){
  .triShapes > li.triShape{ animation: none; }
}













  /* ===== common page header ===== */
.pageHeader{
    padding: 14px 16px 0;
  }
  .pageHeader__inner{
    display:flex;
    justify-content:flex-start;
  }
  .pageHeader__back{
    font-weight: 900;
    font-size: 16px;
    color: #0f172a;
    opacity: .85;
  }
  .pageHeader__back:hover{ opacity: 1; }
  
  /* ===== news list ===== */
  .newsList{
    padding: 14px 16px 34px;
  }
  .newsList__title{
    margin: 0 0 16px;
    text-align:center;
    font-weight:900;
    font-size: 28px; /* 大きめ */
    letter-spacing: .02em;
    position: relative;
  }
  .newsList__title::after{
    content:"";
    display:block;
    width: 140px;
    height: 3px;
    margin: 10px auto 0;
    background: #26A871;
    border-radius: 999px;
  }
  
  .newsList__items{
    margin-top: 16px;
    border-top: 1px solid rgba(0,0,0,.08);
  }
 
  
  /* pager */
  .newsList__pager{
    display:flex;
    justify-content:space-between;
    gap: 10px;
    margin-top: 18px;
  }
  
  .newsList__cta{
    display:flex;
    justify-content:center;
    margin-top: 18px;
  }
  
  /* ===== news detail ===== */
  .newsDetail{
    padding: 14px 16px 34px;
  }
  .newsDetail__title{
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.35;
  }
  .newsDetail__meta{
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid #26A871;
  }
  .newsDetail__date{
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
    opacity: .75;
  }
  
  .newsDetail__body{
    font-size: 18px;
    line-height: 1.9;
  }
  .newsDetail__body h2{
    margin: 22px 0 10px;
    font-size: 20px;
    font-weight: 900;
  }
  .newsDetail__body ul{
    padding-left: 1.2em;
  }
  .newsDetail__actions{
    display:grid;
    gap: 12px;
    margin-top: 24px;
  }

  /* ===== news list (スマホデザイン寄せ：上書き) ===== */
.newsList{
  padding: 22px 16px 40px;
}
.newsList__inner{
  max-width: 720px;
  margin: 0 auto;
}

/* 一覧の区切り線デザイン → カード型にするので無効化 */
.newsList__items{
  border-top: none;
  display: block;
  margin-top: 18px;
  gap: 12px;
}


/* ===== back link：緑寄せ（任意） ===== */
.pageHeader__back{
  color: #0b6d57;
  opacity: 1;
  text-decoration: none;
}
/* ===== news list (newsItem版：スマホデザイン寄せ) ===== */
.newsList{
  padding: 22px 16px 40px;
}
.newsList__inner{
  max-width: 720px;
  margin: 0 auto;
}

/* 1件 */
.newsItem{
  display: grid;
  align-items: start;
  color: #0f172a;
  text-decoration: none;
  background: transparent;
  padding: 18px 6px;
  border-bottom: 1px solid rgba(15,23,42,.12);
  grid-template-columns: 24px 1fr;
  gap: 14px;
}

.newsItem__arrow{
  width: 0;
  height: 0;
  margin-top: 7px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #26A871;
}

.newsItem__date{
  color: #26A871;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
}

.newsItem__title{
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.65;
}

.newsItem:hover{
  background: rgba(11,109,87,.04);
}

@media (max-width: 480px){
  .newsItem{ padding: 18px 4px; }
  .newsItem__date{ font-size: 18px; }
  .newsItem__title{ font-size: 17px; }
}

/* ===== pager：四角い 1 2 3 > ===== */
.newsList__pager{
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
}
.newsList__pager .page-numbers{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0,0,0,.25);
  border-radius: 4px;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
}
.newsList__pager .page-numbers.current{
  background: #0f172a;
  border-color: #0f172a;
  color: #fff;
}

/* ===== クレア利用規約 ===== */
.legal{
  padding: 28px 16px 44px;
}
.legal__inner{
  max-width: 820px;
  margin: 0 auto;
}
.legal__title{
  font-size: 28px;
  font-weight: 900;
  margin: 10px 0 18px;
  text-align: center;
}
.legal__title::after {
  content: "";
    display: block;
    width: 220px;
    height: 3px;
    margin: 10px auto 0;
    background: #26A871;
    border-radius: 999px;
}
.legal__body{
  font-size: 14px;
  line-height: 1.9;
  color: rgba(15,23,42,.88);
}
.legal__body h2{
  font-size: 18px;
  font-weight: 900;
  margin: 22px 0 10px;
}
.legal__body ul{
  padding-left: 1.2em;
}