/* ================================================
   金属リサイクルセンター メインスタイルシート
   カラー: オレンジ #FF6600 / ブルー #1A5FAB / ホワイト #FFFFFF
   モバイルファースト設計
   ================================================ */

/* ---- 1. CSS変数 ---- */
:root {
  --color-orange:       #FF6B1A;
  --color-orange-dark:  #D95200;
  --color-orange-light: #FF9040;
  --color-orange-pale:  #FFF5EE;

  --color-blue:         #2B6CB8;
  --color-blue-dark:    #1A4A8A;
  --color-blue-light:   #5A9FE0;
  --color-blue-pale:    #EEF6FF;

  --color-white:        #FFFFFF;
  --color-cream:        #FFFBF7;
  --color-gray-100:     #FDF7F2;
  --color-gray-200:     #F0EAE4;
  --color-gray-300:     #DDD5CE;
  --color-gray-500:     #9E9189;
  --color-gray-700:     #5C524D;
  --color-text:         #2D2420;

  --color-line:         #06C755;
  --color-line-dark:    #059A44;
  --color-warning:      #FF9500;
  --color-danger:       #DC3545;

  --shadow-sm: 0 2px 10px rgba(180,80,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 8px 36px rgba(0,0,0,0.11);

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --radius-full: 9999px;

  --font-base: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, 'MS PGothic', Arial, sans-serif;
  --fixed-cta-height: 70px;
}

/* ---- 2. リセット & ベース ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 18px; scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  color: var(--color-text);
  line-height: 1.7;
  background: var(--color-cream);
  padding-bottom: var(--fixed-cta-height);
}

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

/* ---- 3. ユーティリティ ---- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.section { padding: 56px 0; }
.section--blue   { background: var(--color-blue); color: var(--color-white); }
.section--orange { background: var(--color-orange-pale); }
.section--gray   { background: var(--color-cream); }

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  color: var(--color-text);
  position: relative;
  padding-bottom: 16px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 4px;
  background: var(--color-orange);
  border-radius: 2px;
}
.section-title--white { color: var(--color-white); }
.section-title--white::after { background: var(--color-white); }

/* ---- 4. ボタン ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  font-family: var(--font-base);
}
.btn-tel  { background: var(--color-orange); color: var(--color-white); box-shadow: var(--shadow-md); }
.btn-tel:hover  { background: var(--color-orange-dark); transform: translateY(-2px); }
.btn-line { background: var(--color-line);   color: var(--color-white); box-shadow: var(--shadow-md); }
.btn-line:hover { background: var(--color-line-dark);   transform: translateY(-2px); }
.btn-blue { background: var(--color-blue);   color: var(--color-white); box-shadow: var(--shadow-md); }
.btn-blue:hover { background: var(--color-blue-dark);   transform: translateY(-2px); }
.btn-white{ background: var(--color-white);  color: var(--color-blue);  box-shadow: var(--shadow-md); }
.btn-white:hover{ background: var(--color-gray-100); transform: translateY(-2px); }

/* ---- 5. ヘッダー ---- */
.site-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: 12px 16px;
  gap: 12px;
}
.header-logo a { display: flex; align-items: center; gap: 10px; line-height: 1.2; }
.logo-text { font-size: 1rem; font-weight: 700; color: var(--color-orange); }
.logo-sub  { font-size: 0.7rem; color: var(--color-gray-700); }
.site-logo-img { height: 44px; width: auto; display: block; flex-shrink: 0; }
.logo-info { display: flex; flex-direction: column; }
.logo-company { font-size: 0.85rem; font-weight: 700; color: var(--color-text); white-space: nowrap; }
.logo-store { font-size: 0.65rem; color: var(--color-gray-700); white-space: nowrap; }

.header-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.site-nav { display: none; }

