:root{
  --bg:#f7fbff;
  --white:#ffffff;
  --text:#0f172a;
  --muted:#5b667a;
  --line:#e6eef7;

  --blue:#1697ff;
  --blue2:#0a74c9;
  --blueSoft:#e9f5ff;

  --black:#0b0f19;
  --shadow: 0 14px 40px rgba(9, 20, 40, .08);

  --radius: 22px;
  --radius2: 28px;

  --sidebarW: 280px;
  --container: 1080px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:"Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
  color:var(--text);

}




















/* =========================
   ヘッダー
   ========================= */
.header {
  position: fixed;
  top: 0;
  left: 0; /* 0に変更 */
  right: 0;
  width: 100%; /* 画面いっぱい */
  height: 95px;
 background: transparent; /* 透明に変更 */
  backdrop-filter: blur(0); /* ぼかし効果も削除 */
  border-bottom: none; /* ボーダーも削除 */

  z-index: 100;
  padding: 0 24px; /* 左右の余白は小さめに */
}

.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴ */
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 40px;
  color: var(--text);
  text-decoration: none;
  padding-left: 20px;
}

.brandmark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue);
  position: relative;
}

.brandmark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: white;
}

/* PCナビゲーション */
.header__nav {
  display: flex;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__link {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--blue);
}

.nav__link.is-active {
  color: var(--blue);
  font-weight: 900;
}

.nav__link.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

/* お問い合わせボタン（ナビ内） */
.nav__link.btn--primary {
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
}

.btn--small {
  padding: 10px 20px !important;
  font-size: 14px !important;
}

/* ハンバーガーメニューボタン */
.menuBtn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.menuBtn span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* モバイルサイドバー用のバックドロップ */
.backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

/* モバイルメニュー（サイドバー） */
.sidebar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebarW);
  background: var(--white);
  border-right: 1px solid var(--line);
  z-index: 99;
  padding: 20px;
  overflow-y: auto;
}

.sidebar__nav {
  margin-top: 80px;
}

.sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar__item {
  margin-bottom: 16px;
}

.sidebar__link {
  display: block;
  padding: 12px 16px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  transition: background 0.2s;
}

.sidebar__link:hover {
  background: var(--blueSoft);
}

.sidebar__link.btn--primary {
  color: white;
  text-align: center;
  margin-top: 20px;
}

/* レスポンシブデザイン */
@media (max-width: 920px) {
  .header {
    left: 0;
    padding: 0 24px;
  }
  
  .header__nav {
    display: none;
  }
  
  .menuBtn {
    display: flex;
  }
  
  .backdrop {
    display: block;
  }
  
  .sidebar {
    display: block;
  }
  
  /* メニューオープン時のハンバーガーアニメーション */
  body.is-menuOpen .menuBtn span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  
  body.is-menuOpen .menuBtn span:nth-child(2) {
    opacity: 0;
  }
  
  body.is-menuOpen .menuBtn span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
}

@media (max-width: 520px) {
  .header {
    padding: 0 16px;
    height: 64px;
  }
  
  .header__logo {
    font-size: 18px;
  }
  
  .brandmark {
    width: 32px;
    height: 32px;
  }
}












/* WORRIES (before HERO) */
.worries{
  padding-top:48px;
  padding-bottom:48px;

}
.worries__inner{ text-align:center; }
.worries__stage{
  position:relative;
  display:grid;
  place-items:center;
  padding-top:110px; /* space for bubbles */
}
.worries__imgWrap{
  width:min(100px, 92vw);
  border-radius:var(--radius2);
  overflow:hidden;
 
}
.worries__imgWrap img{ width:100%; height:auto; display:block; }
.worries__scroller{
  margin-top:24px;
  overflow-x:auto;
  padding-bottom:8px;
  scrollbar-width:none;
}
.worries__scroller-title{
  margin:0 16px 20px;
  font-size:45px;
  font-weight:800;
  color:var(--text);
  text-align:left;
}
.worries__scroller::-webkit-scrollbar{
  display:none;
}
.worries__scroller-track{
  display:flex;
  gap:16px;
  padding:8px 16px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}
