@charset "utf-8";
/* ── TOKENS ── */ 
:root {
  --w: #fdfcfa;
  --off: #f9f8f6;
  --frost: #f4f2ec;
  --mist: #eef1e6;
  --g50: #f0f2e8;
  --g100: #d9e2cc;
  --g300: #a3b596;
  --g500: #7c9070;
  --g700: #5f7256;
  --ink: #4a3f3d;
  --tx: #5c504c;
  --mu: #8a7d76;
  --li: #e8e1d6;
  --warm: #c2a578;
  --red: #b5624f;
  --sky: #f0f0eb;
  --shadow: rgba(151, 127, 102, .10);
  --shadow-soft: rgba(151, 127, 102, .06);
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}
html {
  scroll-behavior: smooth
}
body {
	width: 100%;
  background: var(--w);
  color: var(--tx);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.95;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 72px;
  font-size: 18px;

}
img {
  display: block;480
  max-width: 100%
}
a {
  text-decoration: none;
  color: inherit
}
em {
  font-style: normal
}

/*add*/
.line-height2{
	line-height: 2;
}
.linkBt{
	text-decoration: underline;
	color:inherit;
}
.linkBt:hover{
	color:white;
}
/*a[href^="tel:"] {
  pointer-events: none;
}*/

/* ── NAV ── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 800;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221, 230, 217, .6);
  transition: box-shadow .4s
}
.nav.sd {
  box-shadow: 0 1px 24px rgba(60, 90, 50, .05)
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px
}
.nav-brand img {
  width: 55px;/*変更*/
  height: auto;
  object-fit: contain
}
.nav-brand-name {
		padding-top:10px;/*追加*/
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: .22em;
  color: var(--ink);
	line-height: .8;
}
.nav-brand-sub {
  font-size: 16px;
  letter-spacing: .26em;
  color: var(--mu);
  margin-top: 2px
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none
}
.nav-links a {
  font-size: 17.5px;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--mu);
  position: relative;
  padding-bottom: 2px;
  transition: color .2s
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--g500);
  transition: width .25s
}
.nav-links a:hover {
  color: var(--g500)
}
.nav-links a:hover::after {
  width: 100%
}
.nav-cta {
  background: var(--g500);
  color: var(--w);
  font-size: 17.5px;
  font-weight: 500;
  letter-spacing: .16em;
  padding: 9px 20px;
  display: inline-block;
  transition: background .2s, transform .15s
}
.nav-cta:hover {
  background: var(--g700);
  transform: translateY(-1px)
}
/* ── BOTTOM BAR ── */
.bbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: linear-gradient(100deg, var(--g700), var(--g500));
  border-top: 1px solid rgba(255, 255, 255, .15);
}
.bbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: rgba(255, 255, 255, .55);
  border-right: 1px solid rgba(255, 255, 255, .06);
  transition: background .2s, color .2s;
  cursor: pointer;
		padding-top:5px;
}
.bbar-item:last-child {
  border-right: none
}
.bbar-item:hover {
  background: rgba(255, 255, 255, .06);
  color: var(--w)
}
.bbar-item.green {
  background: var(--g500)
}
.bbar-item.green:hover {
  background: var(--g700);
  color: var(--w)
}
.bbar-icon {
  font-size: 19px;
  line-height: 1
}
.bbar-txt {
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: .08em
}
/* ── CONCEPT SPLIT ── */
.concept-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px
}
.concept-photo {
  overflow: hidden;
  position: relative;
  background: var(--frost)
}
.concept-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease
}
.concept-photo:hover img {
  transform: scale(1.03)
}
.concept-copy {
  background: var(--w);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--li);
  border-left: none;
}
.concept-quote {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  line-height: 2;
  color: var(--g500);
  padding-left: 22px;
  border-left: 2px solid var(--g100);
  margin-bottom: 36px;
}
.concept-copy p {
  font-size: 17.5px;
  line-height: 2.6;
  color: var(--mu);
  margin-bottom: 16px
}
/* ── CULTURE ── */
.culture-sec {
  padding: 80px 48px;
  background: var(--ink);
  color: var(--w);
  text-align: center;
}
.culture-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17.5px;
  letter-spacing: .5em;
  color: var(--g300);
  margin-bottom: 18px;
  display: block
}
.culture-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(23px, 2.6vw, 36px);
  font-weight: 400;
  line-height: 1.85;
  color: var(--w);
  margin-bottom: 24px;
}
.culture-title em {
  font-style: normal;
  color: var(--g300)
}
.culture-body {
  font-size: 17.5px;
  line-height: 2.5;
  color: var(--ink);/*追加*/
  max-width: 640px;
  margin: 25px auto 40px
}
.culture-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
	  gap: 5px;
/*  gap: 1px;*/
  background: rgba(255, 255, 255, .07)
}
.culture-card {
  background: rgba(255, 255, 255, .04);
  padding: 40px 32px;
  text-align: left;
  transition: background .3s
}
.culture-card:hover {
  background: rgba(255, 255, 255, .08)
}
.culture-icon {
  font-size: 29px;
  margin-bottom: 16px
}
.culture-card-title {
  font-size: 18.5px;
  font-weight: 500;
	color: var(--ink);
  /*color: var(--w);*/
  margin-bottom: 10px
}
.culture-card-body {
  font-size: 17.5px;
  line-height: 2;
  color: var(--ink);
}
@media(max-width:900px) {
  .concept-split {
    grid-template-columns: 1fr
  }
  .concept-copy {
    border: none;
    border-top: 1px solid var(--li);
    padding: 44px 24px
  }
  .culture-cards {
    grid-template-columns: 1fr
  }
  .culture-sec {
    padding: 56px 22px
  }
}
/* ── HELPERS ── */
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px
}
.sec {
  padding: 96px 0
}
.sec-off {
  background: var(--off)
}
.sec-frost {
  background: var(--frost)
}
.sec-mist {
  background: var(--mist)
}
.sec-ink {
  background: var(--frost);
  color: var(--tx)
}
.sec-sky {
  background: var(--sky)
}
.sec-hd {
  text-align: center;
  margin-bottom: 64px
}
.en-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: .48em;
  color: var(--g300);
  display: block;
  margin-bottom: 14px
}
.sec-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(23px, 2.3vw, 34px);
  font-weight: 400;
  color: var(--ink)
}
.sec-title-w {
  color: var(--w)
}
.sec-sub, .sec-sub-why {
  font-size: 18.5px;
  line-height: 2.3;
  color: var(--mu);
  max-width: 700px;
/*  max-width: 520px;
*/  margin: 14px auto 0;
  font-weight: 400
}
.sec-sub-w {
  color: rgba(255, 255, 255, .55)
}
/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: 64px
}
.hero-l {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 56px 72px 72px;
  background: var(--w);
  position: relative;
  overflow: hidden
}
.hero-l::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 0 100%, rgba(120, 185, 108, .07), transparent 65%), radial-gradient(ellipse 40% 35% at 110% 0, rgba(200, 220, 195, .08), transparent 55%);
  pointer-events: none
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17.5px;
  font-weight: 500;
  letter-spacing: .42em;
  color: var(--g300);
  margin-bottom: 40px;
  animation: up .8s .1s both
}
.hero-eyebrow i {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--g300)
}
.hero-h1 {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(27px, 2.8vw, 46px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 12px;
  animation: up .8s .15s both
}
.hero-h1 .accent {
  color: var(--g500)
}
.hero-catch {
  font-size: 17.5px;
  font-weight: 500;
  font-weight: 300;
  letter-spacing: .26em;
  color: var(--mu);
  margin-bottom: 28px;
  animation: up .8s .2s both;
  opacity: .65
}
.hero-lead {
  font-size: 17.5px;
  line-height: 2.5;
  color: var(--mu);
  max-width: 400px;
  margin-bottom: 0;
  animation: up .8s .25s both;
  position: relative;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  letter-spacing: .02em
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: up .8s .3s both;
  position: relative
}
.btn-main {
  background: var(--g500);
  color: var(--w);
  font-size: 17.5px;
  letter-spacing: .14em;
  padding: 14px 36px;
  display: inline-block;
  transition: background .2s, box-shadow .2s, transform .15s
}
.btn-main:hover {
  background: var(--g700);
  box-shadow: 0 6px 20px rgba(50, 92, 40, .22);
  transform: translateY(-2px)
}
.btn-sub {
  border: 1px solid var(--li);
  color: var(--mu);
  font-size: 17.5px;
  letter-spacing: .12em;
  padding: 14px 28px;
  display: inline-block;
  transition: border-color .2s, color .2s
}
.btn-sub:hover {
  border-color: var(--g500);
  color: var(--g500)
}
.hero-r {
  position: relative;
  overflow: hidden;
  background: var(--frost)
}
.hero-r img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top
}
.hero-r-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, .04), rgba(60, 90, 50, .08))
}
.hero-chip {
  position: absolute;
  bottom: 36px;
  left: 36px;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(10px);
  padding: 20px 24px;
  border-left: 3px solid var(--g500);
  box-shadow: 0 6px 28px rgba(60, 90, 50, .07);
  max-width: 260px
}
.hero-chip-lbl {
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--g300);
  margin-bottom: 6px
}
.hero-chip-txt {
  font-size: 18.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.85
}
@keyframes up {
  from {
    opacity: 0;
    transform: translateY(20px)
  }
  to {
    opacity: 1;
    transform: none
  }
}
/* ── TRUST BAR ── */
.trust-bar-bg{
	width: 100%;
}/*追加*/
.trust-bar-bg img{
	width: 100%;
	height: auto;
}/*追加*/
.trust-bar {
  background: var(--g500);
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}
.trust-cell {
  padding: 28px 32px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
  cursor: default;
  transition: background .3s
}
.trust-cell:last-child {
  border-right: none
}
.trust-cell:hover {
  background: rgba(255, 255, 255, .06)
}
.trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 43px;
  font-weight: 200;
  color: var(--w);
  line-height: 1;
  margin-bottom: 6px
}
.trust-txt {
  font-size: 17.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .06em;
  line-height: 1.6
}
/* ── PAIN RESONANCE ── */
.painArea{
	width: min(1200px, 95%);
	margin: 0 auto;
}/*追加*/
.pain-sec {
  padding: 80px 0;
  background: var(--w);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--li);
}
.pain-card {
  background: var(--w);
  padding: 36px 30px;
  position: relative;
  transition: background .3s
}
.pain-card:hover {
  background: var(--off)
}
.pain-q {
  font-size: 17.5px;
  line-height: 2;
  color: var(--tx);
  padding-left: 18px;
  position: relative
}
.pain-q::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -2px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--g100);
  line-height: 1
}
.pain-note {
  font-size: 17.5px;
  font-weight: 500;
  color: var(--g300);
  margin-top: 12px;
  padding-left: 18px;
  letter-spacing: .04em
}
.pain-cta-row {
  text-align: center;
  margin-top: 52px
}
.pain-cta-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(21px, 2.2vw, 30px);
  color: var(--ink);
  margin-bottom: 10px
}
.painCome{
	width: min(1200px, 95%);
	margin: 30px auto 0;
	text-align: center;
}
.pain-cta-sub {
  font-size: 17.5px;
  color: var(--mu);
  margin-bottom: 28px
}
/* ── TRANSFORMATION ── */
.transform-sec {
  padding: 168px 0;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  isolation: isolate;
}
@media(max-width:900px) {
.transform-sec {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  isolation: isolate;
}
  .transform-sec {
    background-attachment: scroll;
  }
}
.transform-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}
.transform-copy .en-label {
  color: var(--g500)
}
.transform-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(25px, 2.8vw, 38px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 28px
}
.transform-title .hl {
  color: var(--g300)
}
.transform-lead {
  font-size: 17.5px;
  line-height: 2.5;
  color: var(--tx);
  margin-bottom: 36px
}
.transform-list {
  list-style: none
}
.transform-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  font-size: 17.5px;
  color: var(--tx);
  line-height: 1.7
}
.transform-list li:last-child {
  border-bottom: none
}
.transform-list li::before {
  content: '→';
  color: var(--g500);
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  margin-top: 1px
}
.transform-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}
.t-card {
  background: rgba(253, 252, 250, .6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .7);
  padding: 24px 13px 24px 21px;
  transition: background .3sborder-radius:18px;
}
.t-card:hover {
  background: rgba(253, 252, 250, .85)
}
.t-card-come{
	margin: 15px auto 0;
	padding:16px 20px;
	font-size:14.5px;
	line-height:1.9;
}
.t-card-come span{
	display: block;
	text-indent: 1em;
}
.t-card-icon {
  font-size: 26px;
  margin-bottom: 12px
}
.t-card-title {
  font-size: 17.5px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px
}
.t-card-body {
  font-size: 17.5px;
  line-height: 1.9;
  color: var(--mu)
}
/* ── VIDEO ── */
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink)
}
.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.42) saturate(.75);
  transition: filter .5s
}
.video-wrap:hover .video-bg {
  filter: brightness(.35) saturate(.75)
}
.video-over {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px
}
.vplay {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  border: 1.5px solid rgba(255, 255, 255, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, transform .3s, border-color .3s;
  position: relative
}
.vplay::before, .vplay::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  animation: vp 2.5s ease infinite
}
.vplay::before {
  inset: -10px
}
.vplay::after {
  inset: -22px;
  animation-delay: .5s
}
@keyframes vp {
  0%, 100% {
    transform: scale(1);
    opacity: 1
  }
  50% {
    transform: scale(1.15);
    opacity: .35
  }
}
.video-wrap:hover .vplay {
  background: rgba(74, 124, 63, .65);
  border-color: var(--g300);
  transform: scale(1.08)
}
.vplay-tri {
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid rgba(255, 255, 255, .9);
  margin-left: 4px
}
.vinfo {
  text-align: center
}
.vinfo-en {
  font-size: 16.5px;
  letter-spacing: .45em;
  color: var(--g300);
  margin-bottom: 8px
}
.vinfo-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(19px, 2.2vw, 30px);
  color: var(--w);
  margin-bottom: 8px
}
.vinfo-sub {
  font-size: 17.5px;
  color: rgba(255, 255, 255, .5)
}
.video-coming {
  position: absolute;
  inset: 0;
  background: rgba(151, 127, 102, .52);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px
}
.video-coming.on {
  display: flex
}
.vc-icon {
  font-size: 48px;
  opacity: .55
}
.vc-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 22px;
  color: var(--w)
}
.vc-sub {
  font-size: 17.5px;
  color: rgba(255, 255, 255, .42)
}
.vc-close {
  margin-top: 4px;
  padding: 8px 24px;
  border: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .55);
  background: none;
  cursor: pointer;
  font-size: 17.5px;
  letter-spacing: .1em;
  transition: border-color .2s, color .2s
}
.vc-close:hover {
  border-color: rgba(255, 255, 255, .55);
  color: var(--w)
}
/* ── WHY DIFFERENT ── */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--li)
}
.diff-card {
  background: var(--w);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: background .3s
}
.diff-card:hover {
  background: var(--off)
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--g500);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s
}
.diff-card:hover::before {
  transform: scaleY(1)
}
.diff-before-blk {
  background: rgba(200, 185, 165, .1);
  border: 1px solid rgba(200, 185, 165, .25);
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 500;
  color: var(--mu);
  line-height: 1.85
}
.diff-before-lbl {
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: .18em;
  color: #b09a80;
  margin-bottom: 5px
}
.diff-arr {
  text-align: center;
  color: var(--g300);
  font-size: 20px;
  margin-bottom: 16px;
  opacity: .8
}
.diff-after {
  display: flex;
  align-items: flex-start;
  gap: 12px
}
.diff-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--g500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0
}
.diff-after-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px
}
.diff-after-body {
  font-size: 17.5px;
  line-height: 2;
  color: var(--mu)
}
/* ── MENU 3-STEP ── */
.step-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
	background: var(--g500);