.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 8px;
  justify-content: center;
}
.menu-btn span {
  display: block; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- 6. モバイルナビ ---- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nav-overlay.active { display: flex; }
.mobile-nav ul { text-align: center; }
.mobile-nav ul li { margin: 14px 0; }
.mobile-nav ul li a { color: var(--color-white); font-size: 1.5rem; font-weight: 700; }
.mobile-tel {
  display: block;
  margin-top: 28px;
  color: var(--color-orange-light);
  font-size: 1.3rem;
  font-weight: 700;
}

/* ---- 7. ヒーロー (TOP) ---- */
.hero {
  background: linear-gradient(150deg, #FFCB96 0%, var(--color-orange-light) 40%, var(--color-orange) 100%);
  color: var(--color-white);
  padding: 48px 16px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 55%; height: 180%;
  background: rgba(255,255,255,0.10);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 40%; height: 120%;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 700px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--color-white);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem; font-weight: 700;
  margin-bottom: 16px;
}
.hero-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 12px;
}
.hero-highlight { color: #FFE566; font-size: 2.4rem; }
.hero-sub {
  font-size: 1.3rem; font-weight: 700;
  background: rgba(255,255,255,0.2);
  display: inline-block;
  padding: 4px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.hero-desc {
  font-size: 1rem; line-height: 1.8;
  margin-bottom: 28px;
  background: rgba(0,0,0,0.15);
  padding: 12px 16px;
  border-radius: var(--radius-md);
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.hero-cta .btn { width: 100%; max-width: 320px; font-size: 1.2rem; padding: 16px 24px; }

/* ---- 8. 買取品目 ---- */
.items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.item-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border-top: 5px solid;
}
.item-card--metal   { border-color: var(--color-blue); }
.item-card--electric{ border-color: var(--color-orange); }
.item-card__icon  { font-size: 2.5rem; margin-bottom: 12px; }
.item-card__title { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.item-list { display: flex; flex-wrap: wrap; gap: 8px; }
.item-list li {
  background: var(--color-orange-pale);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.95rem; font-weight: 500;
}
.ok-badge {
  background: var(--color-orange);
  color: var(--color-white);
  text-align: center;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
}
.ok-badge strong { font-size: 1.4rem; }

/* ---- 9. 出張査定 ---- */
.visit-content { text-align: center; max-width: 600px; margin: 0 auto; }
.visit-icon   { font-size: 4rem; margin-bottom: 16px; }
.visit-text   { font-size: 1.1rem; margin-bottom: 24px; line-height: 1.8; }
.visit-text strong { color: #FFE566; font-size: 1.3rem; }

/* ---- 10. 料金・引取不可 ---- */
.fees-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.fees-card {
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.fees-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.fees-card--yellow { background: #FFFBEC; border-left: 5px solid var(--color-warning); }
.fees-card--red    { background: #FFF5F5; border-left: 5px solid var(--color-danger); }
.fees-card ul li {
  padding: 7px 0;
  border-bottom: 1px dotted var(--color-gray-300);
  font-size: 0.95rem;
}
.fees-card ul li:last-child { border-bottom: none; }
.fees-note { font-size: 0.85rem; color: var(--color-gray-700); margin-top: 12px; }

/* ---- 11. LINE査定 ---- */
.line-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.line-text { width: 100%; max-width: 420px; }
.line-headline {
  font-size: 1.4rem; font-weight: 700; line-height: 1.5;
  margin-bottom: 16px; color: var(--color-text);
}
.line-headline strong { color: var(--color-orange); font-size: 1.8rem; }
.line-steps { padding-left: 28px; display: flex; flex-direction: column; gap: 4px; }
.line-steps li {
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 1px dashed var(--color-gray-300);
  list-style: decimal;
}
.line-qr { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.qr-placeholder {
  width: 200px; height: 200px;
  border: 3px dashed var(--color-line);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--color-white);
  overflow: hidden;
}
.qr-placeholder img { width: 100%; height: 100%; object-fit: contain; }
.qr-dummy { text-align: center; padding: 16px; }
.qr-dummy .qr-title { font-size: 1rem; font-weight: 700; color: var(--color-line); margin-bottom: 8px; }
.qr-dummy .qr-note  { font-size: 0.75rem; color: var(--color-gray-500); }
.line-id-note { text-align: center; font-size: 1rem; font-weight: 700; }
.line-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-line);
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  margin-top: 8px;
}

/* ---- 12. 安心ポイント ---- */
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.trust-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.trust-icon  { font-size: 2.5rem; margin-bottom: 12px; }
.trust-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--color-blue); }
.trust-card p  { font-size: 0.95rem; color: var(--color-gray-700); line-height: 1.6; }

/* ---- 13. アクセス ---- */
.access-grid  { display: grid; grid-template-columns: 1fr; gap: 24px; }
.access-map iframe {
  width: 100%; height: 280px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 0;
}
.access-info  { display: flex; flex-direction: column; gap: 16px; }
.access-item  {
  display: flex; gap: 12px;
  padding: 14px 16px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  align-items: flex-start;
}
.access-label {
  font-weight: 700; font-size: 0.9rem;
  white-space: nowrap; color: var(--color-blue);
  min-width: 90px;
}
.access-value { font-size: 1rem; line-height: 1.6; }
.access-value a { color: var(--color-orange); font-weight: 700; text-decoration: underline; }

/* ---- 14. フッター ---- */
.site-footer { background: #222; color: #ccc; padding: 40px 0 24px; }
.footer-grid  { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 24px; }
.footer-info h3 { color: var(--color-white); font-size: 1.1rem; margin-bottom: 12px; }
.footer-info p  { font-size: 0.85rem; line-height: 1.9; }
.footer-info a  { color: var(--color-orange-light); }
.footer-nav ul li { margin: 8px 0; }
.footer-nav a { color: #aaa; font-size: 0.9rem; text-decoration: underline; }
.footer-copy {
  border-top: 1px solid #444;
  padding-top: 16px;
  text-align: center;
  font-size: 0.8rem; color: #666;
}

/* ---- 15. 固定フッターCTA ---- */
.fixed-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--fixed-cta-height);
  display: flex;
  z-index: 200;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
.fixed-cta__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--color-white);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}
.fixed-cta__btn:active { opacity: 0.8; }
.fixed-cta__btn--tel  { background: var(--color-orange); }
.fixed-cta__btn--line { background: var(--color-line); }
.fixed-cta__btn--map  { background: var(--color-blue); }
.fixed-cta__icon  { font-size: 1.5rem; line-height: 1; }
.fixed-cta__label { font-size: 0.75rem; }

/* ---- 16. 法人向けページ ---- */
.hero-corp {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  color: var(--color-white);
  padding: 48px 16px 64px;
  text-align: center;
}
.hero-corp .hero-badge {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}
.hero-corp h1 {
  font-size: 1.8rem; font-weight: 900;
  line-height: 1.3; margin-bottom: 16px;
}
.hero-corp p {
  font-size: 1rem; max-width: 600px;
  margin: 0 auto 28px; line-height: 1.7;
}

.service-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--color-blue);
}
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--color-blue); }
.service-card ul li {
  padding: 7px 0;
  border-bottom: 1px dotted var(--color-gray-300);
  font-size: 0.95rem;
}
.service-card ul li:last-child { border-bottom: none; }

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.industry-tag {
  background: var(--color-blue-pale);
  color: var(--color-blue-dark);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.95rem; font-weight: 700;
  border: 2px solid var(--color-blue-light);
}

