@charset "UTF-8";
/* hp-products-tomo-v3.html から自動生成（中身は一切変更していません） */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  /* 朋ブランドカラー（トップv3と共通） */
  --blue: #3D82D6;
  --blue-dark: #2B5FAA;
  --blue-mid: #3272C4;
  --navy: #1E4076;
  --blue-light: #EBF4FF;
  --green: #4caf82;
  --green-dark: #3d9e6e;
  --green-light: #e6f5ee;
  --gold: #B99750;
  --gold-light: #F7F1E4;
  --gray: #5F6B7A;
  --gray-light: #f4f6f9;
  --line: #E3E9F2;
  --text: #2a2a2a;
  --white: #fff;
  --serif: 'Zen Old Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --en: 'Montserrat', sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: var(--text); background: var(--white); overflow-x: hidden;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--blue); color: var(--white); }
body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: var(--gray-light); }
body::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--blue), var(--blue-dark)); border-radius: 5px; }

/* ===== A11Y ===== */
.skip-link {
  position: fixed; top: -48px; left: 16px; z-index: 999;
  background: var(--blue-dark); color: var(--white); font-weight: 700; font-size: 14px;
  padding: 12px 24px; border-radius: 0 0 10px 10px; text-decoration: none;
  transition: top .25s;
}
.skip-link:focus { top: 0; }
a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--green) 60%, var(--gold));
  z-index: 400;
}

/* ===== HEADER（下層ページ＝常時白背景） ===== */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  background: rgba(255,255,255,.96); backdrop-filter: blur(14px);
  box-shadow: 0 2px 28px rgba(30,64,118,.1);
}
.header-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 30px; height: 78px;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(43,95,170,.25);
}
.logo-mark svg { width: 23px; height: 23px; }
.logo-char { height: 46px; width: auto; display: block; }
.logo-text { font-size: 20px; font-weight: 900; color: var(--blue-dark); letter-spacing: .05em; }
.logo-sub { font-family: var(--en); font-size: 9px; font-weight: 600; color: var(--gray); letter-spacing: .14em; display: block; }

.header-nav { display: flex; align-items: center; gap: 2px; }
.header-nav a {
  padding: 9px 10px; color: var(--text); text-decoration: none; white-space: nowrap;
  font-size: 13px; font-weight: 700; border-radius: 8px; letter-spacing: .02em;
  transition: background .2s, color .2s;
}
.header-nav a:hover { background: var(--blue-light); color: var(--blue); }
.header-nav a.active { color: var(--blue); }
.header-nav a.active::after { content: ''; display: block; height: 2px; margin-top: 2px; background: linear-gradient(90deg, var(--blue), var(--green)); border-radius: 1px; }
.header-cta {
  margin-left: 8px; background: var(--green); color: var(--white) !important;
  padding: 11px 18px !important; border-radius: 50px !important;
  font-size: 13px !important; font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(76,175,130,.35);
  transition: background .2s, transform .2s, box-shadow .2s !important;
}
.header-cta:hover { background: var(--green-dark) !important; color: var(--white) !important; transform: translateY(-1px); }
@media (max-width: 1280px) and (min-width: 901px) {
  .logo-sub { display: none; }
  .header-phone span { display: none; }
  .header-nav a { padding: 9px 8px; font-size: 12.5px; }
}

/* ===== HAMBURGER / MOBILE MENU ===== */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: 8px; transition: background .2s;
}
.hamburger:hover { background: var(--blue-light); }
.hamburger span { display: block; height: 2px; background: var(--blue-dark); border-radius: 2px; transition: transform .3s, opacity .3s; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(30,64,118,.97); backdrop-filter: blur(14px);
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; }
.mobile-menu a {
  color: var(--white); text-decoration: none; font-size: 19px; font-weight: 700;
  padding: 14px 48px; border-radius: 10px; letter-spacing: .05em;
  transition: background .2s; width: 290px; text-align: center;
}
.mobile-menu a:hover { background: rgba(255,255,255,.1); }
.mobile-menu .mobile-cta { background: var(--green); margin-top: 18px; border-radius: 50px; font-size: 16px; }
.mobile-menu .mobile-cta:hover { background: var(--green-dark); }
.mobile-menu-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--white); font-size: 32px; cursor: pointer; line-height: 1; padding: 8px; }

/* ===== SECTION BASE（トップv3と共通） ===== */
.section { padding: 110px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-head { margin-bottom: 64px; }
.section-en {
  font-family: var(--en); font-size: 11px; letter-spacing: .3em; color: var(--gold);
  font-weight: 700; text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-en::before { content: ''; width: 26px; height: 1px; background: var(--gold); }
.section-ja { font-size: clamp(23px, 2.8vw, 33px); font-weight: 900; color: var(--blue-dark); line-height: 1.45; letter-spacing: .04em; }
.section-ja.serif { font-family: var(--serif); }
.section-desc { font-size: 15px; color: var(--gray); line-height: 2; margin-top: 16px; max-width: 720px; }
.section-line {
  width: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--green) 70%, var(--gold));
  border-radius: 2px; margin-top: 20px; transition: width .9s .2s var(--ease);
}
.section-line.visible { width: 56px; }

