/* ================================================================
   KUJIRA DESIGN — css/style.css
   Theme: White base / Mincho (serif) / Artistic / Ripple effects
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600&family=Noto+Sans+JP:wght@300;400;500&family=Raleway:wght@200;300;400;500;600&display=swap');

/* ── CSS Variables ───────────────────────────────────────────── */
:root {
  --white:       #ffffff;
  --off-white:   #f8f8f6;
  --paper:       #f2f1ed;
  --gray-ultra:  #e8e6e0;
  --gray-light:  #d0cec8;
  --gray-mid:    #9a9890;
  --gray-dark:   #5a5850;
  --ink:         #1e1c18;
  --ink-light:   #3a3830;
  --navy:        #0a1a3a;
  --navy-mid:    #152545;
  --accent:      #2a4a7a;
  --gold:        #b8a070;
  --gold-light:  #d4bc90;

  --font-serif:  'Noto Serif JP', 'Times New Roman', serif;
  --font-sans:   'Noto Sans JP', sans-serif;
  --font-en:     'Raleway', serif;

  --radius:      4px;
  --radius-lg:   8px;
  --shadow-sm:   0 1px 4px rgba(30,28,24,0.07);
  --shadow-md:   0 4px 20px rgba(30,28,24,0.10);
  --shadow-lg:   0 12px 48px rgba(30,28,24,0.14);
  --trans:       0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* 旧変数との互換エイリアス */
  --gray:          #9a9890;
  --text-mid:      #5a5850;
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --accent-light:  #4a7ab5;
}

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
  cursor: none; /* カスタムカーソル用 */
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: none; }

/* ── Custom Cursor ──────────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--navy);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.25s ease, height 0.25s ease, background 0.25s ease;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1px solid rgba(10,26,58,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.28s ease, width 0.28s ease, height 0.28s ease, opacity 0.28s ease;
}
.cursor.hover { width: 16px; height: 16px; background: var(--accent); }
.cursor-ring.hover { width: 48px; height: 48px; opacity: 0.5; }

/* ── Ripple Effect ──────────────────────────────────────────── */
.ripple-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9997;
  overflow: hidden;
}
.ripple {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(10,26,58,0.30);
  transform: translate(-50%, -50%) scale(0);
  animation: rippleExpand 1.8s cubic-bezier(0.15, 0.5, 0.35, 1) forwards;
  pointer-events: none;
}
@keyframes rippleExpand {
  0%   { transform: translate(-50%,-50%) scale(0); opacity: 0.9; }
  60%  { opacity: 0.4; }
  100% { transform: translate(-50%,-50%) scale(1); opacity: 0; }
}

/* ── Section helpers ─────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray-mid);
  display: block;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.section-title-jp {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--gray-mid);
  letter-spacing: 0.3em;
  margin-bottom: 28px;
}
.section-divider {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--navy), transparent);
  margin: 20px 0 36px;
}

/* ── Reveal animations ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: none;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
  font-size: 0.78rem;
}
.btn-navy:hover { background: var(--navy); color: var(--white); }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-ultra);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text .en {
  font-family: var(--font-en);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--navy);
  text-transform: uppercase;
}
.logo-text .ja {
  font-family: var(--font-serif);
  font-size: 0.62rem;
  font-weight: 300;
  color: var(--gray-mid);
  letter-spacing: 0.18em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gray-dark);
  text-transform: uppercase;
  transition: color var(--trans);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--navy);
  transition: right var(--trans);
}
.main-nav a:hover { color: var(--navy); }
.main-nav a:hover::after { right: 0; }
.nav-cta {
  padding: 9px 22px !important;
  border: 1px solid var(--navy);
  color: var(--navy) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.16em !important;
  transition: background var(--trans), color var(--trans) !important;
}
.nav-cta:hover { background: var(--navy); color: var(--white) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--gray-dark);
  transition: var(--trans);
  border-radius: 0;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--gray-ultra);
  padding: 20px 40px 28px;
  z-index: 899;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform var(--trans), opacity var(--trans);
}
.mobile-nav.open { transform: translateY(0); opacity: 1; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--gray-dark);
  border-bottom: 1px solid var(--gray-ultra);
  letter-spacing: 0.12em;
}
.mobile-nav a:last-child { border-bottom: none; }

/* ================================================================
   HERO — Video intro → still image with swimming animation
   ================================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--white);
}

/* ── 動画レイヤー ── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000;
  transition: opacity 1.2s ease;
}
.hero-video-wrap.fade-out {
  opacity: 0;
  pointer-events: none;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.04) 60%,
    rgba(0,0,0,0.18) 100%
  );
  z-index: 1;
}

/* ── 静止画レイヤー（初期非表示） ── */
.hero-still-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 1.0s ease;
  pointer-events: none;
  background: #fff;
}
.hero-still-wrap.fade-in {
  opacity: 1;
  pointer-events: auto;
}