.process-steps  { display: flex; flex-direction: column; }
.process-step {
  display: flex; gap: 16px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 28px;
}
.process-step:last-child { padding-bottom: 0; }
.process-step__num {
  width: 44px; height: 44px;
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900;
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 22px; top: 44px; bottom: 0;
  width: 2px; background: var(--color-gray-300);
}
.process-step__body h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.process-step__body p  { font-size: 0.9rem; color: var(--color-gray-700); line-height: 1.6; }

.cta-section {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
  color: var(--color-white);
  text-align: center;
  padding: 56px 16px;
}
.cta-section h2 { font-size: 1.6rem; font-weight: 900; margin-bottom: 12px; }
.cta-section p  { font-size: 1rem; margin-bottom: 28px; opacity: 0.95; }
.cta-buttons {
  display: flex; flex-direction: column;
  gap: 12px; align-items: center;
}
.cta-buttons .btn { width: 100%; max-width: 320px; font-size: 1.1rem; }

/* ---- 17. 金属買取価格ページ ---- */
.prices-hero {
  background: linear-gradient(150deg, #FFCB96 0%, var(--color-orange-light) 40%, var(--color-orange) 100%);
  color: var(--color-white);
  padding: 40px 16px;
  text-align: center;
}
.prices-hero h1 { font-size: 1.8rem; font-weight: 900; margin-bottom: 8px; }
.prices-hero p  { font-size: 0.95rem; opacity: 0.9; }

.prices-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 2px solid var(--color-gray-200);
  margin-bottom: 24px;
  flex-wrap: wrap; gap: 8px;
}
.prices-meta .update-date { font-size: 0.9rem; color: var(--color-gray-700); font-weight: 500; }
.refresh-btn {
  background: var(--color-blue); color: var(--color-white);
  border: none; padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem; cursor: pointer;
  font-family: var(--font-base); font-weight: 700;
  transition: background 0.2s;
}
.refresh-btn:hover { background: var(--color-blue-dark); }