.worries__item{
  flex:0 0 220px;
  background:var(--white);
  padding:0;
  text-align:center;
  scroll-snap-align:start;
}
.worries__item img{
  width:100%;
  height:185px;
  object-fit:cover;
  border-radius:calc(var(--radius2) - 2px) calc(var(--radius2) - 2px) 0 0;
  display:block;
}
.worries__item-text{
  margin:0;
  padding:10px 12px 12px;
}
.worries__item-name{
  margin:0;
  font-size:20px;
  font-weight:700;
  color:var(--text);
}
.worries__item-price{
  margin:4px 0 0;
  font-size:20px;
  font-weight:800;
}
.menuSwitch{
  padding:46px 16px 0;
}
.menuSwitch__list{
  display:flex;
  justify-content:center;
  gap:12px;
  list-style:none;
  margin:0;
  padding:0;
}
.menuSection{
  display:none;
}
.menuSection.is-active{
  display:block;
}
.cleaningMenu{
  padding-top:24px;
  padding-bottom:24px;
}
.cleaningMenu__inner{
  max-width:980px;
  margin:0 auto;
  padding:0 16px;
}
.cleaningMenu__title{
  margin:0 0 44px;
  font-size:44px;
  font-weight:800;
  text-align:left;
}
.cleaningMenu__table{
  background:var(--white);
  border:3px solid var(--line);
 
  padding:12px 16px;
  columns:2;
  column-gap:36px;
  column-rule:1px solid rgba(15, 23, 42, .18);
}
.cleaningMenu__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid rgba(15, 23, 42, .16);
  break-inside:avoid;
}
.cleaningMenu__row:last-child{
  border-bottom:none;
}
.cleaningMenu__item{
  font-weight:700;
  color:var(--text);
}
.cleaningMenu__price{
  font-weight:900;
  white-space:nowrap;
  font-size: 20px;
}
.cleaningMenu__row{
  gap:12px;
}
@media (max-width: 520px){
  .cleaningMenu__inner{
    padding:0 12px;
  }
  .cleaningMenu__title{
    font-size:18px;
  }
  .cleaningMenu__table{
    padding:10px 12px;
    columns:1;
    column-rule:none;
  }
  .cleaningMenu__row{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
    padding:10px 0;
  }
  .cleaningMenu__item{
    font-size:14px;
  }
  .cleaningMenu__price{
    font-size:14px;
  }
}
.cleaningMenu__note{
  margin:10px 0 0;
  color:var(--muted);
  font-weight:700;
  line-height:1.7;
}
.dailyMenu{
  padding-top:24px;
  padding-bottom:48px;
}
.dailyMenu__inner{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
}
.dailyMenu__title{
  margin:0 0 46px;
  font-size:44px;
  font-weight:800;
  text-align:left;
}
.dailyMenu__grid{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
}
.dailyMenu__card{
  background:var(--white);
  
  padding:16px 18px;

}
.dailyMenu__image{
  margin:-16px -18px 12px;
  overflow:hidden;
 
}
.dailyMenu__image img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}
.dailyMenu__cardTitle{
  margin:0 0 10px;
  font-size:16px;
  font-weight:800;
  color:var(--text);
}
.dailyMenu__list{
  margin:0;
  padding-left:18px;
  color:var(--text);
  line-height:1.7;
  font-weight:700;
}
.dailyMenu__text{
  margin:16px 0 0;
  text-align:center;
  color:var(--muted);
  font-weight:700;
}
.flow{
  padding-top:24px;
  padding-bottom:48px;
}
.flow__inner{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
}
.flow__steps{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
}
.flow__step{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius2);
  padding:18px;
  box-shadow:0 12px 24px rgba(9,20,40,.08);
}
.flow__badge{
  width:44px;
  height:44px;
  border-radius:999px;
  background:var(--blueSoft);
  color:var(--blue2);
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
}
.flow__title{
  margin:0 0 8px;
  font-size:16px;
  font-weight:900;
  color:var(--text);
}
.flow__text{
  margin:0;
  line-height:1.8;
  color:var(--text);
  font-weight:700;
}
.dailyMenu__note{
  margin:10px 0 0;
  color:var(--muted);
  font-weight:700;
  line-height:1.7;
}

.speech{
  position:absolute;
  top:0;
  max-width:260px;
  padding:12px 14px;
  border-radius:18px;
  background:rgba(255,255,255,.92);
  border:1px solid var(--line);
  box-shadow: 0 18px 44px rgba(9,20,40,.10);
  font-weight:900;
  color:var(--text);
  line-height:1.45;
  z-index:2;
}
.speech::after{
  content:"";
  position:absolute;
  bottom:-9px;
  width:18px;
  height:18px;
  background:rgba(255,255,255,.92);
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  transform: rotate(45deg);
  border-radius:2px;
}

.worries__question-text {
  font-size: clamp(28px, 6vw, 64px);
  display: inline-block;      /* 線の長さを文字幅に合わせる */
  padding-bottom: 10px;       /* 文字と線の間隔 */
  border-bottom: 8px double var(--blue2); /* 2重線 */
}




.preText {
  padding: 8px 16px 24px;
}

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

.preText__title {
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.4;
  margin: 0 0 12px;
  font-weight: 700;
}

.preText__desc {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.8;
  margin: 0;
  opacity: 0.9;
}
























/* bubble positions */
.speech--l{ left:50%; transform: translate(-155%, -12%); }
.speech--c{ left:50%; transform: translate(-50%, -78%); }
.speech--r{ left:50%; transform: translate(55%, -12%); }

.speech--l::after{ left:34px; }
.speech--c::after{ left:50%; transform: translateX(-50%) rotate(45deg); }
.speech--r::after{ right:34px; left:auto; }

.worries__lead{
  margin:16px auto 0;
  max-width: 740px;
  color:var(--muted);
  font-weight:700;
  line-height:1.9;
}

/* Responsive: stack bubbles */
@media (max-width: 920px){
  .worries__stage{
    padding-top:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
  }
  .speech{
    position:relative;
    top:auto;
    left:auto;
    transform:none;
    width:min(520px, 92vw);
    text-align:left;
  }
  .speech::after{
    left:50%;
    right:auto;
    transform: translateX(-50%) rotate(45deg);
  }
}






































/* PRE HERO (独自クラスで干渉防止) */
.preHero{
  padding-top:128px;

}

.preHero__grid {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center; /* 中央揃え */
  gap: 26px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}





.preHero__body {
  width: 100%;
  text-align: center; /* テキストも中央揃え */
}

.preHero__media {
  border-radius: var(--radius2);
  overflow: hidden;
  max-width: 300px;
  width: 100%; /* 親要素の幅に合わせる */
}

.preHero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
 
}

.preHero__body{
  position:relative;
}

.preHero__badge{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  background:linear-gradient(135deg, rgba(22,151,255,.18), rgba(22,151,255,.06));
  border:1px solid rgba(22,151,255,.22);
  color:var(--blue2);
}

.preHero__title{
  margin:12px 0 60px;
  font-size:60px;
  line-height:1.25;
  letter-spacing:.02em;
  font-weight:900;
  text-align: center;
}

.preHero__text{
  margin:0;
  color:var(--muted);
  line-height:1.9;
  font-weight:700;
}