/* 静止画：全面カバー（重複定義を統合・クリーン） */
.hero-still-wrap .hero-whale-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none !important;
  animation: none !important;
  filter: none;
  opacity: 1;
}

/* ── テキスト・UI（初期非表示、静止画より前面） ── */
/* ── テキストオーバーレイ ── */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease 0.3s;
}
.hero-content.visible {
  opacity: 1;
  pointer-events: all;
}

/* 動画再生中：ロゴ・ボタンのみ表示、eyebrow/subtitle/ruleは非表示のまま */
.hero-content.video-playing {
  opacity: 1;
  pointer-events: all;
}
.hero-content.video-playing .hero-eyebrow,
.hero-content.video-playing .hero-subtitle,
.hero-content.video-playing .hero-rule { opacity: 0 !important; }
.hero-content.video-playing .hero-logo,
.hero-content.video-playing .hero-cta-group {
  opacity: 1;
  animation: fadeUp 0.9s 0.5s both;
}

/* scroll-indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 1.2s ease 0.4s;
}
.scroll-indicator.visible { opacity: 1; }

.hero-eyebrow {
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gray-mid);
  display: block;
  margin-bottom: 24px;
}

.hero-logo { margin-bottom: 20px; }
.hero-logo-img {
  width: clamp(60px, 11.4vw, 144px);
  height: auto;
  display: block;
  margin: 0 auto;
  /* ロゴ画像がある場合はそのまま表示 */
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  font-weight: 300;
  color: var(--gray-dark);
  letter-spacing: 0.22em;
  margin-bottom: 40px;
}

.hero-rule {
  width: 40px;
  height: 1px;
  background: var(--gray-light);
  margin: 0 auto 36px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  pointer-events: all;
}


.scroll-indicator span {
  font-family: var(--font-en);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--gray-mid);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gray-light));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.6); }
}

/* ── Hero子要素 entrance（.visibleクラス付与後に発火） ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* 初期状態：非表示 */
.hero-eyebrow,
.hero-logo,
.hero-subtitle,
.hero-rule,
.hero-cta-group { opacity: 0; }

/* .visibleクラスが親(.hero-content)に付いたら子要素を順番にフェードイン */
.hero-content.visible .hero-eyebrow   { animation: fadeUp 0.9s 0.1s both; }
.hero-content.visible .hero-logo      { animation: fadeUp 0.9s 0.25s both; }
.hero-content.visible .hero-subtitle  { animation: fadeUp 0.9s 0.4s both; }
.hero-content.visible .hero-rule      { animation: fadeUp 0.9s 0.5s both; }
.hero-content.visible .hero-cta-group { animation: fadeUp 0.9s 0.65s both; }

/* ── Hero bottom wave ── */
.hero-wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 12;
  pointer-events: none;
}

/* ================================================================
   NEWS
   ================================================================ */
