/* =============================================
   Juno 公式サイト 共通スタイル
   ============================================= */

/* CSS変数 */
:root {
  --juno-primary:       #0ABAB5;
  --juno-primary-light: #E6F9F8;
  --juno-primary-dark:  #08918D;
  --juno-accent:        #F4A261;
  --juno-accent-light:  #FEF1E6;
  --juno-white:         #FFFFFF;
  --juno-bg:            #F7FFFE;
  --juno-bg-sub:        #F0F4F4;
  --juno-text:          #2C3A3A;
  --juno-text-sub:      #6B8080;
  --juno-border:        #D0ECEA;
  --juno-shadow:        0 4px 20px rgba(10, 186, 181, 0.10);
  --juno-shadow-md:     0 8px 32px rgba(10, 186, 181, 0.15);
  --nav-height:         72px;
  --radius-card:        16px;
  --radius-btn:         50px;
  --transition:         0.25s ease;
}

/* リセット */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: var(--juno-text);
  background: var(--juno-bg);
  line-height: 1.8;
  letter-spacing: 0.02em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* レイアウト */
.container { width: min(1160px, 90%); margin-inline: auto; }
/* =============================================
   セクション共通：全無地エリアにドット＋ソフトライン
   ============================================= */
.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* ① ドットグリッド */
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10,186,181,0.16) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  background-position: 0 0;
  pointer-events: none;
  z-index: 0;
}

/* ② ソフトウェーブライン＋アーク（テール系薄め） */
.section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600' preserveAspectRatio='xMidYMid slice'%3E%3Cpath d='M-100 180 Q400 80 900 160 Q1200 220 1540 140' fill='none' stroke='%230ABAB5' stroke-opacity='0.10' stroke-width='2'/%3E%3Cpath d='M-100 420 Q500 350 900 400 Q1200 440 1540 380' fill='none' stroke='%230ABAB5' stroke-opacity='0.07' stroke-width='1.5'/%3E%3Cpath d='M200 -20 Q600 40 1000 10 Q1200 -10 1540 20' fill='none' stroke='%230ABAB5' stroke-opacity='0.06' stroke-width='1' stroke-dasharray='8 8'/%3E%3Ccircle cx='1440' cy='0' r='300' fill='none' stroke='%230ABAB5' stroke-opacity='0.07' stroke-width='1.5'/%3E%3Ccircle cx='0' cy='600' r='220' fill='none' stroke='%230ABAB5' stroke-opacity='0.06' stroke-width='1.2'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}

.section .container {
  position: relative;
  z-index: 1;
}

/* ━━ グレー背景セクション ━━ */
.section--alt {
  background: var(--juno-bg-sub);
  position: relative;
  overflow: hidden;
}

/* ① ドットグリッド（濃いめ） */
.section--alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10,186,181,0.22) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  background-position: 0 0;
  pointer-events: none;
  z-index: 0;
}

/* ② ソフトウェーブライン＋破線アーク（alt版） */
.section--alt::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600' preserveAspectRatio='xMidYMid slice'%3E%3Cpath d='M-100 250 Q300 140 800 210 Q1100 270 1540 190' fill='none' stroke='%230ABAB5' stroke-opacity='0.13' stroke-width='2'/%3E%3Cpath d='M-100 500 Q400 430 900 480 Q1200 520 1540 460' fill='none' stroke='%230ABAB5' stroke-opacity='0.09' stroke-width='1.5'/%3E%3Cpath d='M-100 30 Q500 -40 1000 20 Q1250 50 1540 10' fill='none' stroke='%230ABAB5' stroke-opacity='0.08' stroke-width='1' stroke-dasharray='8 8'/%3E%3Ccircle cx='0' cy='0' r='260' fill='none' stroke='%230ABAB5' stroke-opacity='0.08' stroke-width='1.5'/%3E%3Ccircle cx='1440' cy='600' r='320' fill='none' stroke='%230ABAB5' stroke-opacity='0.07' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}

.section--alt .container {
  position: relative;
  z-index: 1;
}

/* ━━ 白背景セクション ━━ */
.section--message::before {
  background-image: radial-gradient(circle, rgba(10,186,181,0.12) 1.5px, transparent 1.5px);
}
.section--message::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600' preserveAspectRatio='xMidYMid slice'%3E%3Cpath d='M-100 200 Q400 110 900 180 Q1200 240 1540 160' fill='none' stroke='%230ABAB5' stroke-opacity='0.08' stroke-width='2'/%3E%3Cpath d='M-100 460 Q500 390 900 440 Q1200 480 1540 420' fill='none' stroke='%230ABAB5' stroke-opacity='0.06' stroke-width='1.5'/%3E%3Ccircle cx='1440' cy='0' r='280' fill='none' stroke='%230ABAB5' stroke-opacity='0.06' stroke-width='1.5'/%3E%3C/svg%3E");
}