/*  background: var(--li);*/
  margin-bottom: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px var(--shadow)
}
.step-cell {
  padding: 44px 40px;
  background: linear-gradient(150deg, var(--g700), var(--g500));
  position: relative
}
.step-cell:last-child {
  border-right: none
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 200;
  color: rgba(255, 255, 255, .1);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px
}
.step-label {
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--g300);
  margin-bottom: 8px
}
.step-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 19px;
  color: var(--w);
  margin-bottom: 6px
}
.step-desc {
  font-size: 18.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, .45);
  line-height: 1.8
}
.step-arr {
  display: none
}
.menu-body {
  padding: 64px 0 0
}
/* 単体 */
.single-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--g500)
}
.single-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px
}
.s-card {
  background: var(--w);
  border: 1px solid var(--li);
  padding: 24px 18px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s
}
.s-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(60, 90, 50, .06);
  border-color: var(--g100)
}
.s-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--g500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s
}
.s-card:hover::before {
  transform: scaleX(1)
}
.s-card.featured {
  border-color: var(--g500);
  background: var(--g50)
}
.s-card.featured::before {
  transform: scaleX(1)
}
.s-card-badge {
  display: inline-block;
  font-size: 16px;
  letter-spacing: .22em;
  padding: 2px 9px;
  margin-bottom: 12px
}
.s-card-badge.green {
  background: var(--g500);
  color: var(--w)
}
.s-card-badge.outline {
  border: 1px solid var(--li);
  color: var(--mu)
}
.s-card-name {
  font-size: 17.5px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px
}
.s-card-desc {
  font-size: 17.5px;
  color: var(--mu);
  line-height: 1.85;
  margin-bottom: 16px;
  min-height: 44px
}
.s-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 39px;
  font-weight: 200;
  color: var(--g500);
  line-height: 1
}
.s-card-unit {
  font-size: 17.5px;
  color: var(--mu);
  margin-top: 4px
}
/* featured total card spans 2 cols */
.s-card-total {
  grid-column: 3/5
}
.s-card-total .s-card-price {
  font-size: 52px
}
.s-card-total .s-card-name {
  font-size: 18px
}
.s-total-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px
}
.s-total-tag {
  background: rgba(74, 124, 63, .1);
  color: var(--g500);
  font-size: 17px;
  padding: 3px 10px
}
.single-note {
  font-size: 17.5px;
  color: var(--mu);
  text-align: center;
  padding: 16px;
  background: var(--off);
  border: 1px dashed var(--li)
}
/* プログラム */
.prog-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--li);
  margin-top: 56px
}
.prog-banner {
  background: var(--frost);
  border: 1px solid var(--li);
  padding: 36px 40px;
  display: block;
  padding: 36px 40px;
  margin-bottom: 20px
}
.prog-banner-text h3 {
  font-family: 'Zen Old Mincho', serif;
  font-size: 21px;
  color: var(--ink);
  margin-bottom: 10px
}
.prog-banner-text p {
  font-size: 17.5px;
  line-height: 2.2;
  color: var(--mu)
}
.prog-consult {
  background: var(--g500);
  color: var(--w);
  font-size: 17.5px;
  letter-spacing: .12em;
  padding: 13px 26px;
  white-space: nowrap;
  display: inline-block;
  transition: background .2s
}
.prog-consult:hover {
  background: var(--g700)
}
.prog-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px
}
.prog-tag {
  background: var(--w);
  border: 1px solid var(--li);
  padding: 18px 18px;
  transition: border-color .2s, background .2s
}
.prog-tag:hover {
  border-color: var(--g100);
  background: var(--g50)
}
.prog-tag-name {
  font-size: 17.5px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px
}
.prog-tag-desc {
  font-size: 17.5px;
  color: var(--mu)
}
.prog-more {
  font-size: 18px;
  font-weight: 500;
  color: var(--mu);
  text-align: center;
  padding: 12px;
  background: var(--off);
  border: 1px dashed var(--li);
  margin-top: 10px
}
/* サブスク */
.sub-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 22px;
  color: var(--w);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(255, 255, 255, .12);
  margin-top: 56px
}
.sub-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden
}
.sub-inner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(74, 124, 63, .2), transparent 65%);
  pointer-events: none
}
.sub-left {
  padding: 48px 44px
}
.sub-rec {
  display: inline-block;
  background: var(--warm);
  color: var(--w);
  font-size: 16.5px;
  letter-spacing: .26em;
  padding: 4px 13px;
  margin-bottom: 8px
}
.sub-cond {
  font-size: 17.5px;
  color: rgba(255, 255, 255, .38);
  margin-bottom: 18px
}
.sub-h {
  font-family: 'Zen Old Mincho', serif;
  font-size: 20px;
  color: var(--w);
  margin-bottom: 14px
}
.sub-prow {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 16px
}
.sub-pnum {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 200;
  color: var(--g300);
  line-height: 1
}
.sub-punit {
  font-size: 17.5px;
  color: rgba(255, 255, 255, .38)
}
.sub-note {
  font-size: 17.5px;
  line-height: 2.2;
  color: rgba(255, 255, 255, .52);
  max-width: 300px
}
.sub-right {
  padding: 48px 36px 48px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  position: relative;
  z-index: 1
}
.sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}
.si {
  background: rgba(255, 255, 255, .05);
  border-left: 2px solid rgba(160, 200, 150, .3);
  padding: 14px 14px
}
.si-lbl {
  font-size: 16px;
  letter-spacing: .18em;
  color: var(--g300);
  margin-bottom: 7px
}
.si-val {
  font-size: 17.5px;
  color: var(--w);
  line-height: 1.55
}
.si-orig {
  font-size: 17.5px;
  color: rgba(255, 255, 255, .26);
  text-decoration: line-through;
  margin-top: 2px
}
.si-opt {
  background: rgba(255, 255, 255, .04);
  border-left: 2px solid rgba(176, 138, 82, .3);
  padding: 12px 14px
}
.si-opt-lbl {
  font-size: 16px;
  letter-spacing: .18em;
  color: var(--warm);
  margin-bottom: 7px
}
.si-opt-list {
  font-size: 17.5px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.9
}
.si-fam {
  background: rgba(255, 255, 255, .04);
  border-left: 2px solid rgba(160, 200, 150, .15);
  padding: 12px 14px
}
.si-store {
  font-size: 17.5px;
  color: rgba(255, 255, 255, .32);
  text-align: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .06);
  margin-top: 4px
}
/* ── SYMPTOMS ── */
.sym-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}
.sym-card {
  background: var(--w);
  border: 1px solid var(--li);
  display: grid;
  grid-template-columns: 180px 1fr;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s
}
.sym-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(60, 90, 50, .07);
  border-color: var(--g100)
}
.sym-img {
  overflow: hidden;
  background: var(--frost);
  position: relative;
  min-height: 180px
}
.sym-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}
.sym-card:hover .sym-img img {
  transform: scale(1.07)
}
.sym-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(60, 90, 50, .06), transparent 50%)
}
.sym-body {
  padding: 22px 22px;
  display: flex;
  flex-direction: column
}
.sym-tag {
  display: inline-block;
  background: var(--mist);
  color: var(--g500);
  font-size: 16.5px;
  letter-spacing: .1em;
  padding: 2px 9px;
  margin-bottom: 8px;
  align-self: flex-start
}
.sym-name {
  font-size: 18.5px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 7px
}
.sym-desc {
  font-size: 17.5px;
  color: var(--mu);
  line-height: 1.9;
  margin-bottom: 14px;
  flex: 1
}
.sym-detail {
  border-top: 1px solid var(--li);
  padding-top: 13px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}
