/* ========================================
   かたづけ本舗 - メインスタイルシート
   カラー: 黄色 #FFC107 / 青 #1565C0
======================================== */

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

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

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }

img, svg { max-width: 100%; height: auto; display: block; }

/* ---------- 共通レイアウト ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 80px 0; }

.section-title {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  color: #1565C0;
  margin-bottom: 12px;
  line-height: 1.3;
}

.title-en {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: #FFC107;
  margin-bottom: 4px;
}

.section-lead {
  text-align: center;
  color: #555;
  margin-bottom: 48px;
  line-height: 1.8;
}

.pc-only { display: inline; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, opacity .2s;
  border: none;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); opacity: 1; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: #FFC107;
  color: #1a1a1a;
  box-shadow: 0 4px 14px rgba(255,193,7,.4);
}

.btn-secondary {
  background: #fff;
  color: #1565C0;
  border: 2px solid #1565C0;
}

.btn-tel { font-size: 1.1rem; margin-top: 20px; width: 100%; max-width: 320px; }
.btn-submit { min-width: 200px; font-size: 1.1rem; }

/* LINE相談ボタン（LINEブランドカラー） */
.btn-line {
  background: #06C755;
  color: #fff;
  box-shadow: 0 4px 14px rgba(6,199,85,.4);
}
.btn-line:hover { color: #fff; }

/* 店舗情報の電話＋LINEボタンの縦並び */
.shop-cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.shop-cta-btns .btn-tel { margin-top: 0; }

/* ========================================
   ヘッダー
======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1565C0;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; }
.logo-text { font-size: 1.25rem; font-weight: 900; letter-spacing: .05em; }

.global-nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
}
.global-nav a {
  display: block;
  padding: 8px 14px;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  font-size: .9rem;
}
.global-nav a:hover { background: rgba(255,255,255,.15); opacity: 1; }
.nav-cta {
  background: #FFC107 !important;
  color: #1a1a1a !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
}
.nav-cta:hover { background: #FFB300 !important; }

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ========================================
   トップバナー
======================================== */
.top-banner {
  width: 100%;
  background: #FFC107;
  line-height: 0;
  position: relative;
}
.top-banner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   CTAボタンバー（バナー直下）
======================================== */
.hero-cta-bar {
  background: #1565C0;
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 24px 20px;
  flex-wrap: wrap;
}
.hero-cta-bar .btn { min-width: 200px; font-size: 1rem; }

@media (max-width: 480px) {
  .hero-cta-bar { flex-direction: column; align-items: center; padding: 16px; }
  .hero-cta-bar .btn { width: 100%; max-width: 320px; }
}

/* ========================================
   ヒーロー
======================================== */
.hero {
  display: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-illust {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 100%;
  padding: 40px 24px;
  text-align: center;
}

.hero-sub {
  font-size: .85rem;
  font-weight: 700;
  color: #1565C0;
  background: rgba(255,255,255,.8);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: .08em;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 16px;
  text-shadow: 1px 2px 0 rgba(255,255,255,.6);
}

.hero-desc {
  font-size: 1rem;
  color: #444;
  background: rgba(255,255,255,.75);
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 28px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: center;
}

.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.badge {
  background: #1565C0;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
}

/* ========================================
   コンセプト
======================================== */
.concept { background: #fff; }

.concept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.concept-card {
  background: #F9FAFB;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.concept-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }

.concept-illust svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
}

.concept-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1565C0;
  margin-bottom: 8px;
}
.concept-card p { font-size: .875rem; color: #555; line-height: 1.7; }

/* ========================================
   サービス一覧
======================================== */
.services { background: linear-gradient(180deg, #E3F2FD 0%, #fff 100%); }

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  border-left: 4px solid #FFC107;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.service-item:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.12); background: #FFFDE7; }
.service-item:focus { outline: 3px solid #FFC107; outline-offset: 2px; }

.service-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }

.service-item > div { flex: 1; }

.service-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1565C0;
  margin-bottom: 6px;
}
.service-item p { font-size: .85rem; color: #555; line-height: 1.6; }

.service-arrow {
  font-size: .8rem;
  color: #FFC107;
  flex-shrink: 0;
  transition: transform .2s;
}
.service-item:hover .service-arrow { transform: translateX(3px); }

.service-lead { margin-bottom: 24px; }

/* ========================================
   お客様の声
======================================== */
.voice-section {
  margin-top: 64px;
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.voice-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1565C0;
  text-align: center;
  margin-bottom: 28px;
}
.voice-title .title-en {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: #FFC107;
  margin-bottom: 4px;
}

.voice-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.voice-tab {
  padding: 10px 28px;
  border-radius: 50px;
  border: 2px solid #1565C0;
  background: #fff;
  color: #1565C0;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
  font-family: inherit;
}
.voice-tab:hover { background: #E3F2FD; transform: translateY(-2px); }
.voice-tab.active { background: #1565C0; color: #fff; }

.voice-panel { display: none; }
.voice-panel.active { display: block; animation: fadeIn .3s ease; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.voice-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: linear-gradient(135deg, #E3F2FD 0%, #FFF9C4 100%);
  border-radius: 16px;
  padding: 28px 32px;
}

.voice-avatar {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  border: 4px solid #FFC107;
}
.voice-avatar img,
.voice-avatar svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.voice-content { flex: 1; }

.voice-stars { color: #FFC107; font-size: 1.2rem; margin-bottom: 10px; }

.voice-comment {
  font-size: .95rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 14px;
  font-style: italic;
}

.voice-name {
  font-weight: 700;
  color: #1565C0;
  margin-bottom: 4px;
}
.voice-service {
  font-size: .8rem;
  color: #888;
  background: #fff;
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  border: 1px solid #ddd;
}

/* ========================================
   実績モーダル
======================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(3px);
}
.modal-overlay.open { display: flex; animation: fadeIn .25s ease; }

.modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 12px 48px rgba(0,0,0,.25);
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 2px solid #F0F0F0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
  border-radius: 20px 20px 0 0;
}

.modal-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: #1565C0;
}

.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: #F5F5F5;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}
.modal-close:hover { background: #FFCDD2; }

.modal-body { padding: 24px; flex: 1; }

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 8px;
}

.gallery-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  background: #F9FAFB;
  position: relative;
}

.gallery-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.gallery-img-placeholder {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #E3F2FD, #FFF9C4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.gallery-card-body { padding: 12px; }
.gallery-card-body p { font-size: .85rem; color: #444; line-height: 1.6; }

.gallery-delete-btn {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(244,67,54,.85);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px; height: 28px;
  font-size: .8rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}
.gallery-card:hover .gallery-delete-btn { display: flex; }

.modal-empty { text-align: center; color: #aaa; padding: 32px 0; display: none; }
.modal-empty.show { display: block; }

.gallery-loading { text-align: center; color: #aaa; padding: 32px 0; font-size: .9rem; }

/* 管理者エリア */
.admin-area {
  border-top: 2px dashed #E0E0E0;
  padding: 20px 24px 24px;
  background: #FAFAFA;
  border-radius: 0 0 20px 20px;
}

.btn-admin-toggle {
  background: none;
  border: 1.5px solid #90A4AE;
  color: #607D8B;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: .82rem;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
}
.btn-admin-toggle:hover { background: #ECEFF1; }

.admin-login-form {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.admin-login-form input {
  padding: 9px 14px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: .9rem;
  font-family: inherit;
  width: 200px;
}
.admin-login-msg { font-size: .82rem; color: #F44336; width: 100%; }

.admin-panel h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1565C0;
  margin-bottom: 12px;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.admin-form label { font-size: .85rem; font-weight: 700; color: #555; }
.admin-form input,
.admin-form textarea {
  padding: 10px 14px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: .9rem;
  font-family: inherit;
  transition: border-color .2s;
}
.admin-form input:focus,
.admin-form textarea:focus { outline: none; border-color: #1565C0; }
.admin-form textarea { resize: vertical; }

.btn-admin-logout {
  background: none;
  border: none;
  color: #F44336;
  font-size: .82rem;
  cursor: pointer;
  text-decoration: underline;
  font-family: inherit;
  margin-top: 8px;
}

/* ========================================
   料金表
======================================== */
.price { background: #FFFDE7; }

.price-category {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1565C0;
  margin: 36px 0 12px;
  padding-left: 12px;
  border-left: 4px solid #FFC107;
}
.price-category:first-of-type { margin-top: 0; }

.price-table-wrap { overflow-x: auto; margin-bottom: 8px; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
  font-size: .95rem;
}

.price-table thead tr { background: #1565C0; color: #fff; }
.price-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}
.price-table td {
  padding: 13px 20px;
  border-bottom: 1px solid #F0F0F0;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:nth-child(even) { background: #FFFDE7; }
.price-table tbody tr:hover { background: #FFF9C4; }

.price-val { font-weight: 700; color: #C62828; font-size: 1rem; white-space: nowrap; }

.plan-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
}
.plan-s  { background: #E8F5E9; color: #2E7D32; }
.plan-m  { background: #E3F2FD; color: #1565C0; }
.plan-l  { background: #FFF9C4; color: #F57F17; }
.plan-xl { background: #FCE4EC; color: #C62828; }

.price-note {
  font-size: .8rem;
  color: #777;
  margin-top: 20px;
  line-height: 1.8;
}

/* ========================================
   店舗情報
======================================== */
.shop { background: #fff; }

.shop-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.shop-inner--nomap {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}

.map-placeholder {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.map-placeholder svg { width: 100%; height: auto; display: block; }

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
  margin-bottom: 8px;
}
.info-table th {
  width: 110px;
  padding: 12px 16px 12px 0;
  vertical-align: top;
  font-weight: 700;
  color: #1565C0;
  border-bottom: 1px solid #E0E0E0;
  white-space: nowrap;
}
.info-table td {
  padding: 12px 0;
  border-bottom: 1px solid #E0E0E0;
  line-height: 1.7;
}
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }

.tel-link {
  font-size: 1.4rem;
  font-weight: 900;
  color: #1565C0;
}
.tel-link:hover { text-decoration: underline; opacity: 1; }

/* ========================================
   お問い合わせ
======================================== */
.contact { background: linear-gradient(135deg, #E3F2FD 0%, #FFF9C4 100%); }

.contact-inner { max-width: 760px; margin: 0 auto; }

.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 6px 30px rgba(0,0,0,.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group:last-child { margin-bottom: 0; }

.form-group label {
  font-weight: 700;
  font-size: .9rem;
  color: #333;
}

.required {
  background: #F44336;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  color: #333;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  background: #FAFAFA;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1565C0;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(21,101,192,.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-check { flex-direction: row; align-items: center; }
.form-check label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 400;
}
.form-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: #1565C0; cursor: pointer; }

.form-submit { text-align: center; margin-top: 28px; }

.form-message {
  text-align: center;
  margin-top: 16px;
  font-weight: 700;
  font-size: .95rem;
  min-height: 24px;
}
.form-message.success { color: #2E7D32; }
.form-message.error   { color: #C62828; }

/* ========================================
   フッター
======================================== */
.site-footer {
  background: #0D47A1;
  color: #fff;
  padding: 48px 0 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-logo .logo-icon { font-size: 1.8rem; display: inline; }
.footer-logo .logo-text { font-size: 1.3rem; font-weight: 900; }
.footer-logo p { font-size: .85rem; color: #90CAF9; margin-top: 6px; }

.footer-nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-nav a { color: #BBDEFB; font-size: .9rem; }
.footer-nav a:hover { color: #FFC107; opacity: 1; }

.copyright {
  text-align: center;
  font-size: .8rem;
  color: #5C8FC5;
  border-top: 1px solid #1565C0;
  padding-top: 20px;
}

/* ========================================
   レスポンシブ（タブレット〜スマホ）
======================================== */
@media (max-width: 960px) {
  .concept-grid { grid-template-columns: repeat(2, 1fr); }
  .service-list  { grid-template-columns: repeat(2, 1fr); }
  .shop-inner    { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .voice-section { padding: 28px 16px; }
  .voice-card { flex-direction: column; align-items: center; text-align: center; padding: 20px 16px; }
  .voice-avatar { width: 80px; height: 80px; }
  .modal-gallery { grid-template-columns: 1fr; }
  .admin-login-form { flex-direction: column; align-items: flex-start; }
  .admin-login-form input { width: 100%; }

  /* ナビ：ハンバーガー表示 */
  .hamburger { display: flex; }

  .global-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #1565C0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    z-index: 99;
  }
  .global-nav.open { max-height: 400px; border-top: 1px solid rgba(255,255,255,.2); }

  .global-nav ul {
    flex-direction: column;
    padding: 12px 20px 20px;
    gap: 4px;
  }
  .global-nav a { padding: 12px 16px; font-size: 1rem; border-radius: 8px; }

  /* ヒーロー */
  .hero { min-height: auto; }
  .hero-content {
    padding: 40px 20px;
    max-width: 100%;
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(4px);
  }
  .hero-bg { opacity: .45; }
  .hero-title { font-size: 1.9rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }

  /* セクション */
  section { padding: 56px 0; }
  .section-title { font-size: 1.5rem; }
  .pc-only { display: none; }

  /* コンセプト */
  .concept-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .concept-card { padding: 20px 14px; }

  /* サービス */
  .service-list { grid-template-columns: 1fr; }

  /* フォーム */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 16px; }

  /* フッター */
  .footer-inner { flex-direction: column; gap: 20px; }
}

@media (max-width: 480px) {
  .concept-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 6px; }
  .badge { font-size: .75rem; }
  .price-table th, .price-table td { padding: 10px 12px; font-size: .85rem; }
  .info-table th { width: 90px; font-size: .85rem; }
  .info-table td { font-size: .85rem; }
  .tel-link { font-size: 1.2rem; }
}