.preHero__actions{
  margin-top:16px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

@media (max-width: 920px){
  .preHero__grid{ grid-template-columns:1fr; }
  .preHero__media img{ height:260px; }
}

/* PRE HERO：大きな短文（右からスライド） */
.preHero__punch{
 
  margin: 10px 0 10px;
  font-size: 45px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .02em;

  opacity: 0;
  transform: translateX(52px);
  transition: 1.95s cubic-bezier(.2,.8,.2,1);
  transition-delay: .6s; /* ←開始を遅らせる（例：0.8秒） */
  will-change: transform, opacity;
}

.preHero__punch.is-in{
  opacity: 1;
  transform: translateX(0);
}

/* 大きい文字の下の文章 */
.preHero__desc{
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 700;
  padding-bottom: 80px;
}


/* PRE HERO：説明文も右からスライド（JSで .is-in が付く） */
.preHero__desc.js-preHeroSlide{
  opacity: 0;
  transform: translateX(52px);
  transition: .75s cubic-bezier(.2,.8,.2,1);
  transition-delay: .4s; /* パンチと同じタイミング */
  will-change: transform, opacity;
}
.preHero__desc.js-preHeroSlide.is-in{
  opacity: 1;
  transform: translateX(0);
}


@media (max-width: 520px){
  .preHero{
    padding-top:160px;
  }
  .preHero__punch{ font-size: 32px; }
  .preHero__title{
  margin:12px 0 60px;
  font-size:30px;
  line-height:1.25;
  letter-spacing:.02em;
  font-weight:900;
  text-align: center;
}

.preHero__desc{
  font-size: 0.9rem;
}
}










/* PRE HEROタイトルのハイライト部分 */
.preHero__highlight {
  display: inline-block;
  position: relative;
  margin: 0 8px;
}

.preHero__highlight .blue {
  font-size: 2em; /* 元の文字より大きく */
  font-weight: 950;
  color: #0a74c9;
  position: relative;
  z-index: 2;
}




/* モバイル対応 */
@media (max-width: 920px) {
  .preHero__highlight .blue {
    font-size: 1.2em;
  }
  
  .preHero__highlight {
    margin: 0 4px;
  }
}










/* HERO */
.hero{
  padding-top:64px;
  padding-left: 80px;
  padding-right: 40px;
}
.hero__grid{
  display:grid;
  grid-template-columns: .8fr 1.2fr;
  gap:34px;
  align-items:center;
}
.photoCard{
  border-radius:var(--radius2);
  overflow:hidden;
 
}
.hero__visual .photoCard{
  margin-left:auto;
}
.photoCard img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.photoCard--large{
  transform-origin: center;
}

.secBadge{
  position:relative;
  display:inline-grid;
  grid-template-columns:auto auto;
  align-items:center;
  gap:10px;
  padding:10px 14px;

  overflow:hidden;
}
.secBadge__num{
  font-weight:900;
  font-size:65px;
  color:var(--blue);
  letter-spacing:.02em;
}
.secBadge__label{
  font-weight:900;
  color:var(--blue2);
 
  font-size: 1.5rem;
}







.secBadge--small .secBadge__num{ font-size:36px; }

.hero__title{
  margin:14px 0 10px;
  font-size:clamp(24px, 3.4vw, 34px);
  line-height:1.15;
  letter-spacing:.02em;
}
.hero__lead{
  margin:0;
  color:var(--muted);
  font-size:clamp(14px, 1.6vw, 16px);
  line-height:1.9;
}
.hero__actions{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:14px 18px;
  text-decoration:none;
  font-weight:900;
  border:1px solid transparent;
  cursor:pointer;
  transition:.2s;
  user-select:none;
}
.btn--primary{
  background:var(--black);
  color:#fff;
  
}
.btn--primary:hover{ transform: translateY(-1px); box-shadow: 0 16px 30px rgba(0,0,0,.18); }
.btn--ghost{
  background:rgba(255,255,255,.8);
  border-color:var(--line);
  color:var(--text);
}
.btn--ghost:hover{ background:var(--blueSoft); border-color: rgba(22,151,255,.25); }
.btn--full{ width:40%; }

.hero__points{
  margin:18px 0 0;
  padding:0;
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
  color:var(--muted);
  font-weight:700;
}


/* Contact form submit button container */
.form > .btn--primary {
  display: block;
  margin: 20px auto;
  width: fit-content;
}


/* Hero copy background circle */
.hero__copy {
  position: relative;
  z-index: 1;
  padding: 24px 0;
}

.hero__copy::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(22, 151, 255, 0.22), rgba(22, 151, 255, 0.04));
  border: 1px solid rgba(22, 151, 255, 0.15);
  z-index: -1;
  opacity: 0.7;
}

/* 最初のヒーローセクションの丸の位置（左側） */
.hero:nth-of-type(1) .hero__copy::before {
  top: 10%;
  right: -10px;
}

/* 2番目のヒーローセクションの丸の位置（右側） */
.hero:nth-of-type(2) .hero__copy::before {
  top: 10%;
  right: -30px;
}

/* 3番目のヒーローセクションの丸の位置（左側） */
.hero:nth-of-type(3) .hero__copy::before {
  top: 10%;
   right: -10px;
}

/* 4番目のヒーローセクションの丸の位置（右側） */
.hero:nth-of-type(4) .hero__copy::before {
  top: 10%;
  right: -30px;
}








