/*
Theme Name: kawaminato Child
Template: businesspress
Version: 1.0.0
Description: 子テーマ for 特定非営利活動法人かわみなと
Author: kawaminato
*/

/* ============================================================
   CSS変数・リセット・共通スタイル
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --stone: #f5f2ed;
  --stone-mid: #e8e2d8;
  --stone-dark: #c8bfb0;
  --earth: #8b7355;
  --earth-dark: #5c4a2a;
  --water: #4a7c8e;
  --water-light: #7fb3c4;
  --water-pale: #deeef3;
  --moss: #6b7c5c;
  --moss-light: #a8b89a;
  --text-main: #2c2418;
  --text-mid: #5a4f3e;
  --text-muted: #9a8e7e;
  --white: #fdfbf8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--white);
  color: var(--text-main);
  overflow-x: hidden;
  font-weight: 300;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253, 251, 248, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 191, 176, 0.3);
  transition: padding 0.3s;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--earth-dark);
}

.logo-ja {
  font-family: 'Shippori Mincho', serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

nav { display: flex; gap: 36px; align-items: center; }

nav a {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text-mid);
  position: relative;
  transition: color 0.2s;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--water);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

nav a:hover { color: var(--water); }
nav a:hover::after { transform: scaleX(1); }
nav a.active { color: var(--earth-dark); }
nav a.active::after { transform: scaleX(1); background: var(--earth-dark); }

.nav-cta {
  padding: 8px 20px;
  border: 1px solid var(--earth);
  color: var(--earth-dark) !important;
  font-size: 11px !important;
  letter-spacing: 0.2em;
  transition: all 0.25s !important;
}

.nav-cta:hover {
  background: var(--earth-dark) !important;
  color: var(--white) !important;
}

.nav-cta::after { display: none !important; }

/* ============================================================
   共通パーツ
   ============================================================ */

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding-top: 6px;
  position: relative;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--stone-dark);
  margin-bottom: 10px;
}

.section-label.light { color: rgba(232,226,216,0.35); }
.section-label.light::before { background: rgba(255,255,255,0.2); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--earth-dark);
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.2em;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--water);
  gap: 16px;
  color: var(--white);
}

.btn-primary .arrow {
  width: 16px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s;
}

.btn-primary .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.btn-text {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--stone-dark);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.btn-text:hover { color: var(--water); border-color: var(--water); }

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--water);
  text-decoration: none;
  border-bottom: 1px solid var(--water-light);
  padding-bottom: 3px;
  transition: gap 0.2s;
}

.about-link:hover { gap: 14px; color: var(--water); }

/* ============================================================
   PAGE HERO（各内部ページ共通）
   ============================================================ */

.page-hero {
  padding-top: 80px;
  background: var(--earth-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.page-hero-text {
  padding: 64px 56px 64px 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(232,226,216,0.4);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: rgba(232,226,216,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--stone); }

.page-hero-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: rgba(232,226,216,0.35);
  margin-bottom: 12px;
}

.page-hero h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: 44px;
  font-weight: 500;
  color: var(--stone);
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 13px;
  line-height: 2;
  color: rgba(232,226,216,0.6);
  max-width: 480px;
}

/* ============================================================
   TOP PAGE ― HERO
   ============================================================ */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}

.hero-text {
  padding: 80px 56px 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--water);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--water);
}

.hero-heading {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 52px;
  line-height: 1.5;
  color: var(--earth-dark);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.hero-heading em {
  font-style: normal;
  color: var(--water);
  position: relative;
  display: inline-block;
}

.hero-heading em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--water-light), transparent);
}

.hero-sub {
  font-size: 14px;
  line-height: 2;
  color: var(--text-mid);
  max-width: 380px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 16px; align-items: center; }

.hero-image {
  position: relative;
  overflow: hidden;
  background: var(--stone);
}

.hero-image-inner {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(160deg, rgba(74,124,142,0.15) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(92,74,42,0.08) 0%, transparent 30%),
    var(--stone-mid);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 40px;
}