.sd-lbl {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17.5px;
  letter-spacing: .18em;
  color: var(--g300);
  margin-bottom: 6px
}
.sd-list {
  list-style: none
}
.sd-list li {
  font-size: 17.5px;
  line-height: 1.85;
  color: var(--mu);
  padding-left: 9px;
  position: relative
}
.sd-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
  background: var(--g100)
}
.sym-note {
  font-size: 17px;
  color: var(--warm);
  margin-top: 10px;
  grid-column: 1/-1;
  line-height: 1.8;
  font-style: italic
}
/* ── FLOW ── */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative
}
.flow-grid::after {
  content: '';
  position: absolute;
  top: 52px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--g100) 0, var(--g100) 8px, transparent 8px, transparent 16px)
}
.flow-card {
  padding: 36px 28px;
  text-align: center;
  position: relative
}
.flow-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--w);
  border: 2px solid var(--g100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--g500);
  position: relative;
  z-index: 1
}
.flow-title {
  font-size: 17.5px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px
}
.flow-desc {
  font-size: 17.5px;
  line-height: 2;
  color: var(--mu)
}
.flow-tag {
  display: inline-block;
  background: var(--mist);
  color: var(--g500);
  font-size: 17px;
  padding: 3px 10px;
  margin-top: 10px
}
/* ── VOICES ── */
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}
.voice-card {
  background: var(--w);
  border: 1px solid var(--li);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow .3s, border-color .3s
}
.voice-card:hover {
  box-shadow: 0 10px 32px rgba(60, 90, 50, .06);
  border-color: var(--g100)
}
.voice-card::before {
  content: '\201C';
  position: absolute;
  top: 18px;
  left: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 76px;
  color: var(--g50);
  line-height: 1;
  pointer-events: none
}
.voice-txt {
  font-size: 18.5px;
  line-height: 2.6;
  color: var(--tx);
  padding-top: 28px;
  margin-bottom: 18px;
  font-weight: 400
}
.voice-meta {
  padding-top: 16px;
  border-top: 1px solid var(--li)
}
.voice-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0
}
.voice-name {
  font-size: 17.5px;
  font-weight: 400;
  color: var(--ink)
}
.voice-info {
  font-size: 17.5px;
  color: var(--mu)
}
.voice-tag {
  display: inline-block;
  background: var(--mist);
  color: var(--g500);
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 2px 8px;
  margin-left: 6px
}
.voice-disc {
  font-size: 17.5px;
  font-weight: 500;
  color: var(--mu);
  text-align: center;
  margin-top: 18px;
  line-height: 2
}
/* ── PROFILE ── */
.profile-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start
}
.prof-img {
  position: relative
}
.prof-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top
}
.prof-img::after {
  content: '';
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--g100);
  z-index: -1
}
.prof-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: .35em;
  color: var(--g300);
  margin-bottom: 8px
}
.prof-name {
  font-family: 'Zen Old Mincho', serif;
  font-size: 33px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 5px
}
.prof-role {
  font-size: 17.5px;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--mu);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--li);
  margin-bottom: 28px
}
.prof-msg {
  font-size: 17.5px;
  line-height: 2;
  color: var(--tx);
  margin-bottom: 28px
}
.career-list {
  list-style: none
}
.career-list li{
	margin-bottom: 20px;
}/*追加*/
.career-item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--li);
  font-size: 18px;
  font-weight: 500;
  color: var(--mu)
}
.career-yr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17.5px;
  color: var(--g300);
  min-width: 48px;
  flex-shrink: 0
}
.skill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px
}
.skill-chip {
  border: 1px solid var(--li);
  font-size: 17.5px;
  font-weight: 500;
  padding: 4px 12px;
  color: var(--mu);
  letter-spacing: .04em;
  transition: border-color .2s, color .2s
}
.skill-chip:hover {
  border-color: var(--g500);
  color: var(--g500)
}
/* ── FAQ ── */
.faq-wrap {
  max-width: 740px;
  margin: 0 auto
}
.faq-item {
  border-bottom: 1px solid var(--li)
}
.faq-item:first-child {
  border-top: 1px solid var(--li)
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 17.5px;
  color: var(--ink);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  transition: color .2s
}
.faq-q:hover {
  color: var(--g500)
}
.faq-qrow {
  display: flex;
  align-items: flex-start;
  gap: 10px
}
.faq-qnum {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  font-weight: 200;
  color: var(--g300);
  flex-shrink: 0;
  line-height: 1.3
}
.faq-icon {
  font-size: 21px;
  color: var(--g100);
  flex-shrink: 0;
  transition: transform .3s;
  line-height: 1
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--g500)
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  font-size: 17.5px;
  line-height: 2.4;
  color: var(--mu);
  padding: 0 0 0 28px;
  font-weight: 400
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 22px 28px
}
/* ── CTA CLOSE ── */
.cta-close {
  padding: 80px 48px;
  text-align: center;
  background: linear-gradient(145deg, var(--off) 0%, var(--frost) 45%, var(--mist) 100%);
  position: relative;
  overflow: hidden
}
.cta-close::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(111, 168, 100, .07), transparent 60%);
  pointer-events: none
}
.cta-close-inner {
  position: relative
}
.cta-q {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(23px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 16px
}
.cta-q .hl {
  color: var(--g500)
}
.cta-sub {
  font-size: 17.5px;
  line-height: 2.4;
  color: var(--mu);
  max-width: 480px;
  margin: 0 auto 36px
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap
}
/* ── ACCESS ── */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px
}
.access-head {
  font-family: 'Zen Old Mincho', serif;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 32px
}
.access-tbl {
  width: 100%;
  border-collapse: collapse
}
.access-tbl tr {
  border-bottom: 1px solid var(--li)
}
.access-tbl td {
  padding: 13px 0;
  font-size: 17.5px;
  vertical-align: top
}
.access-tbl td:first-child {
  color: var(--mu);
  width: 86px;
  font-size: 18px;
  font-weight: 600
}
.access-note {
  margin-top: 20px;
	margin-bottom: 20px;
  padding: 16px 20px;
  background: var(--frost);
  border-left: 2px solid var(--g100);
  font-size: 17.5px;
  color: var(--mu);
  line-height: 2
}
.map-box {
  aspect-ratio: 4/3;
  background: var(--frost);
  border: 1px solid var(--li);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--mu);
  font-size: 17.5px
}
.rsv-panel {
  margin-top: 24px;
  padding: 26px 28px;
  background: linear-gradient(135deg, var(--g700), var(--g500))
}
.rsv-panel h4 {
  font-size: 18.5px;
  font-weight: 400;
  color: var(--w);
  margin-bottom: 10px
}
.rsv-tel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 35px;
  font-weight: 200;
  color: var(--g300);
  letter-spacing: .06em;
  margin: 6px 0 4px
}
.rsv-panel p {
  font-size: 17.5px;
  color: rgba(255, 255, 255, .4)
}
/* ── FOOTER ── */
footer {
	width: 100%;
  background: linear-gradient(160deg, var(--g700), #3d5a35);
  padding: 96px 80px 44px
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}
.fb-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  color: var(--w);
  letter-spacing: .2em;
  margin-bottom: 6px
}
.fb-tag {
  font-size: 17.5px;
  font-weight: 500;
  letter-spacing: .22em;
  color: rgba(255, 255, 255, .28);
  margin-bottom: 16px
}
.fb-info {
  font-size: 17.5px;
  line-height: 2.2;
  color: rgba(255, 255, 255, .3)
}
.fc-head {
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--g300);
  border-top: 1px solid rgba(111, 168, 100, .26);
  padding-top: 7px;
  margin-bottom: 16px
}
.fc-list {
  list-style: none
}
.fc-list li {
  margin-bottom: 8px
}
.fc-list a {
  font-size: 17.5px;
  color: rgba(255, 255, 255, .32);
  transition: color .2s
}
.fc-list a:hover {
  color: var(--w)
}
.footer-copy {
  max-width: 1080px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 17px;
  color: rgba(255, 255, 255, .2);
  letter-spacing: .05em;
  line-height: 2
}
/* ── REVEAL ── */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease
}
.rv.on {
  opacity: 1;
  transform: none
}
.rl {
  opacity: 0;
  transform: translateY(20px);	
/*  transform: translateX(-22px);*/
  transition: opacity .7s ease, transform .7s ease
}
.rl.on {
  opacity: 1;
  transform: none;
}
.rr {
  opacity: 0;
	transform:translateY(20px);
/*  transform: translateX(22px);*/
  transition: opacity .7s ease, transform .7s ease
}
.rr.on {
  opacity: 1;
  transform: none
}
.d1 {
  transition-delay: .1s
}
.d2 {
  transition-delay: .2s
}
.d3 {
  transition-delay: .3s
}
.d4 {
  transition-delay: .4s
}
/* ── Culture card with photo ── */
.culture-card-img {
  padding: 0;
  overflow: hidden;
}
.cc-photo {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.cc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: brightness(.8) saturate(.9);
}
.culture-card-img:hover .cc-photo img {
  transform: scale(1.06);
  filter: brightness(.65) saturate(.85);
}
.cc-body {
  padding: 20px 28px 32px;
}
.culture-card-img .culture-card-title {
  color: var(--ink);
/*	color: var(--w);
*/
	text-align: center;
}
.culture-card-img .culture-card-body {
	color:var(--ink);
/*  color: rgba(255, 255, 255, .52);*/
}
/* ── Transform card number ── */
.t-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 43px;
  font-weight: 200;
  color: var(--g300);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
/* ── Sub simple notice ── */
.sub-simple {
  background: var(--ink);
  padding: 56px 52px;
  text-align: center;
}
.sub-simple-badge {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17.5px;
  letter-spacing: .45em;
  color: var(--g300);
  border-top: 1px solid var(--g300);
  padding-top: 8px;
  margin-bottom: 20px;
}
.sub-simple-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(23px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--w);
  margin-bottom: 18px;
}
.sub-simple-desc {
  font-size: 17.5px;
  line-height: 2.5;
  color: rgba(255, 255, 255, .55);
  max-width: 520px;
  margin: 0 auto 20px;
}
.sub-simple-note {
  font-size: 17.5px;
  color: rgba(255, 255, 255, .28);
  letter-spacing: .08em;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}
/* ── Remove old sub styles ── */
/* culture-cards responsive */
@media(max-width:900px) {
  .cc-photo {
    height: 220px;
  }
}
/* ── DESIGN POLISH ── */
/* サブスク告知スタイル */
.sub-notice {
  background: var(--ink);
  padding: 48px 52px;
}
.sub-notice-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.sub-n-badge {
  display: inline-block;
  background: var(--warm);
  color: var(--w);
  font-size: 16.5px;
  letter-spacing: .28em;
  padding: 5px 16px;
  margin-bottom: 18px;
}
.sub-n-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 24px;
  color: var(--w);
  margin-bottom: 14px;
}
.sub-n-body {
  font-size: 17.5px;
  line-height: 2.4;
  color: rgba(255, 255, 255, .58);
  margin-bottom: 16px;
}
.sub-n-cond {
  font-size: 17.5px;
  color: rgba(255, 255, 255, .32);
  letter-spacing: .08em;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 14px;
}
/* より洗練されたセクションヘッド */
.sec-hd {
  position: relative;
}
.sec-hd::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--g100);
  margin: 20px auto 0;
}
/* プルクオート スタイル */
.pull-quote {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(23px, 2.8vw, 38px);
  font-weight: 400;
  line-height: 1.85;
  color: var(--ink);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}
.pull-quote::before, .pull-quote::after {
  font-family: 'Cormorant Garamond', serif;
  font-size: 84px;
  font-weight: 200;
  color: var(--g100);
  line-height: 0;
  position: absolute;
}
.pull-quote::before {
  content: '\201C';
  top: 36px;
  left: 0;
}
.pull-quote::after {
  content: '\201D';
  bottom: 0;
  right: 0;
}
/* より美しいtrust bar */
.trust-bar {
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.trust-num {
  font-size: 48px;
}
/* flow cards - より洗練 */
.flow-card {
  background: var(--w);
  transition: transform .3s, box-shadow .3s;
}
.flow-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(60, 90, 50, .06);
}
.flow-num {
  background: var(--g50);
  border-color: var(--g100);
  transition: background .3s, border-color .3s;
}
.flow-card:hover .flow-num {
  background: var(--g500);
  border-color: var(--g500);
  color: var(--w);
}
/* pain cards - 少し温かみを */
.pain-card {
  border-left: none;
}
.pain-q::before {
  color: var(--g100);
  font-size: 31px;
}
/* voice cards - より洗練 */
.voice-card {
  border-radius: 0;
}
.voice-card::before {
  font-size: 100px;
  color: var(--g50);
}
/* セクションの区切りをエレガントに */
.sec-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--li) 20%, var(--li) 80%, transparent);
  margin: 0;
}
/* ヒーローの微調整 - accentカラーをより上品に */
.hero-h1 .accent {
  color: var(--g500);
}
/* プログラムタグカード hover改善 */
.prog-tag {
  border-left: 3px solid transparent;
  transition: border-color .2s, background .2s, transform .2s;
}
.prog-tag:hover {
  border-left-color: var(--g300);
  transform: translateX(4px);
}
/* step bar - より見やすく */
.step-cell {
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.step-cell:hover {
  background: rgba(255, 255, 255, .05);
}
.step-label {
  letter-spacing: .35em;
  font-size: 16px;
}
.step-title {
  font-size: 18.5px;
  margin-bottom: 8px;
}
/* 美しいセパレーター */
.ornament {
  text-align: center;
  color: var(--g100);
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  letter-spacing: .5em;
  padding: 8px 0;
}
/* ── Concept new style ── */
.concept-headline {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(25px, 2.6vw, 36px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: .04em;
}
.concept-text p {
  font-size: 18.5px;
  line-height: 2.6;
  color: var(--mu);
  margin-bottom: 18px;
}
.concept-text strong {
  color: var(--ink);
  font-weight: 500;
}
/* ── Photo divider ── */
.photo-divider {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
}
.photo-divider-sm {
  height: 260px;
}
.photo-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(.55) saturate(.8);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.photo-divider:hover img {
  transform: scale(1);
}
.photo-divider-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(151, 127, 102, .03), rgba(60, 90, 50, .08));
}
.photo-divider-text {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(21px, 2.5vw, 34px);
  font-weight: 400;
  color: var(--w);
  text-align: center;
  line-height: 1.85;
  letter-spacing: .06em;
  text-shadow: 0 2px 20px rgba(74, 63, 61, .35);
}
/* ── Photo strip ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  height: 220px;
}
.ps-item {
  overflow: hidden;
}
.ps-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .4s ease;
  filter: brightness(.88) saturate(.9);
}
.ps-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}
/* ── Sub card row ── */
.sub-card-row {
  background: var(--ink);
  padding: 44px 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.5fr;
  gap: 1px;
  background: var(--ink);
  position: relative;
}
.sub-card-row::before {
  content: 'PREMIUM MEMBERS ONLY';
  position: absolute;
  top: -32px;
  left: 0;
  font-size: 16.5px;
  letter-spacing: .35em;
  color: var(--g300);
}
.sub-card-item {
  background: rgba(255, 255, 255, .05);
  border-left: 2px solid rgba(160, 200, 150, .25);
  padding: 22px 20px;
}
.sub-card-label {
  font-size: 17px;
  letter-spacing: .14em;
  color: var(--g300);
  margin-bottom: 10px;
}
.sub-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 31px;
  font-weight: 200;
  color: var(--w);
  line-height: 1.2;
}
.sub-card-price span {
  font-size: 17.5px;
  color: rgba(255, 255, 255, .4);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}