/* Section head */
.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:20px;
}
.sectionHead__left{
  display:flex;
  align-items:flex-end;
  gap:16px;
}
.sectionHead__num{
  font-weight:900;
  font-size:clamp(36px, 7vw, 60px);
  color:var(--blue);
  line-height:1;
}
.sectionHead__title{
  font-weight:900;
  font-size:clamp(18px, 2.4vw, 26px);
  letter-spacing:.02em;
}
.sectionHead__desc{
  margin:0;
  max-width:460px;
  color:var(--muted);
  line-height:1.8;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
  padding-bottom: 16px;
}
.card{
  background:rgba(255,255,255,.86);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow: 0 16px 40px rgba(9, 20, 40, .06);
  padding:18px 16px 16px;
  overflow:hidden;
  position:relative;
}
.card::after{
  content:"";
  position:absolute;
  inset:-30px -30px auto auto;
  width:170px;
  height:170px;
  background:
    radial-gradient(circle, rgba(22,151,255,.32) 2px, transparent 3px) 0 0 / 12px 12px;
  opacity:.45;
  transform:rotate(12deg);
}
.card__icon{
  width:46px; height:46px;
  border-radius:18px;
  background:linear-gradient(135deg, rgba(22,151,255,.18), rgba(22,151,255,.06));
  border:1px solid rgba(22,151,255,.22);
  display:grid;
  place-items:center;
  position:relative;
  z-index:1;
}
.card__icon svg{
  width:28px; height:28px;
  stroke:var(--blue2);
  stroke-width:2.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.card__title{
  margin:10px 0 6px;
  font-size:28px;
  font-weight:900;
  position:relative;
  z-index:1;
}
.card__text{
  margin:0 0 10px;
  color:var(--muted);
  line-height:1.75;
  font-size:13px;
  position:relative;
  z-index:1;
}
.card__list{
  margin:0;
  padding-left:18px;
  color:var(--text);
  line-height:1.7;
  font-size:13px;
  position:relative;
  z-index:1;
}

.noteBox{
  margin-top:16px;
  border-radius:var(--radius);
  border:1px solid rgba(22,151,255,.20);
  background:linear-gradient(180deg, rgba(22,151,255,.12), rgba(255,255,255,.72));
  padding:16px;
}
.noteBox__title{ font-weight:900; }
.noteBox__text{ margin:6px 0 0; color:var(--muted); line-height:1.8; }

/* Split */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:center;
}
.pillTitle{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.86);
  border:1px solid var(--line);
  font-weight:900;
}
.pillTitle__dot{
  width:10px; height:10px; border-radius:50%;
  background:var(--blue);
  box-shadow: 0 10px 18px rgba(22,151,255,.25);
}
.reasons{
  margin-top:12px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.reason{
  display:flex;
  gap:12px;
  padding:14px;
  border-radius:20px;
  background:rgba(255,255,255,.86);
  border:1px solid var(--line);
}
.reason__num{
  width:40px; height:40px;
  border-radius:16px;
  display:grid;
  place-items:center;
  font-weight:900;
  color:var(--blue2);
  background:linear-gradient(135deg, rgba(22,151,255,.18), rgba(22,151,255,.06));
  border:1px solid rgba(22,151,255,.22);
}
.reason__title{ font-weight:900; }
.reason__text{ margin:6px 0 0; color:var(--muted); line-height:1.8; }

.roundedMedia{
  position:relative;
  border-radius: 34px;
  overflow:hidden;
 
}
.roundedMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.roundedMedia__badge{
  position:absolute;
  left:14px;
  bottom:14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  border:1px solid var(--line);
  font-weight:900;
}
.badgeDot{
  width:10px; height:10px;
  border-radius:50%;
  background:#ffd86b;
}

/* Steps */
.steps{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
}
.step{
  background:rgba(255,255,255,.86);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: 0 14px 34px rgba(9, 20, 40, .06);
}
.step__head{
  display:flex;
  align-items:center;
  gap:10px;
}
.step__num{
  width:38px; height:38px;
  border-radius:16px;
  display:grid;
  place-items:center;
  font-weight:900;
  color:#fff;
  background:var(--blue2);
}
.step__title{ margin:0; font-size:16px; font-weight:900; }
.step__text{ margin:10px 0 0; color:var(--muted); line-height:1.8; }

/* Price */
.priceGrid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}
.priceCard{
  background:rgba(255,255,255,.86);
  border:1px solid var(--line);
  border-radius:var(--radius2);
  padding:28px 26px 26px;
  text-align: center;
}
.priceCard__tag{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  background:linear-gradient(135deg, rgba(22,151,255,.18), rgba(22,151,255,.06));
  border:1px solid rgba(22,151,255,.22);
  color:var(--blue2);
}
.priceCard__title{
  margin:10px 0 18px;
  font-weight:900;
  font-size: 1rem;
}
.priceCard__price{
  font-weight:900;
  font-size:2.5rem;
  margin:0 0 25px;
  letter-spacing:.01em;
}
.priceCard__list{
  margin:0 0 14px;
  padding-left:18px;
  color:var(--muted);
  line-height:1.8;
}
.priceCard--featured{
  border-color: rgba(22,151,255,.38);
  box-shadow: 0 24px 60px rgba(22,151,255,.14);
  transform: translateY(-4px);
}
.tiny{
  margin-top:12px;
  color:var(--muted);
  font-size:12px;
  line-height:1.8;
}

/* FAQ */
.faq{
  display:grid;
  gap:12px;
}
.faqItem{
  background:rgba(255,255,255,.86);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:44px 24px;
}
.faqItem summary{
  cursor:pointer;
  font-weight:900;
  font-size: 0.9rem;
}
.faqItem p{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.8;
}


.faqMore{
  margin-top:18px;
  display:flex;
  justify-content:center;
}

/* Contact */
.contact{
  padding-bottom:96px;
}
.contact__inner{
  max-width:var(--container);
  margin:0 auto;
  display:grid;
 
  gap:16px;
  align-items:start;
}
.contact__title{
  margin:12px 0 8px;
  font-size:30px;
  font-weight:900;
}
.contact__text{
  margin:0;
  color:var(--muted);
  line-height:1.9;
}
.contact__tel{
  margin-top:14px;
  padding:14px;
}
.contact__telLabel{ color:var(--muted); font-size:12px; font-weight:700; }
.contact__telNum{
  display:block;
  margin-top:6px;
  font-size:32px;
  font-weight:900;
  color:var(--text);
  text-decoration:none;
}
.contact__telHours{ color:var(--muted); font-size:12px; margin-top:2px; }

.form{
  background:rgba(255,255,255,.90);
  border:1px solid var(--line);
 
  padding:18px 16px;
}
.form__row{ display:flex; flex-direction:column; gap:8px; margin-bottom:12px; }
.form__label{ font-weight:900; font-size:13px; }
.form__input, .form__textarea{
  width:100%;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  padding:12px 12px;
  font-size:14px;
  outline:none;
}
.form__input:focus, .form__textarea:focus{
  border-color: rgba(22,151,255,.55);
  box-shadow: 0 0 0 4px rgba(22,151,255,.14);
}
.form__note{
  margin:10px 0 0;
  color:var(--muted);
  font-size:12px;
  line-height:1.7;
}
.form__success{
  margin:10px 0 0;
  font-weight:900;
  color:var(--blue2);
}