/* ===== PAGE HERO（スプリット） ===== */
.page-hero { background: linear-gradient(160deg, var(--blue-light) 0%, #F6FAFF 55%, var(--white) 100%); padding: 118px 40px 0; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; top: 90px; right: -80px; width: 340px; height: 340px;
  background-image: radial-gradient(rgba(61,130,214,.16) 2px, transparent 2px);
  background-size: 18px 18px; border-radius: 50%;
}
.breadcrumb-wrap { max-width: 1100px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: 12px; color: var(--gray); padding: 18px 0 8px; }
.breadcrumb a { color: var(--blue); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero-split {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center;
  padding: 36px 0 88px; position: relative;
}
.page-hero-en {
  font-family: var(--en); font-size: 11px; letter-spacing: .3em; color: var(--gold);
  font-weight: 700; text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.page-hero-en::before { content: ''; width: 26px; height: 1px; background: var(--gold); }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 46px); font-weight: 900; color: var(--blue-dark);
  line-height: 1.5; letter-spacing: .05em; margin-bottom: 22px;
}
.page-hero-desc { font-size: 15.5px; color: #3A4254; line-height: 2.15; margin-bottom: 36px; }
.page-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-btn-main {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: var(--white); font-weight: 700; font-size: 15.5px;
  padding: 17px 40px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 10px 30px rgba(76,175,130,.4); transition: all .35s var(--ease);
}
.hero-btn-main:hover { background: var(--green-dark); transform: translateY(-3px); }
.hero-btn-tel {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--blue-dark); font-weight: 700; font-size: 14px;
  padding: 15px 34px; border-radius: 50px; text-decoration: none;
  border: 2px solid var(--blue); transition: all .3s var(--ease);
}
.hero-btn-tel:hover { background: var(--blue); color: var(--white); transform: translateY(-3px); }
.page-hero-note { font-size: 12px; color: var(--gray); margin-top: 16px; letter-spacing: .04em; }

/* 写真フレーム（差し込み前のプレースホルダ共通デザイン） */
.hero-img-frame {
  border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; position: relative;
  box-shadow: 0 24px 64px rgba(30,64,118,.18);
  background: var(--white); border: 1px solid var(--line);
}
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-img-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; text-align: center;
  background: repeating-linear-gradient(45deg, #F4F8FD, #F4F8FD 14px, #EDF3FB 14px, #EDF3FB 28px);
}
.hero-img-icon { font-size: 40px; }
.hero-img-label { font-size: 14px; font-weight: 700; color: var(--blue-dark); line-height: 1.7; }
.hero-img-tag { font-size: 11px; color: var(--gray); background: var(--white); border: 1px solid var(--line); border-radius: 50px; padding: 5px 14px; }

/* ===== WARMTH STRIP ===== */
.warmth-strip { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 34px 40px; }
.warmth-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.warmth-item {
  display: flex; gap: 13px; align-items: flex-start;
  opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.warmth-item.visible { opacity: 1; transform: none; }
.warmth-emoji {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 21px;
}
.warmth-text { font-size: 14px; font-weight: 700; color: var(--blue-dark); line-height: 1.5; }
.warmth-sub { display: block; font-size: 12px; font-weight: 500; color: var(--gray); margin-top: 4px; line-height: 1.6; }

/* ===== ギャラリーストリップ ===== */
.gallery-strip { background: var(--gray-light); padding: 64px 40px; }
.gallery-inner { max-width: 1100px; margin: 0 auto; }
.gallery-label {
  font-family: var(--en); font-size: 11px; letter-spacing: .3em; color: var(--gold); font-weight: 700;
  text-transform: uppercase; margin-bottom: 22px; display: flex; align-items: center; gap: 10px;
}
.gallery-label::before { content: ''; width: 26px; height: 1px; background: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-frame {
  border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; position: relative;
  background: var(--white); border: 1px solid var(--line); box-shadow: 0 4px 18px rgba(30,64,118,.06);
}
.gallery-frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease); }
.gallery-frame:hover img { transform: scale(1.05); }
.gallery-frame-inner {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px; text-align: center;
  background: repeating-linear-gradient(45deg, #F4F8FD, #F4F8FD 12px, #EDF3FB 12px, #EDF3FB 24px);
  font-size: 12px; font-weight: 700; color: var(--blue-dark); line-height: 1.6;
}
.gallery-frame-icon { font-size: 28px; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 14px;
  background: linear-gradient(transparent, rgba(30,64,118,.72));
  color: var(--white); font-size: 12px; font-weight: 700; opacity: 0; transition: opacity .3s;
}
.gallery-frame:hover .gallery-caption { opacity: 1; }

/* ===== こんな方へ ===== */
.forwho-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.forwho-card {
  background: var(--white); border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 4px 24px rgba(30,64,118,.06);
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), box-shadow .3s;
}
.forwho-card.visible { opacity: 1; transform: none; }
.forwho-card:hover { box-shadow: 0 14px 40px rgba(30,64,118,.12); }
.forwho-card-photo { aspect-ratio: 16/9; position: relative; overflow: hidden; }
.forwho-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.forwho-card-photo-inner {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  background: repeating-linear-gradient(45deg, #F4F8FD, #F4F8FD 12px, #EDF3FB 12px, #EDF3FB 24px);
  font-size: 11.5px; font-weight: 700; color: var(--blue-dark);
}
.forwho-card-photo-inner span:first-child { font-size: 24px; }
.forwho-body { padding: 26px 26px 30px; }
.forwho-icon {
  width: 50px; height: 50px; border-radius: 14px; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px;
}
.forwho-title { font-size: 17px; font-weight: 900; color: var(--blue-dark); margin-bottom: 10px; letter-spacing: .02em; }
.forwho-desc { font-size: 14px; color: var(--gray); line-height: 1.95; }

/* ===== 利用者の声 ===== */
.voices-section { background: var(--gray-light); }
.voices-banner {
  border-radius: 18px; overflow: hidden; aspect-ratio: 16/5; position: relative; margin-bottom: 36px;
  background: var(--white); border: 1px solid var(--line); box-shadow: 0 8px 32px rgba(30,64,118,.08);
}
.voices-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.voices-banner-inner {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: repeating-linear-gradient(45deg, #F4F8FD, #F4F8FD 14px, #EDF3FB 14px, #EDF3FB 28px);
  font-size: 13px; font-weight: 700; color: var(--blue-dark);
}
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.voice-card {
  background: var(--white); border-radius: 18px; padding: 36px 30px;
  box-shadow: 0 4px 24px rgba(30,64,118,.06); border: 1px solid rgba(227,233,242,.8);
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), box-shadow .3s;
}
.voice-card.visible { opacity: 1; transform: none; }
.voice-card:hover { box-shadow: 0 14px 40px rgba(30,64,118,.12); }
.voice-quote { font-family: var(--serif); font-size: 44px; color: var(--gold); line-height: 1; margin-bottom: 14px; opacity: .85; }
.voice-placeholder {
  font-size: 13px; color: var(--gray); line-height: 1.9; margin-bottom: 26px;
  background: repeating-linear-gradient(45deg, #F7FAFD, #F7FAFD 10px, #F0F5FB 10px, #F0F5FB 20px);
  border: 1px dashed #C5D4E8; border-radius: 10px; padding: 18px;
}
.voice-person { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.voice-avatar-frame {
  width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.voice-avatar-frame img { display: none; width: 100%; height: 100%; object-fit: cover; }
.voice-name strong { display: block; font-size: 14px; font-weight: 700; color: var(--blue-dark); }
.voice-name span { font-size: 12px; color: var(--gray); }

/* ===== 1日の流れ ===== */
.schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.sched-card {
  background: var(--white); border-radius: 18px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(30,64,118,.08); border: 1px solid var(--line);
}
.sched-header { color: var(--white); font-size: 16px; font-weight: 900; padding: 18px 26px; letter-spacing: .03em; }
.sched-photo { aspect-ratio: 16/7; position: relative; overflow: hidden; }
.sched-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sched-photo-inner {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: repeating-linear-gradient(45deg, #F4F8FD, #F4F8FD 12px, #EDF3FB 12px, #EDF3FB 24px);
  font-size: 12px; font-weight: 700; color: var(--blue-dark);
}
.sched-body { padding: 28px 30px 32px; }
.tl-item { display: flex; gap: 14px; align-items: stretch; }
.tl-time { font-family: var(--en); font-size: 14px; font-weight: 700; min-width: 48px; padding-top: 1px; }
.tl-dot-col { display: flex; flex-direction: column; align-items: center; }
.tl-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.tl-line { width: 2px; flex: 1; margin: 3px 0; }
.tl-item > div:last-child { padding-bottom: 20px; }
.tl-item:last-child > div:last-child { padding-bottom: 0; }
.tl-label { font-size: 14.5px; font-weight: 700; color: var(--text); }
.tl-note { font-size: 12.5px; color: var(--gray); margin-top: 3px; line-height: 1.7; }

/* ===== 待遇 ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.benefit-card {
  background: var(--white); border-radius: 18px; padding: 32px 22px; text-align: center;
  border: 1px solid var(--line); border-top: 4px solid var(--blue);
  box-shadow: 0 4px 24px rgba(30,64,118,.06);
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), box-shadow .3s;
}
.benefit-card.visible { opacity: 1; transform: none; }
.benefit-card:hover { box-shadow: 0 14px 36px rgba(30,64,118,.12); }
.benefit-card:nth-child(2) { border-top-color: var(--green); }
.benefit-card:nth-child(3) { border-top-color: var(--gold); }
.benefit-card:nth-child(4) { border-top-color: var(--blue-mid); }
.benefit-icon { font-size: 34px; display: block; margin-bottom: 12px; }
.benefit-label { font-size: 12.5px; font-weight: 700; color: var(--gray); letter-spacing: .08em; margin-bottom: 8px; }
.benefit-value { font-family: var(--en); font-size: clamp(24px, 2.4vw, 32px); font-weight: 700; color: var(--blue-dark); line-height: 1.2; }
.benefit-value .ja { font-family: 'Noto Sans JP', sans-serif; font-weight: 900; }
.benefit-sub { font-size: 12px; color: var(--gray); margin-top: 8px; line-height: 1.7; }
.shuttle-banner {
  display: flex; gap: 22px; align-items: center;
  background: var(--blue-light); border: 1px solid rgba(61,130,214,.2); border-radius: 18px; padding: 30px 34px;
  opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.shuttle-banner.visible { opacity: 1; transform: none; }

/* ===== スタッフ紹介 ===== */
.staff-section { background: var(--gray-light); padding: 110px 40px; }
.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.staff-card {
  background: var(--white); border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 4px 24px rgba(30,64,118,.06);
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), box-shadow .3s;
}
.staff-card.visible { opacity: 1; transform: none; }
.staff-card:hover { box-shadow: 0 14px 40px rgba(30,64,118,.12); }
.staff-photo { aspect-ratio: 4/4.4; position: relative; overflow: hidden; }
.staff-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.staff-photo-inner {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; text-align: center;
  background: repeating-linear-gradient(45deg, #F4F8FD, #F4F8FD 14px, #EDF3FB 14px, #EDF3FB 28px);
  font-size: 12px; font-weight: 700; color: var(--blue-dark); line-height: 1.7;
}
.staff-photo-inner span:first-child { font-size: 36px; }
.staff-info { padding: 24px 26px 30px; }
.staff-name { font-size: 17px; font-weight: 900; color: var(--blue-dark); }
.staff-role {
  display: inline-block; font-size: 11px; font-weight: 700; color: var(--gold);
  background: var(--gold-light); border-radius: 50px; padding: 4px 14px; margin: 8px 0 14px; letter-spacing: .04em;
}
.staff-msg { font-size: 13.5px; color: var(--gray); line-height: 2; }

/* ===== ご利用の流れ（紺背景・トップv3共通） ===== */
.flow-section { background: var(--navy); padding: 110px 40px; position: relative; overflow: hidden; }
.flow-section::before {
  content: ''; position: absolute; width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(rgba(61,130,214,.18), transparent 70%); top: -300px; left: -200px;
}
.flow-section .section-en { color: var(--gold); }
.flow-section .section-en::before { background: var(--gold); }
.flow-section .section-ja { color: var(--white); }
.flow-section .section-desc { color: rgba(255,255,255,.68); }
.flow-section .section-line { background: linear-gradient(90deg, rgba(255,255,255,.4), var(--green) 70%, var(--gold)); }
.flow-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; position: relative; margin-top: 56px; }
.flow-steps::before {
  content: ''; position: absolute; top: 44px; left: 8%; right: 8%; height: 2px;
  background: rgba(255,255,255,.14); z-index: 0;
}
.flow-step {
  text-align: center; padding: 0 10px; position: relative; z-index: 1;
  opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.flow-step.visible { opacity: 1; transform: none; }
.flow-circle {
  width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 20px;
  background: rgba(255,255,255,.07); border: 2px solid rgba(255,255,255,.22);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: background .3s, border-color .3s, transform .3s;
}
.flow-step:hover .flow-circle { background: var(--blue); border-color: var(--blue); transform: scale(1.05); }
.flow-step-num { font-family: var(--en); font-size: 9px; letter-spacing: .14em; color: rgba(255,255,255,.6); font-weight: 700; }
.flow-step-icon { font-size: 24px; margin: 3px 0; }
.flow-step-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.flow-step-desc { font-size: 11.5px; color: rgba(255,255,255,.62); line-height: 1.8; }
.flow-note {
  margin-top: 48px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px; padding: 22px 28px; font-size: 13.5px; color: rgba(255,255,255,.85); line-height: 2;
  opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.flow-note.visible { opacity: 1; transform: none; }

/* ===== FAQ（トップv3共通） ===== */
.faq-section { background: var(--white); padding: 110px 40px; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: center; gap: 16px; padding: 24px 8px;
  width: 100%; text-align: left; background: none; border: none;
  cursor: pointer; font-family: inherit; font-size: 15px; font-weight: 700; color: var(--blue-dark);
  transition: color .2s;
}
.faq-q:hover { color: var(--blue); }
.faq-q-label {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--en); font-size: 14px; font-weight: 700;
}
.faq-toggle { margin-left: auto; font-size: 22px; color: var(--blue); transition: transform .3s; line-height: 1; flex-shrink: 0; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a-inner { padding: 0 8px 26px 58px; font-size: 14px; color: #4A5468; line-height: 2; }

/* ===== CONTACT（スプリット） ===== */
.contact-section { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--navy) 100%); padding: 100px 40px; position: relative; overflow: hidden; }
.contact-section::before {
  content: ''; position: absolute; width: 620px; height: 620px; border-radius: 50%;
  background: rgba(255,255,255,.04); top: -260px; right: -110px;
}
.contact-split {
  max-width: 1100px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center;
}
.contact-en {
  font-family: var(--en); font-size: 11px; letter-spacing: .3em; color: var(--gold);
  font-weight: 700; text-transform: uppercase; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.contact-en::before { content: ''; width: 26px; height: 1px; background: var(--gold); }
.contact-split h2 { font-family: var(--serif); font-size: clamp(22px, 2.8vw, 34px); font-weight: 900; color: var(--white); line-height: 1.6; letter-spacing: .04em; margin-bottom: 18px; }
.contact-lead { font-size: 15px; color: rgba(255,255,255,.82); line-height: 2.1; margin-bottom: 32px; }
.cta-tel-main {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--white); border-radius: 18px; padding: 20px 32px;
  text-decoration: none; box-shadow: 0 12px 36px rgba(0,0,0,.22);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.cta-tel-main:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(0,0,0,.3); }
.cta-tel-num { font-family: var(--en); font-size: 28px; font-weight: 700; color: var(--blue-dark); line-height: 1.2; }
.cta-tel-sub { font-size: 12px; color: var(--gray); }
.cta-form-sub {
  display: inline-flex; margin-top: 20px; color: var(--white); font-size: 14px; font-weight: 700;
  text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 3px; transition: gap .2s, opacity .2s;
}
.cta-form-sub:hover { opacity: .85; }
.cta-hours { font-size: 12.5px; color: rgba(255,255,255,.6); margin-top: 18px; letter-spacing: .03em; }
.contact-photo {
  border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.15);
}
.contact-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.contact-photo-inner {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; text-align: center;
  background: repeating-linear-gradient(45deg, #2C5395, #2C5395 14px, #2A4E8C 14px, #2A4E8C 28px);
  font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.85); line-height: 1.8;
}
.contact-photo-inner span:first-child { font-size: 34px; }

/* ===== FLOATING CTA ===== */
.float-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
  opacity: 0; transform: translateY(16px);
  transition: opacity .4s, transform .4s; pointer-events: none;
}
.float-cta.visible { opacity: 1; transform: none; pointer-events: all; }
.float-cta-main {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 50px; font-weight: 700; font-size: 15px;
  text-decoration: none; white-space: nowrap;
  background: var(--green); color: var(--white);
  box-shadow: 0 10px 30px rgba(76,175,130,.45); transition: all .3s var(--ease);
}
.float-cta-main:hover { background: var(--green-dark); transform: translateY(-2px); }
.float-cta-tel {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: 50px; font-weight: 700; font-size: 13px;
  text-decoration: none; white-space: nowrap;
  background: var(--white); color: var(--blue-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,.13); transition: all .3s var(--ease);
}
.float-cta-tel:hover { transform: translateY(-2px); }

/* ===== FOOTER（トップv3共通） ===== */
footer { background: var(--navy); color: rgba(255,255,255,.78); padding: 72px 40px 36px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-brand .logo-text { color: var(--white); font-size: 20px; font-weight: 900; display: block; margin-bottom: 4px; }
.footer-brand .logo-sub { color: rgba(255,255,255,.5); font-family: var(--en); font-size: 10px; letter-spacing: .14em; display: block; margin-bottom: 18px; }
.footer-brand p { font-size: 13px; line-height: 2; color: rgba(255,255,255,.62); }
.footer-col h2 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 18px; padding-bottom: 9px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.62); text-decoration: none; margin-bottom: 11px; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.45); }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: 15px; text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}
.social-btn:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.fade-up.visible { opacity: 1; transform: none; }
.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.fade-left.visible { opacity: 1; transform: none; }
.fade-right { opacity: 0; transform: translateX(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.fade-right.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s !important; }
.d2 { transition-delay: .2s !important; }
.d3 { transition-delay: .3s !important; }
.d4 { transition-delay: .4s !important; }
.d5 { transition-delay: .5s !important; }

/* 演出を控える(reduce-motion)設定は無視して常にアニメを表示（2026-07-22 ヒロキさん指定） */

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .header-nav { display: none; }
  .header-top { padding: 0 20px; height: 68px; }
  .mobile-menu { display: flex; pointer-events: none; }
  .mobile-menu.open { pointer-events: all; }
  .page-hero { padding: 100px 20px 0; }
  .page-hero-split { grid-template-columns: 1fr; gap: 36px; padding: 24px 0 64px; }
  .warmth-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .forwho-grid, .voices-grid, .staff-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .flow-steps { grid-template-columns: 1fr; gap: 18px; }
  .flow-steps::before { display: none; }
  .contact-split { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section, .staff-section, .faq-section, .flow-section, .contact-section { padding: 72px 20px; }
  .gallery-strip { padding: 48px 20px; }
}
@media (max-width: 560px) {
  .warmth-inner { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .float-cta { bottom: 16px; right: 16px; }
  .float-cta-main { padding: 14px 24px; font-size: 13px; }
  .shuttle-banner { flex-direction: column; text-align: center; }
}

/* ===== CORPORATE: 対応業務タグ ===== */
.task-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.task-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line); border-radius: 50px;
  padding: 12px 26px; font-size: 14px; font-weight: 700; color: var(--blue-dark);
  box-shadow: 0 2px 12px rgba(30,64,118,.05);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.task-tag:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(30,64,118,.1); }
.task-tag.more { background: var(--gold-light); border-color: rgba(185,151,80,.35); color: #8A6E33; }

/* ===== CORPORATE: メリットカード ===== */
.merit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.merit-card {
  background: var(--white); border-radius: 18px; padding: 42px 34px;
  border: 1px solid var(--line); border-top: 4px solid var(--blue);
  box-shadow: 0 4px 24px rgba(30,64,118,.06);
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), box-shadow .3s;
}
.merit-card.visible { opacity: 1; transform: none; }
.merit-card:hover { box-shadow: 0 14px 40px rgba(30,64,118,.12); }
.merit-card:nth-child(2) { border-top-color: var(--green); }
.merit-card:nth-child(3) { border-top-color: var(--gold); }
.merit-num { font-family: var(--en); font-size: 12px; font-weight: 700; letter-spacing: .22em; color: var(--gold); display: block; margin-bottom: 14px; }
.merit-icon { font-size: 38px; margin-bottom: 16px; }
.merit-title { font-size: 17.5px; font-weight: 900; color: var(--blue-dark); margin-bottom: 12px; line-height: 1.6; }
.merit-desc { font-size: 14px; color: var(--gray); line-height: 2; }

/* ===== CORPORATE: 強みスプリット ===== */
.strength-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.strength-lead { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--blue-dark); line-height: 1.95; display: block; margin-bottom: 18px; }
.strength-body { font-size: 15px; line-height: 2.2; color: #3A4254; }
.strength-note {
  margin-top: 28px; background: var(--gold-light); border: 1px solid rgba(185,151,80,.3);
  border-radius: 14px; padding: 20px 24px; font-size: 13.5px; color: #6E5826; line-height: 1.95;
}
.flow-steps.cols4 { grid-template-columns: repeat(4, 1fr); }

/* ===== CORPORATE: お悩みセクション ===== */
.worry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 880px; margin: 0 auto; }
.worry-item {
  display: flex; gap: 13px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 24px; font-size: 14.5px; font-weight: 700; color: #3A4254; line-height: 1.8;
  box-shadow: 0 2px 14px rgba(30,64,118,.05);
  opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.worry-item.visible { opacity: 1; transform: none; }
.worry-mark { color: var(--blue); font-size: 17px; flex-shrink: 0; margin-top: 1px; }
.worry-answer { text-align: center; margin-top: 40px; }
.worry-answer .arrow { font-size: 24px; color: var(--gold); display: block; margin-bottom: 12px; }
.worry-answer strong { font-family: var(--serif); font-size: clamp(19px, 2.2vw, 27px); color: var(--blue-dark); font-weight: 900; letter-spacing: .05em; }

/* ===== CORPORATE: 品質ノート ===== */
.quality-note {
  margin-top: 36px; display: flex; gap: 20px; align-items: flex-start;
  background: var(--gold-light); border: 1px solid rgba(185,151,80,.3);
  border-radius: 16px; padding: 26px 30px;
  opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.quality-note.visible { opacity: 1; transform: none; }
.quality-note-title { font-size: 16px; font-weight: 900; color: var(--blue-dark); margin-bottom: 8px; }
.quality-note-body { font-size: 14px; color: #6E5826; line-height: 2; }
.task-tags-note { margin-top: 20px; font-size: 13px; color: var(--gray); line-height: 1.9; }

/* ===== SERVICE: A型B型比較表 ===== */
.compare-wrap { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 8px 36px rgba(30,64,118,.08); }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 20px 24px; font-size: 14px; text-align: left; border-bottom: 1px solid var(--line); line-height: 1.9; vertical-align: top; }
.compare-table thead th { background: var(--navy); color: var(--white); font-size: 14.5px; padding: 16px 24px; }
.compare-table thead th.col-a { background: var(--blue-dark); }
.compare-table thead th.col-a .badge { display: inline-block; background: var(--gold); color: var(--white); font-size: 10px; font-weight: 700; border-radius: 4px; padding: 2px 8px; margin-left: 8px; vertical-align: middle; }
.compare-table tbody th { width: 18%; background: #FAFBFD; color: var(--blue-dark); font-weight: 700; }
.compare-table td.col-a { background: var(--blue-light); font-weight: 700; color: var(--blue-dark); width: 41%; }
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom: none; }

/* ===== SERVICE: 対象となる方 ===== */
.target-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.target-item {
  display: flex; gap: 13px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 22px; font-size: 14px; color: #3A4254; line-height: 1.9; font-weight: 500;
  box-shadow: 0 2px 12px rgba(30,64,118,.04);
}
.target-item .mark { color: var(--green-dark); font-weight: 800; flex-shrink: 0; }

/* ===== SERVICE: 公表資料 ===== */
.doc-section { background: var(--white); border-radius: 20px; padding: 36px 40px; box-shadow: 0 8px 36px rgba(30,64,118,.08); }
.doc-group { margin-bottom: 26px; }
.doc-group:last-child { margin-bottom: 0; }
.doc-group-title { font-size: 14px; font-weight: 900; color: var(--blue-dark); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.doc-links { display: flex; flex-wrap: wrap; gap: 10px; }
.doc-link {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gray-light); border: 1px solid var(--line); border-radius: 50px;
  padding: 9px 20px; font-size: 13px; font-weight: 700; color: var(--blue-dark); text-decoration: none;
  transition: border-color .2s, background .2s, transform .2s;
}
.doc-link:hover { border-color: var(--blue); background: var(--blue-light); transform: translateY(-1px); }

/* ===== SERVICE: 関連事業所 ===== */
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.related-card {
  background: var(--white); border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 4px 24px rgba(30,64,118,.06);
}
.related-header { color: var(--white); font-size: 16px; font-weight: 900; padding: 18px 26px; }
.related-body { padding: 26px 28px 30px; }
.related-row { display: flex; gap: 12px; font-size: 13.5px; line-height: 1.9; color: #3A4254; padding: 9px 0; border-bottom: 1px solid var(--line); }
.related-row:last-of-type { border-bottom: none; }
.related-row .label { min-width: 84px; font-weight: 700; color: var(--blue-dark); flex-shrink: 0; }

/* ===== COMPANY: ブランドステートメント ===== */
.phil-section { background: var(--navy); padding: 130px 40px; position: relative; overflow: hidden; text-align: center; }
.phil-section::before {
  content: ''; position: absolute; width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(rgba(61,130,214,.2), transparent 70%); top: -340px; right: -240px;
}
.phil-section::after {
  content: ''; position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: rgba(76,175,130,.08); bottom: -160px; left: -100px;
}
.phil-inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.phil-en {
  font-family: var(--en); font-size: 11px; letter-spacing: .34em; color: var(--gold);
  font-weight: 700; text-transform: uppercase; margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.phil-en::before, .phil-en::after { content: ''; width: 30px; height: 1px; background: var(--gold); }
.phil-statement {
  font-family: var(--serif); font-size: clamp(24px, 3.4vw, 42px); font-weight: 900;
  color: var(--white); line-height: 1.85; letter-spacing: .06em;
}
.phil-statement .accent { color: #A9DCC3; }
.phil-sub { font-size: 15px; color: rgba(255,255,255,.72); line-height: 2.2; margin-top: 30px; letter-spacing: .04em; }

/* ===== COMPANY: 理念・方針カード ===== */
.principle-list { display: flex; flex-direction: column; gap: 26px; max-width: 860px; margin: 0 auto; }
.principle-card {
  background: var(--white); border-radius: 18px; padding: 42px 46px;
  border: 1px solid var(--line); border-left: 4px solid var(--gold);
  box-shadow: 0 4px 24px rgba(30,64,118,.06);
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.principle-card.visible { opacity: 1; transform: none; }
.principle-num { font-family: var(--en); font-size: 12px; font-weight: 700; letter-spacing: .24em; color: var(--gold); display: block; margin-bottom: 10px; }
.principle-title { font-family: var(--serif); font-size: 21px; font-weight: 900; color: var(--blue-dark); margin-bottom: 16px; letter-spacing: .05em; }
.principle-body { font-size: 14.5px; color: #3A4254; line-height: 2.15; }
.principle-body .motto { display: flex; gap: 10px; align-items: flex-start; margin-top: 8px; }
.principle-body .motto .mk { color: var(--gold); font-weight: 800; flex-shrink: 0; }
@media (max-width: 900px) {
  .principle-card { padding: 28px 22px; }
  .phil-section { padding: 88px 20px; }
}
@media (max-width: 900px) {
  .related-grid { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 13px 12px; font-size: 12.5px; }
  .doc-section { padding: 26px 20px; }
}
@media (max-width: 900px) {
  .worry-grid { grid-template-columns: 1fr; }
  .quality-note { flex-direction: column; gap: 12px; }
}
@media (max-width: 900px) {
  .merit-grid { grid-template-columns: 1fr; }
  .strength-split { grid-template-columns: 1fr; gap: 40px; }
  .flow-steps.cols4 { grid-template-columns: 1fr; }
}

/* ===== モバイル：スクロール演出を無効化し常時表示（表示不具合対策） ===== */
@media (max-width: 900px) {
  .fade-up, .fade-left, .fade-right, .num-item, .service-card, .about-feature,
  .flow-step, .voice-card, .dual-cta-card, .warmth-item, .forwho-card,
  .benefit-card, .staff-card, .shuttle-banner, .flow-note, .worry-item,
  .quality-note, .merit-card, .principle-card {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .section-line { width: 56px !important; }
}

/* ===== PRODUCTS: COMING SOON ===== */
.cs-hero {
  min-height: 100vh; padding: 130px 24px 80px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--blue-light) 0%, #F6FAFF 45%, var(--white) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
/* 浮遊ブロブ */
.cs-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; pointer-events: none; }
.cs-blob.b1 { width: 420px; height: 420px; background: rgba(61,130,214,.35); top: -120px; left: -100px; animation: csDrift 14s ease-in-out infinite alternate; }
.cs-blob.b2 { width: 360px; height: 360px; background: rgba(76,175,130,.3); bottom: -100px; right: -80px; animation: csDrift 17s ease-in-out infinite alternate-reverse; }
.cs-blob.b3 { width: 260px; height: 260px; background: rgba(185,151,80,.25); top: 40%; left: 60%; animation: csDrift 20s ease-in-out infinite alternate; }
@keyframes csDrift { from { transform: translate(0,0) scale(1); } to { transform: translate(60px,40px) scale(1.15); } }
/* 浮遊パーツ */
.cs-float { position: absolute; font-size: 30px; opacity: .8; pointer-events: none; animation: csFloat 6s ease-in-out infinite; }
.cs-float.f1 { top: 18%; left: 12%; animation-duration: 7s; }
.cs-float.f2 { top: 26%; right: 14%; animation-duration: 5.5s; animation-delay: .8s; }
.cs-float.f3 { bottom: 24%; left: 18%; animation-duration: 6.5s; animation-delay: 1.4s; }
.cs-float.f4 { bottom: 30%; right: 10%; animation-duration: 8s; animation-delay: .4s; }
.cs-float.f5 { top: 50%; left: 6%; animation-duration: 9s; animation-delay: 2s; font-size: 22px; }
.cs-float.f6 { top: 60%; right: 22%; animation-duration: 7.5s; animation-delay: 1s; font-size: 22px; }
@keyframes csFloat { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-26px) rotate(5deg); } }
/* 軌道アイコン */
.cs-orbit-wrap { position: relative; width: 230px; height: 230px; margin: 0 auto 36px; }
.cs-orbit-center {
  position: absolute; inset: 50px; border-radius: 36px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex; align-items: center; justify-content: center; font-size: 56px;
  box-shadow: 0 20px 50px rgba(43,95,170,.35);
  animation: csBob 3.2s ease-in-out infinite;
}
@keyframes csBob { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-12px) rotate(2deg); } }
.cs-ring { position: absolute; inset: 0; border: 2px dashed rgba(61,130,214,.35); border-radius: 50%; animation: csSpin 24s linear infinite; }
.cs-orbit { position: absolute; inset: 0; animation: csSpin 12s linear infinite; }
.cs-orbit .sat {
  position: absolute; width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); box-shadow: 0 8px 24px rgba(30,64,118,.18);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  animation: csSpinRev 12s linear infinite;
}
.cs-orbit .sat.s1 { top: -26px; left: calc(50% - 26px); }
.cs-orbit .sat.s2 { bottom: 8px; left: -10px; }
.cs-orbit .sat.s3 { bottom: 8px; right: -10px; }
@keyframes csSpin { to { transform: rotate(360deg); } }
@keyframes csSpinRev { to { transform: rotate(-360deg); } }
/* COMING SOON 文字 */
.cs-title {
  font-family: var(--en); font-size: clamp(40px, 7.5vw, 92px); font-weight: 700; letter-spacing: .06em;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue), var(--green), var(--gold), var(--blue-dark));
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: csGrad 6s linear infinite;
  line-height: 1.1; margin-bottom: 6px;
}
@keyframes csGrad { to { background-position: 300% 0; } }
.cs-dots span { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); margin: 0 5px; animation: csBlink 1.4s ease-in-out infinite; }
.cs-dots span:nth-child(2) { animation-delay: .2s; background: var(--green); }
.cs-dots span:nth-child(3) { animation-delay: .4s; background: var(--blue); }
@keyframes csBlink { 0%,100% { transform: scale(.6); opacity: .4; } 50% { transform: scale(1.15); opacity: 1; } }
.cs-lead { font-family: var(--serif); font-size: clamp(19px, 2.6vw, 30px); font-weight: 900; color: var(--blue-dark); letter-spacing: .06em; line-height: 1.9; margin: 26px 0 14px; }
.cs-sub { font-size: 14.5px; color: var(--gray); line-height: 2.1; max-width: 560px; margin: 0 auto 36px; }
/* ヒミツカード（シマー） */
.cs-cards { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; position: relative; z-index: 1; }
.cs-card {
  width: 200px; background: var(--white); border-radius: 18px; padding: 24px 18px;
  border: 1px solid var(--line); box-shadow: 0 8px 28px rgba(30,64,118,.08);
}
.cs-card:nth-child(1) { animation: csBob 4.5s ease-in-out infinite; }
.cs-card:nth-child(2) { animation: csBob 4.5s ease-in-out infinite .6s; }
.cs-card:nth-child(3) { animation: csBob 4.5s ease-in-out infinite 1.2s; }
.cs-card .ico { font-size: 30px; margin-bottom: 10px; }
.cs-card .nm { font-size: 13.5px; font-weight: 900; color: var(--blue-dark); margin-bottom: 12px; }
.cs-bar { height: 9px; border-radius: 5px; margin: 7px 0; position: relative; overflow: hidden; background: #E8EEF7; }
.cs-bar::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(61,130,214,.35), transparent);
  transform: translateX(-100%); animation: csShimmer 1.8s ease-in-out infinite;
}
.cs-bar.w60 { width: 60%; } .cs-bar.w85 { width: 85%; } .cs-bar.w72 { width: 72%; }
@keyframes csShimmer { to { transform: translateX(100%); } }
.cs-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
/* マーキー（共通marqueeを流用） */
@media (max-width: 600px) {
  .cs-cards { flex-direction: column; align-items: center; }
  .cs-card { width: 240px; }
  .cs-float { font-size: 22px; }
}
