/* ============================================================
   八木ガラス店 メインスタイルシート
   カラー設定：
     背景：淡いスカイブルー #E8F4FD / 白 #FFFFFF
     アクセント（濃紺）：#1A3A5C
     CTAボタン（オレンジ）：#FF6B2B
   フォント：Noto Sans JP（Google Fonts）
============================================================ */


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

html {
  font-size: 16px;
  scroll-behavior: smooth; /* スムーススクロール */
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333333;
  background-color: #FFFFFF;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

/* コンテナ（最大幅・左右余白） */
.container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* セクション共通パディング */
.section-padded {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* 背景色切り替え（奇数・偶数セクション） */
.section-alt {
  background-color: #E8F4FD;
}


/* ============================================================
   セクション見出し共通
============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1A3A5C;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

/* タイトル下線（装飾） */
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #FF6B2B;
  border-radius: 2px;
}

.section-subtitle {
  margin-top: 16px;
  color: #666666;
  font-size: 0.95rem;
}


/* ============================================================
   ボタン共通
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease,
              border-color 0.2s ease, transform 0.15s ease,
              box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(0);
}

/* オレンジCTAボタン */
.btn-primary {
  background-color: #FF6B2B;
  color: #FFFFFF;
  border-color: #FF6B2B;
}

.btn-primary:hover {
  background-color: #e55a1f;
  border-color: #e55a1f;
}

/* アウトラインボタン（白抜き） */
.btn-outline {
  background-color: transparent;
  color: #1A3A5C;
  border-color: #1A3A5C;
}

.btn-outline:hover {
  background-color: #1A3A5C;
  color: #FFFFFF;
}

/* 大サイズボタン */
.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-svg {
  flex-shrink: 0;
}

/* セクション内CTAエリア */
.section-cta {
  text-align: center;
  margin-top: 50px;
}

.cta-lead {
  margin-bottom: 20px;
  color: #555555;
  font-size: 0.95rem;
}


/* ============================================================
   フェードインアニメーション（Intersection Observer）
============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   ヘッダー（固定）
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #FFFFFF;
  border-bottom: 1px solid #d0e8f5;
  box-shadow: 0 2px 8px rgba(26, 58, 92, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 70px;
}

/* テキストロゴ */
.logo-link {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  color: #1A3A5C;
  flex-shrink: 0;
}

.logo-main {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.logo-sub {
  font-size: 0.65rem;
  color: #666666;
  letter-spacing: 0.02em;
}

/* PCナビゲーション */
.global-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  gap: 4px;
}

.nav-link {
  display: block;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #333333;
  border-radius: 4px;
  transition: color 0.2s, background-color 0.2s;
}

.nav-link:hover {
  color: #1A3A5C;
  background-color: #E8F4FD;
}

/* ヘッダー電話番号 */
.header-tel {
  flex-shrink: 0;
}

.header-tel-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1A3A5C;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 6px;
  border: 2px solid #1A3A5C;
  transition: background-color 0.2s, color 0.2s;
}

.header-tel-link:hover {
  background-color: #1A3A5C;
  color: #FFFFFF;
}

/* ハンバーガーボタン（スマホ用・PCは非表示） */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.hamburger-btn:hover {
  background-color: #E8F4FD;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1A3A5C;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ハンバーガーが開いた状態（✕マーク） */
.hamburger-btn.is-open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* モバイルメニュー */
.mobile-menu {
  display: none;
  background-color: #FFFFFF;
  border-top: 1px solid #d0e8f5;
  padding: 16px 20px;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #333333;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.mobile-nav-link:hover {
  background-color: #E8F4FD;
}

.mobile-nav-tel {
  display: block;
  padding: 14px 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #FF6B2B;
  border-radius: 6px;
  text-align: center;
  margin-top: 8px;
  transition: background-color 0.2s;
}

.mobile-nav-tel:hover {
  background-color: #e55a1f;
}


/* ============================================================
   ヒーローセクション
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* ガラスをイメージした淡いグラデーション */
  background: linear-gradient(135deg,
    #FFFFFF 0%,
    #E8F4FD 40%,
    #cce8f8 70%,
    #b8ddf5 100%);
  padding-top: 70px; /* ヘッダー高さ分オフセット */
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background-color: #1A3A5C;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #1A3A5C;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #444444;
  margin-bottom: 36px;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-hours {
  font-size: 0.85rem;
  color: #666666;
}

/* 背景デコレーション（光の反射イメージの円形） */
.hero-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
}

.hero-deco-circle--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #FFFFFF 0%, rgba(255,255,255,0) 70%);
  right: -100px;
  top: -100px;
}