/* Footer */
.footer{
  padding:18px 22px 26px;
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.7);
}

.footer__inner{
  max-width:var(--container);
  margin: 0 auto; /* ← これを追加 */
  display: flex;   /* ← フレックスボックスを追加 */
  flex-direction: column; /* ← 縦並び */
  align-items: center;    /* ← 子要素を中央揃え */
  gap:12px;
}

/* 既存のスタイルはそのまま残します */
.footer__brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
}

.footer__meta{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:12px;
}
.footer__link{ color:var(--blue2); text-decoration:none; font-weight:900; }
.dot{ opacity:.6; }

/* Floating CTA */
.floatCTA{
  position:fixed;
  right:-2px;
  bottom:-2px;
  width:220px;
  height:220px;
  border-top-left-radius: 999px;
  background: #ffd86b;
  color:#0b0f19;
  text-decoration:none;
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
  border:1px solid rgba(0,0,0,.08);
  overflow:hidden;
  z-index:70;
  
}
.floatCTA__vert{
  position:absolute;
  right:14px;
  top:20px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight:900;
  letter-spacing:.08em;
  font-size:12px;
  display:flex;
  gap:10px;
  opacity:.92;
}
.floatCTA__vert .em{ color:var(--blue2); }
.floatCTA__main{
  position:absolute;
  left:22px;
  bottom:50px;
  right:1px;
  text-align: center;
}
.floatCTA__label{ font-weight:900; font-size:12px; opacity:.86; }
.floatCTA__num{ font-weight:900; font-size:22px; letter-spacing:.01em; }
.floatCTA__hours{ font-size:12px; font-weight:700; opacity:.86; margin-top:2px; }

/* Reveal animation */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: .65s ease;
}
.reveal.is-in{
  opacity:1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px){
  .cards{ grid-template-columns:repeat(2, 1fr); }
  .steps{ grid-template-columns:repeat(2, 1fr); }
  .priceGrid{ grid-template-columns:1fr; }
  .priceCard--featured{ transform:none; }
}
@media (max-width: 920px){
  .topbar{ display:flex; }
  .sidebar{
    transform: translateX(-102%);
    transition:.22s ease;
    box-shadow: 20px 0 60px rgba(0,0,0,.20);
  }
  body.is-menuOpen .sidebar{ transform: translateX(0); }
  body.is-menuOpen .backdrop{
    opacity:1;
    pointer-events:auto;
  }
  .main{ margin-left:0; }
  .hero__grid{ grid-template-columns:1fr; }
  .split{ grid-template-columns:1fr; }
  .faq{ grid-template-columns:1fr; }
  .contact__inner{ grid-template-columns:1fr; }
  .floatCTA{ width:120px; height:100px; }
  .floatCTA__main{
  position:absolute;
  left:15px;
  bottom:8px;
  right:1px;
  text-align: center;
}
  .floatCTA__num{ font-weight:900; font-size:12px; letter-spacing:.01em; }
}
@media (max-width: 520px){
  .hero__title{ font-size:28px; }
  .sectionHead{ flex-direction:column; align-items:flex-start; }
  .sectionHead__num{ font-size:52px; }
  .cards{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr; }
  .photoCard--large{
  transform: scale(1.48);
}
}


/* =========================
   PRE HERO: Bubbles background
   ========================= */
.preHeroBubbles{
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;

  position: relative;
  overflow: hidden;

  /* card-ish backdrop so bubbles look clean */
  background: rgba(255, 255, 255, 0.55);

  padding: 22px 18px 22px;
}

/* big scattered circles */
.preHeroBubbles::before{
  content:"";
  position:absolute;
  inset:-50px;
  z-index:0;
  background:
    radial-gradient(circle at 6% 18%, rgba(22,151,255,.18) 0 18px, transparent 19px),
    radial-gradient(circle at 16% 58%, rgba(22,151,255,.12) 0 26px, transparent 27px),
    radial-gradient(circle at 28% 30%, rgba(22,151,255,.16) 0 14px, transparent 15px),
    radial-gradient(circle at 36% 78%, rgba(22,151,255,.10) 0 22px, transparent 23px),
    radial-gradient(circle at 52% 18%, rgba(22,151,255,.14) 0 30px, transparent 31px),
    radial-gradient(circle at 62% 64%, rgba(22,151,255,.12) 0 18px, transparent 19px),
    radial-gradient(circle at 74% 28%, rgba(22,151,255,.16) 0 22px, transparent 23px),
    radial-gradient(circle at 86% 66%, rgba(22,151,255,.10) 0 34px, transparent 35px),
    radial-gradient(circle at 92% 18%, rgba(22,151,255,.12) 0 16px, transparent 17px),
    radial-gradient(circle at 10% 92%, rgba(22,151,255,.10) 0 30px, transparent 31px),
    radial-gradient(circle at 44% 92%, rgba(22,151,255,.12) 0 18px, transparent 19px),
    radial-gradient(circle at 82% 92%, rgba(22,151,255,.12) 0 22px, transparent 23px);
  opacity: .95;
}

/* lots of small circles (polka-dot) */
.preHeroBubbles::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    radial-gradient(circle, rgba(22,151,255,.18) 0 3px, transparent 4px);
  background-size: 28px 28px;
  opacity: .25;
}

/* keep content above bubbles */
.preHeroBubbles > *{
  position: relative;
  z-index: 1;
}

.preHeroItem{
  padding: 10px 6px 88px;
}
.preHeroItem + .preHeroItem{
  border-top: 1px dashed rgba(22,151,255,.18);
  padding-top: 22px;
  margin-top: 8px;
}

/* inside bubble wrapper, remove the big bottom padding */
.preHeroBubbles .preHero__desc{
  padding-bottom: 0;
}

/* on mobile, remove negative margin for safer spacing */
@media (max-width: 920px){
  .preHeroBubbles{ margin-top: -60px; padding: 18px 14px 8px; }
}



















/* =========================
   フル幅横長画像
   ========================= */