.sub-card-orig {
  font-size: 17.5px;
  color: rgba(255, 255, 255, .28);
  text-decoration: line-through;
  margin-top: 4px;
}
.sub-card-note {
  grid-column: 5;
  background: rgba(255, 255, 255, .03);
  border-left: 1px solid rgba(255, 255, 255, .07);
  padding: 22px 20px;
  font-size: 17.5px;
  line-height: 2;
  color: rgba(255, 255, 255, .38);
  display: flex;
  align-items: center;
}
/* ── Voice meta without avatar ── */
.voice-name {
  font-size: 17.5px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 3px
}
.voice-info {
  font-size: 17.5px;
  color: var(--mu)
}
@media(max-width:900px) {
  .photo-strip {
    grid-template-columns: 1fr;
    height: auto
  }
  .ps-item {
    height: 180px
  }
  .photo-divider {
    height: 220px
  }
  .photo-divider-sm {
    height: 160px
  }
  .sub-card-row {
    grid-template-columns: 1fr 1fr;
    padding: 32px 22px
  }
  .sub-card-note {
    grid-column: auto
  }
  /* ── スマホ文字最適化 ── */
  body {
    font-size: 18px;
    line-height: 2
  }
  .hero-h1 {
    font-size: 31px !important;
    line-height: 1.7
  }
  .hero-lead {
    font-size: 18px !important;
    line-height: 2.2
  }
  .hero-catch {
    font-size: 17.5px
  }
  .concept-headline {
    font-size: 26px
  }
  .concept-text p {
    font-size: 18px;
    line-height: 2.4
  }
  .sec-title {
    font-size: 24px
  }
  .sec-sub, .sec-sub-why {
    font-size: 18.5px
  }
  .voice-txt {
    font-size: 18px;
    line-height: 2.4
  }
  .voice-name {
    font-size: 17.5px
  }
  .voice-info {
    font-size: 17.5px
  }
  .pain-q {
    font-size: 18.5px;
    line-height: 2
  }
  .diff-after-title {
    font-size: 18.5px
  }
  .diff-after-body {
    font-size: 17.5px;
    line-height: 2.1
  }
  .diff-before-blk {
    font-size: 17.5px
  }
  .faq-q {
    font-size: 18.5px
  }
  .faq-a {
    font-size: 18.5px;
    line-height: 2.2
  }
  .sym-name {
    font-size: 18px
  }
  .sym-desc {
    font-size: 17.5px
  }
  .sd-list li {
    font-size: 17.5px
  }
  .flow-title {
    font-size: 18px
  }
  .flow-desc {
    font-size: 17.5px;
    line-height: 2
  }
  .bbar-txt {
    font-size: 17.5px
  }
  .total-name {
    font-size: 26px
  }
  .total-desc {
    font-size: 17.5px
  }
  .sg-name {
    font-size: 18.5px
  }
  .sg-desc {
    font-size: 17.5px
  }
  .sg-price {
    font-size: 22px
  }
  .transform-title {
    font-size: 24px
  }
  .transform-lead {
    font-size: 18.5px
  }
  .transform-list li {
    font-size: 18.5px
  }
  .prog-banner-text h3 {
    font-size: 20px
  }
  .prog-banner-text p {
    font-size: 17.5px;
    line-height: 2.2
  }
  .prog-tag-name {
    font-size: 17.5px
  }
  .access-tbl td {
    font-size: 18.5px
  }
  .photo-divider-text {
    font-size: 20px
  }
}
/* ── Total Care Card ── */
.total-card {
  background: linear-gradient(135deg, var(--g700), var(--g500));
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(95, 114, 86, .25);
}
.total-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, .1), transparent 65%);
}
.total-card-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 44px 48px;
  position: relative;
  z-index: 1;
}
.total-badge {
  display: inline-block;
  font-size: 16px;
  letter-spacing: .16em;
  font-weight: 700;
  color: var(--w);
  background: rgba(74, 63, 61, .28);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.total-name {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 400;
  color: var(--w);
  margin-bottom: 10px;
}
.total-desc {
  font-size: 17.5px;
  line-height: 2.1;
  color: rgba(255, 255, 255, .94);
  font-weight: 500;
  margin-bottom: 20px
}
.total-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}
.total-tags span {
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .85);
  font-size: 17.5px;
  padding: 5px 14px;
  letter-spacing: .04em;
}
.total-right {
  text-align: right
}
.total-price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(59px, 6vw, 84px);
  font-weight: 200;
  color: var(--w);
  line-height: 1;
  letter-spacing: -.02em;
}
.total-price-unit {
  font-size: 18.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .92);
  margin-top: 6px
}
/* ── Single grid ── */
.single-section {
  margin-bottom: 32px
}
.single-section-label {
  font-size: 17.5px;
  letter-spacing: .16em;
  color: var(--mu);
  text-align: center;
  padding: 20px 0 16px;
  border-top: 1px solid var(--li);
}
.single-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--li);
}
.sg-card {
  background: var(--w);
  padding: 24px 22px;
  transition: background .25s;
}
.sg-card:hover {
  background: var(--off)
}
.sg-name {
  font-size: 18.5px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px
}
.sg-desc {
  font-size: 17.5px;
  color: var(--mu);
  line-height: 1.8;
  margin-bottom: 14px
}
.sg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 29px;
  font-weight: 200;
  color: var(--g500);
}
/* ── Sub mention（1行告知）── */
.sub-mention {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 24px;
  background: var(--off);
  border-left: 3px solid var(--g100);
  margin-top: 40px;
/*  margin-top: 12px;*/
  font-size: 17.5px;
}
.sub-m-step {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17.5px;
  letter-spacing: .3em;
  color: var(--g300);
  white-space: nowrap;
}
.sub-m-title {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  font-size: 18px
}
.sub-m-body {
  color: var(--mu);
  line-height: 1.8
}
/* total card mobile */
@media(max-width:900px) {
  .total-card-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 24px
  }
  .total-right {
    text-align: left
  }
  .single-grid {
    grid-template-columns: 1fr 1fr
  }
  .sub-mention {
    flex-direction: column;
    gap: 6px
  }
  .sub-m-title {
    font-size: 18px
  }
  .sub-m-body {
    font-size: 17.5px
  }
}
/* ── sp-br: スマホのみ改行 ── */
.sp-br {
  display: none;
}
@media(max-width:600px) {
  .sp-br {
    display: block;
  }
}
/* ── Menu Cards ── */
.menu-card {
  border-bottom: 1px solid var(--li);
  padding: 28px 0;
  transition: background .2s;
}
.menu-card:first-child {
  border-top: 1px solid var(--li);
}
.mc-header {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 20px;
}
.mc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 35px;
  font-weight: 200;
  color: var(--g300);
  line-height: 1.1;
  padding-top: 4px;
}
.mc-name {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 6px;
}
.mc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 29px;
  font-weight: 200;
  color: var(--g500);
}
.mc-price span {
  font-size: 17.5px;
  font-weight: 600;
  color: var(--mu);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}
