/* ========================================
   岡山ハッピィライフ操風 採用ページ
   ======================================== */

/* ---------- 変数 ---------- */
:root {
  --color-orange: #FF7342;        /* メインアクセント */
  --color-orange-deep: #E55A2A;   /* オレンジホバー */
  --color-coral: #C45E3F;         /* 英字キャプション色 */
  --color-brown: #4C1F04;         /* 茶色テキスト */
  --color-text: #121212;          /* 本文 */
  --color-text-sub: #555;         /* 補足テキスト */
  --color-bg: #FFFFFF;
  --color-bg-soft: #FFF7F2;       /* ベージュ寄り背景 */
  --color-bg-section: #FAF5F0;    /* セクション背景（薄ベージュ） */
  --color-border: #EAE0D5;        /* 枠線 */

  --font-jp: "Noto Sans JP", "M PLUS 1p", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  --font-en: "Montserrat", "M PLUS 1p", sans-serif;

  --container: 1100px;
  --header-h: 80px;

  --shadow-sm: 0 4px 12px rgba(76, 31, 4, 0.06);
  --shadow-md: 0 10px 30px rgba(76, 31, 4, 0.10);
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--color-text);
  line-height: 1.8;
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.2em; margin: 0; }
a { color: inherit; text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { opacity: .75; }
button { background: none; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   ヘッダー
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { display: inline-flex; flex-direction: column; line-height: 1.2; }
.logo-jp {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
.logo-en {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-coral);
  margin-top: 2px;
}
.header-right { display: flex; align-items: center; gap: 18px; }
.header-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-orange);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.tel-icon { font-size: 18px; }
.header-hours {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  color: var(--color-text-sub);
  line-height: 1.4;
}
.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}
.menu-btn span {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform .3s, opacity .3s, top .3s;
}
.menu-btn span:nth-child(1) { top: 12px; }
.menu-btn span:nth-child(2) { top: 19px; }
.menu-btn span:nth-child(3) { top: 26px; }
.menu-btn.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.site-nav {
  border-top: 1px solid var(--color-border);
  background: #fff;
}
.site-nav ul {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  list-style: none;
  display: flex;
  gap: 32px;
}
.site-nav a {
  display: inline-block;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 8px;
  width: 0; height: 2px;
  background: var(--color-orange);
  transition: width .25s;
}
.site-nav a:hover { opacity: 1; }
.site-nav a:hover::after { width: 100%; }

/* ========================================
   ヒーロー
   ======================================== */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, #FFF1E8 0%, #FFE6D6 60%, #FFD9C4 100%);
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.hero-titles { max-width: 720px; }
.hero-en {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--color-coral);
  margin: 0 0 8px;
}
.hero-jp {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 24px;
  color: var(--color-text);
  line-height: 1.2;
}
.hero-lead {
  font-size: 18px;
  line-height: 2;
  color: var(--color-text);
  margin: 0;
}
.hero-deco {
  position: absolute;
  right: -120px;
  top: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 115, 66, 0.18) 0%, rgba(255, 115, 66, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(196, 94, 63, 0.10) 0%, rgba(196, 94, 63, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

/* ========================================
   セクション共通
   ======================================== */
.section {
  padding: 80px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head .caption-en {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--color-coral);
  margin: 0 0 6px;
}
.section-head .caption-jp {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0;
  color: var(--color-text);
}
.section-head-large .caption-jp {
  font-size: 40px;
}
.section-head-large {
  margin-bottom: 60px;
  position: relative;
}
.section-head-large::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-orange);
  margin: 24px auto 0;
  border-radius: 2px;
}

.sub-section { margin-top: 64px; }
.sub-section:first-child { margin-top: 0; }
.sub-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 28px;
  border-left: 4px solid var(--color-orange);
  padding-left: 16px;
}
.sub-en {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-coral);
  margin: 0;
}
.sub-jp {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 4px 0 0;
}

/* ========================================
   応募に関するお願い
   ======================================== */
.notice .notice-box {
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 6px solid var(--color-orange);
  border-radius: 12px;
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}
.notice .notice-box p { margin: 0 0 8px; font-size: 16px; }
.notice .notice-box p:last-child { margin-bottom: 0; }
.notice .notice-box strong { color: var(--color-orange-deep); font-weight: 700; }

/* ========================================
   募集職種カード
   ======================================== */