/* SVG装飾の共通スタイル（インラインSVG用） */
.section__deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* 見出し */
.section__label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--juno-primary);
  background: var(--juno-primary-light);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 16px;
}
.section__lead {
  font-size: 1rem;
  color: var(--juno-text-sub);
  max-width: 600px;
  margin-bottom: 48px;
}
.section__head { text-align: center; }
.section__head .section__lead { margin-inline: auto; }

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--juno-accent);
  color: var(--juno-white);
  box-shadow: 0 4px 16px rgba(244, 162, 97, 0.35);
}
.btn--primary:hover {
  background: #e8915a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 162, 97, 0.45);
}
.btn--outline {
  background: transparent;
  color: var(--juno-primary);
  border: 2px solid var(--juno-primary);
}
.btn--outline:hover {
  background: var(--juno-primary);
  color: var(--juno-white);
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: var(--juno-white);
  border: 2px solid var(--juno-white);
}
.btn--outline-white:hover {
  background: var(--juno-white);
  color: var(--juno-primary);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--juno-white);
  color: var(--juno-primary);
  font-weight: 700;
  box-shadow: var(--juno-shadow);
}
.btn--white:hover {
  background: var(--juno-primary-light);
  transform: translateY(-2px);
}

/* ナビゲーション */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--juno-border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--juno-shadow); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--juno-text);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--juno-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__link:hover { color: var(--juno-primary); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__cta { padding: 10px 20px; font-size: 0.875rem; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--juno-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* スマホメニュー */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--juno-white);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid var(--juno-border);
  box-shadow: var(--juno-shadow-md);
  z-index: 99;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link { font-size: 1rem; padding: 8px 0; border-bottom: 1px solid var(--juno-border); }
.nav__mobile .btn { width: 100%; justify-content: center; }

/* フッター */
.footer {
  background: var(--juno-text);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  background-position: 0 0;
  pointer-events: none;
  z-index: 0;
}
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 400' preserveAspectRatio='xMidYMid slice'%3E%3Cpath d='M-100 120 Q400 50 900 110 Q1200 160 1540 90' fill='none' stroke='%23FFFFFF' stroke-opacity='0.07' stroke-width='2'/%3E%3Cpath d='M-100 300 Q500 240 900 280 Q1200 310 1540 270' fill='none' stroke='%23FFFFFF' stroke-opacity='0.05' stroke-width='1.5'/%3E%3Cpath d='M-100 380 Q600 350 1100 370 Q1300 378 1540 360' fill='none' stroke='%23FFFFFF' stroke-opacity='0.04' stroke-width='1' stroke-dasharray='8 8'/%3E%3Ccircle cx='1440' cy='0' r='260' fill='none' stroke='%23FFFFFF' stroke-opacity='0.06' stroke-width='1.5'/%3E%3Ccircle cx='0' cy='400' r='180' fill='none' stroke='%23FFFFFF' stroke-opacity='0.05' stroke-width='1.2'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
.footer .container {
  position: relative;
  z-index: 1;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__logo-en {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--juno-primary);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}
.footer__logo-img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 8px;
}
.footer__logo-ja {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer__info { font-size: 0.8rem; line-height: 2; color: rgba(255,255,255,0.7); }
.footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--juno-primary);
  margin-bottom: 16px;
}
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--juno-primary); }
.footer__sns {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background var(--transition);
}
.footer__sns-link:hover { background: var(--juno-primary); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ページヘッダー */
.page-header {
  background: linear-gradient(135deg, var(--juno-primary) 0%, var(--juno-primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* ドットパターン */
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.28) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  background-position: 8px 8px;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.page-header__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--juno-white);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}
.page-header__sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.page-header__blob {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* カード */
.card {
  background: var(--juno-white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--juno-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--juno-shadow-md);
}

/* グリッド */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

/* フローティングCTAボタン */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
}
.floating-cta__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--juno-primary);
  color: var(--juno-white);
  padding: 14px 24px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 6px 24px rgba(10, 186, 181, 0.4);
  transition: all var(--transition);
  white-space: nowrap;
}
.floating-cta__btn:hover {
  background: var(--juno-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(10, 186, 181, 0.5);
}

/* ヒーロー */
.section--hero {
  min-height: calc(100vh - var(--nav-height));
  background: linear-gradient(135deg, var(--juno-primary) 0%, #06d6d0 60%, #0abab5 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.section--hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.22) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  background-position: 4px 4px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.hero__inner {
  position: relative;
}
.hero__visual-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero__photo-wrap {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3;
  clip-path: url(#heroPhotoClip);
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.20));
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__mini-illust {
  width: 100%;
  max-width: 150px;
}
.hero__mini-illust svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}
.hero__tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: var(--juno-white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--juno-white);
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero__title span { display: block; font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 400; opacity: 0.9; margin-top: 8px; }
.hero__sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.hero__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.hero__keyword {
  display: inline-block;
  padding: 5px 16px;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__social { display: flex; gap: 16px; margin-top: 20px; align-items: center; }
.hero__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.hero__social-link:hover { color: #fff; }
.hero__social-link svg { flex-shrink: 0; }
.btn--imahere {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid #A8DDD9;
  border-radius: 24px;
  background: #F0FAF9;
  color: #0F8A85;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn--imahere:hover {
  background: #D6F3F1;
  border-color: #7ECFCB;
}
.hero__blob {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  opacity: 0.12;
  pointer-events: none;
}

/* 安心メッセージ */
.section--message { background: var(--juno-white); }
.message__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.message__content p {
  font-size: 0.875rem;
  line-height: 1.85;
}
.message__title-sub {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--juno-text);
  margin-top: 12px;
  line-height: 1.9;
}
.message__steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.message__step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.message__step-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.message__step-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--juno-primary-dark);
  margin-bottom: 2px;
}
.message__step-text {
  font-size: 0.82rem;
  color: var(--juno-text-sub);
  line-height: 1.7;
  margin: 0;
}
.message__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.message__photo-wrap {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 3;
  clip-path: url(#msgPhotoClip);
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.14));
}
.message__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 特徴カード */
.feature-card__icon {
  width: 56px;
  height: 56px;
  background: var(--juno-primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.feature-card__text { font-size: 0.875rem; color: var(--juno-text-sub); line-height: 1.8; }

/* PDCAフロー */
.pdca-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}
.pdca-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.pdca-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--juno-primary);
  font-family: 'Nunito', sans-serif;
}
.pdca-step__num {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--juno-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.pdca-step__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.pdca-step__sub { font-size: 0.8rem; color: var(--juno-text-sub); }

/* こんな方へ */
.for-whom-card { border-top: 4px solid var(--juno-primary); }
.for-whom-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--juno-primary-dark);
}
.for-whom-card__list { display: flex; flex-direction: column; gap: 10px; }
.for-whom-card__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--juno-text);
}
.for-whom-card__item::before {
  content: '✓';
  color: var(--juno-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* noteカード */
.note-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.note-card {
  background: var(--juno-white);
  border-radius: var(--radius-card);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--juno-shadow);
  border: 1px solid var(--juno-border);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.note-card:hover { transform: translateY(-3px); }
.note-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--juno-bg-alt);
}
.note-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.note-card:hover .note-card__img img { transform: scale(1.04); }
.note-card__img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}
.note-card__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.note-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  flex: 1;
}
.note-card__date { font-size: 0.75rem; color: var(--juno-text-sub); }