.news-section {
  background: var(--white);
  padding: 90px 0;
}
.news-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
}
.news-heading { display: flex; flex-direction: column; align-items: flex-start; }
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-ultra);
  flex-wrap: wrap;
}
.news-item:first-child { border-top: 1px solid var(--gray-ultra); }
.news-date {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--gray-mid);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.news-tag {
  font-family: var(--font-serif);
  font-size: 0.65rem;
  padding: 3px 10px;
  border: 1px solid;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.news-tag.info  { border-color: var(--navy); color: var(--navy); }
.news-tag.work  { border-color: var(--gold); color: var(--gold); }
.news-title-link {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.05em;
  transition: color var(--trans);
  flex: 1;
}
.news-title-link:hover { color: var(--navy); }

/* ================================================================
   CATCHCOPY
   ================================================================ */
.catchcopy-section {
  position: relative;
  background: var(--off-white);
  padding: 100px 40px;
  text-align: center;
  overflow: hidden;
}
.catchcopy-whale {
  position: absolute;
  right: -40px; bottom: -20px;
  width: 340px;
  fill: rgba(10,26,58,0.04);
  pointer-events: none;
}
.catchcopy-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.catchcopy-main {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.9;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.catchcopy-main .accent { color: var(--navy); font-weight: 500; }
.catchcopy-sub {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray-dark);
  line-height: 2.0;
  letter-spacing: 0.08em;
}

/* ================================================================
   PRICE HIGHLIGHT
   ================================================================ */
.price-highlight {
  position: relative;
  background: var(--paper);
  padding: 100px 0;
  overflow: hidden;
}
.price-highlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ph-text-block .section-title { margin-bottom: 0; }
.ph-description {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray-dark);
  line-height: 2.0;
  margin-bottom: 36px;
  letter-spacing: 0.06em;
}
.price-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 48px;
  border: 1px solid var(--gray-light);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.price-badge .from {
  font-family: var(--font-en);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--gray-mid);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.price-badge .amount {
  font-family: var(--font-en);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 200;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 12px;
}
.price-badge .amount .unit {
  font-size: 1.2rem;
  vertical-align: super;
}
.price-badge .label {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--gray-mid);
  letter-spacing: 0.16em;
}

/* ================================================================
   SERVICES
   ================================================================ */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.service-card {
  padding: 40px 32px;
  border: 1px solid var(--gray-ultra);
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
  background: var(--white);
}
.service-card:hover {
  border-color: var(--gray-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-icon {
  width: 36px; height: 36px;
  fill: var(--navy);
  margin-bottom: 24px;
  opacity: 0.7;
}
.service-icon svg { width: 100%; height: 100%; }
.service-name {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--gray-mid);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.service-name-jp {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.service-desc {
  font-family: var(--font-serif);
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--gray-dark);
  line-height: 1.9;
  letter-spacing: 0.05em;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-section { background: var(--off-white); }
.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 70px;
  align-items: start;
}
.contact-info p {
  font-family: var(--font-serif);
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--gray-dark);
  line-height: 2.0;
  margin-bottom: 32px;
  letter-spacing: 0.06em;
}
.contact-detail { margin-bottom: 20px; }
.contact-detail .label {
  font-family: var(--font-en);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--gray-mid);
  text-transform: uppercase;
  margin-bottom: 4px !important;
}
.contact-detail .value {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.06em;
  margin-bottom: 0 !important;
}
.contact-detail .value a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 48px;
  border: 1px solid var(--gray-ultra);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray-dark);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}
