@charset "UTF-8";
/*
 * ======================================
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * ======================================
 *
 * .dp-header / .dp-nav 系       - 2段ヘッダー（白ユーティリティ行＋赤ナビ行）
 * .dp-icon                       - インラインSVGアイコンのサイズ制御
 * .dp-btn 系                     - 案件共通ボタン（赤/緑枠/ダーク/白）
 * .dp-sec / .dp-wrap 系          - セクション余白(84px)・内側ラッパー(1200/1080/1100/980)
 * .dp-shead 系                   - 中央寄せセクション見出し（EN eyebrow + JA大見出し）
 * .dp-phero                      - 下層ページヒーロー（ディープレッド帯）
 * .dp-hero 系                    - TOPメインビュー（グラデ＋透かし＋湯気＋情報バー）
 * .dp-commit 系                  - 3つのこだわりカード
 * .dp-rec 系                     - おすすめ＆人気メニューカード
 * .dp-order 系                   - ご注文方法カード（デリバリー/テイクアウト）
 * .dp-flyer 系                   - チラシPDF帯
 * .dp-story / .dp-reason / .dp-msg 系 - 当店についてページ
 * .dp-menu 系                    - メニューページ（情報バー・カテゴリ・品目行）
 * .dp-news / .dp-coupon 系       - お知らせ＆キャンペーン
 * .dp-shop 系                    - 店舗情報（テーブル・地図）
 *
 * ======================================
 * 共通SCSSに不足していたもの（5分類）
 * ======================================
 * ・構造不足：2段組ヘッダー（白ユーティリティ行＋ベタ塗り中央ナビ行）。共通headerは1段バー型のみ
 * ・装飾パターン不足：MV湯気アニメ・回転SCROLLバッジ・情報バー一体型MV
 * ・装飾パターン不足：左色面+右白の電話専用クーポンカード
 * ・値の粒度不足：セクション余白84px（共通.sectionは120px固定）
 */

/* ============================================================
   共通トークン / ユーティリティ
   ============================================================ */
:root {
  --dp-red: #E13113;
  --dp-red-d: #B8260D;
  --dp-green: #009343;
  --dp-dark: #2A1C14;
  --dp-cream: #FFF7EE;
  --dp-cream2: #FFF1E6;
  --dp-border: #F3E0CF;
  --dp-text: #5A463B;
  --dp-muted: #8A7568;
}

body { background: #fff; }

.dp-icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 19px; line-height: 1; }
.dp-icon svg { width: 1em; height: 1em; display: block; }
.dp-icon i { font-size: 1em; line-height: 1; }
.dp-icon--lg { font-size: 28px; }
.dp-icon--sm { font-size: 17px; }
.dp-icon--xs { font-size: 15px; }

/* セクション枠 */
.dp-sec { padding: 84px 0; background: #fff; }
.dp-sec--cream { background: var(--dp-cream); border-top: 1px solid var(--dp-border); border-bottom: 1px solid var(--dp-border); }
.dp-sec--pb0 { padding-bottom: 0; }
.dp-sec--flyer { padding: 0 0 90px; background: #fff; }
.dp-mt-44 { margin-top: 44px; }
.dp-mt-14 { margin-top: 14px; }
.dp-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.dp-wrap--1100 { max-width: 1100px; }
.dp-wrap--1080 { max-width: 1080px; }
.dp-wrap--980 { max-width: 980px; }
.dp-wrap--960 { max-width: 980px; }

/* セクション見出し */
.dp-shead { text-align: center; margin-bottom: 52px; }
.dp-shead__eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--dp-red); font-family: "Poppins", sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.18em; }
.dp-shead__title { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 36px; line-height: 1.35; margin: 8px 0 0; color: var(--dp-dark); }
.dp-shead__title .ac { color: var(--dp-red); }
.dp-shead__lead { font-size: 15px; color: var(--dp-text); margin: 10px 0 0; }