/* CTA */
.section--cta {
  background: linear-gradient(135deg, var(--juno-primary) 0%, var(--juno-primary-dark) 100%);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.section--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.section--cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 500' preserveAspectRatio='xMidYMid slice'%3E%3Cpath d='M-100 150 Q400 60 900 130 Q1200 180 1540 110' fill='none' stroke='%23FFFFFF' stroke-opacity='0.12' stroke-width='2'/%3E%3Cpath d='M-100 370 Q500 300 900 355 Q1200 400 1540 340' fill='none' stroke='%23FFFFFF' stroke-opacity='0.08' stroke-width='1.5'/%3E%3Cpath d='M200 490 Q600 450 1000 475 Q1250 490 1540 470' fill='none' stroke='%23FFFFFF' stroke-opacity='0.07' stroke-width='1' stroke-dasharray='8 8'/%3E%3Ccircle cx='1440' cy='0' r='280' fill='none' stroke='%23FFFFFF' stroke-opacity='0.09' stroke-width='1.5'/%3E%3Ccircle cx='0' cy='500' r='200' fill='none' stroke='%23FFFFFF' stroke-opacity='0.08' stroke-width='1.2'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
.section--cta .container {
  position: relative;
  z-index: 1;
}
.section--cta .section__title { color: var(--juno-white); }
.section--cta .section__lead { color: rgba(255,255,255,0.85); margin-inline: auto; }

/* アコーディオンFAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin-inline: auto; }
.faq-item { background: var(--juno-white); border-radius: var(--radius-card); box-shadow: var(--juno-shadow); overflow: hidden; }
.faq-item__input { display: none; }
.faq-item__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition);
  gap: 16px;
}
.faq-item__label:hover { background: var(--juno-primary-light); }
.faq-item__q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.faq-item__q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--juno-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
}
.faq-item__arrow {
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item__input:checked + .faq-item__label .faq-item__arrow { transform: rotate(180deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item__input:checked + .faq-item__label + .faq-item__answer {
  max-height: 400px;
}
.faq-item__answer-inner {
  padding: 0 28px 22px 68px;
  font-size: 0.9rem;
  color: var(--juno-text-sub);
  line-height: 1.9;
}

/* ニュース一覧 */
.news-list { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin-inline: auto; }
.news-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--juno-border);
  transition: opacity var(--transition);
}
.news-item:hover { opacity: 0.75; }
.news-item__date {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  color: var(--juno-text-sub);
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 90px;
}
.news-item__tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  flex-shrink: 0;
  margin-top: 2px;
}
.news-item__tag--info { background: var(--juno-primary-light); color: var(--juno-primary-dark); }
.news-item__tag--event { background: var(--juno-accent-light); color: #c07a45; }
.news-item__tag--column { background: #f0f0ff; color: #5555cc; }
.news-item__title { font-size: 0.95rem; font-weight: 500; }

/* お問い合わせ */
.contact-box {
  background: var(--juno-white);
  border-radius: var(--radius-card);
  box-shadow: var(--juno-shadow-md);
  overflow: hidden;
  max-width: 800px;
  margin-inline: auto;
}
.contact-box__banner {
  background: var(--juno-primary-light);
  padding: 24px 32px;
  font-weight: 700;
  color: var(--juno-primary-dark);
  font-size: 1.05rem;
  text-align: center;
}
.contact-box__body { padding: 40px 32px; }
.contact-box iframe {
  width: 100%;
  border: none;
  min-height: 600px;
}
.contact-direct {
  max-width: 800px;
  margin-inline: auto;
  background: var(--juno-accent-light);
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
  margin-top: 32px;
}
.contact-direct__lead { font-size: 0.9rem; color: var(--juno-text-sub); margin-bottom: 12px; }
.contact-direct__mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--juno-white);
  background: var(--juno-primary);
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: background var(--transition);
  margin-top: 4px;
}
.contact-direct__mail:hover { background: var(--juno-primary-dark); }