.required {
  font-size: 0.65rem;
  color: #c04040;
  margin-left: 4px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 0;
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  appearance: none;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,26,58,0.06);
}
textarea.form-control {
  min-height: 140px;
  resize: vertical;
  line-height: 1.8;
}
.form-submit { text-align: right; margin-top: 8px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 2.0;
}
.form-error {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  color: #c04040;
  margin-top: 8px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding-top: 0;
}
.footer-waves { line-height: 0; overflow: hidden; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 40px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .site-logo { margin-bottom: 20px; }
.footer-brand .logo-icon { opacity: 0.9; }
.footer-brand .logo-text .en { color: rgba(255,255,255,0.9); }
.footer-brand .logo-text .ja { color: rgba(255,255,255,0.4); }
.footer-brand p {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 2.0;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}
.footer-col h4 {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 40px;
  text-align: center;
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
}

/* ================================================================
   SCROLL TO TOP
   ================================================================ */
.scroll-top {
  position: fixed;
  bottom: 36px; right: 36px;
  width: 44px; height: 44px;
  background: var(--white);
  border: 1px solid var(--gray-ultra);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--trans), transform var(--trans), box-shadow var(--trans), background var(--trans);
  box-shadow: var(--shadow-sm);
}
.scroll-top svg { width: 18px; height: 18px; fill: var(--navy); }
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--navy); box-shadow: var(--shadow-md); }
.scroll-top:hover svg { fill: var(--white); }

/* ================================================================
   NEWS PAGE
   ================================================================ */
.page-hero {
  padding: 140px 0 70px;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--gray-ultra);
}
.page-hero .section-label { justify-content: center; }
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 16px;
}
.page-subtitle {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--gray-mid);
  text-transform: uppercase;
}

/* News Filter */
.news-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}
.filter-btn {
  padding: 8px 22px;
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  border: 1px solid var(--gray-light);
  background: transparent;
  color: var(--gray-dark);
  cursor: none;
  transition: var(--trans);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.news-full-list { display: flex; flex-direction: column; }
.news-full-item {
  display: grid;
  grid-template-columns: 120px 100px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-ultra);
  text-decoration: none;
  color: var(--ink);
  transition: background var(--trans);
}
.news-full-item:first-child { border-top: 1px solid var(--gray-ultra); }
.news-full-item:hover .news-full-title { color: var(--navy); }
.news-full-title {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.7;
  letter-spacing: 0.06em;
  transition: color var(--trans);
}

/* ================================================================
   WORKS PAGE
   ================================================================ */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.work-card {
  position: relative;
  overflow: hidden;
  cursor: none;
  background: var(--off-white);
}
.work-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.work-card:hover .work-card-img { transform: scale(1.05); }
.work-card-info {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-ultra);
  border-top: none;
}
.work-card-cat {
  font-family: var(--font-en);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--gray-mid);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.work-card-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.work-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,26,58,0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
  color: var(--white);
  gap: 12px;
}
.work-card:hover .work-card-overlay { opacity: 1; }
.work-overlay-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 0 24px;
  text-align: center;
}
.work-overlay-btn {
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 8px 20px;
  text-transform: uppercase;
  transition: var(--trans);
}
.work-overlay-btn:hover { background: rgba(255,255,255,0.15); }

/* Work Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,26,58,0.75);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--trans), visibility var(--trans);
  padding: 24px;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white);
  max-width: 740px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 52px;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--trans);
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 36px; height: 36px;
  background: none;
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: var(--trans);
}
.modal-close:hover { background: var(--navy); border-color: var(--navy); }
.modal-close:hover svg { fill: var(--white); }
.modal-close svg { width: 14px; fill: var(--gray-dark); transition: fill var(--trans); }

/* ================================================================
   PRICE PAGE
   ================================================================ */
.price-table {
  border: 1px solid var(--gray-ultra);
  overflow: hidden;
}
.price-table-header {
  display: grid;
  background: var(--navy);
  color: var(--white);
}
.price-table-row {
  display: grid;
  border-bottom: 1px solid var(--gray-ultra);
  transition: background var(--trans);
}
.price-table-row:last-child { border-bottom: none; }
.price-table-row:hover { background: var(--off-white); }
.price-cell {
  padding: 18px 24px;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.06em;
  border-right: 1px solid var(--gray-ultra);
}
.price-cell:last-child { border-right: none; }
.price-table-header .price-cell {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-en);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}