.jobs { background: var(--color-bg-section); }
.job-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.job-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--color-orange);
}
.job-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  opacity: 1;
}
.job-card-body {
  padding: 36px 36px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.job-card-en {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-coral);
  margin: 0 0 4px;
}
.job-card-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 18px;
}
.job-card-tags {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.job-card-tags li {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 12px;
}
.job-card-tags li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--color-orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.job-card-tags li span {
  font-size: 12px;
  font-weight: 500;
  background: #FFE9DC;
  color: var(--color-orange-deep);
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.05em;
}
.job-card-arrow {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-orange-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.1em;
}
.job-card-arrow em {
  font-style: normal;
  font-family: var(--font-en);
  transition: transform .3s;
}
.job-card:hover .job-card-arrow em { transform: translateX(6px); }

/* ========================================
   職種詳細セクション
   ======================================== */
.job-detail-alt { background: var(--color-bg-section); }

/* 先輩の声 */
.voice-intro {
  background: #fff;
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--color-orange);
}
.voice-meta {
  font-size: 13px;
  color: var(--color-text-sub);
  margin: 0 0 12px;
  letter-spacing: 0.05em;
}
.voice-headline {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--color-brown);
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.voice-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid var(--color-border);
}
.voice-card-num {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: var(--color-orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(255, 115, 66, 0.3);
}
.voice-card-ttl {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-brown);
  margin: 16px 0 16px;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.voice-card p {
  font-size: 14px;
  text-align: justify;
  line-height: 1.9;
  color: var(--color-text);
  margin: 0;
}

/* 募集要項テーブル */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.info-table th,
.info-table td {
  padding: 20px 24px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  line-height: 1.8;
}
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: 0; }
.info-table th {
  width: 200px;
  background: #FFF7F0;
  color: var(--color-brown);
  font-weight: 700;
  letter-spacing: 0.08em;
  border-right: 1px solid var(--color-border);
  position: relative;
  vertical-align: middle;
  text-align: left;
  padding-left: 36px;
}
.info-table th::before {
  content: "";
  position: absolute;
  left: 16px; top: 50%;
  width: 4px; height: 16px;
  background: var(--color-orange);
  border-radius: 2px;
  transform: translateY(-50%);
}
.info-table td p { margin: 0 0 8px; }
.info-table td p:last-child { margin-bottom: 0; }
.info-table td strong { color: var(--color-orange-deep); font-weight: 700; }
.info-table td a { color: var(--color-orange-deep); text-decoration: underline; }

.plain-list { list-style: none; padding: 0; margin: 0; }
.plain-list li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 4px;
}
.plain-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 0.85em;
  width: 6px; height: 6px;
  background: var(--color-orange);
  border-radius: 50%;
}
.note {
  font-size: 13px;
  color: var(--color-text-sub);
  margin-top: 8px !important;
}
.kv-list { margin: 0; }
.kv-list dt {
  display: inline-block;
  background: var(--color-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 12px;
  margin: 8px 12px 8px 0;
  letter-spacing: 0.1em;
  vertical-align: middle;
}
.kv-list dd {
  display: inline;
  margin: 0;
}
.kv-list dt:first-child { margin-top: 0; }
.kv-list dd::after { content: ""; display: block; }
.num-list {
  margin: 8px 0 0;
  padding-left: 20px;
}
.num-list li {
  margin-bottom: 4px;
}

/* ========================================
   スタッフ写真（写真は後日差し替え）
   ======================================== */
/* 先輩の声：写真＋テキストの横並び */
.voice-intro {
  display: flex;
  align-items: center;
  gap: 28px;
}
.voice-intro-txt { min-width: 0; flex: 1 1 auto; }
.voice-photo {
  width: 180px;
  min-width: 180px;
  max-width: 180px;
  aspect-ratio: 4 / 5;
  flex: 0 0 180px;
}

/* 写真プレースホルダー枠（imgタグに差し替えるまでの仮表示） */
.photo-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-bg-soft);
  border: 2px dashed var(--color-border);
  border-radius: 12px;
  color: var(--color-text-sub);
}
.photo-frame-icon { font-size: 28px; }
.photo-frame-txt {
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.05em;
}

/* 写真差し替え後のimg用（photo-frameをimgに置き換えたとき） */
.staff-photo-img {
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* 職場の風景セクション */
.staff-photos-lead {
  text-align: center;
  font-size: 15px;
  color: var(--color-text);
  margin: 0 0 36px;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.photo-item { margin: 0; }
.photo-item .photo-frame,
.photo-item .staff-photo-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
}
.photo-item figcaption {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
  color: var(--color-text-sub);
  letter-spacing: 0.05em;
}

/* お問合せオンラインフォームボタン */
.form-link {
  margin-top: 24px;
  text-align: center;
}
.form-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid var(--color-orange);
  color: var(--color-orange-deep);
  border-radius: 999px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background .25s, color .25s;
}
.form-link-btn em {
  font-style: normal;
  font-family: var(--font-en);
}
.form-link-btn:hover {
  background: var(--color-orange);
  color: #fff;
  opacity: 1;
}

@media (max-width: 720px) {
  .voice-intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .voice-photo {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    flex-basis: auto;
  }
  .photo-grid { grid-template-columns: 1fr; gap: 20px; }
  .form-link-btn { width: 100%; justify-content: center; }
}

/* ========================================
   CTAセクション
   ======================================== */
