/* ========================================
   ○○工業 WordPress テーマ メインCSS
   デザイン：緑・薄緑基調のシンプルスタイル
   ======================================== */

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

/* ===== CSS変数（カラーパレット） ===== */
:root {
  --green-dark:   #2d6a4f;
  --green-mid:    #40916c;
  --green-light:  #74c69d;
  --green-pale:   #d8f3dc;
  --green-bg:     #f0faf3;
  --white:        #ffffff;
  --text-dark:    #1a2e22;
  --text-mid:     #3a5444;
  --text-light:   #6b8f72;
  --border:       #b7dfc5;
  --shadow:       rgba(45,106,79,0.10);
}

/* ===== リセット & ベース ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

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

/* ===== ユーティリティ ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
}

.section-head {
  text-align: center;
  margin-bottom: 52px;
}
.section-head .en {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--green-mid);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-head h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--text-dark);
  font-weight: 700;
}
.section-head .underline {
  width: 48px;
  height: 3px;
  background: var(--green-mid);
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ===== ボタン ===== */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: transform 0.18s, box-shadow 0.18s;
  letter-spacing: 0.04em;
  font-family: 'Noto Sans JP', sans-serif;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.btn-white  { background: var(--white); color: var(--green-dark); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-green  { background: var(--green-dark); color: var(--white); }
.btn-mid    { background: var(--green-mid);  color: var(--white); }

/* ========================================
   HEADER
   ======================================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--green-pale);
  box-shadow: 0 2px 16px var(--shadow);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
}
.logo-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.06em;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.12em;
}

/* デスクトップナビ */
#site-nav ul {
  display: flex;
  gap: 6px;
}
#site-nav ul li a {
  display: block;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
#site-nav ul li a:hover,
#site-nav ul li.current-menu-item a,
#site-nav ul li.current_page_item a {
  background: var(--green-pale);
  color: var(--green-dark);
}

/* ハンバーガーボタン */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルメニュー */
#mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--green-pale);
  box-shadow: 0 4px 12px var(--shadow);
}
#mobile-nav.open { display: block; }
#mobile-nav ul { display: flex; flex-direction: column; }
#mobile-nav ul li a {
  display: block;
  padding: 14px 28px;
  font-size: 0.95rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--green-pale);
  transition: background 0.2s;
}
#mobile-nav ul li a:hover { background: var(--green-bg); color: var(--green-dark); }

/* ========================================
   PAGE HERO（固定ページ用）
   ======================================== */
.page-hero {
  background: linear-gradient(120deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  padding: 64px 24px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 0.95rem;
  opacity: 0.88;
}

/* ========================================
   FRONT PAGE: HERO
   ======================================== */
.front-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-light) 100%);
  color: var(--white);
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.03) 0,
    rgba(255,255,255,0.03) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 32px 32px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  padding: 4px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.hero-content .hero-desc {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  opacity: 0.92;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.9;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ========================================
   FRONT PAGE: NEWS
   ======================================== */
.news-section {
  background: var(--green-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.news-item:last-child { border-bottom: none; }
.news-date {
  font-size: 0.8rem;
  color: var(--text-light);
  white-space: nowrap;
  padding-top: 3px;
  min-width: 90px;
}
.news-tag {
  display: inline-block;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--green-pale);
  color: var(--green-dark);
  white-space: nowrap;
  font-weight: 700;
  flex-shrink: 0;
}
.news-text { font-size: 0.9rem; color: var(--text-mid); flex: 1; }
.news-item a { color: var(--text-mid); transition: color 0.2s; }
.news-item a:hover { color: var(--green-dark); }

/* WordPressの投稿タイトルリンク */
.wp-news-list { display: flex; flex-direction: column; }
.wp-news-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.wp-news-item:last-child { border-bottom: none; }

/* ========================================
   FRONT PAGE: SERVICE CARDS
   ======================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px var(--shadow);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.85;
}
.service-card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
  background: var(--green-pale);
}

/* ========================================
   FRONT PAGE: FEATURES
   ======================================== */
.features-bg { background: var(--green-bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feature-item {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 22px;
  border-left: 4px solid var(--green-mid);
  box-shadow: 0 1px 8px var(--shadow);
}
.feature-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-pale);
  font-family: 'Noto Serif JP', serif;
  line-height: 1;
  margin-bottom: 6px;
}
.feature-item h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.feature-item p { font-size: 0.85rem; color: var(--text-mid); }

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: linear-gradient(120deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  text-align: center;
  padding: 72px 24px;
}
.cta-banner h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 0.92rem;
  opacity: 0.88;
  margin-bottom: 30px;
}

/* ========================================
   SERVICE PAGE
   ======================================== */
.service-detail {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 32px;
  box-shadow: 0 2px 12px var(--shadow);
}
.service-detail-head {
  background: var(--green-mid);
  color: var(--white);
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-detail-head .service-head-icon { font-size: 1.6rem; }
.service-detail-head h3 { font-size: 1.1rem; font-weight: 700; }
.service-detail-body { padding: 28px 32px; background: var(--white); }
.service-detail-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.9;
}

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag {
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* 料金表 */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 0.88rem;
}
.price-table th {
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
}
.price-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.price-table tr:nth-child(even) td { background: var(--green-bg); }
.price-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 10px;
  padding: 12px 16px;
  background: var(--green-bg);
  border-radius: 6px;
  border-left: 3px solid var(--green-light);
}