.mc-body {
  padding-left: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mc-label {
  font-size: 17px;
  letter-spacing: .2em;
  color: var(--g300);
  margin-bottom: 10px;
  border-bottom: 1px solid var(--g100);
  padding-bottom: 5px;
}
.mc-for ul {
  list-style: none;
  padding: 0;
}
.mc-for li {
  font-size: 18.5px;
  line-height: 1.9;
  color: var(--tx);
  padding-left: 14px;
  position: relative;
  margin-bottom: 6px;
}
.mc-for li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .7em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--g300);
}
.mc-what p {
  font-size: 18.5px;
  line-height: 2;
  color: var(--mu);
}
.mc-pro {
  display: block;
  margin-top: 10px;
  font-size: 17.5px;
  color: var(--g300);
  font-style: italic;
  letter-spacing: .02em;
}
/* ── LINE button（アクセス内） ── */
.line-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #06C755;
  color: var(--w);
  padding: 20px 24px;
  margin-bottom: 20px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.line-btn:hover {
  background: #05a847;
  transform: translateX(3px);
}
.line-btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17.5px;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.line-btn-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 3px;
}
.line-btn-sub {
  font-size: 17.5px;
  color: rgba(255, 255, 255, .75);
}
.line-btn-arr {
  margin-left: auto;
  font-size: 22px;
  opacity: .7;
}
/* ── LINE bottom bar ── */
.bbar-4 {
  grid-template-columns: repeat(4, 1fr);
}
.bbar-line {
  background: rgba(6, 199, 85, .15);
}
.bbar-line:hover {
  background: rgba(6, 199, 85, .3) !important;
  color: var(--w) !important;
}
.bbar-line-icon {
  font-size: 17.5px;
  font-weight: 700;
  background: #06C755;
  color: var(--w);
  border-radius: 4px;
  padding: 2px 7px 3px;
  letter-spacing: 0;
}
/* ── Local section ── */
.local-sec {
  background: linear-gradient(150deg, var(--g700), var(--g500));
}
.local-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 280px;
  gap: 3px;
}
.local-photo {
  overflow: hidden;
  position: relative;
}
.local-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.68) saturate(.85);
  transition: transform .6s ease, filter .4s;
}
.local-photo:hover img {
  transform: scale(1.06);
  filter: brightness(.8) saturate(.9);
}
.local-body {
  padding: 52px 0;
}
.local-inner {
  max-width: 700px;
}/*変更 640→700*/
.local-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(25px, 2.8vw, 34px);
  font-weight: 400;
  color: var(--w);
  line-height: 1.75;
  margin-bottom: 22px;
}
.local-text {
  font-size: 18px;
  line-height: 2.5;
  color: rgba(255, 255, 255, .6);
}
/* ── Video section ── */
.video-sec {
  padding: 80px 0;
  background: var(--off);
}
.video-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}
.video-placeholder-box {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.video-placeholder-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(74, 124, 63, .15), transparent 65%);
}
.vpb-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.vpb-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: rgba(255, 255, 255, .7);
  margin: 0 auto 20px;
}
.vpb-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 22px;
  color: var(--w);
  margin-bottom: 8px;
}
.vpb-sub {
  font-size: 17.5px;
  color: rgba(255, 255, 255, .45);
}
.video-iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}
/* ── Font 大幅改善（スマホ） ── */
@media(max-width:900px) {
  .mc-body {
    grid-template-columns: 1fr;
    padding-left: 0;
    gap: 16px;
  }
  .mc-header {
    grid-template-columns: 36px 1fr;
  }
  .mc-num {
    font-size: 26px;
  }
  .mc-name {
    font-size: 20px;
  }
  .mc-for li, .mc-what p {
    font-size: 18px;
  }
  .local-photos {
    height: 200px;
  }
  .local-title {
    font-size: 24px;
  }
  .local-text {
    font-size: 18.5px;
  }
  .line-btn {
    padding: 16px 18px;
  }
  .line-btn-title {
    font-size: 18.5px;
  }
  .video-container {
    padding: 0 16px;
  }
}
/* ── Hero symptom tags ── */
.hero-symptom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  animation: up .8s .35s both;
  position: relative
}
.hero-symptom-tags span {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .8);
  font-size: 18.5px;
  font-weight: 500;
  padding: 5px 14px;
  letter-spacing: .04em;
  transition: background .2s, border-color .2s;
  cursor: default
}
.hero-symptom-tags span:hover {
  background: rgba(74, 124, 63, .4);
  border-color: var(--g300);
  color: var(--w)
}
/* ── Symptom Accordion ── */
.sym-accordion {
  border-top: 1px solid var(--li)
}
.sac-item {
  border-bottom: 1px solid var(--li)
}
.sac-head {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 12px;
  text-align: left;
  transition: background .2s
}
.sac-head:hover {
  background: rgba(74, 124, 63, .03)
}
.sac-item.open .sac-head {
  background: var(--g50);
  padding: 18px 12px;
  margin: 0 -12px;
  width: calc(100% + 24px)
}
.sac-hl {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1
}
.sac-mini {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0
}/*変更 width*/
.sac-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.sac-tag {
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--g300);
  margin-bottom: 3px
}
.sac-name {
  font-family: 'Zen Old Mincho', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ink)
}
.sac-arr {
  font-size: 24px;
  color: var(--g300);
  flex-shrink: 0;
  transition: transform .35s;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 200;
  line-height: 1
}
.sac-item.open .sac-arr {
  transform: rotate(45deg);
  color: var(--g500)
}
.sac-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4, 0, .2, 1)
}
.sac-item.open .sac-body {
  max-height: 500px
}
.sac-inner {
  padding: 14px 0 22px 66px
}
.sac-desc {
  font-size: 18.5px;
  line-height: 2;
  color: var(--mu);
  margin-bottom: 18px
}
.sac-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}
.sac-note {
  font-size: 17.5px;
  font-weight: 500;
  color: var(--warm);
  margin-top: 12px;
  font-style: italic;
  grid-column: 1/-1
}
/* ── Kids compact ── */
.kids-compact {
  padding: 24px 0;
  background: var(--mist)
}
.kids-compact-inner {
  background: var(--w);
  padding: 22px 28px;
  border-left: 3px solid var(--g100)
}
.kids-compact-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px
}
.kids-compact-text {
  font-size: 17.5px;
  line-height: 2;
  color: var(--mu)
}
/* ── FAQ more ── */
.faq-more {
  display: none
}
.faq-more.show {
  display: block
}
.faq-toggle-btn {
  width: 100%;
  margin-top: 14px;
  background: none;
  border: 1px solid var(--li);
  color: var(--mu);
  font-size: 17.5px;
  letter-spacing: .1em;
  padding: 14px;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  transition: border-color .2s, color .2s, background .2s
}
.faq-toggle-btn:hover {
  border-color: var(--g300);
  color: var(--g500);
  background: var(--g50)
}
@media(max-width:900px) {
  .hero-symptom-tags span {
    font-size: 17.5px;
    padding: 5px 11px
  }
  .sac-inner {
    padding: 12px 0 20px 0
  }
  .sac-detail {
    grid-template-columns: 1fr
  }
  .sac-name {
    font-size: 19px
  }
}
/* ─────────────────────────────────────
   TRANSPARENCY & GLASS DESIGN
───────────────────────────────────── */
/* ガラスカード */
.glass {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
  box-shadow: 0 4px 32px rgba(60, 90, 50, .06);
}
.glass-dark {
  background: rgba(74, 63, 61, 0.55);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, .1);
}
/* ─ 海・橋の写真を背景にしたセクション ─ */
.photo-bg-wrap {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  isolation: isolate;
}
.photo-bg-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(74, 63, 61, .42);
  backdrop-filter: saturate(.9);
  z-index: 0;
}
.photo-bg-content {
  position: relative;
  z-index: 1;
  padding: 80px 52px;
}
@media(max-width:900px) {
  .photo-bg-wrap {
    background-attachment: scroll;
  }
}
.photo-bg-quote {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 400;
  color: var(--w);
  text-align: center;
  line-height: 1.9;
  letter-spacing: .06em;
  text-shadow: 0 2px 20px rgba(74, 63, 61, .3);
  margin-bottom: 12px;
}
.photo-bg-sub {
  text-align: center;
  font-size: 17.5px;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .12em;
}
/* ─ カード類を柔らかく ─ */
/* 角を少し丸める */
.diff-card, .voice-card, .pcard, .flow-card, .prog-tag, .menu-card, .mc-header, .total-card, .sac-item {
  border-radius: 3px;
}
.total-card {
  border-radius: 6px;
  overflow: hidden;
}
.total-card-inner {
  border-radius: 0;
}
/* ボーダーをシャドウに変えて柔らかく */
.diff-card {
  border: none !important;
  box-shadow: 0 2px 20px rgba(60, 90, 50, .05);
  margin-bottom: 4px;
}
.diff-grid {
  gap: 8px !important;
  background: transparent !important;
}
.voice-card {
  border: none !important;
  box-shadow: 0 3px 24px rgba(60, 90, 50, .07);
}
.flow-card {
  box-shadow: 0 3px 20px rgba(60, 90, 50, .05);
  border: none !important;
}
.flow-grid {
  gap: 12px !important;
  background: transparent !important;
}
.prog-tag {
  box-shadow: 0 2px 12px rgba(60, 90, 50, .04);
  border: none !important;
}
.prog-tags {
  gap: 12px;
}
/* ─ アプローチカードにガラス感 ─ */
.approach-card {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none !important;
  box-shadow: 0 4px 28px rgba(60, 90, 50, .06);
  border-radius: 4px;
}
.approach-grid {
  gap: 10px !important;
  background: transparent !important;
}
/* ─ sec-frost の背景に微妙なテクスチャ ─ */
.sec-frost {
  background: linear-gradient(160deg, #f6fbf4 0%, #eef8fb 55%, #f3fbf1 100%) !important;
}
/* ─ セクションの境界をグラデーションで溶かす ─ */
.sec-fade-top {
  position: relative;
}
.sec-fade-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, var(--w), transparent);
  z-index: 1;
  pointer-events: none;
}
/* ─ ヒーロー chip をガラスに ─ */
.hero-chip {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  border-left: 3px solid rgba(74, 124, 63, .7);
  box-shadow: 0 8px 32px rgba(60, 90, 50, .08);
  border-radius: 2px;
}
/* ─ メニューカードを柔らかく ─ */
.menu-card {
  border-bottom: 1px solid rgba(226, 232, 222, .6);
  border-radius: 0;
}
.menu-card:hover {
  background: rgba(244, 247, 242, .5);
}
.total-tags span {
  background: rgba(255, 255, 255, .15);
  border-radius: 2px;
}
/* ─ navをよりガラスらしく ─ */
.nav {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
}
/* ─ パターン背景（CTA付近）─ */
.sec-off {
  background: linear-gradient(145deg, #fcfefb 0%, #f6fbf7 50%, #f9fdf6 100%) !important;
}
/* ─ 患者の声セクション 背景に微テクスチャ ─ */
.voice-grid .voice-card {
  transition: transform .3s, box-shadow .3s;
}
.voice-grid .voice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(60, 90, 50, .08);
}
/* ─ trust bar をガラス帯に ─ */
.trust-bar-wrap {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  isolation: isolate;
}
.trust-bar {
  position: relative;
  z-index: 1;
  background: rgba(107, 138, 92, .6) !important;
  backdrop-filter: blur(6px) saturate(1.2);
  -webkit-backdrop-filter: blur(6px) saturate(1.2);
}
@media(max-width:900px) {
  .trust-bar-wrap {
    background-attachment: scroll;
  }
}
@media(max-width:900px) {
  .photo-bg-content {
    padding: 56px 22px;
  }
  .diff-grid {
    grid-template-columns: 1fr !important;
  }
  .approach-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ── 文字太さ全体強化 ── */
body {
  font-weight: 400 !important;
}
/* 本文系 */
.pain-q {
  font-weight: 400;
  color: var(--ink);
}
.diff-before-text {
  font-weight: 400;
}
.diff-after-body {
  font-weight: 400;
  font-size: 17.5px;
  line-height: 2.1;
}
.sac-desc {
  font-weight: 400;
}
.sd-list li {
  font-weight: 400;
  font-size: 17.5px;
}
.mc-for li {
  font-weight: 400;
}
.mc-what p {
  font-weight: 400;
}
.prog-tag-desc {
  font-weight: 400;
}
.access-tbl td {
  font-weight: 400;
}
.local-text {
  font-weight: 400;
}
.sub-m-body {
  font-weight: 400;
}
.footer-copy {
  font-weight: 400;
}
.fb-info {
  font-weight: 400;
}
.fc-list a {
  font-weight: 400;
}
.flow-desc {
  font-weight: 400;
  font-size: 18px;
}
.transform-lead {
  font-weight: 400;
  font-size: 18.5px;
}
.transform-list li {
  font-weight: 400;
  font-size: 18.5px;
}
.t-card-body {
  font-weight: 400;
  font-size: 17.5px;
}
.total-desc {
  font-weight: 400;
}
.sg-desc {
  font-weight: 400;
}
.photo-bg-sub {
  font-weight: 400;
}
.atm-sub {
  font-weight: 400;
}
.hero-lead {
  font-weight: 400;
}
.sec-sub, .sec-sub-why {
  font-weight: 400;
}
.concept-copy p {
  font-weight: 400;
}
.concept-text p {
  font-weight: 400;
}
.faq-a {
  font-weight: 400;
}
.voice-txt {
  font-weight: 400;
}
.rsv-panel p {
  font-weight: 400;
}
.line-btn-sub {
  font-weight: 400;
}
.access-note {
  font-weight: 400;
}
.single-section-label {
  font-weight: 400;
}
.mc-pro {
  font-weight: 400;
}
.kids-compact-text {
  font-weight: 400;
}
/* タイトル・見出し系は500に */
.diff-after-title {
  font-weight: 500;
}
.flow-title {
  font-weight: 500;
}
.voice-name {
  font-weight: 500;
}
.mc-name {
  font-weight: 500;
}
.prog-tag-name {
  font-weight: 500;
}
.sg-name {
  font-weight: 500;
}
.kids-compact-title {
  font-weight: 500;
}
.sub-m-title {
  font-weight: 500;
}
.total-name {
  font-weight: 400;
}
.sac-name {
  font-weight: 500 !important;
}
/* muted色も少し濃く（読みやすく） */ :root {
  --mu: #5a6256 !important;
}
/* ── さらに明るく親しみやすいタッチ ── */
body {
  background: linear-gradient(180deg, #ffffff 0%, #fdfffd 100%);
}
/* ボタンをより丸く親しみやすく */
.btn-main, .btn-sub, .nav-cta, .line-btn, .prog-consult {
  border-radius: 3px;
}
/* symptom tags を丸いピルに */
.hero-symptom-tags span {
  border-radius: 20px;
}
.kids-tag, .total-tags span, .skill-chip, .voice-tag, .sac-tag {
  border-radius: 20px;
}
/* カード全体の角丸を少し強く（柔らかい印象） */
.sac-item, .menu-card, .voice-card, .diff-card, .flow-card, .pcard, .prog-tag, .approach-card {
  border-radius: 6px;
  overflow: hidden;
}
/* ── ふんわり光る背景アクセント（各セクション） ── */
.sec {
  position: relative;
}
/* ヒーロー右画像を少し明るく */
.hero-r img {
  filter: brightness(1.02) saturate(1.05);
}
/* accent色をやや明るいグリーンに */
.hero-h1 .accent, .cta-q .hl, .transform-title .hl {
  color: var(--g500);
}
/* ── CAT ボタン（アクティベーターアイコン）── */
.cat-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--g500);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--w);
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.cat-btn:hover {
  background: var(--g700);
  transform: scale(1.06);
}
.cat-btn.open {
  background: var(--g700);
}
.cat-icon {
  width: 22px;
  height: 22px;
}
/* ── CAT パネル ── */
.cat-overlay {
  position: fixed;
  inset: 0;
  background: rgba(151, 127, 102, .03);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  z-index: 950;
}
.cat-overlay.show {
  opacity: 1;
  visibility: visible;
}
.cat-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 86vw);
  height: 100vh;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  box-shadow: -8px 0 48px rgba(151, 127, 102, .08);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  z-index: 960;
  overflow-y: auto;
}
.cat-panel.show {
  transform: translateX(0);
}
.cat-panel-inner {
  padding: 32px 28px 40px;
}
.cat-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--li);
}
.cat-panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: .4em;
  color: var(--g300);
}
.cat-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--frost);
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: var(--mu);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.cat-close:hover {
  background: var(--mist);
}
.cat-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 4px;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--li);
  transition: color .2s, padding-left .2s;
}
.cat-link:hover {
  color: var(--g500);
  padding-left: 10px;
}
.cat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--g300);
  min-width: 28px;
}
.cat-cta {
  display: block;
  text-align: center;
  margin-top: 28px;
  padding: 16px;
  background: var(--g500);
  color: var(--w) !important;
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: .08em;
  border-radius: 4px;
  transition: background .2s;
}
.cat-cta:hover {
  background: var(--g700);
}
@media(max-width:900px) {
  .cat-panel {
    width: min(320px, 88vw);
  }
  .cat-btn {
    width: 38px;
    height: 38px;
  }
  .cat-icon {
    width: 20px;
    height: 20px;
  }
}
/* ── 実動画埋め込み ── */
.video-native {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  background: var(--ink);
  border-radius: 4px;
  box-shadow: 0 12px 48px rgba(151, 127, 102, .07);
}
/* ═══════════════════════════════════════
   GLASSMORPHISM UPGRADE — 透明感・優しさ・清潔感
═══════════════════════════════════════ */
/* 基本のグラス質感を全カード共通に */
.diff-card, .voice-card, .pcard, .flow-card, .prog-tag, .menu-card, .approach-card, .sac-item, .t-card, .sub-card-item, .local-photo, .photo-divider-overlay {
  border-radius: 18px !important;
}
.diff-card {
  background: rgba(253, 252, 250, .75) !important;
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, .6) !important;
  box-shadow: 0 8px 32px rgba(151, 127, 102, .04), 0 1px 3px rgba(151, 127, 102, .03) !important;
  padding: 32px 28px !important;
}
.approach-card {
  background: rgba(253, 252, 250, .72) !important;
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, .55) !important;
  box-shadow: 0 8px 32px rgba(151, 127, 102, .04) !important;
}
.voice-card {
  background: rgba(253, 252, 250, .78) !important;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, .5) !important;
  box-shadow: 0 10px 36px rgba(151, 127, 102, .04) !important;
}
.flow-card {
  background: rgba(253, 252, 250, .7) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(151, 127, 102, .03) !important;
}
.pcard, .sg-card, .menu-card {
  border-radius: 16px !important;
}
.pcard {
  background: rgba(253, 252, 250, .7) !important;
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 28px rgba(151, 127, 102, .03) !important;
  border: 1px solid rgba(255, 255, 255, .5) !important;
}
.total-card {
  border-radius: 22px !important;
  background: linear-gradient(135deg, rgba(107, 138, 92, .92), rgba(84, 112, 74, .94)) !important;
  backdrop-filter: blur(18px);
}
.sac-item {
  background: rgba(253, 252, 250, .4);
  margin-bottom: 8px;
	padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .4);
}/*追加 padding*/
.sac-item.open .sac-head {
  background: rgba(238, 241, 232, .6) !important;
  backdrop-filter: blur(10px);
  border-radius: 14px !important;
}
.hero-chip {
  background: rgba(253, 252, 250, .82) !important;
  backdrop-filter: blur(18px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.4) !important;
  border-radius: 16px !important;
  border-left: none !important;
  border: 1px solid rgba(255, 255, 255, .6) !important;
  box-shadow: 0 12px 40px rgba(151, 127, 102, .03) !important;
}
.nav {
  background: rgba(253, 252, 250, .78) !important;
  backdrop-filter: blur(28px) saturate(1.6) !important;
  -webkit-backdrop-filter: blur(28px) saturate(1.6) !important;
  border-bottom: 1px solid rgba(255, 255, 255, .4) !important;
}
.line-btn {
  border-radius: 16px !important;
}
.total-tags span, .kids-tag, .hero-symptom-tags span, .skill-chip, .voice-tag, .sac-tag {
  border-radius: 24px !important;
}
.reserve-panel, .rsv-panel {
  border-radius: 18px !important;
  background: linear-gradient(135deg, var(--g700), var(--g500)) !important;
  backdrop-filter: blur(16px);
}
.cat-panel {
  background: rgba(253, 252, 250, .9) !important;
  backdrop-filter: blur(28px) saturate(1.5) !important;
  -webkit-backdrop-filter: blur(28px) saturate(1.5) !important;
}
.sub-card-item {
  background: rgba(255, 255, 255, .06) !important;
  backdrop-filter: blur(10px);
}
.total-card, .sub-wrap, .sub-card-row {
  box-shadow: 0 16px 48px rgba(151, 127, 102, .09) !important;
}
/* ボタンも柔らかく */
.btn-main, .btn-sub, .cta-primary {
  border-radius: 30px !important;
}
.line-btn, .prog-consult, .cat-cta {
  border-radius: 30px !important;
}
/* シャドウを全体的に柔らかい暖色系に統一 */
* {
  --shadow-warm: rgba(151, 127, 102, .05);
}
/* ═══════════════════════════════════════
   SPACING UPGRADE — 呼吸できるレイアウト
═══════════════════════════════════════ */
.sec {
  padding: 128px 0 !important;
}
.wrap {
  padding: 0 64px !important;
}
.sec-hd {
  margin-bottom: 88px !important;
}
.diff-grid {
  gap: 20px !important;
}
.approach-grid {
  gap: 16px !important;
}
.voice-grid {
  gap: 28px !important;
}
.flow-grid {
  gap: 24px !important;
}
.prog-tags {
  gap: 16px !important;
}
.single-grid {
  gap: 16px !important;
}
.diff-card {
  padding: 36px 32px !important;
}
.approach-card {
  padding: 60px 44px !important;
}
.voice-card {
  padding: 40px 36px !important;
}
.flow-card {
  padding: 44px 32px !important;
}
.pcard {
  padding: 48px 40px !important;
}
.sg-card {
  padding: 30px 26px !important;
}
.menu-card {
  padding: 36px 4px !important;
}
.hero-l {
  padding: 100px 72px 100px 88px !important;
}
.concept-copy {
  padding: 88px 72px !important;
}
.total-card-inner {
  padding: 56px 60px !important;
  gap: 40px !important;
}
.sub-left {
  padding: 72px 60px !important;
}
.sub-right {
  padding: 72px 52px 72px 0 !important;
}
.sub-r-grid {
  gap: 16px !important;
}
.mc-header {
  margin-bottom: 24px !important;
}
.mc-body {
  gap: 28px !important;
}
.photo-bg-content {
  padding: 100px 60px !important;
}
.local-body {
  padding: 72px 0 !important;
}
.sac-inner {
  padding: 20px 0 28px 66px !important;
}
.sac-head {
  padding: 24px 0 !important;
}
.faq-item {
  padding: 4px 15px !important;
}
.faq-q {
  padding: 24px 0 !important;
}
.faq-a {
  padding: 0 0 0 32px !important;
}
.faq-item.open .faq-a {
  padding: 0 0 28px 32px !important;
}
.access-grid {
  gap: 88px !important;
}
.profile-layout {
  gap: 88px !important;
}
.kids-layout {
  gap: 88px !important;
}
.footer-inner {
  gap: 64px !important;
  padding-bottom: 56px !important;
}
@media(max-width:900px) {
  .sec {
    padding: 76px 0 !important;
  }
  .wrap {
    padding: 0 26px !important;
  }
  .sec-hd {
    margin-bottom: 56px !important;
  }
  .hero-l {
    padding: 60px 26px 52px !important;
  }
  .approach-card {
    padding: 40px 28px !important;
  }
  .concept-copy {
    padding: 52px 26px !important;
  }
}
/* ═══════════════════════════════════════
   FIXED BACKGROUND / PARALLAX — 雑誌のような佇まい
═══════════════════════════════════════ */
/* (旧背景固定コードは新方式に統合済み) */
/* ═══════════════════════════════════════
   TYPOGRAPHY — 雑誌のような上品な佇まい
═══════════════════════════════════════ */
body {
  line-height: 2.15 !important;
  letter-spacing: .03em !important;
}
.hero-h1 {
  line-height: 2 !important;
  letter-spacing: .08em !important;
}
.hero-lead {
  line-height: 2.9 !important;
  letter-spacing: .05em !important;
}
.sec-title {
  line-height: 1.9 !important;
  letter-spacing: .1em !important;
}
.sec-sub .sec-sub-why {
  line-height: 2.6 !important;
  letter-spacing: .04em !important;
}
.concept-headline {
  line-height: 2.1 !important;
  letter-spacing: .1em !important;
}
.concept-text p, .concept-copy p {
  line-height: 3 !important;
  letter-spacing: .04em !important;
}
.sac-desc, .mc-for li, .mc-what p, .voice-txt, .diff-after-body, .flow-desc, .transform-lead, .transform-list li, .kids-compact-text, .local-text, .access-tbl td, .faq-a {
	  line-height: 2 !important;
/*  line-height: 2.5 !important;*/
  letter-spacing: .03em !important;
}
.en-label {
  letter-spacing: .55em !important;
}
.nav-links a {
  letter-spacing: .22em !important;
}
.pain-q {
  line-height: 2.3 !important;
  letter-spacing: .04em !important;
}
.total-desc, .sg-desc, .prog-tag-desc, .prog-banner-text p {
  line-height: 2.3 !important;
  letter-spacing: .03em !important;
}
/* ═══════════════════════════════════════
   SPACING v2 — さらに呼吸する余白へ
═══════════════════════════════════════ */
.sec {
  padding: 168px 0 !important;
}
.wrap {
  padding: 0 80px !important;
  max-width: 1180px !important;
}
.sec-hd {
  margin-bottom: 120px !important;
}
.diff-grid {
  gap: 28px !important;
}
.approach-grid {
  gap: 24px !important;
}
.voice-grid {
  gap: 40px !important;
}
.flow-grid {
  gap: 32px !important;
}
.prog-tags {
  gap: 22px !important;
}
.single-grid {
  gap: 22px !important;
}
.diff-card {
  padding: 48px 40px !important;
}
.approach-card {
  padding: 76px 52px !important;
}
.voice-card {
  padding: 52px 44px !important;
}
.flow-card {
  padding: 56px 40px !important;
}
.pcard {
  padding: 60px 48px !important;
}
.hero-l {
  padding: 140px 88px 140px 104px !important;
}
.concept-copy {
  padding: 116px 88px !important;
}
.concept-split {
  min-height: 720px !important;
}
.total-card-inner {
  padding: 72px 76px !important;
  gap: 52px !important;
}
.sub-left {
  padding: 92px 76px !important;
}
.sub-right {
  padding: 92px 64px 92px 0 !important;
}
.mc-header {
  margin-bottom: 32px !important;
}
.mc-body {
  gap: 36px !important;
}
.menu-card {
  padding: 48px 4px !important;
}
.photo-bg-content {
  padding: 160px 76px !important;
}
.local-body {
  padding: 96px 0  !important;
}
.local-photos {
  height: 520px !important;
}/*変更　360→520*/
.sac-inner {
  padding: 28px 0 36px 78px !important;
}
.sac-head {
	  padding: 20px 0 !important;
/*  padding: 32px 0 !important;*/
}
.faq-q {
  padding: 32px 0 !important;
}
.faq-a {
  padding: 0 0 0 40px !important;
}
.faq-item.open .faq-a {
  padding: 0 20px 36px 40px !important;
}
.access-grid {
  gap: 112px !important;
}
.profile-layout {
  gap: 112px !important;
}
.kids-layout {
  gap: 112px !important;
}
.footer-inner {
  gap: 80px !important;
  padding-bottom: 72px !important;
}
footer {
  padding: 96px 80px 44px !important;
}
.hero-symptom-tags {
  gap: 12px !important;
  margin-top: 40px !important;
}
.hero-symptom-tags span {
  padding: 8px 20px !important;
}
.total-tags {
  gap: 12px !important;
}
.total-tags span {
  padding: 7px 18px !important;
}
@media(max-width:900px) {
  .sec {
    padding: 88px 0 !important;
  }
  .wrap {
    padding: 0 28px !important;
  }
  .sec-hd {
    margin-bottom: 64px !important;
  }
  .hero-l {
    padding: 68px 28px 60px !important;
  }
  .approach-card {
    padding: 48px 32px !important;
  }
  .concept-copy {
    padding: 60px 28px !important;
  }
  body {
    line-height: 1.95 !important;
    letter-spacing: .02em !important;
  }
  .hero-lead {
    line-height: 2.4 !important;
  }
}
/* ═══════════════════════════════════════
   ROUNDED CORNERS — 上品な丸み統一
═══════════════════════════════════════ */
.diff-card, .voice-card, .pcard, .flow-card, .prog-tag, .menu-card, .approach-card, .sac-item {
  border-radius: 20px !important;
}
.hero-chip, .cat-panel, .reserve-panel, .rsv-panel {
  border-radius: 18px !important;
}
.total-card {
  border-radius: 24px !important;
}
.sub-wrap, .sub-card-row {
  border-radius: 20px !important;
  overflow: hidden;
}
.line-btn {
  border-radius: 18px !important;
}
.btn-main, .btn-sub, .cta-primary, .prog-consult, .cat-cta {
  border-radius: 32px !important;
}
.sg-card {
  border-radius: 14px !important;
}
.map-box, .local-photo, .sym-card-img, .kids-photo, .kids-compact-inner {
  border-radius: 16px !important;
  overflow: hidden;
}
.total-tags span, .kids-tag, .hero-symptom-tags span, .skill-chip, .voice-tag, .sac-tag, .prog-tag-name {
  border-radius: 24px !important;
}
/* ═══════════════════════════════════════
   INTERIOR PLACEHOLDER — 院内写真枠
═══════════════════════════════════════ */
.interior-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
}
.interior-slot-lg {
  grid-column: 1/3;
  grid-row: 1/3;
}
.interior-slot {
  background: repeating-linear-gradient(135deg, rgba(147, 169, 134, .06), rgba(147, 169, 134, .06) 10px, rgba(147, 169, 134, .12) 10px, rgba(147, 169, 134, .12) 20px);
  border: 1.5px dashed var(--li);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.interior-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interior-slot-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.interior-icon {
  font-size: 35px;
  opacity: .35;
}
.interior-text {
  font-size: 16.5px;
  letter-spacing: .12em;
  color: var(--mu);
  opacity: .6;
}
@media(max-width:900px) {
  .interior-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px 160px;
  }
  .interior-slot-lg {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
/* ═══════════════════════════════════════
   BLOG / NEWS — お知らせ・ブログ
═══════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: rgba(253, 252, 250, .75);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 20px;
  padding: 36px 32px;
  display: block;
  box-shadow: 0 6px 28px rgba(151, 127, 102, .03);
  transition: transform .3s, box-shadow .3s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(151, 127, 102, .06);
}
.blog-card-date {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}
.blog-date-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 37px;
  font-weight: 300;
  color: var(--g500);
  line-height: 1;
}
.blog-date-month {
  font-size: 16px;
  color: var(--mu);
  letter-spacing: .08em;
}
.blog-card-tag {
  display: inline-block;
  background: var(--mist);
  color: var(--g500);
  font-size: 15px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.blog-card-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.7;
}
.blog-card-excerpt {
  font-size: 16.5px;
  line-height: 2.2;
  color: var(--mu);
}
.blog-card-empty {
  background: repeating-linear-gradient(135deg, rgba(147, 169, 134, .05), rgba(147, 169, 134, .05) 10px, rgba(147, 169, 134, .1) 10px, rgba(147, 169, 134, .1) 20px);
  border: 1.5px dashed var(--li);
  box-shadow: none;
  min-height: 220px;
}
.blog-empty-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.blog-empty-icon {
  font-size: 31px;
  opacity: .3;
}
.blog-empty-text {
  font-size: 16.5px;
  color: var(--mu);
  opacity: .55;
  letter-spacing: .1em;
}
@media(max-width:900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
/* ═══════════════════════════════════════
   FLOW TIMELINE — 見やすい横長タイムライン
═══════════════════════════════════════ */
.flow-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.flow-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 36px;
  background: rgba(253, 252, 250, .7);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 18px;
  transition: background .3s, transform .3s;
}
.flow-row:hover {
  background: rgba(253, 252, 250, .9);
  transform: translateX(4px);
}
.flow-row-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 43px;
  font-weight: 300;
  color: var(--g300);
  line-height: 1;
}
.flow-row-body {}
.flow-row-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.flow-row-desc {
  font-size: 16.5px;
  line-height: 2;
  color: var(--mu);
}
.flow-row-tag {
  background: var(--mist);
  color: var(--g500);
  font-size: 16px;
  padding: 8px 18px;
  border-radius: 24px;
  white-space: nowrap;
  letter-spacing: .03em;
}
@media(max-width:900px) {
  .flow-row {
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 24px 22px;
  }
  .flow-row-num {
    font-size: 33px;
  }
  .flow-row-tag {
    grid-column: 1/3;
    justify-self: start;
    margin-top: 8px;
  }
}
/* ═══════════════════════════════════════
   HERO FULL — 最重要ファーストビュー刷新
═══════════════════════════════════════ */
.hero-full {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
  overflow: hidden;
}
.hero-full-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroFullKB 22s ease-in-out infinite alternate;
  transform-origin: center center;
}
@keyframes heroFullKB {
  0% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}