.full-width-hero {
  width: 100vw;
  height: 48vw; /* 横長に見せるため高さを抑える */
  position: relative;
  margin-top: 95px; /* ヘッダーの高さ分下げる */
  overflow: hidden;
}

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

/* Intro split (menu page) */
.introSplit{
  padding-top:24px;
  padding-bottom:24px;
}
.introSplit__inner{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:24px;
  align-items:center;
}
.introSplit__media{
  position:relative;
  min-height:340px;
}
.introSplit__media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
 
  opacity:0;
  transition:opacity .6s ease;
}
.introSplit__media img.is-active{
  opacity:1;
}
.introSplit__title{
  margin:0 0 10px;
  font-size:clamp(18px, 2.2vw, 24px);
  font-weight:900;
  color:var(--text);
}
.introSplit__titleEm{
  font-size:clamp(28px, 4vw, 42px);
  font-weight:900;
}
.introSplit__lead{
  margin:0 0 16px;
  line-height:1.8;
  font-weight:700;
  color:var(--text);
}
.introSplit__actions{
  display:flex;
  gap:10px;
}
@media (max-width: 920px){
  .introSplit__inner{
    grid-template-columns:1fr;
  }
}

.introText{
  padding-top:16px;
  padding-bottom:8px;
}
.introText__inner{
  max-width:980px;
  margin:0 auto;
  padding:0 16px;
  text-align:center;
}
.introText__title{
  margin:0 0 8px;
  font-size:clamp(28px, 5vw, 42px);
  font-weight:900;
  color:var(--text);
}
.introText__em{
  font-size:clamp(36px, 7vw, 64px);
  font-weight:900;
  color: var(--blue2);
}
.introText__lead{
  margin:0;
  line-height:1.8;
  font-weight:700;
  color:var(--text);
}

/* レスポンシブ対応 */
@media (max-width: 920px) {
  .full-width-hero {
    height: 220px;
    margin-top: 64px; /* モバイル時のヘッダー高さに合わせる */
  }
}

@media (max-width: 520px) {
  .hero__visual{
    display:flex;
    justify-content:center;
  }
  .hero__visual .photoCard{
    margin:14px auto 0;
  }
  .full-width-hero {
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .full-width-hero img{
    content: url("image/hero2.png");
  }
  .photoCard{
    max-width:200px;
    margin:14px auto 0;
    
  }
  .photoCard img{
    object-position:center;
  }
  .hero__copy{
    margin-top:0;
  }

  .hero__grid{
    gap: 16px;
    align-items: start;
  }

  .hero--visual-first-mobile .hero__grid{

    flex-direction:column;
  }
  .hero--visual-first-mobile .hero__visual{
    order:1;
  }
  .hero--visual-first-mobile .hero__copy{
    order:2;
  }
}
@media (max-width: 520px) {
  .hero__lead br,
  .introSplit__lead br,
  .introText__lead br,
  .preText__desc br,
  .sectionHead__desc br{
    display:none;
  }
}
@media (max-width: 520px){
  .worries__scroller-track{
    gap:10px;
    padding:6px 12px;
  }
  .worries__item{
    flex:0 0 120px;
  }
  .worries__item img{
    height:96px;
  }
  .worries__scroller-title{
    margin:0 12px 12px;
    font-size:28px;
  }

  .worries__item-name{
    font-size: 10px;
  }

  .btn--ghost {
    font-size: 0.4rem;
  }
  .btn--primary {
    font-size: 0.5rem;
  }

  .dailyMenu__title{
    font-size: 1.8rem;
  }

  .dailyMenu__list{
    font-size: 0.7rem;
  }
}


















/* =========================
   BASIC PRICE TABLE (image-like)
   ========================= */
.priceTableSection{
  padding-top: 154px;
  padding-bottom: 154px;
}

.priceTable{

 
  padding: 18px 16px 16px;
}

.priceTable__title{
  text-align:center;
  font-weight: 900;
  letter-spacing: .08em;
  margin: 4px 0 14px;
  color: rgba(15, 23, 42, .82);
}

.priceTable__row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
}

.priceTable__col{
  padding: 16px 14px;
  text-align:center;
  position:relative;
}

.priceTable__row--top .priceTable__col:not(:last-child)::after,
.priceTable__row--bottom .priceTable__col:not(:last-child)::after{
  content:"";
  position:absolute;
  top: 14px;
  bottom: 14px;
  right: 0;
  width: 1px;
  background: rgb(89, 89, 89);
}

.priceTable__hr{
  height: 1px;
  background: rgb(65, 65, 65);
  margin: 8px 0;
}
.priceTable__image{
  margin-top:86px;
  display:flex;
  justify-content:center;
}
.priceTable__image + .priceTable__image{
  margin-top:16px;
}
.priceTable__image img{
  width:min(900px, 90vw);
  height:auto;
  display:block;
 
}

.priceTable__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .06em;
  margin-bottom: 10px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.priceTable__badge--pink{
  background: var(--blue);
  color: #fff;
  border-color: rgba(255,255,255,.28);
}

.priceTable__badge--light{
  background: rgba(255,255,255,.80);
  border-color: rgba(15, 23, 42, .10);
  color: rgba(15, 23, 42, .74);
}

.priceTable__badge--gray{
  background: rgba(255,255,255,.72);
  border-color: rgba(15, 23, 42, .10);
  color: rgba(15, 23, 42, .74);
}

.priceTable__sub{
  margin: 0 0 10px;
  font-weight: 800;
  color: rgba(15, 23, 42, .70);
  line-height: 1.55;
}

.priceTable__price{
  display:flex;
  align-items: baseline;
  justify-content:center;
  gap: 6px;
  margin: 6px 0 6px;
}

.priceTable__num{
  font-size: 44px;
  font-weight: 950;
  letter-spacing: .01em;
  color: rgba(15, 23, 42, .78);
}
.priceTable__num--free{
  color:#d32f2f;
}

.priceTable__unit{
  font-weight: 900;
  color: rgba(15, 23, 42, .62);
}

.priceTable__tax{
  margin: 0;
  font-weight: 900;
  color: rgba(15, 23, 42, .55);
}

