/* ═══════════════════════════════════════════
   晃永工業テーマ main.css
   ═══════════════════════════════════════════ */

/* ─── カラー変数 ─── */
:root {
  --forest:       #1a2e1a;
  --forest-mid:   #243824;
  --forest-light: #2d4a2d;
  --gold:         #b8963e;
  --gold-light:   #d4aa5a;
  --cream:        #f5f0e8;
  --white:        #fafaf7;
  --text-dark:    #1a1a18;
  --text-mid:     #4a4a42;
  --text-light:   #8a8a7a;
  --border:       rgba(184,150,62,0.25);
  --header-h:     72px;
}

/* ─── リセット ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  padding-top: var(--header-h);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─── 共通レイアウト ─── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .section-inner { padding: 0 24px; }
}

.text-center { text-align: center; }

/* ─── セクションラベル ─── */
.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.inner-hero .section-label::before,
.home-news-strip .section-label::before,
.text-center .section-label::before { display: none; }
.text-center .section-label { justify-content: center; }

/* ─── セクションタイトル ─── */
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 300;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 48px;
}

/* ─── ボタン ─── */
.outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  font-family: 'Noto Sans JP', sans-serif;
}
.outline-btn::after { content: '→'; }
.outline-btn:hover { background: var(--text-dark); color: var(--white); }

.outline-btn.dark { border-color: var(--forest); color: var(--forest); }
.outline-btn.dark:hover { background: var(--forest); color: var(--cream); }

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 16px 32px;
  font-size: 13px;
  letter-spacing: 0.12em;
  transition: all 0.3s;
  font-family: 'Noto Sans JP', sans-serif;
}
.hero-btn::after { content: '→'; }
.hero-btn:hover { background: var(--gold); color: var(--forest); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--forest);
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--forest);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
  margin-top: 24px;
}
.text-link::after { content: '→'; }
.text-link:hover { color: var(--gold); border-color: var(--gold); }

/* ─── スクロールアニメーション ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  background: var(--forest);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#site-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.35); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴ */
.site-logo a {
  display: block;
  text-decoration: none;
}
.logo-text {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--cream);
  letter-spacing: 0.05em;
  display: block;
}
.logo-text small {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-top: 2px;
}
.site-logo .custom-logo { height: 48px; width: auto; }

/* PCナビ */
#global-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
#global-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
#global-nav .nav-list a,
#global-nav > a:not(.nav-cta) {
  font-size: 13px;
  color: rgba(245,240,232,0.75);
  text-decoration: none;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s;
}
#global-nav .nav-list a::after,
#global-nav > a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
#global-nav .nav-list a:hover,
#global-nav > a:not(.nav-cta):hover {
  color: var(--gold-light);
}
#global-nav .nav-list a:hover::after,
#global-nav > a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--forest) !important;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.25s;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* モバイルナビ */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--forest);
  z-index: 190;
  flex-direction: column;
  padding: 48px 32px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-list { list-style: none; }
.mobile-nav-list li { border-bottom: 1px solid var(--border); }
.mobile-nav-list a {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  color: var(--cream);
  padding: 20px 0;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.mobile-nav-list a:hover { color: var(--gold); }
.mobile-cta-btn {
  display: block;
  background: var(--gold);
  color: var(--forest);
  padding: 18px 32px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-top: 32px;
  font-family: 'Noto Serif JP', serif;
}


/* ══════════════════════════════════════════
   TOP VISUAL（画像エリア）
══════════════════════════════════════════ */
.top-visual {
  width: 100%;
  overflow: hidden;
  line-height: 0; /* 画像下の隙間をなくす */
}
.top-visual-img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: cover;
  display: block;
}
.top-visual-placeholder {
  width: 100%;
  height: 60vh;
  min-height: 320px;
  background: var(--forest-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-visual-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: rgba(184,150,62,0.5);
  letter-spacing: 0.2em;
}

/* ══════════════════════════════════════════
   TOP CATCH（キャッチコピーエリア）
══════════════════════════════════════════ */
.top-catch {
  background: var(--forest);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.top-catch-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.top-catch-deco {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(100px, 18vw, 220px);
  font-weight: 300;
  color: rgba(184,150,62,0.04);
  letter-spacing: -0.05em;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}
.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.top-catch-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.45;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.top-catch-title strong {
  font-weight: 700;
  color: var(--white);
}
.top-catch-sub {
  font-size: 15px;
  color: rgba(245,240,232,0.65);
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 48px;
}
/* キャッチコピーエリアのボタンは白枠 */
.top-catch .outline-btn.dark {
  border-color: var(--gold);
  color: var(--gold);
}
.top-catch .outline-btn.dark:hover {
  background: var(--gold);
  color: var(--forest);
}


/* ══════════════════════════════════════════
   HOME セクション
══════════════════════════════════════════ */

/* サービスプレビュー */
.services-preview { padding: 100px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.service-card {
  display: block;
  background: var(--white);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  text-decoration: none;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.service-card:hover::before { width: 100%; }
.service-card:hover { background: var(--cream); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(184,150,62,0.15);
  line-height: 1;
  margin-bottom: 20px;
}
.service-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.service-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

/* お知らせ帯 */
.home-news-strip {
  background: var(--forest);
  padding: 80px 0;
}
.home-news-strip .section-title { color: var(--cream); }
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(184,150,62,0.15);
  text-decoration: none;
  transition: padding-left 0.25s;
}
.news-item:hover { padding-left: 10px; }
.news-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.08em;
  min-width: 86px;
}
.news-tag {
  font-size: 10px;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 2px 10px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.news-title {
  font-size: 14px;
  color: rgba(245,240,232,0.8);
  letter-spacing: 0.03em;
  line-height: 1.6;
  flex: 1;
}
.news-arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.25s;
}
.news-item:hover .news-arrow { opacity: 1; }
.section-link-wrap { margin-top: 40px; }
.no-posts { color: rgba(245,240,232,0.5); font-size: 14px; padding: 24px 0; }

/* 会社紹介テイザー */
.home-about { padding: 100px 0; }
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.about-visual {
  position: relative;
  height: 380px;
  background: var(--forest-light);
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid var(--border);
  z-index: 1;
  pointer-events: none;
}
.about-visual-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: rgba(184,150,62,0.1);
  font-weight: 300;
}
.about-img { width: 100%; height: 100%; object-fit: cover; }

/* CTAバンド */
.home-cta { background: var(--cream); padding: 80px 0; }
.cta-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}