/* Plan Cards */
.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}
.plan-card {
  border: 1px solid var(--gray-ultra);
  padding: 44px 36px;
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
  position: relative;
}
.plan-card.featured {
  border-color: var(--navy);
  box-shadow: 0 0 0 1px var(--navy);
}
.plan-card:hover { box-shadow: var(--shadow-md); }
.plan-badge {
  position: absolute;
  top: -1px; right: 24px;
  padding: 4px 14px;
  background: var(--navy);
  font-family: var(--font-en);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--white);
  text-transform: uppercase;
}
.plan-name {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--gray-mid);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.plan-price {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 200;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.plan-price-unit {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  color: var(--gray-mid);
  margin-bottom: 28px;
}
.plan-features {
  list-style: none;
  margin-bottom: 32px;
}
.plan-features li {
  font-family: var(--font-serif);
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--gray-dark);
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-ultra);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.05em;
}
.plan-features li::before {
  content: '';
  display: inline-block;
  width: 4px; height: 1px;
  background: var(--navy);
  flex-shrink: 0;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--gray-ultra);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: none;
  gap: 16px;
}
.faq-q-text {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.06em;
}
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--trans), background var(--trans);
}
.faq-icon::after {
  content: '';
  display: block;
  width: 10px; height: 1px;
  background: var(--gray-dark);
  box-shadow: 0 -5px 0 var(--gray-dark);
  transition: box-shadow var(--trans), transform var(--trans);
}
.faq-item.open .faq-icon { background: var(--navy); border-color: var(--navy); }
.faq-item.open .faq-icon::after { box-shadow: none; background: var(--white); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gray-dark);
  line-height: 2.0;
  letter-spacing: 0.06em;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* Flow steps */
.flow-steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.flow-steps::before {
  content: '';
  position: absolute;
  left: 22px; top: 44px;
  bottom: 44px;
  width: 1px;
  background: var(--gray-ultra);
}
.flow-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 28px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-ultra);
}
.flow-step:last-child { border-bottom: none; }
.flow-num {
  width: 46px; height: 46px;
  border: 1px solid var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.1em;
  background: var(--white);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.flow-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}
.flow-desc {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--gray-dark);
  line-height: 1.9;
  letter-spacing: 0.05em;
}

/* ================================================================
   PRIVACY PAGE
   ================================================================ */
.privacy-section { padding: 100px 0; }
.privacy-section .section-inner { max-width: 840px; }
.privacy-article { margin-bottom: 52px; }
.privacy-article-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-ultra);
}
.privacy-article p,
.privacy-article li {
  font-family: var(--font-serif);
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--gray-dark);
  line-height: 2.1;
  letter-spacing: 0.05em;
}
.privacy-article ul { padding-left: 20px; }
.privacy-article li { list-style: disc; margin-bottom: 8px; }

/* ================================================================
   SUBPAGE COMMON — page-hero / breadcrumb / works / price / privacy
   ================================================================ */

/* ── ページヒーロー（全サブページ共通） ── */
.page-hero {
  position: relative;
  padding: 140px 40px 80px;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--gray-ultra);
  overflow: hidden;
}
.page-hero-whale {
  position: absolute;
  right: -20px; bottom: -30px;
  width: 280px; height: auto;
  fill: rgba(10,26,58,0.04);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-label {
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gray-mid);
  display: block;
  margin-bottom: 16px;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 10px;
}
.page-hero-jp {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--gray-mid);
  text-transform: uppercase;
}

/* ── パンくずリスト ── */
.breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-ultra);
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--gray-mid);
}
.breadcrumb-inner a {
  color: var(--gray-mid);
  transition: color var(--trans);
}
.breadcrumb-inner a:hover { color: var(--navy); }
.breadcrumb-inner span { color: var(--gray-mid); }