.hero-image-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  opacity: 0.6;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(127,179,196,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(168,184,154,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-river { position: absolute; top: 0; left: 0; right: 0; bottom: 0; opacity: 0.12; }

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 72px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}

/* ============================================================
   TOP PAGE ― ABOUT STRIP
   ============================================================ */

.about-strip {
  background: var(--stone);
  padding: 80px 72px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.about-content h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--earth-dark);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}

.about-content p {
  font-size: 14px;
  line-height: 2.2;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 32px;
}

/* ============================================================
   TOP PAGE ― WORKS カード
   ============================================================ */

.works-section { padding: 100px 72px; background: var(--white); }

.works-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.works-header h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--earth-dark);
  letter-spacing: 0.06em;
}

.works-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }

.work-card { position: relative; overflow: hidden; aspect-ratio: 4/5; background: var(--stone-mid); cursor: pointer; }

.work-card-bg { position: absolute; inset: 0; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.work-card:nth-child(1) .work-card-bg { background: linear-gradient(135deg,#c8d8de 0%,#8fb8c8 50%,#4a7c8e 100%); }
.work-card:nth-child(2) .work-card-bg { background: linear-gradient(135deg,#e8d5cc 0%,#c9a090 50%,#a06870 100%); }
.work-card:nth-child(3) .work-card-bg { background: linear-gradient(135deg,#c8d4c0 0%,#a8b898 50%,#6b7c5c 100%); }
.work-card:hover .work-card-bg { transform: scale(1.06); }

.work-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(30,20,10,0.7) 0%,rgba(30,20,10,0.1) 60%,transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 32px 28px;
  transition: background 0.3s;
}

.work-card:hover .work-card-overlay { background: linear-gradient(to top,rgba(30,20,10,0.8) 0%,rgba(30,20,10,0.2) 60%,transparent 100%); }

.work-tag { display: inline-block; padding: 4px 10px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); font-size: 10px; letter-spacing: 0.2em; color: rgba(255,255,255,0.85); margin-bottom: 10px; align-self: flex-start; }
.work-name { font-family: 'Shippori Mincho',serif; font-size: 26px; font-weight: 500; color: var(--white); letter-spacing: 0.08em; margin-bottom: 8px; }
.work-desc { font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.7; }

.work-links { display: flex; gap: 12px; margin-top: 14px; opacity: 0; transform: translateY(6px); transition: all 0.3s 0.1s; }
.work-card:hover .work-links { opacity: 1; transform: translateY(0); }
.work-link { font-size: 10px; letter-spacing: 0.15em; color: rgba(255,255,255,0.7); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; transition: color 0.2s; }
.work-link:hover { color: white; border-color: white; }

/* ============================================================
   TOP PAGE ― PHILOSOPHY
   ============================================================ */

.philosophy {
  background: var(--earth-dark);
  padding: 120px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: 'かわみなと';
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-family: 'Shippori Mincho',serif; font-size: 160px; font-weight: 600;
  color: rgba(255,255,255,0.03); writing-mode: vertical-rl; pointer-events: none; letter-spacing: 0.1em;
}

.philosophy-text .section-label { color: rgba(255,255,255,0.35); }
.philosophy-text .section-label::before { background: rgba(255,255,255,0.2); }

.philosophy-text h2 { font-family: 'Shippori Mincho',serif; font-size: 38px; font-weight: 500; color: var(--stone); line-height: 1.7; letter-spacing: 0.06em; margin: 24px 0; }
.philosophy-text p { font-size: 14px; line-height: 2.3; color: rgba(232,226,216,0.75); margin-bottom: 40px; }

.philosophy-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); padding: 40px; margin-bottom: 16px; }
.philosophy-card-num { font-family: 'Cormorant Garamond',serif; font-size: 48px; font-weight: 300; color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 8px; }
.philosophy-card h3 { font-family: 'Shippori Mincho',serif; font-size: 18px; font-weight: 500; color: rgba(232,226,216,0.9); margin-bottom: 8px; letter-spacing: 0.08em; }
.philosophy-card p { font-size: 13px; line-height: 2; color: rgba(232,226,216,0.5); margin: 0; }

/* ============================================================
   TOP PAGE ― NEWS
   ============================================================ */

.news-section { padding: 100px 72px; background: var(--stone); }

.news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.news-header h2 { font-family: 'Shippori Mincho',serif; font-size: 32px; font-weight: 500; color: var(--earth-dark); }
.news-list { list-style: none; }

.news-item {
  display: grid; grid-template-columns: 100px 80px 1fr auto;
  gap: 24px; align-items: baseline; padding: 20px 0;
  border-bottom: 1px solid var(--stone-dark);
  transition: opacity 0.2s; text-decoration: none; color: inherit;
}

.news-item:hover { opacity: 0.65; }
.news-date { font-family: 'Cormorant Garamond',serif; font-size: 13px; color: var(--text-muted); letter-spacing: 0.1em; }
.news-category { font-size: 10px; letter-spacing: 0.15em; color: var(--water); border: 1px solid var(--water-light); padding: 2px 8px; text-align: center; }
.news-title { font-size: 14px; color: var(--text-main); line-height: 1.6; }
.news-arrow { width: 20px; height: 1px; background: var(--stone-dark); position: relative; transition: width 0.2s; }
.news-arrow::after { content: ''; position: absolute; right: 0; top: -3px; width: 6px; height: 6px; border-top: 1px solid var(--stone-dark); border-right: 1px solid var(--stone-dark); transform: rotate(45deg); }
.news-item:hover .news-arrow { width: 28px; }

/* ============================================================
   MEMBER セクション
   ============================================================ */

.member-section { padding: 100px 72px; background: var(--white); }
.member-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.member-header h2 { font-family: 'Shippori Mincho',serif; font-size: 32px; font-weight: 500; color: var(--earth-dark); }
.member-rep { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; align-items: start; padding: 48px; background: var(--stone); margin-bottom: 48px; }
.member-rep-photo { aspect-ratio: 3/4; background: linear-gradient(135deg,#c8bfb0 0%,#a89880 100%); display: flex; align-items: center; justify-content: center; }
.member-initials { font-family: 'Cormorant Garamond',serif; font-size: 64px; font-weight: 300; color: rgba(92,74,42,0.25); letter-spacing: 0.1em; }
.member-role { font-size: 10px; letter-spacing: 0.25em; color: var(--water); margin-bottom: 8px; }
.member-name-ja { font-family: 'Shippori Mincho',serif; font-size: 28px; font-weight: 500; color: var(--earth-dark); letter-spacing: 0.1em; margin-bottom: 4px; }
.member-name-en { font-family: 'Cormorant Garamond',serif; font-size: 16px; font-weight: 300; color: var(--text-muted); letter-spacing: 0.15em; margin-bottom: 24px; }
.member-bio { font-size: 13px; line-height: 2.2; color: var(--text-mid); border-top: 1px solid var(--stone-dark); padding-top: 24px; }
.career-item { display: flex; gap: 12px; font-size: 12px; color: var(--text-mid); line-height: 1.7; margin-top: 8px; }
.career-year { font-family: 'Cormorant Garamond',serif; color: var(--text-muted); min-width: 36px; }
.board-section { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.board-card { padding: 32px 36px; background: var(--stone); border-left: 2px solid var(--stone-dark); border-radius: 0; }
.board-role { font-size: 10px; letter-spacing: 0.2em; color: var(--text-muted); margin-bottom: 8px; }
.board-name { font-family: 'Shippori Mincho',serif; font-size: 20px; font-weight: 500; color: var(--earth-dark); letter-spacing: 0.08em; }
.board-name-en { font-family: 'Cormorant Garamond',serif; font-size: 13px; color: var(--text-muted); letter-spacing: 0.12em; margin-top: 4px; }

/* ============================================================
   WORKS PAGE
   ============================================================ */

.works-nav { position: sticky; top: 80px; z-index: 50; background: var(--white); border-bottom: 1px solid var(--stone-mid); display: flex; padding: 0 72px; }
.works-nav-item { padding: 16px 24px; font-size: 12px; letter-spacing: 0.15em; color: var(--text-muted); text-decoration: none; border-bottom: 2px solid transparent; transition: all 0.2s; }
.works-nav-item:hover { color: var(--earth-dark); }
.works-nav-item.active { color: var(--earth-dark); border-bottom-color: var(--earth-dark); }

.facility { padding: 80px 0; }
.facility-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.facility-hero.reverse { direction: rtl; }
.facility-hero.reverse > * { direction: ltr; }

.facility-visual { position: relative; overflow: hidden; background: var(--stone-mid); }
.facility-visual-inner { width: 100%; height: 100%; min-height: 480px; display: flex; align-items: flex-end; padding: 32px; }
.fac-kazafune .facility-visual-inner { background: linear-gradient(135deg,#c8d8de 0%,#8fb8c8 50%,#4a7c8e 100%); }
.fac-onsen .facility-visual-inner { background: linear-gradient(135deg,#e8d5cc 0%,#c9a090 50%,#a06870 100%); }
.fac-ryou .facility-visual-inner { background: linear-gradient(135deg,#c8d4c0 0%,#a8b898 50%,#6b7c5c 100%); }

.facility-visual-label { font-family: 'Cormorant Garamond',serif; font-size: 12px; letter-spacing: 0.2em; color: rgba(255,255,255,0.6); writing-mode: vertical-rl; }
.facility-content { padding: 56px 64px; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
.facility-tag { display: inline-block; font-size: 10px; letter-spacing: 0.2em; color: var(--text-muted); border: 1px solid var(--stone-dark); padding: 4px 12px; margin-bottom: 16px; align-self: flex-start; }
.facility-name-ja { font-family: 'Shippori Mincho',serif; font-size: 40px; font-weight: 500; color: var(--earth-dark); line-height: 1.3; letter-spacing: 0.06em; margin-bottom: 4px; }
.facility-name-en { font-family: 'Cormorant Garamond',serif; font-size: 14px; font-weight: 300; color: var(--text-muted); letter-spacing: 0.2em; margin-bottom: 24px; }
.facility-desc { font-size: 14px; line-height: 2.2; color: var(--text-mid); margin-bottom: 28px; }

.facility-stats { display: flex; gap: 32px; margin-bottom: 32px; padding: 24px 0; border-top: 1px solid var(--stone-mid); border-bottom: 1px solid var(--stone-mid); }
.fac-stat-val { font-family: 'Cormorant Garamond',serif; font-size: 32px; font-weight: 300; color: var(--earth-dark); line-height: 1; }
.fac-stat-val span { font-size: 14px; }
.fac-stat-label { font-size: 10px; letter-spacing: 0.12em; color: var(--text-muted); margin-top: 4px; }
.facility-links { display: flex; gap: 16px; align-items: center; }

.facility-detail { padding: 64px 72px; background: var(--stone); }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 32px; }
.detail-card { background: var(--white); padding: 32px; }
.detail-card h4 { font-family: 'Shippori Mincho',serif; font-size: 16px; font-weight: 500; color: var(--earth-dark); margin-bottom: 16px; letter-spacing: 0.06em; }
.detail-card ul { list-style: none; }
.detail-card ul li { font-size: 13px; color: var(--text-mid); line-height: 1.8; padding: 6px 0 6px 12px; border-bottom: 1px solid var(--stone-mid); position: relative; }
.detail-card ul li::before { content: ''; position: absolute; left: 0; top: 50%; width: 4px; height: 1px; background: var(--stone-dark); }

.highlight-box { background: var(--water-pale); border-left: 2px solid var(--water-light); padding: 20px 24px; }
.highlight-box p { font-size: 13px; line-height: 2; color: var(--text-mid); }

.strategy-list { display: flex; flex-direction: column; gap: 16px; }
.strategy-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 24px; background: var(--white); }
.strategy-num { font-family: 'Cormorant Garamond',serif; font-size: 28px; font-weight: 300; color: var(--stone-dark); line-height: 1; min-width: 32px; }
.strategy-body h5 { font-family: 'Shippori Mincho',serif; font-size: 14px; font-weight: 500; color: var(--earth-dark); margin-bottom: 4px; }
.strategy-body p { font-size: 12px; color: var(--text-mid); line-height: 1.8; }
.section-divider { height: 1px; background: var(--stone-mid); margin: 0 72px; }

.page-hero-stats { display: flex; gap: 48px; padding: 56px 64px 56px 72px; align-items: flex-end; justify-content: flex-end; }
.hero-stat { text-align: right; }
.hero-stat-num { font-family: 'Cormorant Garamond',serif; font-size: 52px; font-weight: 300; color: var(--stone); line-height: 1; }
.hero-stat-num span { font-size: 20px; }
.hero-stat-label { font-size: 11px; letter-spacing: 0.12em; color: rgba(232,226,216,0.5); margin-top: 6px; line-height: 1.6; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-section { padding: 80px 72px; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 12px; letter-spacing: 0.15em; color: var(--text-mid); margin-bottom: 8px; }
.form-required { color: var(--water); font-size: 10px; margin-left: 4px; }

.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--stone-dark);
  background: var(--white); font-family: 'Noto Sans JP',sans-serif;
  font-size: 14px; color: var(--text-main); transition: border-color 0.2s; outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--water); }
.form-textarea { min-height: 160px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; }

.form-submit {
  width: 100%; padding: 16px; background: var(--earth-dark); color: var(--white);
  border: none; font-family: 'Noto Sans JP',sans-serif; font-size: 12px;
  letter-spacing: 0.25em; cursor: pointer; transition: background 0.3s;
}
.form-submit:hover { background: var(--water); }

.access-section { padding: 80px 72px; background: var(--stone); }
.access-section h2 { font-family: 'Shippori Mincho',serif; font-size: 28px; font-weight: 500; color: var(--earth-dark); margin-bottom: 32px; letter-spacing: 0.06em; }
.access-info { font-size: 14px; line-height: 2.5; color: var(--text-mid); }
.access-info strong { color: var(--earth-dark); font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--text-main);
  color: rgba(232,226,216,0.6);
  padding: 64px 72px 40px;
}

.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
.footer-brand .logo-en { font-size: 26px; color: var(--stone); }
.footer-brand .logo-ja { color: rgba(232,226,216,0.4); }
.footer-brand p { margin-top: 16px; font-size: 12px; line-height: 2; }
.footer-nav h4 { font-size: 10px; letter-spacing: 0.25em; color: rgba(232,226,216,0.4); margin-bottom: 16px; }
.footer-nav a { display: block; font-size: 13px; color: rgba(232,226,216,0.65); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-nav a:hover { color: var(--stone); }

.footer-legal { padding: 24px 0 32px; border-top: 1px solid rgba(255,255,255,0.06); margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px 32px; font-size: 11px; color: rgba(232,226,216,0.3); line-height: 1.8; }
.footer-legal span { white-space: nowrap; }
.footer-legal a { color: rgba(232,226,216,0.45); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: rgba(232,226,216,0.3); }

/* ============================================================
   レスポンシブ対応
   ============================================================ */

@media (max-width: 960px) {
  header { padding: 16px 24px; }
  nav { gap: 20px; }
  nav a { font-size: 11px; }

  .hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 300px; }
  .hero-text { padding: 60px 24px 40px; }
  .hero-heading { font-size: 36px; }

  .about-strip { grid-template-columns: 1fr; padding: 60px 24px; gap: 32px; }
  .works-section { padding: 60px 24px; }
  .works-grid { grid-template-columns: 1fr; }
  .philosophy { grid-template-columns: 1fr; padding: 80px 24px; }
  .news-section { padding: 60px 24px; }
  .news-item { grid-template-columns: 1fr; gap: 8px; }

  .page-hero { grid-template-columns: 1fr; }
  .page-hero-text { padding: 48px 24px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero-stats { padding: 32px 24px; gap: 24px; }

  .facility-hero { grid-template-columns: 1fr; }
  .facility-content { padding: 40px 24px; }
  .facility-detail { padding: 48px 24px; }
  .detail-grid { grid-template-columns: 1fr; }
  .works-nav { padding: 0 24px; overflow-x: auto; }
  .section-divider { margin: 0 24px; }

  .member-section { padding: 60px 24px; }
  .member-rep { grid-template-columns: 1fr; padding: 32px 24px; }
  .board-section { grid-template-columns: 1fr; }

  .contact-section { padding: 60px 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .access-section { padding: 60px 24px; }

  footer { padding: 48px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