/* ========================================
   ABOUT PAGE（企業概要）
   ======================================== */
.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.company-table tr { border-bottom: 1px solid var(--border); }
.company-table th {
  width: 200px;
  background: var(--green-bg);
  color: var(--green-dark);
  font-weight: 700;
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
}
.company-table td {
  padding: 16px 20px;
  color: var(--text-mid);
  vertical-align: top;
}

/* メッセージボックス */
.message-box {
  background: var(--green-bg);
  border-radius: 12px;
  padding: 40px 44px;
  border: 1px solid var(--border);
  max-width: 780px;
  margin: 0 auto;
}
.message-box p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 2.1;
  margin-bottom: 18px;
}
.message-box p:last-child { margin-bottom: 0; }
.message-sign {
  font-size: 0.88rem;
  color: var(--text-light);
  text-align: right;
  margin-top: 16px !important;
}
.ceo-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--green-pale);
}

/* ========================================
   ACCESS PAGE
   ======================================== */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.map-embed {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green-dark);
  font-weight: 700;
  border: 1px solid var(--border);
  flex-direction: column;
  gap: 10px;
  text-align: center;
  padding: 20px;
}
.access-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
  margin-top: 24px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--green-pale);
}
.access-info h3:first-child { margin-top: 0; }
.access-info p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.access-info ul { margin-top: 6px; }
.access-info ul li {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
}
.access-info ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--green-mid);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 8px;
}
.hours-table th {
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 8px 12px;
  text-align: left;
  font-weight: 700;
}
.hours-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.closed { color: #c0392b !important; font-weight: 700; }

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
}
.contact-info-box {
  background: var(--green-bg);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid var(--border);
}
.contact-info-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-pale);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text small {
  font-size: 0.72rem;
  color: var(--text-light);
  display: block;
  margin-bottom: 2px;
}
.contact-item-text strong {
  font-size: 0.95rem;
  color: var(--text-dark);
}
.contact-faq {
  background: var(--green-pale);
  border-radius: 10px;
  padding: 20px 22px;
  margin-top: 20px;
  border: 1px solid var(--border);
}
.contact-faq p {
  font-size: 0.82rem;
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-faq ul { padding-left: 16px; }
.contact-faq ul li {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-bottom: 6px;
  list-style: disc;
}

/* WP お問い合わせフォーム（Contact Form 7対応） */
.form-box {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px var(--shadow);
}
.form-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-pale);
}
/* Contact Form 7 スタイル上書き */
.wpcf7 { margin: 0 !important; }
.wpcf7-form p { margin-bottom: 18px; }
.wpcf7-form label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.wpcf7-form .req {
  color: #c0392b;
  font-size: 0.72rem;
  margin-left: 4px;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  background: var(--green-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(64,145,108,0.12);
}
.wpcf7-form textarea { resize: vertical; min-height: 130px; }
.wpcf7-form input[type="submit"] {
  width: 100%;
  padding: 14px;
  background: var(--green-mid);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.15s;
}
.wpcf7-form input[type="submit"]:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.wpcf7-response-output { border-radius: 8px; margin-top: 12px !important; }
.form-privacy {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 14px;
  text-align: center;
}

/* ========================================
   FOOTER
   ======================================== */
#site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.85);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px 32px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 44px;
}
.footer-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-logo-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}
.footer-about {
  font-size: 0.82rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.footer-contact-item {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-item .fi { font-size: 1rem; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-light);
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--green-light); }

.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 18px 24px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ========================================
   WORDPRESS コンテンツ（投稿・固定ページ）
   ======================================== */
.entry-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px;
}
.entry-content h1,
.entry-content h2,
.entry-content h3 {
  font-family: 'Noto Serif JP', serif;
  color: var(--green-dark);
  margin-bottom: 16px;
  margin-top: 32px;
}
.entry-content h2 {
  font-size: 1.4rem;
  border-left: 4px solid var(--green-mid);
  padding-left: 14px;
}
.entry-content h3 { font-size: 1.1rem; }
.entry-content p {
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.9;
}
.entry-content a { color: var(--green-dark); text-decoration: underline; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-inner > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  #site-nav { display: none; }
  .hamburger { display: flex; }

  .access-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }

  .service-detail-head { padding: 18px 22px; }
  .service-detail-body { padding: 22px; }
  .message-box { padding: 28px 22px; }
}

@media (max-width: 600px) {
  .section-wrap { padding: 52px 16px; }
  .company-table th, .company-table td { display: block; width: 100%; }
  .company-table th { background: var(--green-pale); padding: 10px 16px; }
  .company-table td { padding: 12px 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .form-box { padding: 24px 18px; }
  .price-table { font-size: 0.82rem; }
  .price-table th, .price-table td { padding: 10px 10px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .news-item { flex-direction: column; gap: 6px; }
}

/* ========================================
   WPアドミンバー対応
   ======================================== */
.admin-bar #site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar #site-header { top: 46px; }
}
