/* ============================================
   CSS カスタムプロパティ（色・フォントをここで一括管理）
   ============================================ */
:root {
  /* メインカラー */
  --color-primary: #D9869A;
  --color-primary-dark: #C06F84;
  --color-primary-light: #E8A0B0;

  /* 背景色 */
  --color-bg: #FEF7F0; /* ヘッダー・ロゴと同じアイボリーに統一 */
  --color-bg-section: #FBEEF0;
  --color-bg-circle: #F8DCE2;
  --color-cream: #FEF7F0; /* ロゴ背景と同じアイボリー */

  /* テキスト */
  --color-text: #4A4A4A;
  --color-text-light: #7A7A7A;
  --color-text-white: #ffffff;

  /* LINE */
  --color-line: #06C755;
  --color-line-dark: #05A847;

  /* ボーダー・装飾 */
  --color-border: #F0D0D8;
  --color-white: #ffffff;

  /* フォント */
  --font-family: 'Noto Sans JP', sans-serif;
  /* 見出し用：ロゴに近い、とめはねのある上品な明朝 */
  --font-heading: 'Shippori Mincho', 'Noto Sans JP', serif;

  /* 角丸 */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* シャドウ */
  --shadow-sm: 0 2px 8px rgba(217, 134, 154, 0.12);
  --shadow-md: 0 4px 20px rgba(217, 134, 154, 0.18);
  --shadow-lg: 0 8px 32px rgba(217, 134, 154, 0.22);

  /* ヘッダー高さ */
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 17.5px; /* 全体の文字サイズの基準。大きく/小さくしたいときはここを調整 */
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-bg);
  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; }

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

.text-pink { color: var(--color-primary); font-style: normal; font-weight: 700; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 900;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 48px;
  position: relative;
}
/* 見出しは文字の幅ぴったりにして、下線を文字幅いっぱいに引く */
.section-title { display: table; margin-left: auto; margin-right: auto; }
.section-title::after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  margin: 12px auto 0;
}
.section-title--left { text-align: left; margin-left: 0; }
/* このまとまりは途中で改行しない（語の途中で割れるのを防ぐ） */
.nowrap { white-space: nowrap; }
/* 制作の流れの図 */
.flow__img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ============================================
   ボタン
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

/* サイズ */
.btn--sm  { padding: 8px 18px;  font-size: 0.82rem; }
.btn--md  { padding: 12px 28px; font-size: 0.95rem; }
.btn--lg  { padding: 14px 32px; font-size: 1rem;    }
.btn--xl  { padding: 18px 44px; font-size: 1.1rem;  }

/* プライマリ */
.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* アウトライン */
.btn--outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* LINE */
.btn--line {
  background: var(--color-line);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.28);
}
.btn--line:hover {
  background: var(--color-line-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(6, 199, 85, 0.36);
}

/* 丸ボタン */
.btn--circle {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  font-size: 0.75rem;
}

/* ============================================
   プレースホルダー（写真差し替え前の仮表示）
   ============================================ */
.placeholder {
  background: var(--color-bg-circle);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  gap: 8px;
}
.placeholder--hero {
  width: 100%;
  height: 360px;
  border-radius: var(--radius-lg);
}
.placeholder--work {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
/* 制作サンプルカードの写真 */
.work-card__thumb {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.work-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.work-card:hover .work-card__thumb img { transform: scale(1.05); }
.placeholder__icon { font-size: 3rem; }
.placeholder__text { color: var(--color-text-light); font-size: 0.85rem; }

/* ============================================
   ① ヘッダー
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: rgba(254, 247, 240, 0.92); /* ロゴ背景と同じアイボリー（半透明） */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: box-shadow 0.2s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ロゴ */
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__icon { font-size: 1.4rem; }
/* ヘッダーのロゴ画像。高さで大きさを調整できます */
.logo__img {
  height: 56px;
  width: auto;
  display: block;
}
.logo__text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.2;
}
.logo__text strong { color: var(--color-primary); font-weight: 900; }
/* フッターのロゴ画像 */
.logo__img--footer {
  height: 64px;
}

/* ナビ */
.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  display: block;
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav__link:hover {
  color: var(--color-primary);
  background: var(--color-bg-section);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ハンバーガー（スマホ用） */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   ② ヒーロー
   ============================================ */
.hero {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 80px;
  /* 背景にお店の写真。差し替えるときは images/hero.jpg を入れ替えてください */
  background-color: var(--color-cream);
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
/* 写真の上に薄いアイボリーの膜をかけて、中央の文字を読みやすくします */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(254,247,240,0.85) 0%, rgba(254,247,240,0.55) 55%, rgba(254,247,240,0.25) 100%);
  pointer-events: none;
}

/* 桜の花びら装飾 */
.hero__petals, .cta-banner__petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.petal {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.35;
  animation: floatPetal 6s ease-in-out infinite;
}
.petal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.petal--1  { top: 10%; left:  5%; animation-delay: 0s;   animation-duration: 7s; }
.petal--2  { top: 20%; right: 8%; animation-delay: 1.5s; animation-duration: 6s; }
.petal--3  { top: 60%; left:  3%; animation-delay: 3s;   animation-duration: 8s; }
.petal--4  { top: 75%; right: 5%; animation-delay: 0.8s; animation-duration: 5s; }
.petal--5  { top: 40%; left: 40%; animation-delay: 2s;   animation-duration: 9s; }
.petal--6  { top: 85%; left: 60%; animation-delay: 4s;   animation-duration: 6s; }
.petal--7  { top: 15%; left: 25%; animation-delay: 2.5s; animation-duration: 7.5s; }
.petal--8  { top: 50%; right: 18%; animation-delay: 0.4s; animation-duration: 6.5s; }
.petal--9  { top: 30%; left: 70%; animation-delay: 3.5s; animation-duration: 8.5s; }
.petal--10 { top: 70%; left: 30%; animation-delay: 1.2s; animation-duration: 7s; }
.petal--11 { top: 8%;  left: 55%; animation-delay: 5s;   animation-duration: 9s; }
.petal--12 { top: 55%; left: 88%; animation-delay: 2s;   animation-duration: 6s; }

@keyframes floatPetal {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(15deg); }
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--color-text);
}
.hero__title span { display: block; }