.price-loading { text-align: center; padding: 48px 0; color: var(--color-gray-700); }
.loading-spinner {
  width: 48px; height: 48px;
  border: 4px solid var(--color-gray-200);
  border-top-color: var(--color-orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.price-error {
  display: none; text-align: center;
  padding: 48px 24px;
  background: #FFF5F5;
  border-radius: var(--radius-md);
  color: var(--color-danger);
}
.price-error .error-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.price-error .error-note  { font-size: 0.85rem; color: var(--color-gray-700); }

/* 価格カード（モバイル） */
.price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.price-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-orange);
  text-align: center;
}
.price-card__name       { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.price-card__price-wrap {
  display: flex; align-items: baseline;
  justify-content: center; gap: 3px;
}
.price-card__price { font-size: 1.4rem; font-weight: 900; color: var(--color-orange); }
.price-card__unit  { font-size: 0.8rem; color: var(--color-gray-700); }
.price-card__note  {
  font-size: 0.75rem; color: var(--color-gray-500);
  margin-top: 8px; padding-top: 8px;
  border-top: 1px dashed var(--color-gray-200);
}

/* 価格テーブル（デスクトップ） */
.price-table-wrapper { display: none; overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; font-size: 1rem; }
.price-table th {
  background: var(--color-blue);
  color: var(--color-white);
  padding: 14px 16px;
  text-align: left; font-weight: 700;
  white-space: nowrap;
}
.price-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-gray-200);
  vertical-align: middle;
}
.price-table tbody tr:nth-child(even) td { background: var(--color-gray-100); }
.price-table tbody tr:hover td { background: var(--color-orange-pale); }
.price-cell { font-size: 1.2rem; font-weight: 900; color: var(--color-orange); white-space: nowrap; }
.note-cell  { font-size: 0.85rem; color: var(--color-gray-700); }

.price-notes {
  background: var(--color-blue-pale);
  border-left: 4px solid var(--color-blue);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 32px;
}
.price-notes h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--color-blue-dark); }
.price-notes ul li { font-size: 0.9rem; padding: 4px 0; color: var(--color-gray-700); }
.price-notes ul li::before { content: '・'; }

/* ---- 18. ブレッドクラム ---- */
.breadcrumb {
  background: var(--color-gray-100);
  padding: 10px 16px;
  font-size: 0.85rem; color: var(--color-gray-700);
}
.breadcrumb a { color: var(--color-blue); text-decoration: underline; }
.breadcrumb span::before { content: ' ＞ '; }

/* ---- 19. タブレット・PC ---- */
@media (min-width: 600px) {
  .items-grid    { grid-template-columns: 1fr 1fr; }
  .fees-grid     { grid-template-columns: 1fr 1fr; }
  .trust-grid    { grid-template-columns: repeat(3, 1fr); }
  .service-grid  { grid-template-columns: 1fr 1fr; }
  .line-content  { flex-direction: row; justify-content: center; align-items: flex-start; }
}

@media (min-width: 768px) {
  html { font-size: 19px; }

  .site-nav { display: flex; align-items: center; }
  .site-nav ul { display: flex; gap: 4px; }
  .site-nav ul li a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem; font-weight: 600;
    color: var(--color-text);
    transition: background 0.2s;
  }
  .site-nav ul li a:hover,
  .site-nav ul li a.active {
    background: var(--color-orange-pale);
    color: var(--color-orange);
  }
  .menu-btn { display: none; }

  .hero-title    { font-size: 2.8rem; }
  .hero-highlight{ font-size: 3.2rem; }
  .hero-cta { flex-direction: row; justify-content: center; }
  .hero-cta .btn { width: auto; max-width: none; }

  .access-grid      { grid-template-columns: 1fr 1fr; }
  .access-map iframe{ height: 100%; min-height: 350px; }

  .footer-grid { grid-template-columns: 2fr 1fr; }

  .cta-buttons { flex-direction: row; justify-content: center; }
  .cta-buttons .btn { width: auto; }

  /* 価格表: デスクトップはテーブル表示 */
  .price-cards         { display: none; }
  .price-table-wrapper { display: block; }
}

@media (min-width: 1024px) {
  .hero     { padding: 80px 16px; }
  .hero-title { font-size: 3.2rem; }
  .section  { padding: 72px 0; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- 20. プリント ---- */
@media print {
  .fixed-cta, .menu-btn { display: none !important; }
  body { padding-bottom: 0; }
}