/* 採用ページ */
.recruit-card { border-top: 4px solid var(--juno-accent); }
.recruit-card__badge {
  display: inline-block;
  background: var(--juno-accent-light);
  color: #c07a45;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.recruit-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.recruit-card__list { display: flex; flex-direction: column; gap: 8px; }
.recruit-card__item { font-size: 0.875rem; padding-left: 16px; position: relative; }
.recruit-card__item::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--juno-accent);
}
.recruit-card__section { margin-top: 20px; }
.recruit-card__section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--juno-text-sub);
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* タイムライン */
.timeline { max-width: 600px; margin-inline: auto; }
.timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--juno-border);
}
.timeline-item__dot {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--juno-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 1;
}
.timeline-item__time {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--juno-primary);
  margin-bottom: 4px;
}
.timeline-item__title { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.timeline-item__text { font-size: 0.85rem; color: var(--juno-text-sub); }

/* 引用カード */
.quote-card {
  background: var(--juno-white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--juno-shadow);
  position: relative;
}
.quote-card::before {
  content: '"';
  font-size: 5rem;
  color: var(--juno-primary-light);
  position: absolute;
  top: 8px;
  left: 20px;
  font-family: serif;
  line-height: 1;
}
.quote-card__text { font-size: 0.9rem; line-height: 1.9; color: var(--juno-text); padding-top: 32px; }
.quote-card__author { margin-top: 16px; font-size: 0.8rem; font-weight: 700; color: var(--juno-text-sub); }

/* 会社概要テーブル */
.info-table { width: 100%; border-collapse: collapse; }
.info-table th,
.info-table td { padding: 14px 20px; border-bottom: 1px solid var(--juno-border); font-size: 0.9rem; text-align: left; }
.info-table th { background: var(--juno-primary-light); width: 200px; font-weight: 700; color: var(--juno-primary-dark); }
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }

/* サービスフロー */
.flow-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.flow-step {
  text-align: center;
  padding: 32px 16px;
  position: relative;
  background: var(--juno-white);
}
.flow-step:not(:last-child)::after {
  content: '▶';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--juno-primary);
  font-size: 1rem;
  z-index: 1;
}
.flow-step__num {
  font-family: 'Nunito', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--juno-primary-light);
  line-height: 1;
  margin-bottom: 8px;
}
.flow-step__title { font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; }
.flow-step__text { font-size: 0.8rem; color: var(--juno-text-sub); }

/* プレースホルダー */
.placeholder {
  background: var(--juno-bg-sub);
  border: 2px dashed var(--juno-border);
  border-radius: var(--radius-card);
  padding: 40px;
  text-align: center;
  color: var(--juno-text-sub);
  font-size: 0.875rem;
}

/* Googleマップ */
.map-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--juno-shadow);
  margin-top: 32px;
}
.map-wrap iframe { width: 100%; height: 400px; border: none; }

/* =============================================
   ギャラリー
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--juno-shadow);
  background: var(--juno-bg-sub);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
/* モバイル：横スワイプ */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(9, 72vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 12px;
    /* スクロールバーを非表示 */
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-item {
    scroll-snap-align: start;
    aspect-ratio: 4 / 3;
  }
}
/* スワイプヒント（モバイルのみ表示） */
.gallery-hint {
  display: none;
  text-align: center;
  font-size: 0.78rem;
  color: var(--juno-text-sub);
  margin-top: 10px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .gallery-hint { display: block; }
}

/* =============================================
   理念セクション
   ============================================= */
.philosophy__catch {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 2;
  color: var(--juno-primary-dark);
  margin-bottom: 32px;
  text-align: center;
}
.philosophy__body {
  font-size: 1rem;
  line-height: 2.1;
  color: var(--juno-text);
  max-width: 720px;
  margin-inline: auto;
}

/* =============================================
   行動指針セクション
   ============================================= */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 800px;
  margin-inline: auto;
  margin-top: 48px;
}
.values-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  align-items: flex-start;
}
.values-item__icon {
  background: var(--juno-white);
  border-radius: var(--radius-card);
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--juno-shadow);
  color: var(--juno-primary);
  flex-shrink: 0;
}
.values-item__icon svg { width: 40px; height: 40px; }
.values-item__body { padding-top: 6px; }
.values-item__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--juno-text);
}
.values-item__text {
  font-size: 0.9rem;
  color: var(--juno-text-sub);
  line-height: 1.9;
}

/* =============================================
   レスポンシブ
   ============================================= */
@media (max-width: 1024px) {
  .pdca-flow { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .pdca-step:nth-child(2)::after { content: '↓'; right: auto; left: 50%; top: auto; bottom: -20px; transform: translateX(-50%); }
  .pdca-step:not(:last-child)::after { content: '→'; }
  .flow-steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .flow-step:not(:last-child)::after { display: none; }
  .note-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .section { padding: 60px 0; }
  .values-item { grid-template-columns: 72px 1fr; gap: 18px; }
  .values-item__icon { width: 72px; height: 72px; }
  .values-item__icon svg { width: 32px; height: 32px; }
  .philosophy__catch { font-size: 1.4rem; line-height: 2; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .message__inner { grid-template-columns: 1fr; gap: 32px; }
  .message__photo-wrap { max-width: 320px; margin-inline: auto; }
  .message__title-sub {
    font-size: 0.9rem;
    line-height: 2.0;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .pdca-flow { grid-template-columns: 1fr; }
  .pdca-step:not(:last-child)::after { content: '↓'; right: auto; bottom: -12px; top: auto; left: 50%; transform: translateX(-50%); }
  .note-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr; }
  .flow-step:not(:last-child)::after { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual-wrap { max-width: 360px; margin-inline: auto; }
  .hero__photo-wrap { max-width: 360px; }
  .hero__mini-illust { max-width: 110px; }
  .hero__btns { flex-direction: column; }
  .floating-cta { bottom: 20px; right: 16px; }
  .floating-cta__btn { padding: 12px 18px; font-size: 0.875rem; }
  .info-table th { width: 120px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .news-item { flex-wrap: wrap; }
  .contact-box__body { padding: 24px 16px; }
}