.hero-deco-circle--2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #b8ddf5 0%, rgba(184,221,245,0) 70%);
  right: 200px;
  bottom: 50px;
}

.hero-deco-circle--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #FFFFFF 0%, rgba(255,255,255,0) 70%);
  left: 60%;
  top: 30%;
}


/* ============================================================
   強みセクション（3カード）
============================================================ */
.strengths {
  background-color: #1A3A5C;
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.strength-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  color: #FFFFFF;
  transition: background-color 0.2s, transform 0.2s;
}

.strength-card:hover {
  background-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.strength-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.strength-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.strength-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}


/* ============================================================
   業務内容セクション
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background-color: #FFFFFF;
  border: 1px solid #d0e8f5;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(26, 58, 92, 0.12);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  line-height: 1;
}

.service-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1A3A5C;
  margin-bottom: 10px;
  line-height: 1.4;
}

.service-desc {
  font-size: 0.83rem;
  color: #666666;
  line-height: 1.6;
}


/* ============================================================
   ガラスの種類セクション
============================================================ */
.glass-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.glass-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 58, 92, 0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}

.glass-card:hover {
  box-shadow: 0 8px 28px rgba(26, 58, 92, 0.15);
  transform: translateY(-4px);
}

/* アイコンエリア（写真なしデザイン） */
.glass-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  transition: opacity 0.2s;
}

.glass-card:hover .glass-card-icon {
  opacity: 0.9;
}

