/* ============================================
   株式会社ケアパートナー - グループホームパキラ
   温かみ・やさしいデザインシステム
   ============================================ */

/* --- カスタムプロパティ --- */
:root {
  --color-primary: #B8860B;
  --color-primary-light: #D4A843;
  --color-primary-dark: #8B6914;
  --color-secondary: #8CA88A;
  --color-secondary-light: #B5CEAB;
  --color-accent: #D4B896;
  --color-bg: #FDFBF7;
  --color-bg-warm: #F7F0E6;
  --color-bg-section: #F3EDE3;
  --color-text: #3A3530;
  --color-text-light: #635B54;
  --color-text-muted: #968E85;
  --color-white: #FFFFFF;
  --color-border: #E8DDD5;
  --shadow-sm: 0 2px 8px rgba(61, 53, 50, 0.06);
  --shadow-md: 0 4px 16px rgba(61, 53, 50, 0.1);
  --shadow-lg: 0 8px 32px rgba(61, 53, 50, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --font-main: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'メイリオ', sans-serif;
  --max-width: 1100px;
  --transition: 0.3s ease;
}

/* --- リセット・ベース --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary-dark);
}

ul {
  list-style: none;
}

/* --- ユーティリティ --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background-color: var(--color-bg-section);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.section-title-en {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-top: 12px;
}

/* --- ヘッダー --- */
.header {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.header-logo {
  display: flex;
  flex-direction: column;
}

.header-logo a {
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
}

.header-logo small {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-list a {
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transition: width var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--color-primary-dark);
  color: var(--color-white) !important;
  transform: translateY(-1px);
}

/* モバイルメニュー */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 6px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* --- ヒーローセクション --- */
.hero {
  background: linear-gradient(135deg, #F7F0E6 0%, #EDE4D4 40%, #E8DFD0 100%);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

/* フローティング装飾 */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.hero-deco--1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
  top: -80px;
  right: -60px;
  animation: float 8s ease-in-out infinite;
}

.hero-deco--2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(140, 168, 138, 0.12) 0%, transparent 70%);
  bottom: 120px;
  left: -40px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-deco--3 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(212, 184, 150, 0.2) 0%, transparent 70%);
  top: 30%;
  right: 15%;
  animation: float 6s ease-in-out infinite 1s;
}

.hero-deco--4 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.08) 0%, transparent 70%);
  top: 60%;
  left: 10%;
  animation: float 7s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

/* スプリットレイアウト */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  text-align: left;
}

.hero-label {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--color-primary-dark);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--color-text);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-title span {
  color: var(--color-primary);
  position: relative;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(212, 132, 90, 0.2);
  border-radius: 4px;
  z-index: -1;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 2;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* ヒーロー右側ビジュアル */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-visual-symbol {
  width: 340px;
  height: 340px;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 10px 30px rgba(58, 53, 48, 0.08));
}

.hero-visual-symbol:hover {
  transform: scale(1.03);
}

.hero-visual-symbol svg {
  width: 100%;
  height: 100%;
}

.hero-visual-badge {
  position: absolute;
  background: var(--color-white);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  box-shadow: 0 8px 24px rgba(61, 53, 50, 0.1);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.hero-visual-badge span {
  font-size: 1.1rem;
}

.hero-visual-badge--1 {
  top: 20px;
  right: -10px;
  animation: floatBadge 5s ease-in-out infinite;
}

.hero-visual-badge--2 {
  bottom: 60px;
  left: -20px;
  animation: floatBadge 6s ease-in-out infinite 1s;
}

.hero-visual-badge--3 {
  bottom: 10px;
  right: 10px;
  animation: floatBadge 7s ease-in-out infinite 2s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* 信頼性バッジ */
.hero-trust {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 28px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(232, 221, 213, 0.5);
  position: relative;
  z-index: 1;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
  animation: fadeInUp 0.6s ease-out both;
}

.trust-item:nth-child(1) { animation-delay: 0.5s; }
.trust-item:nth-child(3) { animation-delay: 0.6s; }
.trust-item:nth-child(5) { animation-delay: 0.7s; }
.trust-item:nth-child(7) { animation-delay: 0.8s; }

.trust-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.trust-unit {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-left: 2px;
}

.trust-label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
}

/* フェードインアニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* スクロール連動フェードイン */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- ボタン --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: var(--font-main);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(123, 168, 140, 0.3);
}

.btn-secondary:hover {
  background: #6A9A7B;
  color: var(--color-white);
  transform: translateY(-2px);
}

/* --- カード --- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: var(--color-bg-warm);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.card-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.9;
}

/* カードグリッド */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* --- 特徴セクション --- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-item {
  text-align: center;
  padding: 40px 24px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-bg-warm), #FDE8D0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.9;
}

/* --- 理念セクション --- */
.philosophy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.philosophy-text h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--color-text);
  line-height: 1.6;
}

.philosophy-text p {
  color: var(--color-text-light);
  line-height: 2;
  margin-bottom: 16px;
}

.philosophy-image {
  border-radius: var(--radius-lg);
  height: 350px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- 料金テーブル --- */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-table th,
.price-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.price-table thead th {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.9rem;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table tbody tr:hover {
  background: var(--color-bg-warm);
}

.price-table .price {
  font-weight: 700;
  color: var(--color-primary-dark);
  font-size: 1.1rem;
}

.price-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: block;
  margin-top: 4px;
  font-weight: 400;
}

/* --- 会社概要テーブル --- */
.info-table {
  width: 100%;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.info-table tr {
  border-bottom: 1px solid var(--color-border);
}

.info-table tr:last-child {
  border-bottom: none;
}

.info-table th {
  background: var(--color-bg-section);
  padding: 16px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  width: 200px;
  vertical-align: top;
  color: var(--color-text);
}

.info-table td {
  padding: 16px 24px;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

/* --- お問い合わせフォーム --- */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--color-text);
}

.form-label .required {
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 8px;
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 132, 90, 0.15);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 32px;
}