/* 共通ボタン */
.dp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; height: 54px; padding: 0 30px; border-radius: 12px; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 16px; line-height: 1; transition: all 0.15s; cursor: pointer; }
.dp-btn--red { background: var(--dp-red); color: #fff; box-shadow: 0 8px 22px rgba(225,49,19,0.3); }
.dp-btn--red:hover { background: var(--dp-red-d); opacity: 1; }
.dp-btn--dark { background: var(--dp-dark); color: #fff; }
.dp-btn--dark:hover { background: #3c281b; opacity: 1; }
.dp-btn--green-outline { background: #fff; border: 1.5px solid var(--dp-green); color: var(--dp-green); }
.dp-btn--green-outline:hover { background: var(--dp-green); color: #fff; opacity: 1; }
.dp-btn--green { background: var(--dp-green); color: #fff; }
.dp-btn--green:hover { background: #007a37; opacity: 1; }
.dp-btn--white { background: #fff; color: var(--dp-red); box-shadow: 0 6px 18px rgba(0,0,0,0.18); }
.dp-btn--white:hover { transform: translateY(-2px); opacity: 1; }
.dp-btn--lg { height: 56px; padding: 0 34px; font-size: 17px; }
.dp-btn--full { width: 100%; }
.dp-btn-center { text-align: center; }

/* ============================================================
   ヘッダー
   ============================================================ */
.dp-header { position: sticky; top: 0; z-index: 100; border-bottom: 3px solid var(--dp-red); background: #fff; }
.dp-header__util { background: #fff; }
.dp-header__util-inner { max-width: 1200px; margin: 0 auto; padding: 15px 24px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.dp-header__logo { display: flex; align-items: center; }
.dp-header__logo img { height: 56px; width: auto; display: block; }
.dp-header__right { display: flex; align-items: center; gap: 14px; }
.dp-header__tel-block { text-align: right; line-height: 1.1; }
.dp-header__tel-label { display: block; font-size: 11px; color: #6B564B; letter-spacing: 0.06em; margin-bottom: 2px; }
.dp-header__tel { display: inline-flex; align-items: center; gap: 7px; color: var(--dp-red); font-family: "Poppins", sans-serif; font-weight: 700; font-size: 26px; text-decoration: none; }
.dp-header__tel:hover { opacity: 0.85; }
.dp-btn-map { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; height: 46px; padding: 0 18px; border-radius: 10px; border: 1.5px solid var(--dp-green); color: var(--dp-green); background: #fff; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 15px; transition: all 0.15s; }
.dp-btn-map:hover { background: var(--dp-green); color: #fff; opacity: 1; }
.dp-btn-demae { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; height: 46px; padding: 0 22px; border-radius: 10px; background: var(--dp-red); color: #fff; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 15px; box-shadow: 0 4px 14px rgba(225,49,19,0.32); transition: all 0.15s; }
.dp-btn-demae:hover { background: var(--dp-red-d); opacity: 1; }
.dp-btn-demae.dp-btn--full { width: 100%; justify-content: center; height: 50px; }

.dp-nav { background: var(--dp-red); box-shadow: 0 4px 14px rgba(42,28,20,0.1); }
.dp-nav__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: center; }
.dp-nav__link { padding: 0 30px; height: 44px; display: flex; align-items: center; justify-content: center; text-align: center; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 15px; text-decoration: none; color: #fff; border-bottom: 3px solid transparent; transition: background 0.15s; }
.dp-nav__link:hover { background: rgba(0,0,0,0.12); opacity: 1; }
.dp-nav__link.is-current { background: rgba(0,0,0,0.18); border-bottom-color: #fff; }

/* SPナビ下部の電話 */
.sp-nav__tel { display: block; margin-top: 16px; color: #fff; font-family: "Poppins", sans-serif; font-weight: 700; font-size: 24px; text-decoration: none; }

/* PC以下（1100px）：白行の右側と赤ナビを隠し、ハンバーガーへ */
@media (max-width: 1100px) {
  .dp-header__right { display: none; }
  .dp-nav { display: none; }
  .dp-header__util-inner { padding: 12px 16px; }
}
@media (max-width: 639px) {
  .dp-header__logo img { height: 42px; }
}

/* ============================================================
   下層ページヒーロー（ディープレッド帯）
   ============================================================ */
.dp-phero { position: relative; background: var(--dp-red-d); overflow: hidden; }
.dp-phero::before { content: ""; position: absolute; top: -70px; right: 6%; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,0.07); }
.dp-phero__inner { position: relative; max-width: 1200px; margin: 0 auto; padding: 50px 24px; }
.dp-phero__en { font-family: "Poppins", sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.2em; color: #FFD9CC; }
.dp-phero__ja { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 42px; margin: 6px 0 0; color: #fff; line-height: 1.25; }
@media (max-width: 639px) {
  .dp-phero__inner { padding: 36px 16px; }
  .dp-phero__ja { font-size: 28px; }
}

/* ============================================================
   TOP メインビュー
   ============================================================ */
.dp-hero { position: relative; overflow: hidden; height: 660px; background: linear-gradient(168deg, #FFF4E4 0%, #FFE2BD 48%, #FBCB92 100%); }
.dp-hero__glow { position: absolute; inset: 0; background: radial-gradient(circle at 56% 40%, rgba(225,49,19,0.10), transparent 56%); }
.dp-hero__watermark { position: absolute; top: 42%; left: 50%; transform: translate(-50%,-50%); font-family: "Poppins", sans-serif; font-weight: 700; font-size: 260px; line-height: 0.78; color: rgba(255,251,242,0.55); white-space: nowrap; letter-spacing: -0.03em; pointer-events: none; user-select: none; }
.dp-hero__stage { position: relative; width: 1200px; max-width: 100%; height: 660px; margin: 0 auto; padding: 0 24px; }
.dp-hero__textblock { position: absolute; left: 24px; top: 120px; z-index: 3; }
.dp-hero__title { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 58px; line-height: 1.3; letter-spacing: 0.01em; margin: 0 0 20px; color: var(--dp-dark); text-shadow: 0 2px 14px rgba(255,244,228,0.7); }
.dp-hero__title .ac { color: var(--dp-red); }
.dp-hero__lead { font-size: 17px; line-height: 1.9; color: #5A3D2E; margin: 0 0 30px; font-weight: 600; }
.dp-hero__btns { display: flex; gap: 13px; align-items: center; flex-wrap: wrap; }
/* キャッチコピー初回表示アニメ（フェードアップ・段階表示） */
@keyframes dpHeroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.dp-hero__title { animation: dpHeroIn 0.9s cubic-bezier(0.16,0.8,0.3,1) both; }
.dp-hero__lead { animation: dpHeroIn 0.9s cubic-bezier(0.16,0.8,0.3,1) 0.18s both; }
.dp-hero__btns { animation: dpHeroIn 0.9s cubic-bezier(0.16,0.8,0.3,1) 0.34s both; }
.dp-hero__btn { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; height: 56px; padding: 0 28px; border-radius: 12px; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 17px; transition: all 0.15s; }
.dp-hero__btn--red { background: var(--dp-red); color: #fff; box-shadow: 0 10px 24px rgba(225,49,19,0.34); }
.dp-hero__btn--red:hover { background: var(--dp-red-d); opacity: 1; }
.dp-hero__btn--tel { background: #fff; border: 1.5px solid var(--dp-green); color: var(--dp-green); padding: 0 24px; }
.dp-hero__btn--tel:hover { background: var(--dp-green); color: #fff; opacity: 1; }
.dp-hero__photo { position: absolute; right: -70px; bottom: 40px; width: 880px; height: auto; object-fit: contain; z-index: 2; filter: drop-shadow(0 26px 40px rgba(150,60,10,0.32)); }
.dp-hero__steam { position: absolute; left: 500px; top: 182px; width: 300px; height: 104px; display: flex; justify-content: center; align-items: flex-end; gap: 24px; pointer-events: none; z-index: 3; }
.dp-hero__steam span { display: block; border-radius: 50%; }
.dp-hero__steam span:nth-child(1) { width: 30px; height: 88px; background: linear-gradient(to top, rgba(255,255,255,0) 4%, rgba(255,255,255,0.97) 70%, rgba(255,255,255,0.65)); filter: blur(7px); animation: dpSteam 3.0s ease-in infinite; }
.dp-hero__steam span:nth-child(2) { width: 37px; height: 100px; background: linear-gradient(to top, rgba(255,255,255,0) 4%, rgba(255,255,255,1) 70%, rgba(255,255,255,0.7)); filter: blur(8px); animation: dpSteam 3.5s ease-in infinite; animation-delay: 0.6s; }
.dp-hero__steam span:nth-child(3) { width: 28px; height: 82px; background: linear-gradient(to top, rgba(255,255,255,0) 4%, rgba(255,255,255,0.95) 70%, rgba(255,255,255,0.65)); filter: blur(7px); animation: dpSteam 3.2s ease-in infinite; animation-delay: 1.1s; }
.dp-hero__steam span:nth-child(4) { width: 34px; height: 94px; background: linear-gradient(to top, rgba(255,255,255,0) 4%, rgba(255,255,255,0.98) 70%, rgba(255,255,255,0.68)); filter: blur(8px); animation: dpSteam 3.8s ease-in infinite; animation-delay: 1.6s; }
.dp-hero__steam span:nth-child(5) { width: 26px; height: 78px; background: linear-gradient(to top, rgba(255,255,255,0) 4%, rgba(255,255,255,0.95) 70%, rgba(255,255,255,0.62)); filter: blur(7px); animation: dpSteam 3.3s ease-in infinite; animation-delay: 2.1s; }
.dp-hero__info { position: absolute; left: 24px; right: 24px; bottom: 34px; z-index: 3; display: flex; align-items: stretch; background: rgba(255,255,255,0.96); border: 1px solid var(--dp-border); border-radius: 16px; box-shadow: 0 14px 34px rgba(180,80,30,0.16); overflow: hidden; }
.dp-hero__info-cell { display: flex; align-items: center; gap: 12px; padding: 18px 26px; }
.dp-hero__info-cell--access { flex: 1 1 auto; min-width: 0; }
.dp-hero__info-sep { width: 1px; background: #F0E2D4; }
.dp-hero__info-key { font-family: "Poppins", sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 0.1em; color: var(--dp-green); flex-shrink: 0; }
.dp-hero__info-time { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 17px; color: var(--dp-dark); }
.dp-hero__info-note { font-size: 12px; color: var(--dp-muted); }
.dp-hero__info-addr { font-size: 14px; color: var(--dp-dark); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dp-hero__info-map { display: flex; align-items: center; gap: 8px; padding: 0 24px; background: var(--dp-red); color: #fff; text-decoration: none; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 14px; flex: 0 0 auto; transition: background 0.15s; }
.dp-hero__info-map:hover { background: var(--dp-red-d); opacity: 1; }
.dp-hero__info-tel { display: flex; align-items: center; gap: 10px; padding: 0 26px; background: var(--dp-dark); color: #fff; text-decoration: none; flex: 0 0 auto; transition: background 0.15s; font-family: "Poppins", sans-serif; font-weight: 700; font-size: 17px; }
.dp-hero__info-tel:hover { background: #3c281b; opacity: 1; }

@keyframes dpSteam { 0% { transform: translateY(14px) scaleX(0.8); opacity: 0; } 18% { opacity: 0.92; } 55% { opacity: 0.6; } 100% { transform: translateY(-78px) scaleX(1.7); opacity: 0; } }
@keyframes dpSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes dpArrow { 0%,100% { transform: translateY(-2px); opacity: 0.45; } 50% { transform: translateY(5px); opacity: 1; } }

@media (max-width: 1100px) {
  .dp-hero { height: auto; padding-bottom: 30px; }
  .dp-hero__stage { height: auto; padding: 40px 16px 0; }
  .dp-hero__textblock { position: relative; left: 0; top: 0; z-index: 3; }
  .dp-hero__photo { position: relative; right: 0; bottom: 0; width: 100%; max-width: 520px; display: block; margin: 10px auto 0; }
  .dp-hero__watermark { font-size: 150px; top: 30%; }
  .dp-hero__steam { display: none; }
  .dp-hero__info { position: relative; left: 0; right: 0; bottom: 0; margin-top: 24px; flex-wrap: wrap; }
}
@media (max-width: 639px) {
  .dp-hero__title { font-size: 38px; }
  .dp-hero__lead { font-size: 15px; }
  .dp-hero__info-cell, .dp-hero__info-map, .dp-hero__info-tel { width: 100%; }
  .dp-hero__info-sep { display: none; }
  .dp-hero__info-addr { white-space: normal; }
}

/* ============================================================
   TOP：3つのこだわり
   ============================================================ */
.dp-commit { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.dp-commit__item { background: var(--dp-red); border: none; border-radius: 16px; padding: 42px 30px 36px; text-align: center; box-shadow: 0 12px 28px rgba(225,49,19,0.25); transition: transform 0.18s, box-shadow 0.18s; }
.dp-commit__item:hover { transform: translateY(-6px); box-shadow: 0 20px 38px rgba(225,49,19,0.34); }
.dp-commit__icon { position: relative; width: 170px; height: 170px; margin: 0 auto 22px; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 50%; box-shadow: 0 8px 20px rgba(0,0,0,0.16); }
.dp-commit__icon img { width: 112px; height: 112px; object-fit: contain; display: block; }
.dp-commit__num { position: absolute; top: 2px; left: 2px; width: 36px; height: 36px; border-radius: 50%; background: var(--dp-dark); color: #fff; display: flex; align-items: center; justify-content: center; font-family: "Poppins", sans-serif; font-weight: 700; font-size: 15px; z-index: 2; box-shadow: 0 3px 10px rgba(42,28,20,0.35); border: 2px solid #fff; }
.dp-commit__title { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 22px; margin: 0 0 14px; padding-bottom: 14px; line-height: 1.45; color: #fff; border-bottom: 2px dotted rgba(255,255,255,0.55); }
.dp-commit__text { font-size: 15px; line-height: 1.5; color: rgba(255,255,255,0.95); margin: 0; text-align: left; }
@media (max-width: 896px) { .dp-commit { grid-template-columns: 1fr; gap: 20px; } }

/* ============================================================
   TOP：おすすめ＆人気メニュー
   ============================================================ */
/* おすすめ：うっすら背景画像（ピザ・丼のライン柄） */
.dp-sec--rec { background-color: var(--dp-cream); background-image: linear-gradient(rgba(255,247,238,0.62), rgba(255,247,238,0.62)), url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28113/bg-pizdon.png"); background-size: auto, cover; background-position: center, center; background-repeat: no-repeat, no-repeat; }
.dp-rec { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.dp-rec__item { background: #fff; border: 1px solid var(--dp-border); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(42,28,20,0.06); transition: transform 0.18s, box-shadow 0.18s; }
.dp-rec__item:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(42,28,20,0.12); }
.dp-rec__media { position: relative; aspect-ratio: 5 / 4; background: linear-gradient(135deg, #FFE0C6, #F6B98C); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.dp-rec__media img { width: 100%; height: 100%; object-fit: cover; }
.dp-rec__badge { position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; gap: 6px; color: #fff; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 13px; padding: 6px 13px; border-radius: 999px; }
.dp-rec__badge--red { background: var(--dp-red); box-shadow: 0 4px 12px rgba(225,49,19,0.3); }
.dp-rec__badge--green { background: var(--dp-green); box-shadow: 0 4px 12px rgba(0,147,67,0.3); }
.dp-rec__body { padding: 24px 24px 28px; }
.dp-rec__cat { font-size: 12px; color: var(--dp-green); font-weight: 700; margin-bottom: 6px; }
.dp-rec__name { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 22px; margin: 0 0 10px; line-height: 1.35; }
.dp-rec__text { font-size: 14px; line-height: 1.85; color: var(--dp-text); margin: 0; }
@media (max-width: 896px) { .dp-rec { grid-template-columns: 1fr; gap: 20px; } }

/* ============================================================
   TOP：ご注文方法
   ============================================================ */
.dp-order { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.dp-order__card { border-radius: 16px; padding: 34px 34px 36px; }
.dp-order__card--delivery { border: 2px solid #FBD9C9; background: var(--dp-cream); }
.dp-order__card--takeout { border: 2px solid #B9E3CC; background: #F2FBF6; }
.dp-order__head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.dp-order__badge { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0; color: #fff; }
.dp-order__badge--red { background: var(--dp-red); }
.dp-order__badge--green { background: var(--dp-green); }
.dp-order__badge .dp-icon { font-size: 30px; }
.dp-order__en { font-family: "Poppins", sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 0.1em; }
.dp-order__card--delivery .dp-order__en { color: var(--dp-red); }
.dp-order__card--takeout .dp-order__en { color: var(--dp-green); }
.dp-order__title { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 24px; margin: 2px 0 0; }
.dp-order__desc { font-size: 15px; line-height: 1.85; margin: 0 0 20px; }
.dp-order__card--delivery .dp-order__desc { color: var(--dp-text); }
.dp-order__card--takeout .dp-order__desc { color: #3F5A4B; }
.dp-order__desc .em { color: var(--dp-green); }
.dp-order__steps { display: flex; flex-direction: column; gap: 12px; }
.dp-order__step { display: flex; align-items: center; gap: 13px; background: #fff; border-radius: 10px; padding: 13px 16px; }
.dp-order__card--delivery .dp-order__step { border: 1px solid var(--dp-border); }
.dp-order__card--takeout .dp-order__step { border: 1px solid #CFEBDC; }
.dp-order__step-num { width: 26px; height: 26px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-family: "Poppins", sans-serif; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.dp-order__card--delivery .dp-order__step-num { background: var(--dp-red); }
.dp-order__card--takeout .dp-order__step-num { background: var(--dp-green); }
.dp-order__step-text { font-size: 14px; font-weight: 500; }
.dp-order__cta { display: flex; align-items: center; justify-content: center; gap: 9px; text-decoration: none; margin-top: 20px; height: 50px; border-radius: 11px; color: #fff; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 16px; transition: background 0.15s; }
.dp-order__cta--red { background: var(--dp-red); }
.dp-order__cta--red:hover { background: var(--dp-red-d); opacity: 1; }
.dp-order__cta--green { background: var(--dp-green); }
.dp-order__cta--green:hover { background: #007a37; opacity: 1; }
@media (max-width: 896px) { .dp-order { grid-template-columns: 1fr; gap: 20px; } }

/* ============================================================
   TOP：チラシPDF帯
   ============================================================ */
.dp-flyer { background: var(--dp-dark); border-radius: 20px; padding: 48px 52px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; background-image: radial-gradient(circle at 90% 0%, rgba(225,49,19,0.18), transparent 45%); }
.dp-flyer__tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(225,49,19,0.18); color: #FFB59E; font-weight: 700; font-size: 13px; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.dp-flyer__title { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 30px; color: #fff; margin: 0 0 12px; line-height: 1.4; }
.dp-flyer__text { font-size: 15px; line-height: 1.85; color: #C9B5A6; margin: 0 0 26px; }
.dp-flyer__cta { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; height: 54px; padding: 0 28px; border-radius: 12px; background: var(--dp-red); color: #fff; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 16px; box-shadow: 0 8px 20px rgba(225,49,19,0.34); transition: all 0.15s; }
.dp-flyer__cta:hover { background: var(--dp-red-d); opacity: 1; }
.dp-flyer__sheets { display: flex; justify-content: center; }
.dp-flyer__sheet { display: block; width: 320px; border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 16px 34px rgba(0,0,0,0.32); }
.dp-flyer__sheet img { width: 100%; height: auto; display: block; }
@media (max-width: 896px) { .dp-flyer { grid-template-columns: 1fr; padding: 36px 28px; } .dp-flyer__sheets { justify-content: center; } }
@media (max-width: 639px) { .dp-flyer__sheet { width: 100%; max-width: 320px; } }

/* ============================================================
   当店について
   ============================================================ */
.dp-story { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.dp-story__eyebrow { font-family: "Poppins", sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.18em; color: var(--dp-red); margin-bottom: 8px; }
.dp-story__title { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 30px; line-height: 1.5; margin: 0 0 22px; }
.dp-story__text { font-size: 15px; line-height: 2.05; color: var(--dp-text); margin: 0 0 18px; }
.dp-story__text:last-child { margin-bottom: 0; }
.dp-story__text .em { color: var(--dp-red); font-weight: 700; }
.dp-story__media { position: relative; }
.dp-story__photo { border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 4.4; background: linear-gradient(150deg, #FFE6D2, #F4B083); display: flex; align-items: center; justify-content: center; box-shadow: 0 18px 44px rgba(225,49,19,0.16); }
.dp-story__photo img { width: 100%; height: 100%; object-fit: cover; }
.dp-story__badge { position: absolute; bottom: -18px; left: -18px; background: var(--dp-green); color: #fff; border-radius: 14px; padding: 16px 22px; box-shadow: 0 10px 26px rgba(0,147,67,0.3); }
.dp-story__badge-num { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 30px; line-height: 1; }
.dp-story__badge-num small { font-size: 15px; }
.dp-story__badge-label { font-size: 12px; margin-top: 3px; }
@media (max-width: 896px) { .dp-story { grid-template-columns: 1fr; gap: 40px; } .dp-story__badge { left: 0; } }

.dp-reasons { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.dp-reason { display: flex; gap: 20px; background: #fff; border: 1px solid var(--dp-border); border-radius: 16px; padding: 30px; box-shadow: 0 6px 18px rgba(42,28,20,0.05); }
.dp-reason__icon { flex-shrink: 0; }
.dp-reason__icon span { width: 60px; height: 60px; border-radius: 14px; background: var(--dp-cream2); border: 1px solid #F6D7C2; display: flex; align-items: center; justify-content: center; color: var(--dp-red); }
.dp-reason__icon i { font-size: 28px; }
.dp-reason__no { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 13px; color: var(--dp-red); letter-spacing: 0.06em; margin-bottom: 4px; }
.dp-reason__title { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 20px; margin: 0 0 10px; line-height: 1.4; }
.dp-reason__text { font-size: 14px; line-height: 1.95; color: var(--dp-text); margin: 0; }
@media (max-width: 896px) { .dp-reasons { grid-template-columns: 1fr; gap: 18px; } }

.dp-sec--msgbg { background-color: #fff; background-image: linear-gradient(rgba(255,255,255,0.55), rgba(255,255,255,0.55)), url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28113/bg-pizdon.png"); background-size: auto, cover; background-position: center, center; background-repeat: no-repeat, no-repeat; }
.dp-msg { position: relative; background: var(--dp-cream); border: 1px solid var(--dp-border); border-radius: 20px; padding: 54px 56px; overflow: hidden; }
.dp-msg__quote { position: absolute; top: 30px; left: 34px; opacity: 0.18; font-size: 56px; color: var(--dp-red); }
.dp-msg__inner { position: relative; text-align: center; }
.dp-msg__eyebrow { font-family: "Poppins", sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.18em; color: var(--dp-green); margin-bottom: 8px; }
.dp-msg__title { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 26px; margin: 0 0 26px; }
.dp-msg__text { font-size: 16px; line-height: 2.1; color: #4A382C; margin: 0 auto; max-width: 760px; text-align: left; }
.dp-msg__sign { margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.dp-msg__avatar { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, #FFD9BE, #F2A876); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.dp-msg__avatar i { font-size: 26px; color: #fff; }
.dp-msg__sign-name { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 16px; }
.dp-msg__sign-sub { font-size: 12px; color: var(--dp-muted); }
.dp-msg__sign-body { text-align: left; }
@media (max-width: 639px) { .dp-msg { padding: 40px 24px; } .dp-msg__text { font-size: 15px; } }

/* ============================================================
   メニュー
   ============================================================ */
.dp-sec--menu-info { padding: 36px 0 0; background: #fff; }
.dp-sec--menu-list { padding: 46px 0 90px; background: #fff; }
.dp-menu-info { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--dp-cream2); border: 1px solid var(--dp-border); border-radius: 14px; padding: 20px 26px; flex-wrap: wrap; }
.dp-menu-info__left { display: flex; align-items: center; gap: 14px; }
.dp-menu-info__icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: var(--dp-red); color: #fff; flex-shrink: 0; }
.dp-menu-info__icon i { font-size: 24px; color: #fff; }
.dp-menu-info__title { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 17px; }
.dp-menu-info__note { font-size: 13px; color: var(--dp-muted); margin-top: 2px; }
.dp-menu-info__cta { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; height: 50px; padding: 0 24px; border-radius: 11px; background: var(--dp-red); color: #fff; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 15px; transition: background 0.15s; white-space: nowrap; }
.dp-menu-info__cta:hover { background: var(--dp-red-d); opacity: 1; }
.dp-menu-info__cta i { font-size: 15px; }

.dp-menu-cats { display: flex; flex-direction: column; gap: 58px; }
.dp-menu-cat__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 2px solid var(--dp-red); }
.dp-menu-cat__bar { width: 8px; height: 34px; border-radius: 4px; background: var(--dp-red); flex-shrink: 0; }
.dp-menu-cat__en { font-family: "Poppins", sans-serif; font-weight: 600; font-size: 11px; letter-spacing: 0.16em; color: var(--dp-green); }
.dp-menu-cat__label { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 25px; margin: 1px 0 0; }
.dp-menu-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 48px; }
.dp-menu-item { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid #F0E2D4; }
.dp-menu-item__img { width: 130px; height: 130px; border-radius: 12px; flex-shrink: 0; object-fit: cover; background: var(--dp-cream2); display: block; }
.dp-menu-item__noimg { width: 130px; height: 130px; border-radius: 12px; flex-shrink: 0; background: linear-gradient(135deg, #FFE6D2, #F6BF98); display: block; }
.dp-menu-item__body { flex: 1; min-width: 0; }
.dp-menu-item__namerow { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.dp-menu-item__name { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 16px; margin: 0; line-height: 1.4; }
.dp-menu-item__badge { color: #fff; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 11px; padding: 2px 9px; border-radius: 999px; flex-shrink: 0; }
.dp-menu-item__badge--new { background: var(--dp-red); }
.dp-menu-item__badge--pop { background: var(--dp-green); }
.dp-menu-item__desc { font-size: 12px; line-height: 1.6; color: var(--dp-muted); margin: 4px 0 0; }
.dp-menu-item__price { display: flex; align-items: baseline; gap: 2px; color: var(--dp-red); font-family: "Poppins", sans-serif; font-weight: 700; white-space: nowrap; flex-shrink: 0; }
.dp-menu-item__price .yen { font-size: 13px; }
.dp-menu-item__price .num { font-size: 20px; }
@media (max-width: 896px) { .dp-menu-grid { grid-template-columns: 1fr; column-gap: 0; } }
@media (max-width: 639px) {
  .dp-menu-info { flex-direction: column; align-items: flex-start; }
  .dp-menu-info__cta { width: 100%; justify-content: center; }
  .dp-menu-item__img, .dp-menu-item__noimg { width: 92px; height: 92px; }
  .dp-menu-cat__label { font-size: 21px; }
}

/* ============================================================
   お知らせ＆キャンペーン
   ============================================================ */
.dp-sec--news { padding: 74px 0 40px; background: #fff; }
.dp-sec--coupon { padding: 40px 0 90px; background: #fff; }
.dp-sec--shop { padding: 74px 0 90px; background: #fff; }
.dp-block-head { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.dp-block-head__bar { width: 8px; height: 28px; border-radius: 4px; background: var(--dp-red); flex-shrink: 0; }
.dp-block-head__title { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 26px; margin: 0; }
.dp-block-note { font-size: 14px; color: var(--dp-muted); margin: 0 0 28px; padding-left: 20px; }

.dp-news { border: 1px solid #F0E2D4; border-radius: 14px; overflow: hidden; }
.dp-news__item { display: flex; align-items: center; gap: 20px; padding: 24px 26px; background: #fff; }
.dp-news__item + .dp-news__item { border-top: 1px solid #F0E2D4; }
.dp-news__date { flex-shrink: 0; text-align: center; }
.dp-news__date time { display: block; font-family: "Poppins", sans-serif; font-weight: 600; font-size: 13px; color: var(--dp-muted); }
.dp-news__tag { display: inline-block; margin-top: 6px; background: var(--dp-green); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.dp-news__sep { width: 1px; height: 48px; background: #F0E2D4; flex-shrink: 0; }
.dp-news__title { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 18px; margin: 0 0 5px; }
.dp-news__text { font-size: 14px; line-height: 1.8; color: #6B564B; margin: 0; }
@media (max-width: 639px) { .dp-news__item { flex-direction: column; align-items: flex-start; gap: 12px; } .dp-news__sep { display: none; } .dp-news__date { display: flex; align-items: center; gap: 10px; } .dp-news__tag { margin-top: 0; } }

.dp-coupons { display: flex; flex-direction: column; gap: 24px; }
.dp-coupon { display: flex; border-radius: 16px; overflow: hidden; border: 1px solid var(--dp-border); }
.dp-coupon--red { box-shadow: 0 10px 28px rgba(225,49,19,0.12); }
.dp-coupon--green { box-shadow: 0 10px 28px rgba(0,147,67,0.12); border-color: #DCEFE4; }
.dp-coupon__no { position: relative; width: 230px; flex-shrink: 0; color: #fff; padding: 30px 26px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background-image: radial-gradient(circle at 100% 0%, rgba(255,255,255,0.12), transparent 50%); }
.dp-coupon--red .dp-coupon__no { background-color: var(--dp-red); }
.dp-coupon--green .dp-coupon__no { background-color: var(--dp-green); }
.dp-coupon__no-label { font-family: "Poppins", sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 0.14em; opacity: 0.9; }
.dp-coupon__no-code { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 46px; line-height: 1; margin: 4px 0 10px; }
.dp-coupon__no-type { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.18); padding: 5px 12px; border-radius: 999px; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 12px; }
.dp-coupon__no-type i { font-size: 13px; }
.dp-coupon__body { flex: 1; padding: 28px 32px; background: #fff; display: flex; flex-direction: column; justify-content: center; }
.dp-coupon__cond { display: inline-flex; align-self: flex-start; align-items: center; font-weight: 700; font-size: 12px; padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; }
.dp-coupon--red .dp-coupon__cond { background: var(--dp-cream2); color: var(--dp-red); }
.dp-coupon--green .dp-coupon__cond { background: #F2FBF6; color: var(--dp-green); }
.dp-coupon__title { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 24px; margin: 0 0 10px; line-height: 1.4; }
.dp-coupon--red .dp-coupon__title .ac { color: var(--dp-red); }
.dp-coupon--green .dp-coupon__title .ac { color: var(--dp-green); }
.dp-coupon__meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--dp-muted); }
.dp-coupon__meta i { font-size: 15px; color: var(--dp-green); flex-shrink: 0; }
.dp-coupon-use { margin-top: 26px; display: flex; align-items: center; gap: 14px; background: var(--dp-cream); border: 1px dashed #E8B9A8; border-radius: 12px; padding: 20px 24px; }
.dp-coupon-use__icon { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--dp-red); color: #fff; flex-shrink: 0; }
.dp-coupon-use__icon i { font-size: 22px; color: #fff; }
.dp-coupon-use__title { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 2px; }
.dp-coupon-use__text { font-size: 14px; line-height: 1.7; color: var(--dp-text); margin: 0; }
.dp-coupon-use__text a { color: var(--dp-red); font-weight: 700; text-decoration: none; font-family: "Poppins", sans-serif; }
.dp-coupon-use__text .em { color: var(--dp-red); font-weight: 700; }
@media (max-width: 639px) { .dp-coupon { flex-direction: column; } .dp-coupon__no { width: 100%; padding: 22px; } }

/* ============================================================
   店舗情報
   ============================================================ */
.dp-shop { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.dp-shop__logo { margin-bottom: 24px; }
.dp-shop__logo img { height: 62px; width: auto; display: block; }
.dp-shop__table { width: 100%; border-collapse: collapse; font-size: 15px; }
.dp-shop__table th { text-align: left; vertical-align: top; width: 120px; padding: 18px 16px 18px 0; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; color: var(--dp-dark); }
.dp-shop__table td { padding: 18px 0; color: var(--dp-text); line-height: 1.7; }
.dp-shop__table tr { border-top: 1px solid #F0E2D4; }
.dp-shop__table tr:last-child { border-bottom: 1px solid #F0E2D4; }
.dp-shop__table .tel { color: var(--dp-red); font-family: "Poppins", sans-serif; font-weight: 700; font-size: 22px; text-decoration: none; }
.dp-shop__btns { display: flex; gap: 12px; margin-top: 28px; }
.dp-shop__btns .dp-btn { flex: 1; height: 54px; box-shadow: 0 6px 16px rgba(225,49,19,0.28); }
.dp-shop__map-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.dp-shop__map-head i { font-size: 20px; color: var(--dp-green); }
.dp-shop__map-head h2 { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 20px; margin: 0; }
.dp-shop__map { border-radius: 16px; overflow: hidden; border: 1px solid #F0E2D4; aspect-ratio: 4 / 3; }
.dp-shop__map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 896px) { .dp-shop { grid-template-columns: 1fr; gap: 36px; } .dp-shop__table th { width: 96px; } }

/* ============================================================
   フッター
   ============================================================ */
.dp-footer { font-family: "Noto Sans JP", "Zen Kaku Gothic New", sans-serif; }
.dp-fcta { background: var(--dp-red); background-image: radial-gradient(circle at 12% 120%, rgba(255,255,255,0.10), transparent 40%); }
.dp-fcta__inner { max-width: 1200px; margin: 0 auto; padding: 42px 24px; display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.dp-fcta__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.16); color: #fff; padding: 5px 13px; border-radius: 999px; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 13px; margin-bottom: 12px; }
.dp-fcta__title { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 30px; line-height: 1.3; color: #fff; margin: 0; }
.dp-fcta__action { display: flex; align-items: center; gap: 22px; }
.dp-fcta__tel-block { text-align: right; color: #fff; line-height: 1.15; }
.dp-fcta__tel-label { font-size: 12px; opacity: 0.9; letter-spacing: 0.06em; }
.dp-fcta__tel { display: flex; align-items: center; gap: 9px; color: #fff; font-family: "Poppins", sans-serif; font-weight: 700; font-size: 38px; line-height: 1.05; text-decoration: none; }
.dp-fcta__tel .dp-icon { font-size: 28px; }
.dp-fcta__tel:hover { opacity: 0.9; }
.dp-fcta__tel-note { display: block; font-size: 12px; opacity: 0.9; margin-top: 3px; }
.dp-fcta__demae { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; height: 60px; padding: 0 28px; border-radius: 12px; background: #fff; color: var(--dp-red); font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 18px; box-shadow: 0 6px 18px rgba(0,0,0,0.18); transition: transform 0.15s; }
.dp-fcta__demae:hover { transform: translateY(-2px); opacity: 1; }
@media (max-width: 896px) {
  .dp-fcta__inner { justify-content: center; text-align: center; }
  .dp-fcta__action { flex-direction: column; gap: 18px; }
  .dp-fcta__tel-block { text-align: center; }
  .dp-fcta__tel { justify-content: center; font-size: 32px; }
}

.dp-fbody { background: var(--dp-dark); color: #D8C5B7; }
.dp-fbody__inner { max-width: 1200px; margin: 0 auto; padding: 50px 24px 30px; display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.dp-fbody__brand { max-width: 360px; }
.dp-fbody__logo { display: inline-block; background: #fff; padding: 11px 16px; border-radius: 12px; box-shadow: 0 6px 16px rgba(0,0,0,0.22); margin-bottom: 18px; }
.dp-fbody__logo img { height: 42px; width: auto; display: block; }
.dp-fbody__desc { font-size: 13px; line-height: 1.9; color: #C9B5A6; margin: 0; }
.dp-fbody__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.dp-fcol__title { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; color: #fff; font-size: 14px; margin: 0 0 14px; letter-spacing: 0.05em; }
.dp-fcol__dl { margin: 0; font-size: 13px; line-height: 1.5; }
.dp-fcol__dl > div { margin-bottom: 10px; }
.dp-fcol__dl > div:last-child { margin-bottom: 0; }
.dp-fcol__dl dt { color: #9C8779; font-size: 11px; margin-bottom: 2px; }
.dp-fcol__dl dd { margin: 0; color: #E9DBCF; }
.dp-fcol__tel { font-family: "Poppins", sans-serif; font-weight: 600; font-size: 16px; }
.dp-fcol__nav { margin: 0; padding: 0; list-style: none; font-size: 13px; display: flex; flex-direction: column; gap: 13px; }
.dp-fcol__nav a { color: #D8C5B7; text-decoration: none; }
.dp-fcol__nav a:hover { color: #fff; opacity: 1; }
.dp-fcol--btns { display: flex; flex-direction: column; gap: 12px; }
.dp-fbtn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; height: 48px; padding: 0 22px; border-radius: 10px; font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 700; font-size: 15px; transition: all 0.15s; }
.dp-fbtn--demae { background: var(--dp-red); color: #fff; }
.dp-fbtn--demae:hover { background: var(--dp-red-d); opacity: 1; }
.dp-fbtn--map { border: 1.5px solid var(--dp-green); color: #7BC79A; }
.dp-fbtn--map:hover { background: var(--dp-green); color: #fff; opacity: 1; }
.dp-fbottom { border-top: 1px solid rgba(255,255,255,0.1); }
.dp-fbottom__copy { max-width: 1200px; margin: 0 auto; padding: 18px 24px; font-size: 12px; color: #9C8779; font-family: "Poppins", sans-serif; }
@media (max-width: 639px) {
  .dp-fcta__title { font-size: 24px; }
  .dp-fbody__cols { gap: 32px; }
}

/* FontAwesome icon sizing (SVG置換) */
.dp-story__photo i { font-size: 110px; color: rgba(255,255,255,0.9); }
.dp-rec__badge i { font-size: 12px; }
.dp-flyer__cta i, .dp-menu-info__cta i { line-height: 1; }