.hero__sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: 36px;
  color: var(--color-text-light);
}

.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   ③ お悩みセクション
   ============================================ */
.worries {
  padding: 80px 0;
  background: var(--color-bg);
}

.worries__list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.worries__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  width: 190px;
  padding: 8px;
  background: none;
  box-shadow: none;
  transition: transform 0.2s;
}
.worries__item:hover { transform: translateY(-4px); }

.worries__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: var(--color-bg-circle);
  border-radius: 50%;
  font-size: 3rem;
  flex-shrink: 0;
}
/* 画像アイコンは画像自体が丸なので、下地の丸は消して画像を丸く収める */
.worries__icon--img {
  background: none;
  overflow: hidden;
}
.worries__icon--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.worries__item p {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.5;
}

/* ============================================
   ④ つなぎの一文
   ============================================ */
.bridge {
  padding: 56px 0;
  background: var(--color-bg);
}

.bridge__text {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.7;
}
/* つなぎの一文の「さくら」は、ほかの文字と同じ色に揃える */
.bridge__text .text-pink {
  color: inherit;
}

/* ============================================
   ⑤ 選ばれる3つの理由
   ============================================ */
.reasons {
  padding: 80px 0;
  background: var(--color-bg);
}

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

.reason-card {
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary));
}
.reason-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.reason-card__num {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-bg-circle);
  line-height: 1;
  margin-bottom: 12px;
}

.reason-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
}

.reason-card__desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   ⑥ 制作実績
   ============================================ */
.works {
  padding: 80px 0;
  background: var(--color-bg);
}

.works__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
}

.work-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.work-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.work-card__body {
  padding: 14px 16px;
}
.work-card__category {
  font-size: 0.75rem;
  color: var(--color-primary);
  font-weight: 700;
  background: var(--color-bg-section);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 6px;
}
.work-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
}

.works__note {
  text-align: center;
  margin: -32px 0 36px;
  color: var(--color-text-light);
  font-size: 0.85rem;
}

/* 「選ばれる3つの理由」の注記 */
.reasons__note {
  text-align: center;
  margin-top: 28px;
  color: var(--color-text-light);
  font-size: 0.82rem;
}

.works__more {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   ⑦ 制作の流れ ＋ ⑧ 料金プラン
   ============================================ */
.flow-pricing {
  padding: 80px 0;
  background: var(--color-bg);
}

.flow-pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 72px;
}
/* グリッドの子が中身の最小幅で広がりすぎないように */
.flow-pricing__grid > * { min-width: 0; }
/* 見出しは左寄せのまま中央エリアに合わせる */
.flow .section-title--left, .pricing .section-title--left { margin-bottom: 36px; }

/* 制作の流れ（5ステップ横並び） */
.flow__list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.flow__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  padding: 0;
}