/* ── Works ── */
.works-section { padding: 80px 0 100px; background: var(--white); }
.works-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.works-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ── Price ── */
.price-section { padding: 80px 0 100px; background: var(--white); }
.price-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.price-category { margin-bottom: 72px; }
.price-category-title {
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 6px;
}
.price-category-title-jp {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: 0.08em;
}
/* Price table（HTMLの <table> 要素用） */
table.price-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--gray-ultra);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
table.price-table thead {
  background: var(--navy);
  color: var(--white);
}
table.price-table th {
  padding: 14px 20px;
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-align: left;
  border-right: 1px solid rgba(255,255,255,0.12);
}
table.price-table th:last-child { border-right: none; }
table.price-table td {
  padding: 18px 20px;
  vertical-align: top;
  color: var(--ink);
  border-bottom: 1px solid var(--gray-ultra);
  border-right: 1px solid var(--gray-ultra);
  line-height: 1.7;
}
table.price-table td:last-child { border-right: none; text-align: right; white-space: nowrap; font-weight: 500; }
table.price-table tbody tr:last-child td { border-bottom: none; }
table.price-table tbody tr:hover { background: var(--off-white); }
table.price-table .price-popular { background: #f4f6fb; }
.popular-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-left: 8px;
  vertical-align: middle;
}
.price-note {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-mid);
  margin-top: 4px;
  font-weight: 300;
}
.price-note-box {
  background: var(--off-white);
  border-left: 3px solid var(--navy);
  padding: 16px 20px;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  color: var(--gray-dark);
  line-height: 1.9;
  margin-top: 12px;
}

/* Flow（price.htmlの横並び5ステップ） */
.price-flow { max-width: 900px; margin: 0 auto 72px; }
.price-flow-title {
  font-family: var(--font-en);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray-mid);
  text-align: center;
  margin-bottom: 6px;
}
.price-flow-title-jp {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--navy);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
}
/* 横並び5ステップ専用グリッド（price.htmlのflow-stepsを上書き） */
.price-flow .flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.price-flow .flow-steps::before {
  content: '';
  position: absolute;
  top: 23px; left: 10%; width: 80%; height: 1px;
  background: var(--gray-ultra);
  z-index: 0;
}
.price-flow .flow-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
  display: block;
  grid-template-columns: unset;
}
.price-flow .flow-step-num {
  width: 46px; height: 46px;
  border: 1px solid var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--font-en);
  font-size: 0.78rem;
  color: var(--navy);
  background: var(--white);
  position: relative; z-index: 1;
}
.price-flow .flow-step-title {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.price-flow .flow-step-desc {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--gray-dark);
  line-height: 1.7;
}

/* FAQ（price.html） */
.faq-section { max-width: 800px; margin: 0 auto 64px; }
.faq-question {
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
}
.faq-question::before {
  content: 'Q';
  font-family: var(--font-en);
  font-weight: 400;
  color: var(--navy);
  font-size: 0.9rem;
  flex-shrink: 0;
  opacity: 0.6;
}
.faq-q-text,
.faq-question > span:first-of-type {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink);
  flex: 1;
  letter-spacing: 0.05em;
}
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gray-dark);
  transition: transform var(--trans), background var(--trans), color var(--trans);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.faq-answer {
  display: none;
  padding: 0 0 24px 32px;
  font-family: var(--font-serif);
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--gray-dark);
  line-height: 2.0;
  letter-spacing: 0.05em;
}
.faq-item.open .faq-answer { display: block; }

/* Contact section（サブページ用） */
.contact-section.section { background: var(--off-white); }

/* ================================================================
   RECRUIT HIGHLIGHT（トップページ リクルートブロック）
   ================================================================ */