/* --- お知らせ --- */
.news-list {
  max-width: 800px;
  margin: 0 auto;
}

.news-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: flex-start;
}

.news-item:last-child {
  border-bottom: none;
}

.news-date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  padding-top: 2px;
  min-width: 100px;
}

.news-tag {
  display: inline-block;
  font-size: 0.7rem;
  padding: 2px 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
  white-space: nowrap;
}

.news-tag--info {
  background: #E3F2FD;
  color: #1565C0;
}

.news-tag--event {
  background: #FFF3E0;
  color: #E65100;
}

.news-tag--recruit {
  background: #E8F5E9;
  color: #2E7D32;
}

.news-content {
  flex: 1;
}

.news-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.news-content h3 a {
  color: var(--color-text);
}

.news-content h3 a:hover {
  color: var(--color-primary);
}

.news-content p {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.news-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  border-bottom: 1px solid transparent;
}

.news-pdf-link::before {
  content: '\1F4C4';
  font-size: 0.9rem;
}

.news-pdf-link:hover {
  color: var(--color-primary-dark);
  border-bottom-color: var(--color-primary-dark);
}

/* --- CTAセクション --- */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: 64px 0;
  text-align: center;
  color: var(--color-white);
}

.cta-section h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-section .btn {
  background: var(--color-white);
  color: var(--color-primary-dark);
}

.cta-section .btn:hover {
  background: var(--color-bg-warm);
  transform: translateY(-2px);
}

.cta-tel {
  margin-top: 24px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.cta-tel a {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
}

/* --- フッター --- */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: var(--color-white);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.footer-brand small {
  display: block;
  font-size: 0.75rem;
  margin-bottom: 16px;
  opacity: 0.6;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-nav h4 {
  color: var(--color-white);
  font-size: 0.9rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-nav ul li {
  margin-bottom: 8px;
}

.footer-nav ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.footer-nav ul li a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
}

/* --- パンくずリスト --- */
.breadcrumb {
  background: var(--color-bg-section);
  padding: 12px 0;
  font-size: 0.85rem;
}

.breadcrumb-list {
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumb-list li::after {
  content: '>';
  margin-left: 8px;
  color: var(--color-text-muted);
}

.breadcrumb-list li:last-child::after {
  display: none;
}

.breadcrumb-list a {
  color: var(--color-text-muted);
}

.breadcrumb-list a:hover {
  color: var(--color-primary);
}

/* --- ページヘッダー --- */
.page-header {
  background: linear-gradient(135deg, var(--color-bg-warm) 0%, #E8DFD0 100%);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-header-en {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --- 代表挨拶 --- */
.greeting-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.greeting-photo {
  background: linear-gradient(135deg, var(--color-bg-warm), var(--color-secondary-light));
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.greeting-text h3 {
  font-size: 1.35rem;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.6;
  border-left: 4px solid var(--color-primary);
  padding-left: 16px;
}

.greeting-text p {
  color: var(--color-text-light);
  line-height: 2;
  margin-bottom: 16px;
}

.greeting-sign {
  text-align: right;
  margin-top: 24px;
  color: var(--color-text);
}

.greeting-sign span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 4px;
}

.greeting-sign strong {
  font-size: 1.2rem;
}

/* --- 設備リスト --- */
.equipment-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.equipment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  font-weight: 500;
}

.equipment-icon {
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
  background: var(--color-bg-warm);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* --- アクセス --- */
.access-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.access-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 300px;
  background: var(--color-bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}

.access-detail h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.access-detail p {
  color: var(--color-text-light);
  margin-bottom: 12px;
  line-height: 1.8;
}

.access-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-bg-warm);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  margin-right: 8px;
}

/* --- ギャラリー --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-caption {
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
}

/* --- 連絡先カード --- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto 48px;
}

.contact-card {
  background: var(--color-bg-warm);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}

.contact-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-card h3 {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-card .contact-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.contact-card .contact-value a {
  color: var(--color-text);
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
  }

  .nav-list.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 48px 0 0;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    min-height: 280px;
  }

  .hero-visual-symbol {
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }

  .hero-visual-badge--2 {
    left: 10px;
  }

  .trust-items {
    gap: 24px;
  }

  .trust-divider {
    display: none;
  }

  .trust-number {
    font-size: 1.5rem;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .card-grid-2 {
    grid-template-columns: 1fr;
  }

  .philosophy-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .greeting-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .access-info {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form {
    padding: 32px 20px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .info-table th {
    width: 120px;
    padding: 12px 16px;
  }

  .info-table td {
    padding: 12px 16px;
  }

  .section {
    padding: 48px 0;
  }

  .page-header {
    padding: 40px 0;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .news-item {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-visual {
    min-height: 200px;
  }

  .hero-visual-symbol {
    width: 220px;
    height: 220px;
  }

  .hero-visual-badge {
    font-size: 0.7rem;
    padding: 8px 12px;
  }

  .trust-items {
    gap: 16px;
  }

  .trust-item {
    min-width: 80px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .price-table th,
  .price-table td {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
}