.hero-full-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(253, 252, 250, .15) 0%, rgba(253, 252, 250, .35) 45%, rgba(107, 138, 92, .55) 100%), radial-gradient(ellipse 70% 60% at 50% 100%, rgba(253, 252, 250, .4) 0%, transparent 70%);
}
.hero-full-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  padding: 0 32px;
  display: flex;
  justify-content: center;
}
.hero-glass-card {
	margin-top: 20px;/*追加*/
	margin-bottom: 20px;/*追加*/
  background: rgba(253, 252, 250, .68);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 28px;
  padding: 72px 68px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(151, 127, 102, .11);
  animation: heroCardIn 1s .2s cubic-bezier(.16, 1, .3, 1) both;
}
@keyframes heroCardIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.hero-eyebrow2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  letter-spacing: .38em;
  color: var(--g500);
  margin-bottom: 36px;
  font-weight: 600;
}
.hero-eyebrow2 i {
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--g300);
}
.hero-h1-new {
  font-family: 'Zen Old Mincho', serif;
  font-weight: 500;
  font-size: clamp(33px, 5vw, 55px);
  line-height: 1.6;
  letter-spacing: .06em;
  color: var(--ink);
  margin-bottom: 40px;
}
.hero-br-sp {
  display: none;
}
.hero-copy-new {
  font-size: 19px;
  line-height: 2.3;
  letter-spacing: .04em;
  color: var(--tx);
  font-weight: 500;
  margin-bottom: 44px;
}
.hero-copy-accent {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Zen Old Mincho', serif;
  font-size: 22px;
  color: var(--g500);
  font-weight: 500;
  letter-spacing: .08em;
}
.hero-symptom-tags2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.hero-symptom-tags2 span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(253, 252, 250, .92);
  border: none;
  color: var(--g700);
  font-size: 17.5px;
  font-weight: 700;
  padding: 11px 24px 11px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(74, 63, 61, .1), 0 1px 2px rgba(74, 63, 61, .06);
  backdrop-filter: blur(10px);
  transition: background .25s, transform .25s, box-shadow .25s;
}
.hero-symptom-tags2 span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--g500);
  flex-shrink: 0;
}
.hero-symptom-tags2 span:hover {
  background: var(--g500);
  color: var(--w);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(124, 144, 112, .35);
}
.hero-symptom-tags2 span:hover::before {
  background: var(--w);
}
.hero-promise-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16.5px;
  color: var(--g700);
  font-weight: 500;
  letter-spacing: .03em;
}
.hero-promise-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--g500);
  animation: promisePulse 2s ease infinite;
}
@keyframes promisePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: .5;
    transform: scale(1.3);
  }
}
.scroll-hint2 {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: .3em;
  color: rgba(253, 252, 250, .9);
  text-shadow: 0 2px 20px rgba(74, 63, 61, .3);
  animation: hintFade2 3s 1.5s ease infinite;
}
.scroll-arrow2 {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(253, 252, 250, .85);
  border-bottom: 2px solid rgba(253, 252, 250, .85);
  transform: rotate(45deg);
  animation: arrowBounce2 1.6s ease infinite;
}
@keyframes hintFade2 {
  0%, 100% {
    opacity: .5
  }
  50% {
    opacity: 1
  }
}
@keyframes arrowBounce2 {
  0%, 100% {
    transform: rotate(45deg) translate(0, 0)
  }
  50% {
    transform: rotate(45deg) translate(5px, 5px)
  }
}
@media(max-width:900px) {
  .hero-full {
    padding-top: 64px;
  }
  .hero-full-content {
    padding: 0 20px;
  }
  .hero-glass-card {
    padding: 40px 30px;
    border-radius: 24px;
  }
  .hero-eyebrow2 {
    font-size: 14px;
    margin-bottom: 26px;
  }
  .hero-h1-new {
    font-size: 31px;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .hero-copy-new {
    font-size: 17.5px;
    line-height: 2.1;
    margin-bottom: 32px;
  }
  .hero-copy-accent {
    font-size: 20px;
  }
  .hero-symptom-tags2 span {
    font-size: 16px;
    padding: 7px 16px;
  }
  .hero-promise-row {
    font-size: 16px;
  }
}
.transform-sec::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(249, 248, 246, .85), rgba(249, 248, 246, .93));
  z-index: 0;
}