/* 各ガラス種類ごとの背景色 */
.glass-icon-privacy  { background: linear-gradient(135deg, #E8F4FD 0%, #C5DCF0 100%); }
.glass-icon-safe     { background: linear-gradient(135deg, #E8F7EE 0%, #B8E0C8 100%); }
.glass-icon-strong   { background: linear-gradient(135deg, #EBF0FF 0%, #C5D0F8 100%); }
.glass-icon-security { background: linear-gradient(135deg, #FFF0EB 0%, #F8D0C0 100%); }
.glass-icon-sound    { background: linear-gradient(135deg, #F3EBF7 0%, #DCC5E8 100%); }
.glass-icon-thermal  { background: linear-gradient(135deg, #FFF7EB 0%, #F8E8C0 100%); }

.glass-info {
  padding: 20px 24px 24px;
  border-top: 1px solid #f0f0f0;
}

/* バッジ共通スタイル */
.glass-feature-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  /* デフォルト（青） */
  background-color: #E8F4FD;
  color: #1A3A5C;
}

/* バッジカラーバリエーション */
.badge-green  { background-color: #E8F7EE; color: #1A7A4C; }
.badge-blue   { background-color: #EBF0FF; color: #2A4BAA; }
.badge-red    { background-color: #FFF0EB; color: #AA2A2A; }
.badge-purple { background-color: #F3EBF7; color: #7A2AAA; }
.badge-orange { background-color: #FFF7EB; color: #AA6A1A; }

.glass-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A3A5C;
  margin-bottom: 8px;
}

.glass-desc {
  font-size: 0.85rem;
  color: #666666;
  line-height: 1.7;
}


/* ============================================================
   施工例セクション（Before / After）
============================================================ */
.works-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.work-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(26, 58, 92, 0.08);
}

.work-badge {
  display: inline-block;
  background-color: #1A3A5C;
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.work-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1A3A5C;
  margin-bottom: 24px;
}

/* Before/After レイアウト */
.before-after {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.ba-item {
  flex: 1;
}

.ba-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px;
  border-radius: 4px 4px 0 0;
  margin-bottom: 0;
}

.ba-label--before {
  background-color: #f0f0f0;
  color: #666666;
}

.ba-label--after {
  background-color: #1A3A5C;
  color: #FFFFFF;
}

.ba-img {
  width: 100%;
  aspect-ratio: 3 / 4; /* 縦長表示（縦3：横2） */
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 6px 6px;
  display: block;
}

.ba-arrow {
  font-size: 2rem;
  color: #FF6B2B;
  font-weight: 700;
  flex-shrink: 0;
}

.work-desc {
  font-size: 0.92rem;
  color: #555555;
  line-height: 1.75;
}


/* ============================================================
   店舗情報セクション
============================================================ */
.shop-info-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* 電話CTAブロック */
.shop-tel-block {
  text-align: center;
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 48px 32px;
  box-shadow: 0 4px 20px rgba(26, 58, 92, 0.1);
}

.shop-tel-label {
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: 12px;
}

.shop-tel-number {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #1A3A5C;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.shop-tel-number:hover {
  color: #FF6B2B;
}

.shop-tel-note {
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 24px;
}

.shop-tel-btn {
  margin-top: 8px;
}

/* 詳細情報・地図エリア */
.shop-details-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* 店舗詳細 定義リスト */
.shop-dl {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 58, 92, 0.08);
}

.shop-dl-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px solid #e8f0f8;
}

.shop-dl-row:last-child {
  border-bottom: none;
}

.shop-dt {
  background-color: #E8F4FD;
  color: #1A3A5C;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
}

.shop-dd {
  padding: 16px 20px;
  font-size: 0.92rem;
  color: #333333;
  line-height: 1.7;
}

.shop-note {
  font-size: 0.82rem;
  color: #888888;
}

.shop-tel-link {
  color: #1A3A5C;
  font-weight: 700;
  text-decoration: underline;
}

/* Googleマップエリア */
.shop-map {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 58, 92, 0.08);
  min-height: 350px;
  display: flex;
  align-items: stretch;
}

.shop-map iframe {
  width: 100%;
  display: block;
}

/* マッププレースホルダー（差し替え前の仮表示） */
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  padding: 40px 24px;
  background-color: #f0f7fd;
  text-align: center;
}

.map-placeholder-icon {
  font-size: 3rem;
  line-height: 1;
}

.map-placeholder-text {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.7;
}


/* ============================================================
   フッター
============================================================ */
.site-footer {
  background-color: #1A3A5C;
  color: rgba(255, 255, 255, 0.85);
}

.footer-inner {
  padding-top: 48px;
  padding-bottom: 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 24px;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.footer-address {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}

.footer-tel {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

.footer-tel:hover {
  color: #FFFFFF;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.footer-nav-link {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.footer-nav-link:hover {
  color: #FFFFFF;
}

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

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}


/* ============================================================
   スマホ用固定電話ボタン（画面下部）
============================================================ */
.mobile-cta-bar {
  display: none; /* PCは非表示 */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  background-color: #FF6B2B;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}

.mobile-cta-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  color: #FFFFFF;
  font-weight: 700;
}

.mobile-cta-icon {
  flex-shrink: 0;
}

.mobile-cta-text {
  font-size: 0.9rem;
}

.mobile-cta-number {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}


/* ============================================================
   ページトップに戻るボタン
============================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 800;
  width: 48px;
  height: 48px;
  background-color: #1A3A5C;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 58, 92, 0.35);
  transition: background-color 0.2s, transform 0.2s;
}

.back-to-top:hover {
  background-color: #FF6B2B;
  transform: translateY(-3px);
}


/* ============================================================
   ヘッダー下コンテンツのオフセット（固定ヘッダー分）
============================================================ */
main > section:first-child {
  scroll-margin-top: 0;
}

section[id] {
  scroll-margin-top: 70px;
}


/* ============================================================
   レスポンシブデザイン
============================================================ */

/* タブレット（1024px以下） */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .glass-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strengths-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* タブレット〜スマホ（768px以下） */
@media (max-width: 768px) {

  /* ヘッダー：PCナビ・電話番号を隠してハンバーガー表示 */
  .global-nav {
    display: none;
  }

  .header-tel {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .header-inner {
    height: 60px;
  }

  /* ヒーロー */
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* 強みカード */
  .strengths-grid {
    grid-template-columns: 1fr;
  }

  /* 業務内容 */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* ガラスの種類 */
  .glass-types-grid {
    grid-template-columns: 1fr;
  }

  /* 施工例 Before/After */
  .before-after {
    flex-direction: column;
    align-items: stretch;
  }

  .ba-arrow {
    text-align: center;
    transform: rotate(90deg);
    font-size: 1.5rem;
  }

  /* 店舗詳細・地図 */
  .shop-details-map {
    grid-template-columns: 1fr;
  }

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

  .footer-nav-list {
    text-align: left;
  }

  /* スマホ用固定電話ボタンを表示 */
  .mobile-cta-bar {
    display: block;
  }

  /* ページトップボタンをスマホ電話バー分上げる */
  .back-to-top {
    bottom: 80px;
  }

  /* スマホ用に本文下部余白（固定バー分） */
  main {
    padding-bottom: 70px;
  }

  /* セクション */
  .section-padded {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

/* スマホ（480px以下） */
@media (max-width: 480px) {

  /* 業務内容を1列に */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .work-card {
    padding: 24px 16px;
  }

  .shop-dl-row {
    grid-template-columns: 90px 1fr;
  }
}