.flow__arrow {
  align-self: flex-start;
  color: var(--color-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 52px;
}

.flow__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.flow__icon { font-size: 1.5rem; }
/* 制作の流れのアイコン画像（番号＋アイコン入りの丸） */
.flow__icon--img {
  width: 130px;
}
.flow__icon--img img {
  width: 100%;
  height: auto;
  display: block;
}

.flow__label {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

/* 料金プラン */
.pricing__card {
  background: var(--color-bg-section);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.pricing__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 12px;
}

.pricing__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-light);
}

.pricing__price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}
.pricing__price small {
  font-size: 0.85rem;
  font-weight: 500;
  margin-left: 2px;
}
.pricing__price--free {
  font-size: 2.4rem;
}

.pricing__divider {
  height: 1px;
  background: var(--color-border);
  margin: 4px 0;
}

.pricing__service-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin: 16px 0 10px;
}

.pricing__service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

/* 最低契約期間などの注記 */
.pricing__note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--color-border);
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* 2つのプランを横並びに */
.pricing__plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.pricing__plan-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

/* おすすめプランはピンクの枠とバッジで目立たせる */
.pricing__card--featured {
  position: relative;
  border: 2px solid var(--color-primary);
}
.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.pricing__service-list li {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.check {
  color: var(--color-primary);
  font-weight: 900;
  flex-shrink: 0;
}

/* ============================================
   ⑨ よくあるご質問
   ============================================ */
.faq {
  padding: 80px 0;
  background: var(--color-bg);
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.faq__item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.faq__q, .faq__a {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq__q { font-weight: 700; margin-bottom: 12px; }

.faq__qlabel, .faq__alabel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.faq__qlabel {
  background: var(--color-primary);
  color: var(--color-white);
}
.faq__alabel {
  background: var(--color-bg-circle);
  color: var(--color-primary);
}

/* ============================================
   ⑩ CTAバナー
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, #C06F84 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 8px;
}

.cta-banner__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

/* QR */
.qr-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
}
/* QRコード画像。白い枠の中に表示してピンク背景に映えるように */
.qr-placeholder__img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  background: #fff;
  padding: 8px;
  border-radius: var(--radius-md);
  display: block;
}
.qr-placeholder p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
}

/* ============================================
   ⑪ フッター
   ============================================ */
.footer {
  background: var(--color-cream);
  color: var(--color-text);
  padding: 40px 0 0;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
}

.logo--white .logo__text { color: rgba(255,255,255,0.9); }
.logo--white .logo__text strong { color: var(--color-primary-light); }

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.footer__nav-list a {
  font-size: 0.85rem;
  color: var(--color-text-light);
  transition: color 0.2s;
}
.footer__nav-list a:hover { color: var(--color-primary); }

.footer__copy {
  border-top: 1px solid var(--color-border);
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* ============================================
   レスポンシブ（タブレット）
   ============================================ */
@media (max-width: 900px) {
  .nav { display: none; }
  .header__cta .btn--outline { display: none; }
  .nav-toggle { display: flex; }

  /* ナビ（モバイル） */
  .nav.open {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    background: var(--color-cream);
    border-top: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    padding: 16px 0;
  }
  .nav.open .nav__list {
    flex-direction: column;
    gap: 0;
  }
  .nav.open .nav__link {
    display: block;
    padding: 14px 24px;
    border-radius: 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--color-bg-section);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__btns { justify-content: center; }
  .hero__image { order: -1; }
  .placeholder--hero { height: 240px; }

  .reasons__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

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

  .cta-banner__inner { grid-template-columns: 1fr; text-align: center; }
  .qr-placeholder { align-items: center; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   レスポンシブ（スマホ）
   ============================================ */
/* 制作の流れ：中くらいの幅ではアイコンを少し縮める */
@media (max-width: 860px) {
  .flow__icon--img { width: 96px; }
  .flow__label { font-size: 0.82rem; }
  .flow__arrow { margin-top: 38px; }

  /* 料金プランは縦積みに */
  .pricing__plans { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .worries__list { gap: 12px; }
  .worries__item { width: 157px; padding: 20px 6px; }

  /* 制作の流れ：スマホでも5つ横並びで収まるよう縮小＆中央寄せ */
  .flow__list { justify-content: center; }
  .flow__icon--img { width: 52px; }
  .flow__label { font-size: 0.62rem; }
  .flow__arrow { font-size: 0.7rem; margin-top: 22px; }

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

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

  .cta-banner { padding: 60px 0; }
  .btn--xl { padding: 16px 32px; font-size: 1rem; }

  .footer__nav-list { gap: 8px 16px; }
}

@media (max-width: 380px) {
  .works__grid { grid-template-columns: 1fr; }
}