/* trust-bar も固定背景に */
/* ═══════════════════════════════════════
   SPACING v3 — 圧倒的な余白へ
═══════════════════════════════════════ */
.sec {
  padding: 200px 0 20px !important;
}
.sec-hd {
  margin-bottom: 100px !important;
/*  margin-bottom: 140px !important;*/
}
.wrap {
  padding: 0 88px !important;
	max-width: 1200px !important;
/*  max-width: 1220px !important;*/
}
.why-wrap {
  padding: 0 88px !important;
	max-width: 1200px !important;
	margin-left:auto; 
	margin-right:auto; 
/*  max-width: 1220px !important;*/
}
.diff-card {
  padding: 56px 46px !important;
}
.approach-card {
  padding: 88px 56px !important;
}
.voice-card {
  padding: 60px 50px !important;
}
.pcard {
  padding: 68px 52px !important;
}
.hero-glass-card {
  padding: 88px 50px !important;
}/*変更76→50*/
body {
  line-height: 2.3 !important;
  letter-spacing: .04em !important;
}
.sec-sub {
  line-height: 2.9 !important;
}
.sec-sub-why {
  line-height: 2 !important;
}
.concept-text p, .concept-copy p {
  line-height: 3.2 !important;
}

@media(max-width:900px) {
  .sec {
    padding: 96px 0 !important;
  }
  .sec-hd {
    margin-bottom: 68px !important;
  }
  .wrap, .why-wrap {
    padding: 0 26px !important;
  }
  body {
    line-height: 2 !important;
    letter-spacing: .02em !important;
  }
}
@media(max-width:480px) {

  #concept .wrap {
    padding: 0 10px !important;
  }/*その気持ち分かります*/

}
/* ── Approach section 背景写真 ── */
.approach-photo-sec {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  isolation: isolate;
}
.approach-photo-sec::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(249, 248, 246, .82), rgba(249, 248, 246, .94));
  z-index: 0;
}

@media(max-width:480px) {
.hero-glass-card {
  padding: 60px 10px 80px !important;
}
  .hero-br-sp {
    display: block;
  }
.hero-copy-new {
  font-size: 17.5px;
  line-height: 1.8!important;
  letter-spacing: .04em;
  color: var(--tx);
  font-weight: 500;
/*	text-align: left;
*/  margin-bottom: 44px;
}
  .hero-promise-row {
    font-size: 15px;
  }
.scroll-hint2 {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: .3em;
  color: rgba(253, 252, 250, .9);
  text-shadow: 0 2px 20px rgba(74, 63, 61, .3);
  animation: hintFade2 3s 1.5s ease infinite;
}

}
@media(max-width:900px) {
  .approach-photo-sec {
    background-attachment: scroll;
  }
}
/* ═══════════════════════════════════════
   PHOTO SECTION — 院内写真を文章の背景に
═══════════════════════════════════════ */
.photo-section {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  isolation: isolate;
}
.photo-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(249, 248, 246, .86) 0%, rgba(249, 248, 246, .93) 100%);
  z-index: 0;
}
.photo-section .wrap {
  position: relative;
  z-index: 1;
}
@media(max-width:900px) {
  .photo-section {
    background-attachment: scroll;
  }
}
/* 写真背景セクション内のカードをグラス化して馴染ませる */
.photo-section .sac-item {
  background: rgba(253, 252, 250, .72) !important;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}
.photo-section .sac-item.open .sac-head {
  background: rgba(238, 241, 232, .82) !important;
}
.photo-section .pcard, .photo-section .prog-tag, .photo-section .total-card-inner, .photo-section .prof-img, .photo-section .faq-item {
  background: rgba(253, 252, 250, .65);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
}
.photo-section .faq-item {
  border-radius: 16px;
  margin-bottom: 4px;
  padding: 4px 20px;
}
.photo-section .career-item, .photo-section .p-msg {
  background: rgba(253, 252, 250, .5);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 4px 12px;
}
/* ═══════════════════════════════════════
   EMPHASIS SYSTEM — 読ませたい所を明確に
═══════════════════════════════════════ */
/* 蛍光マーカー風ハイライト（重要フレーズ用） */
.mark {
  background: linear-gradient(to top, rgba(163, 181, 150, .45) 42%, transparent 42%);
  padding: 0 2px;
  font-weight: 600;
}
/* 強い強調（最重要ワード） */
.em-strong {
  color: var(--g500);
  font-weight: 700;
}
/* 見出し階層をよりくっきりと */
.sec-title {
  font-weight: 500 !important;
  font-size: clamp(27px, 2.8vw, 40px) !important;
}
.hero-h1-new {
  font-weight: 600 !important;
}
.concept-headline {
  font-weight: 600 !important;
}
/* 本文と補足文の差をはっきり */
.sec-sub, .sec-sub-why {
  font-size: 18px !important;
  font-weight: 500 !important;
  color: var(--tx) !important;
}
/* キーナンバーをさらに際立たせる */
.trust-num {
  font-weight: 400 !important;
  text-shadow: 0 2px 12px rgba(74, 63, 61, .15);
}
/* 重要な一文を引用風に強調するブロック */
.key-quoteBk{
	margin-bottom: -50px;
	padding-bottom: 96px;
		background: var(--w);
}/*追加*/
.key-quote {
	max-width: 100%;
  position: relative;
  text-align: center;
  padding: 8px 0 8px 0;
  margin: 0 auto;
/*  max-width: 620px;
*/}
.key-quote-text {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(23px, 2.6vw, 34px);
  font-weight: 600;
  line-height: 1.9;
  color: var(--ink);
}
.key-quote-text .mark {
  background: linear-gradient(to top, rgba(163, 181, 150, .5) 38%, transparent 38%);
}
/* 料金の重要数字をより際立たせる */
.total-price-num, .sub-pnum, .pcard-price, .mc-price, .prog-tag-name {
  font-weight: 500 !important;
}
/* カードタイトルを本文より明確に太く */
.sac-name, .voice-name, .diff-after-title, .flow-row-title, .faq-q, .mc-name {
  font-weight: 700 !important;
}
/* リンク・タグ類の視認性向上 */
.hero-symptom-tags2 span {
  font-weight: 600 !important;
}
/* ── Detail Shot — 施術のクローズアップ ── */
.detail-shot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 80px;
}
.detail-shot-img {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 16px 48px var(--shadow);
  aspect-ratio: 4/3;
}
.detail-shot-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.detail-shot-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  letter-spacing: .45em;
  color: var(--g500);
  margin-bottom: 18px;
}
.detail-shot-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(23px, 2.4vw, 32px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 20px;
}
.detail-shot-body {
  font-size: 17.5px;
  line-height: 2.4;
  color: var(--tx);
  font-weight: 500;
}
@media(max-width:900px) {
  .detail-shot {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 56px;
  }
}
/* ── Interior 実写真スロット ── */
.interior-slot-real {
  position: relative;
  border: none !important;
  background: none !important;
}
.interior-slot-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.interior-slot-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(124, 144, 112, .9);
  color: var(--w);
  font-size: 15px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: .08em;
  backdrop-filter: blur(6px);
}
/* ── MOTION: Ken Burns hero ── */
.hero-kb {
  overflow: hidden;
  position: relative;
}
.hero-kb img {
  animation: heroKB 18s ease-in-out infinite alternate;
  transform-origin: center center;
}
@keyframes heroKB {
  0% {
    transform: scale(1.08) translate(0, 0);
  }
  100% {
    transform: scale(1) translate(-1.5%, -0.8%);
  }
}
/* ── MOTION: Atmosphere auto-slider ── */
.atm-wrap {
  position: relative;
  width: 100%;
	margin: 20px 0 ;
  aspect-ratio: 16/7;
  overflow: hidden;
  background: var(--g700);
  border-radius: 20px;
}
.atm-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  pointer-events: none;
}
.atm-slide.active {
  opacity: 1;
}
.atm-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 9s ease;
  filter: brightness(.7) saturate(.85);
}
.atm-slide.active img {
  transform: scale(1);
}
.atm-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: linear-gradient(to bottom, rgba(151, 127, 102, .10), rgba(151, 127, 102, .28));
}
.atm-label {
  font-size: 17px;
  letter-spacing: .45em;
  color: var(--g300);
}
.atm-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(23px, 3vw, 40px);
  font-weight: 400;
  color: var(--w);
  text-align: center;
  line-height: 1.7;
}
.atm-sub {
  font-size: 17.5px;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .08em;
}
.atm-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.atm-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.atm-dot.active {
  background: var(--g300);
  transform: scale(1.4);
}
/* ── MOTION: Scroll reveal zoom ── */
.img-reveal {
  overflow: hidden;
}
.img-reveal img {
  transform: scale(1.06);
  transition: transform 1.4s cubic-bezier(.22, .61, .36, 1), filter .8s ease;
  filter: brightness(.92);
}
.img-reveal.on img {
  transform: scale(1);
  filter: brightness(1);
}
/* ── MOTION: Hover zoom all images ── */
.hover-zoom {
  overflow: hidden;
}
.hover-zoom img {
  transition: transform .6s ease;
}
.hover-zoom:hover img {
  transform: scale(1.06);
}
/* ── MOTION: Treatment auto gallery ── */
.trt-gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 16/8;
  overflow: hidden;
  background: var(--frost);
}
.trt-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.trt-slide.active {
  opacity: 1;
}
.trt-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.07);
  transition: transform 8s ease;
}
.trt-slide.active img {
  transform: scale(1);
}
.trt-grid-below {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 6px;
}
.trt-thumb {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--frost);
}
.trt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .4s ease;
  filter: brightness(.8) saturate(.85);
}
.trt-thumb:hover img, .trt-thumb.active img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1);
}
.trt-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  transition: border-color .3s;
}
.trt-thumb.active::after {
  border-color: var(--g300);
}
/* ── MOTION: Parallax ── */
.parallax-wrap {
  overflow: hidden;
  position: relative;
}
.parallax-img {
  will-change: transform;
}
/* ── MOTION: Hero scroll indicator ── */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .5);
  font-size: 16.5px;
  letter-spacing: .25em;
  animation: hintFade 3s 2s ease infinite;
  z-index: 2;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1px solid rgba(255, 255, 255, .35);
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  transform: rotate(45deg);
  animation: arrowBounce 1.5s ease infinite;
}
@keyframes hintFade {
  0%, 100% {
    opacity: .5
  }
  50% {
    opacity: 1
  }
}
@keyframes arrowBounce {
  0%, 100% {
    transform: rotate(45deg) translate(0, 0)
  }
  50% {
    transform: rotate(45deg) translate(4px, 4px)
  }
}
/* ── MOTION: Floating CTA pulse ── */
.btn-main {
  position: relative;
}
.btn-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(74, 124, 63, .4);
  animation: ctaPulse 2.5s ease infinite;
}
@keyframes ctaPulse {
  0% {
    transform: scale(1);
    opacity: 1
  }
  70% {
    transform: scale(1.06);
    opacity: 0
  }
  100% {
    transform: scale(1.06);
    opacity: 0
  }
}