.cta {
  background: linear-gradient(135deg, #FFF1E8 0%, #FFE0CC 100%);
}
.cta-box {
  text-align: center;
}
.cta-lead {
  font-size: 18px;
  margin: 0 0 32px;
  color: var(--color-brown);
}
.cta-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.cta-btn {
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  text-align: center;
}
.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  opacity: 1;
}
.cta-btn-primary {
  background: var(--color-orange);
  color: #fff;
}
.cta-btn-primary:hover { background: var(--color-orange-deep); }
.cta-btn-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cta-btn-num {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.cta-btn-sub {
  font-size: 12px;
  opacity: 0.9;
}
.cta-btn-secondary {
  flex-direction: row;
  justify-content: space-between;
}
.cta-btn-secondary .cta-btn-arrow {
  font-family: var(--font-en);
  font-size: 22px;
  color: var(--color-orange);
}

/* ========================================
   フッター
   ======================================== */
.site-footer {
  background: #2A1B0F;
  color: #E8DDD0;
  padding: 60px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-jp {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 4px;
  color: #fff;
}
.footer-brand-en {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--color-orange);
  margin: 0 0 16px;
}
.footer-addr,
.footer-tel {
  font-size: 13px;
  margin: 0 0 6px;
  line-height: 1.7;
}
.footer-tel a {
  font-family: var(--font-en);
  color: #fff;
  text-decoration: none;
}
.footer-group {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
  color: var(--color-orange);
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}
.copyright {
  margin: 24px 0 0;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(232, 221, 208, 0.6);
  text-align: center;
}

/* ========================================
   トップへ戻るボタン
   ======================================== */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  background: var(--color-orange);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(255, 115, 66, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s;
  z-index: 99;
  pointer-events: none;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--color-orange-deep); }

/* ========================================
   フェードイン演出
   ======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   レスポンシブ
   ======================================== */
@media (max-width: 960px) {
  .site-nav ul { gap: 20px; }
  .hero-jp { font-size: 44px; }
  .voice-cards { grid-template-columns: 1fr; gap: 32px; }
  .voice-card { padding: 28px 24px; }
}

@media (max-width: 720px) {
  :root { --header-h: 64px; }
  html { scroll-padding-top: 76px; }
  .header-inner { padding: 10px 14px; gap: 8px; flex-wrap: nowrap; }
  .logo { min-width: 0; flex-shrink: 1; }
  .logo-jp { font-size: 13px; white-space: nowrap; letter-spacing: 0.02em; }
  .logo-en { display: none; }
  .header-right { gap: 10px; flex-shrink: 0; }
  .header-tel { font-size: 14px; white-space: nowrap; }
  .header-tel .tel-num { letter-spacing: 0; }
  .tel-icon { font-size: 13px; }
  .header-hours { display: none; }
  .menu-btn { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .site-nav.is-open { max-height: 320px; }
  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 16px;
  }
  .site-nav li { border-bottom: 1px solid var(--color-border); }
  .site-nav li:last-child { border-bottom: 0; }
  .site-nav a { display: block; padding: 14px 0; }

  .section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .section-head .caption-jp { font-size: 26px; }
  .section-head-large .caption-jp { font-size: 30px; }
  .sub-jp { font-size: 22px; }

  .hero { padding: 56px 0 64px; }
  .hero-jp { font-size: 36px; letter-spacing: 0.08em; }
  .hero-en { font-size: 14px; }
  .hero-lead { font-size: 15px; line-height: 1.9; }
  .hero-deco { width: 280px; height: 280px; right: -100px; top: -60px; }

  .notice .notice-box { padding: 22px 20px; }

  .job-cards { grid-template-columns: 1fr; gap: 20px; }
  .job-card-body { padding: 26px 22px 24px; }
  .job-card-title { font-size: 24px; }

  .voice-intro { padding: 22px 20px; }
  .voice-headline { font-size: 18px; }

  /* テーブル → カード化 */
  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }
  .info-table {
    border-radius: 12px;
    overflow: hidden;
  }
  .info-table tr {
    border-bottom: 1px solid var(--color-border);
  }
  .info-table tr:last-child { border-bottom: 0; }
  .info-table th {
    width: 100%;
    background: #FFF1E8;
    padding: 12px 16px 12px 28px;
    border-right: 0;
    border-bottom: 1px dashed var(--color-border);
    font-size: 14px;
  }
  .info-table th::before { left: 12px; }
  .info-table td {
    padding: 16px 16px 18px;
    font-size: 14px;
    border-bottom: 0;
  }

  .cta-row { grid-template-columns: 1fr; }
  .cta-btn-secondary {
    flex-direction: column;
    gap: 8px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .back-to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}

@media (max-width: 420px) {
  .hero-jp { font-size: 30px; }
  .section-head .caption-jp { font-size: 22px; }
  .section-head-large .caption-jp { font-size: 26px; }
  .voice-card { padding: 24px 18px; }
  .voice-card-ttl { font-size: 16px; }
}