/* ══════════════════════════════════════════
   インナーページ共通
══════════════════════════════════════════ */
.inner-hero {
  background: var(--forest);
  padding: 80px 48px 80px;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,62,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.inner-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.inner-hero-content {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease both;
}
.inner-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.single-title { font-size: clamp(22px, 3vw, 36px); }
.inner-hero-desc {
  font-size: 14px;
  color: rgba(245,240,232,0.6);
  line-height: 1.9;
  max-width: 520px;
  letter-spacing: 0.04em;
}


/* ══════════════════════════════════════════
   業務内容ページ
══════════════════════════════════════════ */
.service-page-body { padding: 60px 0 100px; }
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  padding: 72px 0;
  border-bottom: 1px solid rgba(184,150,62,0.2);
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail.reverse { grid-template-columns: 1.2fr 1fr; }
.service-detail.reverse .service-detail-image { order: -1; }
.service-detail-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: rgba(184,150,62,0.12);
  line-height: 0.9;
  margin-bottom: 12px;
}
.service-detail-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.service-detail-sub {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 24px;
}
.service-detail-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2.1;
  letter-spacing: 0.04em;
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
  list-style: none;
}
.feature-list li {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.7;
}
.feature-list li::before {
  content: '—';
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  flex-shrink: 0;
}
.service-detail-image {
  height: 320px;
  background: var(--forest-light);
  position: relative;
  overflow: hidden;
}
.service-detail-image::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--border);
  z-index: 1;
  pointer-events: none;
}
.service-detail-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  color: rgba(184,150,62,0.08);
  font-weight: 300;
}
.service-cta {
  text-align: center;
  padding: 60px 0 0;
  border-top: 1px solid rgba(184,150,62,0.2);
}
.service-cta p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 32px;
}


/* ══════════════════════════════════════════
   会社概要ページ
══════════════════════════════════════════ */
.about-page-body { padding: 60px 0 100px; }
.about-strengths { margin-bottom: 80px; }
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.strength-card {
  background: var(--forest);
  padding: 40px 32px;
  position: relative;
}
.strength-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
}
.strength-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 12px;
}
.strength-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.strength-text {
  font-size: 13px;
  color: rgba(245,240,232,0.6);
  line-height: 1.9;
  letter-spacing: 0.03em;
}
.company-info { margin-bottom: 64px; }
.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table tr { border-bottom: 1px solid rgba(184,150,62,0.15); }
.company-table th,
.company-table td {
  padding: 22px 0;
  font-size: 14px;
  line-height: 1.8;
  vertical-align: top;
  text-align: left;
}
.company-table th {
  width: 180px;
  color: var(--gold);
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding-right: 32px;
  white-space: nowrap;
}
.company-table td { color: var(--text-mid); }
.about-cta {
  background: var(--cream);
  padding: 48px;
  text-align: center;
}
.about-cta h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.about-cta p {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.9;
}