.recruit-highlight-section {
  background: var(--white);
  border-top: 1px solid var(--gray-ultra);
  border-bottom: 1px solid var(--gray-ultra);
}
.recruit-highlight-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}
.recruit-highlight-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.recruit-highlight-skills span {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--gray-dark);
  padding: 5px 14px;
  border: 1px solid var(--gray-light);
  background: var(--off-white);
}

/* 右側ビジュアルボックス */
.recruit-highlight-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.recruit-visual-box {
  position: relative;
  width: 340px;
  height: 340px;
  background: var(--off-white);
  border: 1px solid var(--gray-ultra);
  display: flex;
  align-items: center;
  justify-content: center;
}
.recruit-whale-deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.recruit-visual-text {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.rvt-en {
  font-family: var(--font-en);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.rvt-ja {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.12em;
  line-height: 1.8;
}
.rvt-rule {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gray-light);
  margin: 4px auto;
}
.rvt-num {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rvt-num em {
  font-family: var(--font-en);
  font-size: 2.8rem;
  font-weight: 200;
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 1;
  font-style: normal;
}
.rvt-num small {
  font-family: var(--font-en);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .recruit-highlight-inner { grid-template-columns: 1fr 320px; gap: 48px; }
  .recruit-visual-box { width: 280px; height: 280px; }
}
@media (max-width: 768px) {
  .recruit-highlight-inner { grid-template-columns: 1fr; gap: 40px; }
  .recruit-highlight-visual { display: none; }
}



/* ── 1200px 以下 ── */
@media (max-width: 1200px) {
  .section-inner { padding: 0 32px; }
  .price-inner, .works-inner { padding: 0 32px; }
}

/* ── 1024px 以下（タブレット横） ── */
@media (max-width: 1024px) {
  /* HOME */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-cards { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  /* フッター */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  /* サブページ */
  .price-inner, .works-inner { padding: 0 24px; }
  .privacy-inner { padding: 0 32px; }
  /* ヒーロー */
  .hero-content { padding: 0 32px; }
}

/* ── 900px 以下（タブレット縦） ── */
@media (max-width: 900px) {
  /* HOME */
  .news-inner { grid-template-columns: 1fr; gap: 32px; }
  .price-highlight-inner { grid-template-columns: 1fr; }
  .price-highlight-badge { margin-top: 32px; }
  /* コンタクト */
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  /* Works */
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  /* Price */
  .plan-cards { grid-template-columns: 1fr; }
  .price-flow .flow-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .price-flow .flow-steps::before { display: none; }
  table.price-table { font-size: 0.78rem; }
  table.price-table th, table.price-table td { padding: 12px 14px; }
  /* サブページ共通 */
  .breadcrumb-inner { padding: 12px 24px; }
  .privacy-inner { padding: 0 24px; }
}

/* ── 768px 以下（スマートフォン横 / 小さめタブレット） ── */
@media (max-width: 768px) {
  /* ── グローバル ── */
  .section { padding: 60px 0; }
  .section-inner { padding: 0 20px; }

  /* ── ヘッダー ── */
  .header-inner { padding: 0 20px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  /* ── カーソル無効化 ── */
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  button, a { cursor: pointer; }

  /* ── HOME ── */
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .section-heading { font-size: clamp(1.4rem, 5vw, 1.8rem); }

  /* ── ヒーロー ── */
  .hero-content { padding: 0 20px; }

  /* ── フッター ── */
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 48px 20px 36px;
    gap: 32px;
  }
  .footer-bottom { padding: 18px 20px; font-size: 0.75rem; }

  /* ── モーダル ── */
  .modal-box { padding: 32px 20px; margin: 0 16px; }

  /* ── サブページ共通 ── */
  .page-hero { padding: 110px 20px 56px; }
  .page-hero-whale { width: 180px; }
  .breadcrumb-inner { padding: 10px 20px; }

  /* ── News ── */
  .news-page-section { padding: 56px 20px 80px; }
  .news-page-inner { padding: 0; }

  /* ── Works ── */
  .works-section { padding: 56px 0 80px; }
  .works-inner { padding: 0 20px; }
  .works-grid { grid-template-columns: 1fr; gap: 20px; }

  /* ── Price ── */
  .price-section { padding: 56px 0 80px; }
  .price-inner { padding: 0 20px; }
  .plan-cards { grid-template-columns: 1fr; }
  .price-flow .flow-steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  table.price-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }

  /* ── FAQ ── */
  .faq-section { padding: 0; }
  .faq-question { font-size: 0.88rem; }

  /* ── Privacy ── */
  .privacy-section { padding: 56px 0 80px; }
  .privacy-inner { padding: 0 20px; }
}

/* ── 480px 以下（スマートフォン縦） ── */
@media (max-width: 480px) {
  /* ── グローバル ── */
  .section { padding: 48px 0; }
  .section-inner { padding: 0 16px; }

  /* ── ヘッダー ── */
  .header-inner { padding: 0 16px; height: 60px; }
  .logo-text .en { font-size: 0.78rem; }

  /* ── ヒーロー ── */
  .hero-content { padding: 0 16px; }
  .hero-logo-img { width: clamp(50px, 28vw, 100px); }
  .hero-subtitle { font-size: 0.78rem; letter-spacing: 0.12em; }
  .hero-cta-group { flex-direction: column; align-items: center; gap: 12px; }
  .btn { padding: 12px 28px; font-size: 0.78rem; }

  /* ── サービス ── */
  .services-grid { gap: 16px; }
  .service-card { padding: 28px 20px; }

  /* ── 統計 ── */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-number { font-size: 2rem; }

  /* ── フッター ── */
  .footer-inner { padding: 40px 16px 32px; }
  .footer-bottom { padding: 16px; font-size: 0.7rem; }
  .footer-brand p { font-size: 0.8rem; }

  /* ── サブページ共通 ── */
  .page-hero { padding: 90px 16px 48px; }
  .page-hero-title { font-size: clamp(1.4rem, 7vw, 2rem); }
  .page-hero-whale { width: 140px; }
  .breadcrumb-inner { padding: 8px 16px; font-size: 0.7rem; }

  /* ── News ── */
  .news-page-section { padding: 40px 16px 64px; }
  .news-full-item { padding: 24px 0; }
  .news-full-title { font-size: 0.92rem; }
  .news-full-body { font-size: 0.82rem; }
  .news-pagination a, .news-pagination span { width: 36px; height: 36px; font-size: 0.75rem; }
  .news-category-filter { gap: 6px; margin-bottom: 32px; }
  .filter-btn { padding: 6px 14px; font-size: 0.78rem; }

  /* ── Works ── */
  .works-inner { padding: 0 16px; }
  .works-grid { gap: 16px; }
  .work-thumb { height: 180px; }
  .work-info { padding: 16px 18px 18px; }
  .work-title { font-size: 0.88rem; }

  /* ── Price ── */
  .price-inner { padding: 0 16px; }
  .price-category-title-jp { font-size: 1.1rem; }
  .plan-card { padding: 32px 20px; }
  .plan-price { font-size: 1.4rem; }
  .price-flow .flow-steps { grid-template-columns: 1fr; }
  .flow-step-num { width: 48px; height: 48px; font-size: 1rem; }

  /* ── FAQ ── */
  .faq-question { padding: 16px 0; font-size: 0.85rem; }
  .faq-answer { font-size: 0.83rem; }

  /* ── コンタクト ── */
  .contact-form { padding: 24px 16px; }

  /* ── Privacy ── */
  .privacy-inner { padding: 0 16px; }
  .privacy-intro { font-size: 0.84rem; }
  .privacy-section h2 { font-size: 0.92rem; margin: 36px 0 14px; }
  .privacy-section p, .privacy-section li { font-size: 0.84rem; }
  .privacy-contact-box { padding: 16px; }
}
