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

:root {
  --orange: #e07030;
  --orange-light: #f5a055;
  --green: #3aaa6a;
  --green-light: #60cc8a;
  --cream: #fff;
  --cream-dark: #f2f9f5;
  --navy: #2c3e50;
  --text: #333;
  --gray: #888;
  --border: #ddeedd;
}

body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: var(--text);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.9;
}

a {
  color: var(--orange);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ヘッダー */
header {
  background: #fff;
  border-bottom: 3px solid var(--orange);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

header img {
  max-height: 64px;
  width: auto;
}

.header-info {
  flex: 1;
}

.header-info .tagline {
  font-size: 12px;
  color: var(--gray);
}

.header-info .tel-header {
  font-size: 17px;
  font-weight: bold;
  color: var(--orange);
  letter-spacing: 1px;
  white-space: nowrap;
}

.header-info .tel-header span {
  font-size: 12px;
  font-weight: normal;
  color: var(--gray);
  margin-left: 8px;
}

/* ハンバーガーボタン */
.hamburger {
  display: none;
  background: none;
  border: 2px solid var(--green);
  color: var(--green);
  font-size: 20px;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

/* オーバーレイ */
#nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 150;
}

#nav-overlay.open { display: block; }

/* サイトレイアウト */
.site-wrapper {
  display: flex;
  align-items: flex-start;
}

/* サイドナビ */
.side-nav {
  width: 190px;
  flex-shrink: 0;
  background: var(--green);
  position: sticky;
  top: 91px;
  height: calc(100vh - 91px);
  overflow-y: auto;
}

.side-nav ul {
  list-style: none;
  padding: 8px 0;
}

.side-nav ul li a {
  display: block;
  color: #fff;
  padding: 13px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s;
  text-decoration: none;
}

.side-nav ul li a:hover,
.side-nav ul li a.active {
  background: rgba(0,0,0,0.18);
}

.site-content {
  flex: 1;
  min-width: 0;
}

/* メインビジュアル */
.hero {
  background: linear-gradient(135deg, #fff8ee 0%, #fdefd8 100%);
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  border-bottom: 3px solid var(--border);
}

.hero-text {
  max-width: 480px;
}

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 28px;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 16px;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero p {
  color: #555;
  font-size: 15px;
  margin-bottom: 24px;
}

.hero .btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: background 0.2s;
  box-shadow: 0 3px 8px rgba(224,120,50,0.3);
}

.hero .btn:hover {
  background: #c06020;
  text-decoration: none;
}

.hero-illust {
  width: 240px;
  flex-shrink: 0;
}

/* 実績バー */
.achievement-bar {
  background: var(--green);
  color: #fff;
  padding: 20px;
  text-align: center;
}

.achievement-bar .inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.achievement-bar .item {
  text-align: center;
}

.achievement-bar .num {
  font-size: 32px;
  font-weight: bold;
  color: var(--orange-light);
  line-height: 1;
}

.achievement-bar .label {
  font-size: 13px;
  color: #c8e6d8;
  margin-top: 4px;
}

/* メインコンテンツ */
main {
  max-width: 1000px;
  margin: 48px auto;
  padding: 0 20px;
}

/* セクション */
.section {
  margin-bottom: 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: 24px;
  color: var(--navy);
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.section-header p {
  color: var(--gray);
  font-size: 14px;
  margin-top: 10px;
}

/* ページ内h2（左ボーダー） */
h2.page-h2 {
  font-size: 22px;
  color: var(--green);
  border-left: 5px solid var(--orange);
  padding-left: 14px;
  margin-bottom: 24px;
}

/* カード */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card .card-icon {
  margin-bottom: 16px;
}

.card h3 {
  color: var(--green);
  font-size: 18px;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

/* 特徴ブロック */
.feature-block {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.feature-block.reverse {
  flex-direction: row-reverse;
}

.feature-block .feature-illust {
  width: 160px;
  flex-shrink: 0;
}

.feature-block .feature-text h3 {
  font-size: 18px;
  color: var(--green);
  margin-bottom: 10px;
}

.feature-block .feature-text p {
  font-size: 15px;
  color: #555;
}

/* テーブル */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

th, td {
  border: 1px solid var(--border);
  padding: 14px 18px;
  text-align: left;
}

th {
  background: var(--green);
  color: #fff;
  font-weight: normal;
  font-size: 15px;
}

tr:nth-child(even) td {
  background: #faf7f2;
}

/* お問い合わせ */
.contact-box {
  background: #fff;
  border: 2px solid var(--orange);
  border-radius: 10px;
  padding: 36px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(224,120,50,0.1);
}

.contact-box .tel {
  font-size: 36px;
  font-weight: bold;
  color: var(--orange);
  letter-spacing: 2px;
  margin: 12px 0 4px;
}

.contact-box .hours {
  font-size: 14px;
  color: var(--gray);
}

.contact-box .note {
  font-size: 13px;
  color: var(--gray);
  margin-top: 16px;
}

/* アクセス */
.access-info {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.access-info p {
  margin-bottom: 8px;
  font-size: 15px;
}

.map-wrap {
  width: 100%;
  height: 380px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* FAQ */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.faq-item .q {
  font-weight: bold;
  color: var(--orange);
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.faq-item .q::before {
  content: 'Q';
  background: var(--orange);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-item .a {
  color: #555;
  font-size: 15px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.faq-item .a::before {
  content: 'A';
  background: var(--green);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* お知らせ */
.news-list {
  list-style: none;
}

.news-list li {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  display: flex;
  gap: 20px;
  align-items: baseline;
}

.news-list li:last-child {
  border-bottom: none;
}

.news-list li .date {
  color: var(--gray);
  font-size: 13px;
  white-space: nowrap;
}

.news-list li .tag {
  background: var(--cream-dark);
  color: var(--orange);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
}

/* ページタイトル */
.page-title {
  background: linear-gradient(135deg, #fff8ee 0%, #fdefd8 100%);
  padding: 40px 20px;
  text-align: center;
  border-bottom: 3px solid var(--border);
  margin-bottom: 0;
}

.page-title h1 {
  font-size: 26px;
  color: var(--navy);
}

.page-title .breadcrumb {
  font-size: 13px;
  color: var(--gray);
  margin-top: 8px;
}

.page-title .breadcrumb a {
  color: var(--orange);
}

/* CTA バナー */
.cta-banner {
  background: #f59030;
  color: #fff;
  text-align: center;
  padding: 48px 20px;
  margin-top: 60px;
}

.cta-banner h2 {
  font-size: 22px;
  margin-bottom: 8px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cta-banner p {
  font-size: 15px;
  margin-bottom: 24px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.cta-banner .tel-big {
  font-size: 38px;
  font-weight: bold;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 4px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.2);
  color: #fff !important;
}

.cta-banner a:not(.cta-mail-btn) {
  color: #fff !important;
  text-decoration: none;
}

.cta-banner .cta-mail-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #fff;
  color: #e07832 !important;
  border-radius: 30px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none !important;
}
.cta-banner .cta-mail-btn:hover { background: #fff3e0; }

.cta-banner .hours {
  font-size: 13px;
  opacity: 0.8;
}

/* フッター */
footer {
  background: var(--navy);
  color: #aaa;
  padding: 36px 20px 20px;
}

footer .footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

footer .footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 20px;
}

footer .footer-nav li a {
  color: #bbb;
  font-size: 13px;
  padding: 4px 10px;
  border-right: 1px solid #555;
}

footer .footer-nav li:last-child a {
  border-right: none;
}

footer .footer-nav li a:hover {
  color: #fff;
  text-decoration: none;
}

footer .copy {
  font-size: 12px;
  color: #666;
}

.admin-link {
  display: inline-block;
  color: #aaa;
  font-size: 14px;
  text-decoration: none;
  float: right;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.admin-link:hover {
  opacity: 1;
  text-decoration: none;
}

/* ボタン共通 */
.btn-green {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 15px;
  transition: background 0.2s;
}

.btn-green:hover {
  background: #1f4d38;
  text-decoration: none;
}

.btn-orange {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 15px;
  transition: background 0.2s;
  font-weight: bold;
}

.btn-orange:hover {
  background: #c06020;
  text-decoration: none;
}

/* 画像レスポンシブ */
img {
  max-width: 100%;
  height: auto;
}

/* 新聞・写真ギャラリー */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.photo-grid figure {
  margin: 0;
}

.photo-grid figcaption {
  font-size: 13px;
  color: var(--gray);
  text-align: center;
  margin-top: 6px;
}

/* 新聞スキャン（縦長） */
.newspaper-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.newspaper-grid img {
  width: 100%;
  border-radius: 6px;
  border: 2px solid var(--border);
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

/* レスポンシブ: タブレット〜スマホ（サイドナビ → ハンバーガー） */
@media (max-width: 768px) {
  .hamburger { display: block; }
  header img { height: 40px !important; max-height: 40px; }
  .header-info { min-width: 0; overflow: hidden; }
  .header-info .tagline { display: none; }
  .header-info .tel-header { white-space: nowrap; font-size: 13px; letter-spacing: 0; }
  .header-info .tel-header span { display: block !important; font-size: 9px; color: var(--gray); margin-top: 1px; white-space: nowrap; letter-spacing: 0; font-weight: bold; }

  .side-nav {
    position: fixed;
    top: 76px;
    left: -210px;
    width: 210px;
    height: calc(100vh - 76px);
    z-index: 160;
    transition: left 0.28s ease;
    overflow-y: auto;
  }

  .side-nav.open { left: 0; }

  .site-content { width: 100%; }

  .hero {
    flex-direction: column;
    padding: 36px 20px;
    text-align: center;
  }

  .hero-illust { width: 150px; order: -1; }
  .hero h1 { font-size: 22px; }

  main { margin: 28px auto; }

  .section-header h2 { font-size: 20px; }
  .cta-banner .tel-big { font-size: 26px; }

  .feature-block {
    flex-direction: column !important;
    text-align: center;
    padding: 20px 16px;
    gap: 16px;
  }

  .feature-block .feature-illust { width: 100px; margin: 0 auto; }
  .feature-block .feature-text p { text-align: left; }

  .cards { grid-template-columns: 1fr; }

  .contact-box .tel { font-size: 26px; }
  .page-title { padding: 28px 16px; }
  .page-title h1 { font-size: 20px; }

  .cta-banner { padding: 36px 16px; }
  .cta-banner h2 { font-size: 18px; }

  h2.page-h2 { font-size: 18px; }
  .map-wrap { height: 260px; }

  footer { padding: 24px 14px 16px; }

  footer .footer-nav {
    flex-direction: column;
    gap: 0;
  }

  footer .footer-nav li a {
    border-right: none;
    border-bottom: 1px solid #3a4a5a;
    display: block;
    padding: 8px 4px;
  }

  .photo-grid { grid-template-columns: 1fr; }
  .newspaper-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  header { padding: 10px 14px; }
  header img { max-height: 52px; }
  .header-info .tagline { font-size: 11px; }
  .header-info .tel-header { font-size: 15px; }
  .hero { padding: 28px 16px; }
  .hero h1 { font-size: 19px; line-height: 1.6; }
  .hero p { font-size: 14px; }
  .hero .btn { width: 100%; text-align: center; display: block; }
  .hero-illust { width: 120px; }
  .achievement-bar .inner { gap: 14px; }
  .achievement-bar .num { font-size: 20px; }
  .achievement-bar .label { font-size: 11px; }
  main { padding: 0 14px; }
  .section { margin-bottom: 36px; }
  table { font-size: 14px; }
  th, td { padding: 9px 10px; }
  .faq-item { padding: 14px; }
}