/* ══════════════════════════════════════════
   お問い合わせページ
══════════════════════════════════════════ */
.contact-page-body { padding: 60px 0 100px; }
.contact-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 48px;
}
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.info-card {
  background: var(--cream);
  padding: 32px 28px;
  border-left: 3px solid var(--gold);
}
.info-card-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.info-card-value {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}
.info-card-value.small { font-size: 15px; word-break: break-all; }
.info-card-sub {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.contact-intro {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 48px;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}

/* フォーム */
.contact-form { }
.form-group { margin-bottom: 28px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-label {
  display: block;
  font-size: 12px;
  color: var(--text-dark);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  font-weight: 500;
}
.required {
  color: var(--gold);
  font-size: 10px;
  margin-left: 8px;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.15em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid rgba(184,150,62,0.3);
  background: transparent;
  padding: 12px 4px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
  letter-spacing: 0.03em;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23b8963e'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 28px;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--gold);
}
.form-textarea {
  resize: vertical;
  min-height: 160px;
  border: 1.5px solid rgba(184,150,62,0.3);
  padding: 14px;
  margin-top: 4px;
}
.form-textarea:focus { border-color: var(--gold); }
.privacy-note {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.9;
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.privacy-note a { color: var(--gold); text-decoration: underline; }
.submit-btn {
  display: block;
  width: 100%;
  background: var(--forest);
  color: var(--cream);
  padding: 22px;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  letter-spacing: 0.15em;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  transition: color 0.3s;
}
.submit-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  transition: left 0.4s ease;
}
.submit-btn:hover { color: var(--forest); }
.submit-btn:hover::before { left: 0; }
.submit-btn span { position: relative; z-index: 1; }

/* CF7 上書き */
.wpcf7 input:not([type=submit]),
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid rgba(184,150,62,0.3);
  background: transparent;
  padding: 12px 4px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  border-radius: 0;
}
.wpcf7 textarea { border: 1.5px solid rgba(184,150,62,0.3); padding: 14px; min-height: 160px; }
.wpcf7 input[type=submit] {
  display: block;
  width: 100%;
  background: var(--forest);
  color: var(--cream);
  padding: 22px;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  letter-spacing: 0.15em;
  margin-top: 40px;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s;
}
.wpcf7 input[type=submit]:hover { background: var(--gold); color: var(--forest); }


/* ══════════════════════════════════════════
   お知らせアーカイブ
══════════════════════════════════════════ */
.news-page-body { padding: 60px 0 100px; }
.news-archive-list { display: flex; flex-direction: column; }
.news-archive-item { border-bottom: 1px solid rgba(184,150,62,0.2); }
.news-archive-link {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 0;
  text-decoration: none;
  transition: padding-left 0.25s;
}
.news-archive-link:hover { padding-left: 12px; }
.news-archive-meta {
  min-width: 130px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-archive-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.news-archive-tag {
  display: inline-block;
  font-size: 10px;
  border: 1px solid var(--forest-light);
  color: var(--forest-light);
  padding: 2px 10px;
  letter-spacing: 0.06em;
}
.news-archive-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.news-archive-excerpt {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
}
.news-archive-arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.25s;
}
.news-archive-link:hover .news-archive-arrow { opacity: 1; }
.pagination {
  margin-top: 64px;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(184,150,62,0.3);
  color: var(--text-mid);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}


/* ══════════════════════════════════════════
   お知らせ詳細
══════════════════════════════════════════ */
.single-body { padding: 60px 0 100px; }
.single-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}
.entry-content {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 2.1;
  letter-spacing: 0.04em;
  margin-bottom: 64px;
}
.entry-content h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  color: var(--text-dark);
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.entry-content h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: var(--text-dark);
  margin: 36px 0 16px;
}
.entry-content p { margin-bottom: 20px; }
.entry-content img { margin: 32px 0; }
.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  font-size: 13px;
  color: var(--text-mid);
}
.post-navigation a { color: var(--text-dark); }
.post-navigation a:hover { color: var(--gold); }
.back-to-list { text-align: center; }


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#site-footer {
  background: var(--forest);
  padding: 64px 0 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-logo a {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.footer-logo small {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 300;
  margin-top: 4px;
}
.footer-nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-nav-list a {
  font-size: 13px;
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-nav-list a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: rgba(245,240,232,0.35);
  letter-spacing: 0.1em;
}
.social-links { display: flex; gap: 20px; }
.social-links a {
  font-size: 12px;
  color: rgba(245,240,232,0.4);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.social-links a:hover { color: var(--gold); }

/* 404 */
.error-body { padding: 80px 0 120px; }
.error-body p { font-size: 15px; color: var(--text-mid); }

/* ══════════════════════════════════════════
   アニメーション
══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}


/* ══════════════════════════════════════════
   レスポンシブ
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .strength-grid { grid-template-columns: 1fr 1fr; }
  .service-detail,
  .service-detail.reverse { grid-template-columns: 1fr; }
  .service-detail.reverse .service-detail-image { order: 0; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .header-inner { padding: 0 20px; }
  #global-nav { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 0 24px 110px; }
  .scroll-indicator { display: none; }

  .inner-hero { padding: 60px 24px 60px; }

  .about-teaser-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { height: 240px; }

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

  .info-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-inner { padding: 0 24px; }

  .single-inner { padding: 0 24px; }

  .footer-top { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-inner { padding: 0 24px; }

  .company-table th { width: 120px; font-size: 13px; }

  .feature-list { grid-template-columns: 1fr; }

  .news-archive-link { flex-wrap: wrap; }
  .news-archive-meta { min-width: auto; }
  .news-archive-arrow { display: none; }

  .post-navigation { flex-direction: column; }
}