.priceTable__up{
  margin: 10px 0 0;
  font-weight: 950;
  color: rgba(15, 23, 42, .70);
  letter-spacing: .02em;
}

.priceTable__upNum{
  font-size: 44px;
  font-weight: 950;
  margin: 0 2px;
  color: rgba(15, 23, 42, .78);
}

.priceTable__upText{
  font-weight: 950;
  color: rgba(15, 23, 42, .62);
}

/* Responsive */
@media (max-width: 920px){
  .priceTable__row{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .priceTable__col{
    padding: 16px 12px;
  }
  .priceTable__row--top .priceTable__col:not(:last-child)::after,
  .priceTable__row--bottom .priceTable__col:not(:last-child)::after{
    display:none;
  }
  .priceTable__row--top .priceTable__col:not(:last-child),
  .priceTable__row--bottom .priceTable__col:not(:last-child){
    border-right: 1px solid rgba(15, 23, 42, .10);
  }
  .priceTable__num,
  .priceTable__upNum{
    font-size: 40px;
  }
}
@media (max-width: 520px){
  .priceTable{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }
  .priceTable::-webkit-scrollbar{ display:none; }
  .priceTable__row{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width:560px;
  }
  .priceTable__hr{
    width:560px;
  }
  .priceTable__badge{
    font-size: 10px;
    padding: 4px 8px;
  }
  .priceTable__sub{
    font-size: 11px;
  }
  .priceTable__num{
    font-size: 28px;
  }
  .priceTable__unit{
    font-size: 12px;
  }
  .priceTable__upNum{
    font-size: 28px;
  }
  .priceTable__upText{
    font-size: 12px;
  }
}















/* =========================
   8 POINTS (image-like)
   ========================= */
.points8Section{
  padding-top: 70px;
  padding-bottom: 70px;
}

.points8{
 
  padding: 8px 2px 6px;
}

/* Head */
.points8__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 18px;
}

.points8__person{
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  display:grid;
  place-items:center;
}
.points8__person svg{
  width: 70px;
  height: 70px;
  stroke: rgba(15, 23, 42, .60);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Title */
.points8__title{
  position:relative;
  text-align:center;
  flex: 1 1 auto;
}
.points8__small{
  display:inline-block;
  font-weight: 900;
  letter-spacing: .02em;
  color: rgba(15, 23, 42, .70);
  margin-bottom: 6px;
  font-size: 15px;
}

/* dotted accent lines */
.points8__title::before,
.points8__title::after{
  content:"";
  position:absolute;
  top: 26px;
  width: 86px;
  height: 12px;
  background:
    radial-gradient(circle, rgb(42 125 228) 0 2px, transparent 3px) 0 0 / 10px 10px;
  opacity:.55;
}
.points8__title::before{ left: 12%; transform: rotate(-12deg); }
.points8__title::after{ right: 12%; transform: rotate(12deg); }

.points8__big{
  display:inline-flex;
  align-items:flex-end;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}

.points8__num{
  font-weight: 950;
  font-size: 58px;
  line-height: 1;
  color: #fff;
  -webkit-text-stroke: 3px rgb(13, 56, 108);
  text-shadow: 0 3px 0 rgba(228,90,42,.18);
}
.points8__tsu{
  font-weight: 900;
  font-size: 18px;
  color: rgb(42 125 228);

}

.points8__pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,.92);
  border: 2px solid rgb(42 125 228);
  color: rgb(42 125 228);
  font-weight: 950;
  letter-spacing: .08em;
 
}

/* Grid */
.points8__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.points8Card{
  position:relative;
  background:#fff;
  border-radius: 16px;
  padding: 18px 14px 16px;
  text-align:center;
 
  border: 1px solid rgba(72, 73, 77, 0.6);
  min-height: 250px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.points8Card__no{
  position:absolute;
  top: -10px;
  left: -10px;
  padding: 15px 15px;
  border-radius: 6px;
  background: rgb(42 125 228);
  color:#fff;
  font-weight: 950;
  font-size: 18px;
  letter-spacing: .04em;
 
}

.points8Card__icon{
  width: 56px;
  height: 56px;
  margin: 16px auto 10px;
  display:grid;
  place-items:center;
}
.points8Card__icon svg{
  height: 66px;
  stroke: rgba(0, 0, 0, 0.95);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.points8Card__title{
  margin: 0;
  font-weight: 950;
  color: rgba(43, 43, 43, 0.95);
  letter-spacing: .02em;
  line-height: 1.25;
  font-size: 30px;
}
.points8Card__note{
  margin:8px 0 0;
  font-size:12px;
  font-weight:700;
  color:rgba(15, 23, 42, .6);
  line-height:1.5;
}

.points8Card__more{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding-top: 12px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(15, 23, 42, .65);
  text-decoration:none;
}
.points8Card__more::after{
  content:"→";
  display:inline-grid;
  place-items:center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .70);
  color:#fff;
  font-size: 11px;
  line-height: 1;
}

/* Responsive */
@media (max-width: 1100px){
  .points8__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .points8__title::before{ left: 10%; }
  .points8__title::after{ right: 10%; }
}
@media (max-width: 520px){
  .points8__person{ display:none; }
  .points8__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .points8__title::before,
  .points8__title::after{ display:none; }


  .points8Card{
  min-height: 150px;
 
}


  .points8Card__title{
  margin: 0;
  font-weight: 950;
  font-size: 18px;
}





.points8Card__no{
  top: -10px;
  left: -10px;
  padding: 10px 10px;
  font-size: 18px;

 
}


}













/* =========================
   お客様の声（口コミ）
   ========================= */
.testimonials {
  display: grid;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 28px 24px 24px;
  box-shadow: 0 12px 32px rgba(9, 20, 40, 0.06);
  position: relative;
}

.testimonial::before {
  content: "”";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: rgba(22, 151, 255, 0.15);
  font-family: serif;
  line-height: 1;
}

.testimonial__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.testimonial__rating {
  font-size: 20px;
  color: #ffb74d;
  letter-spacing: 2px;
}

.testimonial__meta {
  flex: 1;
  min-width: 200px;
}

.testimonial__author {
  font-weight: 900;
  color: var(--text);
  font-size: 15px;
}

.testimonial__service {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.testimonial__quote {
  margin: 0;
  padding-left: 10px;
  color: var(--text);
  line-height: 1.8;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.testimonialsMore {
  text-align: center;
  margin-top: 32px;
}

/* レスポンシブ */
@media (max-width: 920px) {
  .testimonial {
    padding: 24px 20px 20px;
  }
  
  .testimonial__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}










/* 波型セパレーター */
.wave-separator {
    margin-top: -1px; /* 隙間をなくす */
    line-height: 0; /* 余白を除去 */
}

.wave-separator svg {
    display: block;
    width: 100%;
    height: auto;
}





/* 下側の波型セパレーター */
.wave-separator-bottom {
    transform: rotate(180deg);
    margin-bottom: -1px; /* 隙間をなくす */
}



.section {
  padding: 80px;
}

/* Contact form: honeypot field (bot対策) */
.hpField{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}




/* レスポンシブ */
@media (max-width: 920px) {
.section {
  padding: 30px;
}
}












/* =========================
   IMAGE SLIDESHOW
   ========================= */
.image-slideshow {
  padding: 80px 0;
  overflow: hidden;
 
}

.slideshow-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.slideshow-track {
  display: flex;
  animation: slide 40s linear infinite;
  width: max-content;

  padding: 10px 0;
}

.slide {
  flex: 0 0 300px;
  position: relative;

  overflow: hidden;
 
  transition: transform 0.3s ease;
  height: 220px;
}

.slide:hover {
  transform: translateY(-8px);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* アニメーション */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-320px * 5)); /* (画像幅 + gap) × 画像数 */
  }
}