@media(max-width:900px) {
  /* さらに強化: スマホ最終調整 */
  body {
    font-size: 18px !important
  }
  .en-label {
    font-size: 17.5px !important
  }
  .sec-title {
    font-size: 25px !important;
    font-weight: 500 !important
  }
  .hero-h1 {
    font-size: 30px !important;
    font-weight: 500 !important
  }
  .hero-lead {
    font-size: 18px !important;
    font-weight: 500 !important
  }
  .hero-catch {
    font-size: 17.5px !important
  }
  .hero-symptom-tags span {
    font-size: 17.5px !important
  }
  .concept-headline {
    font-size: 25px !important;
    font-weight: 500 !important
  }
  .concept-text p {
    font-size: 18px !important;
    font-weight: 500 !important
  }
  .pain-q {
    font-size: 18px !important;
    font-weight: 500 !important
  }
  .pain-note {
    font-size: 17.5px !important;
    font-weight: 500 !important
  }
  .sac-name {
    font-size: 19px !important
  }
  .sac-tag {
    font-size: 17.5px !important
  }
  .sac-desc {
    font-size: 18px !important;
    font-weight: 500 !important
  }
  .sd-lbl {
    font-size: 17.5px !important
  }
  .sd-list li {
    font-size: 18.5px !important;
    font-weight: 500 !important
  }
  .diff-after-title {
    font-size: 18px !important
  }
  .diff-after-body {
    font-size: 18px !important;
    font-weight: 500 !important
  }
  .diff-before-blk {
    font-size: 17.5px !important;
    font-weight: 500 !important
  }
  .mc-name {
    font-size: 20px !important
  }
  .mc-price {
    font-size: 26px !important
  }
  .mc-for li {
    font-size: 18px !important;
    font-weight: 500 !important
  }
  .mc-what p {
    font-size: 18px !important;
    font-weight: 500 !important
  }
  .mc-pro {
    font-size: 17.5px !important
  }
  .voice-txt {
    font-size: 18px !important;
    font-weight: 500 !important
  }
  .voice-name {
    font-size: 18.5px !important
  }
  .voice-info {
    font-size: 17.5px !important;
    font-weight: 500 !important
  }
  .faq-q {
    font-size: 18px !important;
    font-weight: 500 !important
  }
  .faq-a {
    font-size: 18px !important;
    font-weight: 500 !important
  }
  .flow-title {
    font-size: 19px !important
  }
  .flow-desc {
    font-size: 18.5px !important;
    font-weight: 500 !important
  }
  .prog-tag-name {
    font-size: 18.5px !important
  }
  .prog-tag-desc {
    font-size: 17.5px !important;
    font-weight: 500 !important
  }
  .prog-banner-text h3 {
    font-size: 21px !important
  }
  .prog-banner-text p {
    font-size: 18.5px !important;
    font-weight: 500 !important
  }
  .access-tbl td {
    font-size: 18px !important;
    font-weight: 500 !important
  }
  .access-tbl td:first-child {
    font-size: 18.5px !important
  }
  .kids-compact-title {
    font-size: 19px !important
  }
  .kids-compact-text {
    font-size: 18.5px !important;
    font-weight: 500 !important
  }
  .total-name {
    font-size: 29px !important
  }
  .total-desc {
    font-size: 18.5px !important;
    font-weight: 500 !important
  }
  .total-tags span {
    font-size: 17.5px !important
  }
  .sg-name {
    font-size: 18px !important
  }
  .sg-desc {
    font-size: 17.5px !important;
    font-weight: 500 !important
  }
  .sg-price {
    font-size: 24px !important
  }
  .local-title {
    font-size: 25px !important;
    font-weight: 500 !important
  }
  .local-text {
    font-size: 18px !important;
    font-weight: 500 !important
  }
  .photo-bg-quote {
    font-size: 24px !important
  }
  .photo-bg-sub {
    font-size: 17.5px !important
  }
  .line-btn-title {
    font-size: 19px !important
  }
  .line-btn-sub {
    font-size: 17.5px !important
  }
  .transform-title {
    font-size: 25px !important;
    font-weight: 500 !important
  }
  .transform-lead {
    font-size: 18px !important;
    font-weight: 500 !important
  }
  .transform-list li {
    font-size: 18px !important;
    font-weight: 500 !important
  }
  .t-card-title {
    font-size: 18.5px !important
  }
  .t-card-body {
    font-size: 17.5px !important;
    font-weight: 500 !important
  }
  .bbar-txt {
    font-size: 17.5px !important;
    font-weight: 600 !important
  }
  .sub-m-title {
    font-size: 19px !important
  }
  .sub-m-body {
    font-size: 18px !important;
    font-weight: 500 !important
  }
  .single-section-label {
    font-size: 18.5px !important
  }
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .nav {
    padding: 0 20px
  }
  .nav-links {
    display: none
  }
  .hero {
    grid-template-columns: 1fr
  }
  .hero-l {
    padding: 52px 22px 40px
  }
  .hero-r {
    min-height: 55vw
  }
  .trust-bar {
    grid-template-columns: 1fr 1fr
  }
  .pain-grid, .diff-grid, .voice-grid, .sym-grid, .access-grid, .transform-inner, .profile-layout {
    grid-template-columns: 1fr
  }
  .sym-card {
    grid-template-columns: 1fr
  }
  .sym-img {
    min-height: 160px
  }
  .sym-detail {
    grid-template-columns: 1fr
  }
  .single-cards {
    grid-template-columns: 1fr 1fr
  }
  .s-card-total {
    grid-column: auto
  }
  .prog-tags {
    grid-template-columns: 1fr 1fr
  }
  .prog-banner {
    grid-template-columns: 1fr
  }
  .sub-inner {
    grid-template-columns: 1fr
  }
  .sub-right {
    padding: 0 32px 40px
  }
  .sub-grid {
    grid-template-columns: 1fr 1fr
  }
  .flow-grid {
    grid-template-columns: 1fr 1fr
  }
  .flow-grid::after {
    display: none
  }
  .step-bar {
    grid-template-columns: 1fr
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px
  }
  .wrap {
    padding: 0 22px
  }
  .sec {
    padding: 68px 0
  }
  .cta-close {
    padding: 60px 22px
  }
}
/* ═══════════════════════════════════════
   TOTAL CARE — 完全刷新（読みやすさ最優先）
═══════════════════════════════════════ */
.total-card {
  background: var(--g700) !important;
  border-radius: 24px !important;
  padding: 56px 56px !important;
  box-shadow: 0 20px 56px rgba(74, 63, 61, .22) !important;
  margin-bottom: 28px !important;
}
.total-card-top {
  margin-bottom: 40px;
}
.total-badge {
  display: inline-block !important;
  font-size: 16px !important;
  letter-spacing: .14em !important;
  font-weight: 700 !important;
  color: var(--g700) !important;
  background: var(--w) !important;
  padding: 7px 18px !important;
  border-radius: 20px !important;
  margin-bottom: 20px !important;
}
.total-name {
  font-family: 'Zen Old Mincho', serif !important;
  font-size: clamp(31px, 3.5vw, 44px) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 16px !important;
  line-height: 1.5 !important;
}
.total-desc {
  font-size: 19px !important;
  line-height: 2 !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  max-width: 560px;
}
.total-card-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.total-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.total-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.6;
}
.total-checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, .22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 1px;
}
.total-price-box {
  text-align: right;
  white-space: nowrap;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, .18);
}
.total-price-num {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(67px, 7vw, 92px) !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  line-height: 1 !important;
  letter-spacing: -.02em;
}
.total-price-unit {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-top: 8px !important;
}

@media(max-width:900px) {
  .total-card {
    padding: 40px 28px !important;
  }
  .total-name {
    font-size: 29px !important;
  }
  .total-desc {
    font-size: 17.5px !important;
  }
  .total-card-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .total-checklist {
    grid-template-columns: 1fr;
  }
  .total-price-box {
    text-align: left;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .18);
    padding-left: 0;
    padding-top: 24px;
  }
}
/* ── Google Map 実埋め込み ── */
.map-embed {
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px var(--shadow);
}
.map-embed iframe {
  display: block;
  filter: saturate(.9);
}
.map-open-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--g500);
  transition: color .2s;
}
.map-open-link:hover {
  color: var(--g700);
}
@media(max-width:900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important
  }
}
/* ═══════════════════════════════════════
   QUIET MOMENT — tentosen型の静けさの一呼吸
═══════════════════════════════════════ */
.quiet-sec {
  position: relative;
  height: 82vh;
  min-height: 480px;
  overflow: hidden;
}
.quiet-sec-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.05);
  animation: quietKB 24s ease-in-out infinite alternate;
}
@keyframes quietKB {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.quiet-sec-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74, 63, 61, .12) 0%, rgba(74, 63, 61, .32) 100%);
}
.quiet-sec-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 32px;
}
.quiet-sec-line {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(25px, 4vw, 42px);
  font-weight: 500;
  color: #fdfcfa;
  letter-spacing: .12em;
  line-height: 2;
  text-shadow: 0 4px 24px rgba(74, 63, 61, .35);
  opacity: 0;
  animation: quietFade 1.6s ease forwards;
}
.quiet-sec-line-2 {
  animation-delay: .5s;
}
@keyframes quietFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media(max-width:900px) {
  .quiet-sec {
    height: 62vh;
    min-height: 380px;
  }
  .quiet-sec-line {
    font-size: 24px;
    letter-spacing: .08em;
  }
}
@media(max-width:480px) {
  a[href^="tel:"] {
    pointer-events:auto;
		cursor: default;
  }
.trust-cell {
  padding: 25px 20px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
  cursor: default;
  transition: background .3s
}
.atm-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(to bottom, rgba(151, 127, 102, .10), rgba(151, 127, 102, .28));
}
.atm-wrap {
  position: relative;
  width: 100%;
	height: 240px;
	margin: 20px 0 ;
  aspect-ratio: 16/7;
  overflow: hidden;
  background: var(--g700);
  border-radius: 20px;
}
.atm-sub {
	padding:0 15px;
  font-size: 16px;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .08em;
	line-height: 1.6;
}
.atm-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.why-wrap {
	padding: 0 15px !important;
}
.sec-title {
	font-size: 24px !important;
	font-weight: 500 !important
}
.sec-title {
  line-height: 1.8 !important;
  letter-spacing: .06em !important;
}
.sec-sub-why {
  font-size: 17.5px !important;
  font-weight: 500 !important;
  color: var(--tx) !important;
	letter-spacing: .02em!important;
}
.key-quote {
	max-width: 100%;
  position: relative;
  text-align: center;
  padding-right: 20px!important;
  padding-left: 20px!important;
  margin: 0 auto;
/*  max-width: 620px;
*/}
	.key-quote-text-sp{
		display: block;
	}
.mark {
  background: linear-gradient(to top, rgba(163, 181, 150, .45) 42%, transparent 42%);
  padding: 0 2px;
  font-weight: 600;
}
.concept-text p, .concept-copy p {
  line-height: 2 !important;
}
  .sec {
    padding: 96px 0 0!important;
  }
.culture-body-card {
  margin: 25px auto 0;
	padding:0 28px 0 20px!important;
}
.culture-body {
  font-size: 17.5px;
  line-height: 2;
  color: var(--ink);/*追加*/
  max-width: 640px;
  margin: 25px auto 25px
}
.cc-body {
  padding: 20px 25px 20px 25px;
}
.culture-card-title {
  font-size: 18.5px;
  font-weight: 500;
	color: var(--ink);
  /*color: var(--w);*/
  margin-bottom: 10px
}
.photo-bg-content {
  padding: 160px 20px !important;
}
	.photo-bg-sub span{
		display: block;
	}
	.pain-cta-sub span{
		display: block;
	}
.transform-sec {
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  isolation: isolate;
}
  .transform-sec .wrap {
    padding: 0 15px !important;
  }/*来院後こう変わります*/

.transform-inner {
  gap: 35px;

}
  .transform-lead {
    font-size: 17.5px !important;
    font-weight: 500 !important
  }
.t-card {
  background: rgba(253, 252, 250, .6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .7);
  padding: 15px 10px;
  transition: background .3sborder-radius:18px;
}
.sec-sub {
  line-height: 2.2!important;
}
.diff-card {
  padding: 30px 15px !important;
}
.menu-card {
	margin-bottom: 20px;
  padding: 20px 15px !important;
	background-color: hsla(82,36%,96%,0.50);
}
.prog-banner {
  background: var(--frost);
  border: 1px solid var(--li);
  padding: 36px 40px;
  display: block;
  padding: 30px 20px;
  margin-bottom: 20px
}
.prog-banner-text h3 {
    font-size: 20px !important;
	line-height: 2!important;
  }
  .prog-banner-text p {
		padding-top: 15px;
    font-size: 18px !important;
  line-height: 2 !important;
    font-weight: 500 !important
  }
.prog-tags {
  gap: 15px !important;
}
.prog-tag {
  background: var(--w);
  border: 1px solid var(--li);
  padding: 15px 10px;
  transition: border-color .2s, background .2s
}
.prog-tag:hover {
  border-left-color: var(--g300);
  transform:none;
}
  .prog-tag-name {
    font-size: 18.5px !important;
		line-height: 1.8!important;
  }
  .prog-tag-desc {
    font-size: 17.5px !important;
    font-weight: 500 !important;
		line-height: 1.8!important;
  }
footer {
  padding: 50px 20px 30px !important;
}
.footer-inner {
	grid-template-columns: 1fr !important;
	gap: 28px !important
}
.footer-copy {
  max-width: 1080px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, .2);
  letter-spacing: .05em;
  line-height: 1.8;
}
}