/* アニメーションを減らした設定の場合 */
@media (prefers-reduced-motion: reduce) {
  .slideshow-track {
    animation: none;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .slide {
    flex: 0 0 calc(33.333% - 14px);
    max-width: 300px;
  }
}

/* レスポンシブ対応 */
@media (max-width: 1100px) {
  .slideshow-track {
    animation-duration: 50s;
  }
  
  .slide {
    flex: 0 0 250px;
    height: 180px;
  }
  
  @keyframes slide {
    100% {
      transform: translateX(calc(-270px * 5));
    }
  }
}

@media (max-width: 768px) {
  .slide {
    flex: 0 0 200px;
    height: 150px;
  }
  
  .slideshow-track {
    gap: 15px;
  }
  
  .slide-caption {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  @keyframes slide {
    100% {
      transform: translateX(calc(-215px * 5));
    }
  }
}

/* =========================
   Company / About page
   ========================= */
.pageHero{
  padding: 140px 40px 0;
}
.pageHero__inner{
  max-width: var(--container);
  margin: 0 auto;
}
.pageHero__title{
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  margin: 14px 0 10px;
}
.pageHero__lead{
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 700;
}
.pageHero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 18px;
}

.company{
  padding: 30px 40px 80px;
}
.company__inner{
  max-width: var(--container);
  margin: 0 auto;
}
.companyGrid{

  gap: 16px;
}
.companyCard{
 
  border: 1px solid var(--line);
 
  padding: 22px;
}
.companyCard__title{
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 14px;
}
.companyTable{
  margin: 0;
}
.companyTable__row{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.companyTable__row:last-child{
  border-bottom: none;
}
.companyTable dt{
  font-weight: 900;
  color: var(--text);
}
.companyTable dd{
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 700;
}
.companyLink{
  color: var(--blue2);
  font-weight: 900;
  text-decoration: none;
}
.companyLink:hover{
  text-decoration: underline;
}
.terms{
  padding-top:24px;
  padding-bottom:24px;
}
.terms__inner{
  max-width:980px;
  margin:0 auto;
  padding:0 16px;
}
.terms__body{
  background:var(--white);
  border:1px solid var(--line);

  padding:18px;
  max-height:320px;
  overflow-y:auto;
}
.terms__item + .terms__item{
  margin-top:16px;
  padding-top:16px;
  border-top:1px dashed var(--line);
}
.terms__item h3{
  margin:0 0 8px;
  font-size:18px;
  font-weight:800;
  color:var(--text);
}
.terms__item p{
  margin:0;
  color:var(--text);
  line-height:1.8;
  font-weight:700;
}
.terms__item ul,
.terms__item ol{
  margin:0;
  padding-left:18px;
  color:var(--text);
  line-height:1.8;
  font-weight:700;
}
.companyList{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 700;
}
.companyNote{
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.companyCTA{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.companyCTA__text{
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 700;
}

@media (max-width: 920px){
  .pageHero{ padding: 120px 24px 30px; }
  .company{ padding: 20px 24px 70px; }
  .companyGrid{ grid-template-columns: 1fr; }
  .companyTable__row{ grid-template-columns: 120px 1fr; }
}
@media (max-width: 520px){
  .pageHero__title{ font-size: 34px; }
  .companyCard{ padding: 18px; }
  .companyTable__row{ grid-template-columns: 1fr; gap: 6px; }
  .companyTable dt{ font-size: 13px; }
}















/* =========================
   ABOUT PAGE: 左画像・右テキスト レイアウト
   ========================= */
@media (max-width: 920px) {
  .section.split[aria-label="事業内容"] {
    padding: 60px 24px !important;
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  .section.split[aria-label="事業内容"] .roundedMedia {
    order: 1 !important;
  }
  
  .section.split[aria-label="事業内容"] .hero__copy {
    order: 2 !important;
    padding-left: 0 !important;
  }
  
  .section.split[aria-label="事業内容"] .hero__title {
    font-size: 30px !important;
  }
}

@media (max-width: 520px) {
  .section.split[aria-label="事業内容"] {
    padding: 40px 16px !important;
  }
  
  .section.split[aria-label="事業内容"] .hero__title {
    font-size: 26px !important;
  }
}
