@charset "UTF-8";
/*
 * ======================================
 * 有限会社琉球ネクスト（スポカフェ・レキオス） — サイト固有CSS（site.css）
 * ======================================
 * 配色・フォントは scss/main.scss で @use "vars" with(...) により上書きし
 * main.css にコンパイル済み（base=#DC143C / sub=#1550A6 / accent=#00C6FD）。
 * 本ファイルは claude-design-output の固有レイアウト・余白・装飾を
 * rn- プレフィックスで補完する（共通コンポーネントで再現できない差分）。
 *
 * --------------------------------------
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * --------------------------------------
 * 共通：.rn-main / .rn-sec(--lg/--md/--sm) / .rn-inner-*(幅) / .rn-eyebrow(--blue/--cyan/--red)
 *       .img-cover / .rn-ph(--light) / .rn-cat--kome/lequios/nuchi/info
 * ヘッダー/フッター：.rn-header / .rn-menu-btn / .rn-overlay / .rn-footer / .rn-pagetop
 * 下層ヒーロー：.rn-phero(--blue/--red)
 * TOP：.rn-hero(スプリット) / .rn-top-intro / .rn-biz-* / .rn-shopcta / .rn-topnews / .rn-news-row
 * company：.rn-co-greet / .rn-co-outline / .rn-co-table
 * spocafe：.rn-sp-hero / .rn-sp-intro / .rn-sp-fade / .rn-sp-day / .rn-sp-night / .rn-sp-stat
 * komenoki：.rn-km-head / .rn-km-split / .rn-km-nuchi / .rn-km-crops / .rn-km-gallery
 * shop/contact：.rn-shop-* / .rn-ct-* / .rn-form-* / .rn-chip / .rn-type-opt
 * blog：.rn-news-hero / .rn-news-filter / .rn-news-layout / .rn-news-card / .rn-pager / .rn-side / .rn-entry-*
 *
 * --------------------------------------
 * 共通SCSSに不足していたもの（5分類）
 * --------------------------------------
 * ・構造不足：透過→スクロールで白化＋フルスクリーンオーバーレイメニュー型ヘッダー、
 *             左右分割で片側画像が画面端まで抜ける下層ヒーロー、昼夜フェード切替メディア
 * ・装飾パターン不足：色ブロック下半分のビジネスカード、curve_bg.svg＋おにぎりイラスト境界、
 *             縦書き白帯キャプション、点ドット（radial-gradient）オフセット装飾
 * ・値の粒度不足：design固有の clamp() 余白・フォント（13.5/14.5/21/23px 等）
 * ・状態不足：hover は個別実装（カード浮き・ボタン反転）
 * ・指定方向不足：—
 */

/* ============ 共通ユーティリティ ============ */
body { overflow-x: hidden; }
.rn-main { font-family: "Noto Sans JP", sans-serif; }
.img-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.rn-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font: 500 13px/1.6 "Noto Sans JP", sans-serif; color: #a99e92; text-align: center; padding: 12px; }
.rn-ph--light { color: rgba(255,255,255,.6); }

.rn-sec { padding: clamp(56px,7vw,96px) clamp(16px,4vw,44px); }
.rn-sec--lg { padding: clamp(60px,8vw,110px) clamp(16px,4vw,44px); }
.rn-sec--md { padding: clamp(48px,6vw,88px) clamp(16px,4vw,44px); }
.rn-sec--sm { padding: clamp(40px,5vw,72px) clamp(16px,4vw,44px); }

.rn-inner-760 { max-width: 760px; margin: 0 auto; }
.rn-inner-820 { max-width: 820px; margin: 0 auto; }
.rn-inner-860 { max-width: 860px; margin: 0 auto; }
.rn-inner-920 { max-width: 920px; margin: 0 auto; }
.rn-inner-960 { max-width: 960px; margin: 0 auto; }
.rn-inner-1040 { max-width: 1040px; margin: 0 auto; }
.rn-inner-1100 { max-width: 1100px; margin: 0 auto; }
.rn-inner-1120 { max-width: 1120px; margin: 0 auto; }
.rn-inner-1140 { max-width: 1140px; margin: 0 auto; }
.rn-inner-1200 { max-width: 1200px; margin: 0 auto; }

.rn-eyebrow { font: 800 12px/1 "Manrope", sans-serif; letter-spacing: .3em; display: inline-block; }
.rn-eyebrow--blue { color: #1550A6; }
.rn-eyebrow--cyan { color: #00C6FD; }
.rn-eyebrow--red { color: #DC143C; }

.rn-bg-cream { background: #FBF4EC; }
.rn-bg-cool { background: #F6F8FA; }
.rn-bg-white { background: #FEFEFE; }
.rn-bg-mist { background: #F5F8FB; }
.rn-bg-ivory { background: #f7f7f7; }

.rn-req { color: #DC143C; }
.rn-mb-36 { margin-bottom: 36px; }
.rn-hide { display: none; }
.rn-sp-br { display: none; }

/* スクロールリビール（top.js で .is-in 付与） */
.rn-reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.rn-reveal.is-in { opacity: 1; transform: none; }
.rn-reveal--d1 { transition-delay: .12s; }
.rn-reveal--d2 { transition-delay: .24s; }
.rn-reveal--d3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .rn-reveal { opacity: 1; transform: none; transition: none; }
}

/* セクション：中央から円が広がって表示 */
.rn-circle-reveal { clip-path: circle(0% at 50% 50%); transition: clip-path 1.15s cubic-bezier(.22,.61,.36,1); }
.rn-circle-reveal.is-in { clip-path: circle(150% at 50% 50%); }
@media (prefers-reduced-motion: reduce) { .rn-circle-reveal { clip-path: none; } }

/* RYUKYU NEXT 大型英字あしらい（intro→事業の間・右寄せ静止） */
.rn-bigmark { position: relative; z-index: 1; background: linear-gradient(to bottom, #f7f7f7 50%, #FEFEFE 50%); overflow: hidden; text-align: center; padding: 0; margin: clamp(-24px,-2.5vw,-8px) 0 0; line-height: 0; }
.rn-bigmark__track { position: relative; z-index: 1; display: inline-block; white-space: nowrap; font: 800 clamp(40px,10vw,140px)/.9 "Manrope", sans-serif; letter-spacing: .02em; background: linear-gradient(90deg, #DC143C, #1550A6, #00C6FD); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: 0; transform: translateY(60px); transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.2,1); }
.rn-bigmark__track.is-in { opacity: .22; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .rn-bigmark__track { opacity: .22; transform: none; transition: none; } }

.rn-secttl { text-align: center; }
.rn-secttl__ja { margin: 12px 0 0; font: 900 clamp(22px,2.6vw,32px)/1.3 "Noto Sans JP", sans-serif; color: #241c15; }

/* お知らせカテゴリー色 */
.rn-cat--kome { background: #DC143C; }
.rn-cat--lequios { background: #1550A6; }
.rn-cat--nuchi { background: #A0723E; }
.rn-cat--info { background: #3a3128; }

/* ============ ヘッダー ============ */
.rn-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: transparent; transition: background .25s ease, box-shadow .25s ease; }
.rn-header.is-solid { background: #FEFEFE; box-shadow: 0 1px 0 rgba(36,28,21,.08), 0 8px 28px rgba(36,28,21,.08); }
.rn-header__bar { position: relative; z-index: 100; display: flex; justify-content: space-between; align-items: center; gap: 22px; padding: 0 clamp(14px,2.4vw,30px); height: 84px; max-width: none; margin: 0; }
.rn-header__logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex: none; margin-right: auto; }
.rn-header__logo-crest { height: 60px; width: auto; display: block; flex: none; }
.rn-header__logo-main--ja { font-family: "Noto Sans JP", sans-serif; letter-spacing: .04em; }
.rn-header.is-solid .rn-header__logo-main--ja, .rn-header.is-open .rn-header__logo-main--ja { color: #DC143C; }
.rn-header__logo-col { display: flex; flex-direction: column; line-height: 1.05; }
.rn-header__logo-main { font: 800 24px/1 "Manrope", sans-serif; letter-spacing: .06em; color: #fff; transition: color .25s; }
.rn-header__logo-sub { font: 500 13px/1.4 "Noto Sans JP", sans-serif; letter-spacing: .14em; margin-top: 3px; color: rgba(255,255,255,.75); transition: color .25s; }
.rn-header.is-solid .rn-header__logo-main { color: #1550A6; }
.rn-header.is-solid .rn-header__logo-sub { color: #8a7f74; }
.rn-header__tel { display: flex; align-items: center; gap: 7px; text-decoration: none; font: 600 20.5px/1 "Manrope", sans-serif; letter-spacing: .02em; color: #fff; transition: color .25s; }
.rn-header__tel i { color: #fff; font-size: 18px; }
.rn-header.is-solid .rn-header__tel i, .rn-header.is-open .rn-header__tel i { color: #241c15; }
.rn-header.is-solid .rn-header__tel { color: #241c15; }
.rn-header__sns { display: flex; align-items: center; gap: 13px; }
.rn-header__sns-item { display: flex; flex-direction: column; align-items: center; gap: 4px; text-decoration: none; }
.rn-header__sns-cap { font: 700 10px/1 "Noto Sans JP", sans-serif; letter-spacing: .04em; color: rgba(255,255,255,.85); transition: color .25s; }
.rn-header.is-solid .rn-header__sns-cap, .rn-header.is-open .rn-header__sns-cap { color: #7a6f64; }
.rn-header__sns-link { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1.5px solid rgba(255,255,255,.55); border-radius: 50%; color: rgba(255,255,255,.85); transition: color .25s, border-color .25s; font-size: 21px; }
.rn-header.is-solid .rn-header__sns-link { color: #7a6f64; border-color: rgba(122,111,100,.45); }
.rn-header__sns-link:hover { color: #00C6FD; border-color: #00C6FD; }
.rn-header__sns-link--ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: transparent; color: #fff; }
.rn-header.is-solid .rn-header__sns-link--ig, .rn-header.is-open .rn-header__sns-link--ig { color: #fff; border-color: transparent; }
.rn-header__sns-link--ig:hover { color: #fff; border-color: transparent; filter: brightness(1.08); }
.rn-header__cta { display: flex; align-items: center; gap: 6px; background: #DC143C; color: #fff; text-decoration: none; font: 700 13.5px/1 "Noto Sans JP", sans-serif; padding: 10px 18px; border-radius: 999px; letter-spacing: .03em; }
.rn-header__cta:hover { background: #c1052f; color: #fff; }
.rn-menu-btn { display: flex; flex: none; align-items: center; gap: 9px; height: 38px; padding: 0 15px; border-radius: 999px; background: transparent; cursor: pointer; color: #fff; border: 1px solid rgba(255,255,255,.4); transition: color .25s, border-color .25s; }
.rn-header.is-solid .rn-menu-btn { color: #241c15; border-color: rgba(36,28,21,.25); }
.rn-menu-btn:hover { border-color: #00C6FD; }
.rn-menu-btn__label { font: 800 13px/1 "Manrope", sans-serif; letter-spacing: .18em; color: currentColor; }
.rn-menu-btn__close { display: none; }
.rn-header.is-open .rn-menu-btn__open { display: none; }
.rn-header.is-open .rn-menu-btn__close { display: block; }
.rn-header.is-open { background: #FEFEFE; box-shadow: 0 1px 0 rgba(36,28,21,.08); }
.rn-header.is-open .rn-header__tel, .rn-header.is-open .rn-menu-btn { color: #241c15; }
.rn-header.is-open .rn-header__logo-main { color: #1550A6; }
.rn-header.is-open .rn-header__logo-sub { color: #8a7f74; }
.rn-header.is-open .rn-header__sns-link { color: #7a6f64; border-color: rgba(122,111,100,.45); }
/* MENU展開中もInstagramアイコンは白のまま（上の is-open 指定に上書きされないよう後ろに置く） */
.rn-header.is-open .rn-header__sns-link--ig { color: #fff; border-color: transparent; }
.rn-header.is-open .rn-menu-btn { border-color: rgba(36,28,21,.25); }
/* MENU展開中は、MENUボタンより左の電話・SNS・注文ボタンを非表示（ロゴとMENUのみ残す） */
.rn-header.is-open .rn-header__tel,
.rn-header.is-open .rn-header__sns,
.rn-header.is-open .rn-header__cta { display: none; }

@keyframes rnFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes rnSlideUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.rn-overlay { display: none; position: fixed; left: 0; right: 0; top: 84px; bottom: 0; z-index: 99; background: #FEFEFE; overflow: auto; }
.rn-header.is-open .rn-overlay { display: block; animation: rnFadeIn .25s ease both; }
.rn-overlay__inner { min-height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 56px clamp(16px,4vw,44px); box-sizing: border-box; }
.rn-overlay__nav { display: flex; flex-direction: column; align-items: center; gap: 6px; animation: rnSlideUp .35s ease both; }
.rn-overlay__link { display: flex; flex-direction: column; align-items: center; gap: 7px; text-decoration: none; text-align: center; font: 900 clamp(19px,2.2vw,25px)/1.3 "Noto Sans JP", sans-serif; padding: 13px 20px; color: #241c15; transition: color .18s; }
.rn-overlay__link:hover { color: #1550A6; }
.rn-overlay__link.is-active { color: #1550A6; }
.rn-overlay__link--red:hover { color: #DC143C; }
.rn-overlay__link--red.is-active { color: #DC143C; }
.rn-overlay__foot { display: flex; align-items: center; gap: 18px; margin-top: 44px; padding-top: 32px; border-top: 1px solid rgba(36,28,21,.12); animation: rnSlideUp .45s ease both; flex-wrap: wrap; justify-content: center; }
.rn-overlay__tel { display: flex; align-items: center; gap: 8px; font: 800 20px/1 "Manrope", sans-serif; color: #241c15; text-decoration: none; }
.rn-overlay__tel i { color: #1550A6; }
.rn-overlay__cta { display: flex; align-items: center; gap: 8px; background: #DC143C; color: #fff; text-decoration: none; font: 700 13.5px/1 "Noto Sans JP", sans-serif; padding: 13px 24px; border-radius: 999px; }
.rn-overlay__cta:hover { background: #c1052f; color: #fff; }
.rn-overlay__ig { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; margin-top: 22px; border-radius: 50%; background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; text-decoration: none; font-size: 22px; transition: filter .2s; animation: rnSlideUp .4s ease both; }
.rn-overlay__ig:hover { filter: brightness(1.08); color: #fff; }
.rn-overlay__sns { display: flex; align-items: flex-start; gap: 26px; margin-top: 22px; animation: rnSlideUp .4s ease both; }
.rn-overlay__sns .rn-overlay__ig { margin-top: 0; animation: none; }
.rn-overlay__ig-item { display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; }
.rn-overlay__ig-cap { font: 700 11.5px/1 "Noto Sans JP", sans-serif; letter-spacing: .04em; color: #241c15; }

/* ============ フッター ============ */
.rn-footer { position: relative; background: linear-gradient(165deg, #10141c 0%, #0a0d13 55%, #06080c 100%); color: #e9e2d9; }
.rn-footer--red { background: linear-gradient(165deg, #54101d 0%, #38080f 55%, #230409 100%); }
.rn-footer--blue { background: linear-gradient(165deg, #0e3a63 0%, #0a2b4c 55%, #061c33 100%); }
.rn-footer__inner { position: relative; max-width: 1200px; margin: 0 auto; padding: 64px clamp(16px,4vw,44px) 0; }
.rn-footer__access-head { text-align: center; margin-bottom: 40px; }
.rn-footer__en { font: 700 12px/1 "Manrope", sans-serif; letter-spacing: .34em; color: #00C6FD; }
.rn-footer__access-title { margin: 14px 0 0; font: 900 26px/1.3 "Noto Sans JP", sans-serif; color: #fff; }
.rn-footer__maps { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.rn-footer__map-card { background: rgba(255,255,255,.04); border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); }
.rn-footer__map-head { display: flex; align-items: center; gap: 10px; padding: 16px 20px; }
.rn-footer__map-head--kome { background: #DC143C; }
.rn-footer__map-head--lequios { background: #1550A6; }
.rn-footer__map-head span { font: 900 15px/1 "Noto Sans JP", sans-serif; color: #fff; }
.rn-footer__map-embed iframe { border: 0; display: block; filter: grayscale(.15); }
.rn-footer__map-addr { padding: 16px 20px; font: 500 13px/1.7 "Noto Sans JP", sans-serif; color: #bcb2a7; }
.rn-footer__cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(32px,5vw,64px); align-items: start; margin-top: 56px; padding-top: 44px; border-top: 1px solid rgba(255,255,255,.1); }
.rn-footer__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 18px; }
.rn-footer__logo-col { display: flex; flex-direction: column; line-height: 1.1; }
.rn-footer__logo-main { font: 800 16px/1 "Manrope", sans-serif; letter-spacing: .06em; color: #fff; }
.rn-footer__logo-sub { font: 500 10px/1.4 "Noto Sans JP", sans-serif; color: #8a7f74; letter-spacing: .12em; margin-top: 3px; }
.rn-footer__desc { margin: 0; font: 500 13px/1.9 "Noto Sans JP", sans-serif; color: #9c9188; max-width: 320px; }
.rn-footer__tel { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font: 700 22px/1 "Manrope", sans-serif; color: #fff; text-decoration: none; letter-spacing: .01em; }
.rn-footer__tel i { color: #00C6FD; font-size: 18px; }
.rn-footer__col-head { font: 700 11px/1 "Manrope", sans-serif; letter-spacing: .2em; color: #00C6FD; margin-bottom: 18px; }
.rn-footer__nav-link { display: block; padding: 8px 0; text-decoration: none; font: 500 13.5px/1 "Noto Sans JP", sans-serif; color: #cfc7bf; }
.rn-footer__nav-link:hover { color: #00C6FD; }
.rn-footer__shop-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: #DC143C; color: #fff; text-decoration: none; font: 700 14px/1 "Noto Sans JP", sans-serif; padding: 15px 18px; border-radius: 999px; margin-bottom: 16px; }
.rn-footer__shop-btn:hover { background: #c1052f; color: #fff; }
.rn-footer__sns-row { display: flex; flex-wrap: wrap; gap: 12px; }
.rn-footer__sns-link { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(255,255,255,.16); color: #e9e2d9; text-decoration: none; font-size: 20px; }
.rn-footer__sns-link:hover { border-color: #00C6FD; color: #00C6FD; }
.rn-footer__sns-link--labeled { width: auto; gap: 9px; padding: 0 16px; }
.rn-footer__sns-label { font: 600 13px/1 "Manrope", "Noto Sans JP", sans-serif; letter-spacing: .02em; }
.rn-footer__sns-note { margin: 14px 0 0; font: 500 11.5px/1.7 "Noto Sans JP", sans-serif; color: #fff; }
.rn-footer__copyright { margin-top: 44px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); text-align: center; font: 500 11.5px/1.6 "Manrope", sans-serif; color: #7c7268; letter-spacing: .04em; }

/* ============ ページトップ ============ */
.rn-pagetop { position: fixed; right: 20px; bottom: 20px; width: 48px; height: 48px; border-radius: 50%; background: #DC143C; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s; z-index: 90; }
.rn-pagetop.is-visible { opacity: 1; visibility: visible; transform: none; }
.rn-pagetop:hover { background: #c1052f; }

/* ============ 下層ページヒーロー（左右分割・片側画像が端まで抜ける） ============ */
.rn-phero { position: relative; overflow: hidden; }
.rn-phero--blue { background: linear-gradient(120deg, #0b8fd4 0%, #0879B8 45%, #075f92 100%); }
.rn-phero--red { background: linear-gradient(120deg, #e83653 0%, #DC143C 45%, #ad0f2f 100%); }
.rn-phero__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px,4vw,56px); align-items: center; padding: calc(84px + clamp(13px,2.2vw,27px)) 0 calc(84px + clamp(13px,2.2vw,27px)); padding-left: max(clamp(16px,4vw,44px), calc((100vw - 1280px)/2)); }
.rn-phero__eyebrow { font: 800 13px/1 "Manrope", sans-serif; letter-spacing: .32em; }
.rn-phero__eyebrow--cyan { color: #00C6FD; }
.rn-phero__eyebrow--peach { color: #ffd9c2; }
.rn-phero__title { margin: 22px 0 0; font: 900 clamp(28px,4vw,44px)/1.3 "Noto Sans JP", sans-serif; color: #fff; }
.rn-phero__title--km { font-size: clamp(28px,4.4vw,50px); line-height: 1.25; }
.rn-phero__title--shop { font-size: clamp(26px,4vw,44px); }
.rn-phero__title small { font-size: .55em; font-weight: 700; }
.rn-km-amp { color: #f4b58e; font-size: .7em; }
.rn-phero__lead { margin: 26px 0 0; font: 500 clamp(14px,1.2vw,17px)/2.1 "Noto Sans JP", sans-serif; color: #e6ddd3; text-wrap: pretty; }
.rn-phero__lead--peach { color: #ffdccb; }
.rn-phero__lead--soft { color: rgba(255,255,255,.85); }
.rn-phero__media { position: relative; border-radius: 6px 0 0 6px; overflow: hidden; aspect-ratio: 21/9; background: #0f2340; }

/* ============ TOP：スプリットヒーロー ============ */
.rn-hero { position: relative; background: #0b1b2e; }
.rn-hero__grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.rn-hero__half { display: block; position: relative; min-height: 520px; overflow: hidden; text-decoration: none; }
.rn-hero__img { position: absolute; inset: 0; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.rn-hero__half:hover .rn-hero__img { transform: scale(1.07); }
.rn-hero__veil { position: absolute; inset: 0; pointer-events: none; transition: opacity .5s ease; }
.rn-hero__half:hover { opacity: 1; }
.rn-hero__half:hover .rn-hero__veil { opacity: 0; }
.rn-hero__half:hover .rn-hero__img { opacity: 1; }
.rn-hero__veil--day { background: linear-gradient(180deg, rgba(120,10,30,.15) 0%, rgba(120,10,30,.05) 40%, rgba(90,8,24,.82) 100%); }
.rn-hero__veil--night { background: linear-gradient(180deg, rgba(8,20,40,.35) 0%, rgba(8,20,40,.15) 40%, rgba(6,16,34,.9) 100%); }
.rn-hero__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(28px,4vw,52px); pointer-events: none; display: flex; align-items: center; gap: clamp(14px,1.6vw,22px); }
.rn-hero__cap-logo { flex: none; display: block; width: clamp(56px,6vw,74px); height: auto; filter: drop-shadow(0 8px 20px rgba(0,0,0,.5)); }
.rn-hero__cap-title { margin: 0; font: 900 clamp(24px,2.7vw,38px)/1.2 "Noto Sans JP", sans-serif; color: #fff; text-shadow: 0 2px 20px rgba(60,0,15,.5); }
.rn-hero__cap-title small { font-size: .6em; font-weight: 700; }
.rn-hero__cap-title .cyan { color: #00C6FD; }
.rn-hero__cap-text { margin: 10px 0 0; font: 500 13.5px/1.7 "Noto Sans JP", sans-serif; max-width: 640px; }
.rn-hero__cap-text--day { color: #ffe6d8; }
.rn-hero__cap-text--night { color: #cfeeff; }
.rn-hero__plate { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: min(760px,88%); text-align: center; z-index: 5; }
.rn-hero__plate p { display: inline-block; margin: 0; font: 900 clamp(17px,2.4vw,31px)/1.65 "Noto Sans JP", sans-serif; color: #fff; letter-spacing: .01em; padding: clamp(18px,2.6vw,30px) clamp(15px,3.4vw,48px); background: linear-gradient(120deg, rgba(220,20,60,.92) 0%, rgba(21,80,166,.92) 100%); border: 1px solid rgba(255,255,255,.28); border-radius: 16px; box-shadow: 0 20px 55px rgba(0,0,0,.45); backdrop-filter: blur(3px); text-shadow: 0 2px 14px rgba(0,0,0,.35); }
.rn-hero__plate p::before { content: ""; position: absolute; left: 14px; right: 14px; top: 9px; height: 2px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent); }
.rn-hero__plate p { position: relative; overflow: hidden; }

/* ============ TOP：イントロ ============ */
.rn-top-intro { text-align: center; }
.rn-top-intro__eyebrowwrap { margin-bottom: 18px; }
.rn-top-intro__ttl { margin: 0 0 26px; font: 900 clamp(24px,3vw,36px)/1.5 "Noto Sans JP", sans-serif; color: #241c15; }
.rn-top-intro__lead { margin: 0; font: 500 clamp(14px,1.1vw,16px)/2.15 "Noto Sans JP", sans-serif; color: #4a4139; text-wrap: pretty; }

/* ============ TOP：3事業 ============ */
.rn-biz-head { text-align: center; margin-bottom: 52px; }
.rn-biz-head__ttl { margin: 14px 0 0; font: 900 clamp(24px,3vw,34px)/1.4 "Noto Sans JP", sans-serif; color: #241c15; }
.rn-biz-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.rn-biz-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 6px 24px rgba(36,28,21,.08); transition: transform .25s ease; }
.rn-biz-card:hover { transform: translateY(-4px); }
.rn-biz-card__media { position: relative; aspect-ratio: 4/3; background: #eef3f8; }
.rn-biz-card__body { flex: 1; padding: 24px 26px; display: flex; align-items: center; gap: 16px; }
.rn-biz-card__textcol { flex: 1; min-width: 0; }
.rn-biz-card__arrow { margin-left: auto; }
.rn-biz-card__body--blue { background: #1550A6; }
.rn-biz-card__body--red { background: #DC143C; }
.rn-biz-card__body--brown { background: #A0723E; }
.rn-biz-card__badge { display: inline-block; font: 800 11px/1 "Manrope", sans-serif; letter-spacing: .08em; padding: 6px 12px; border-radius: 999px; margin-bottom: 13px; }
.rn-biz-card__badge--cyan { background: #00C6FD; color: #06264a; }
.rn-biz-card__badge--onred { background: #fff; color: #DC143C; }
.rn-biz-card__badge--onbrown { background: #fff; color: #A0723E; }
.rn-biz-card__title { margin: 0; font: 900 21px/1.35 "Noto Sans JP", sans-serif; color: #fff; }
.rn-biz-card__text { margin: 8px 0 0; font: 500 13px/1.7 "Noto Sans JP", sans-serif; }
.rn-biz-card__text--blue { color: #cfe6fa; }
.rn-biz-card__text--red { color: #ffdfd2; }
.rn-biz-card__text--brown { color: #f3e3cd; }
.rn-biz-card__arrow { flex: none; display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: #fff; font-size: 17px; }
.rn-biz-card__arrow--blue { color: #1550A6; }
.rn-biz-card__arrow--red { color: #DC143C; }
.rn-biz-card__arrow--brown { color: #A0723E; }

/* ============ TOP：SHOP CTA ============ */
.rn-shopcta { padding: clamp(40px,6vw,72px) clamp(16px,4vw,44px); }
.rn-shopcta__box { max-width: 1120px; margin: 0 auto; position: relative; overflow: hidden; border-radius: 26px; background: linear-gradient(120deg, #DC143C 0%, #a80f2e 100%); }
.rn-shopcta__grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; }
.rn-shopcta__body { padding: clamp(34px,4vw,60px); }
.rn-shopcta__eyebrow { font: 800 11px/1 "Manrope", sans-serif; letter-spacing: .28em; color: #ffd0b8; }
.rn-shopcta__ttl { margin: 16px 0 14px; font: 900 clamp(23px,2.6vw,34px)/1.4 "Noto Sans JP", sans-serif; color: #fff; }
.rn-shopcta__text { margin: 0 0 26px; font: 500 14px/1.9 "Noto Sans JP", sans-serif; color: #ffe3d8; max-width: 440px; }
.rn-shopcta__btn { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: #DC143C; text-decoration: none; font: 800 15px/1 "Noto Sans JP", sans-serif; padding: 17px 30px; border-radius: 999px; transition: background .2s, color .2s; }
.rn-shopcta__btn:hover { background: #1c150f; color: #fff; }
.rn-shopcta__media { position: relative; min-height: 280px; align-self: stretch; }

/* ============ TOP：NEWS ============ */
.rn-topnews__grid { display: grid; grid-template-columns: 280px 1fr; gap: clamp(28px,4vw,56px); align-items: start; }
.rn-topnews__head { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.rn-topnews__ttl { margin: 0; font: 900 clamp(23px,2.6vw,32px)/1.3 "Noto Sans JP", sans-serif; color: #241c15; }
.rn-topnews__more { margin-top: 6px; font: 700 13px/1 "Noto Sans JP", sans-serif; color: #241c15; text-decoration: none; border: 1px solid rgba(36,28,21,.2); padding: 12px 20px; border-radius: 999px; transition: background .2s, color .2s; white-space: nowrap; }
@media (max-width: 820px) { .rn-topnews__grid { grid-template-columns: 1fr; } }
.rn-topnews__more:hover { background: #241c15; color: #fff; }
.rn-topnews__list { border-top: 1px solid rgba(36,28,21,.1); }
.rn-news-row { display: flex; align-items: center; gap: 20px; padding: 20px 6px; border-bottom: 1px solid rgba(36,28,21,.1); text-decoration: none; color: inherit; flex-wrap: wrap; transition: background .2s; }
.rn-news-row:hover { background: #FBF4EC; }
.rn-news-row__date { font: 700 13px/1 "Manrope", sans-serif; color: #8a7f74; min-width: 96px; }
.rn-news-row__cat { font: 700 11px/1 "Noto Sans JP", sans-serif; color: #fff; padding: 5px 11px; border-radius: 999px; }
.rn-news-row__title { font: 500 14.5px/1.6 "Noto Sans JP", sans-serif; color: #241c15; flex: 1; min-width: 200px; }

/* ============ COMPANY ============ */
.rn-co-greet__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(28px,4vw,56px); align-items: start; }
.rn-co-greet__gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; aspect-ratio: 1/1; }
.rn-co-greet__fig { position: relative; border-radius: 16px; overflow: hidden; background: #f0e7db; }
.rn-co-greet__fig:nth-child(1) { grid-column: 2; grid-row: 1; }
.rn-co-greet__fig:nth-child(2) { grid-column: 1; grid-row: 1 / span 2; }
.rn-co-greet__fig:nth-child(3) { grid-column: 2; grid-row: 2; }
.rn-co-greet__ttl { margin: 14px 0 26px; font: 900 clamp(21px,2.4vw,30px)/1.5 "Noto Sans JP", sans-serif; color: #241c15; }
.rn-co-greet__text { font: 500 15px/2.1 "Noto Sans JP", sans-serif; color: #4a4139; text-wrap: pretty; }
.rn-co-greet__text p { margin: 0 0 20px; }
.rn-co-greet__text p:last-child { margin: 0; }
.rn-co-greet__sign { margin-top: 34px; text-align: right; }
.rn-co-greet__sign-role { display: block; margin-bottom: 6px; font: 500 12px/1 "Noto Sans JP", sans-serif; color: #8a7f74; }
.rn-co-greet__sign-name { font: 900 20px/1 "Noto Sans JP", sans-serif; color: #241c15; }
.rn-co-table { margin: 0; background: #fff; border-radius: 18px; overflow: hidden; border: 1px solid rgba(36,28,21,.08); }
.rn-co-table__row { display: flex; border-bottom: 1px solid rgba(36,28,21,.08); }
.rn-co-table__row:last-child { border-bottom: 0; }
.rn-co-table__dt { flex: none; width: 160px; padding: 20px 24px; background: #0879B8; font: 700 14px/1.6 "Noto Sans JP", sans-serif; color: #fff; }
.rn-co-table__dd { margin: 0; padding: 20px 24px; font: 500 14.5px/1.7 "Noto Sans JP", sans-serif; color: #241c15; }
.rn-co-tel { display: flex; align-items: center; gap: 10px; }
.rn-co-tel + .rn-co-tel { margin-top: 8px; }
.rn-co-tel-tag { flex: none; display: inline-flex; align-items: center; background: #FBF4EC; border: 1px solid #e6d3bd; border-radius: 6px; padding: 3px 10px; font: 700 12.5px/1.5 "Noto Sans JP", sans-serif; color: #DC143C; }
.rn-co-biz-list { margin: 0; padding-left: 1.3em; list-style: disc; }
.rn-co-biz-list li { margin: 3px 0; }
/* テーブル内リンク（電話番号の自動リンク等）は他項目と同じ黒 */
.rn-co-table__dd a { color: #241c15; text-decoration: none; }

/* ============ SPOCAFE ============ */
.rn-sp-hero-titlerow { display: flex; align-items: center; gap: clamp(16px,2vw,24px); margin-top: 22px; }
.rn-sp-hero-logo { width: clamp(72px,8vw,104px); height: auto; flex-shrink: 0; filter: drop-shadow(0 10px 26px rgba(0,0,0,.45)); }
.rn-sp-hero-title { margin: 0; font: 900 clamp(32px,4.6vw,58px)/1.18 "Manrope", sans-serif; color: #fff; letter-spacing: .01em; }
.rn-sp-hero-title .cyan { color: #00C6FD; }
.rn-sp-intro { background: #fff; padding: clamp(48px,6vw,84px) clamp(16px,4vw,44px); }
.rn-sp-intro__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px,4vw,56px); align-items: center; max-width: 1200px; margin: 0 auto; }
.rn-sp-intro__ttl { margin: 0 0 24px; font: 900 clamp(26px,3.2vw,40px)/1.4 "Noto Sans JP", sans-serif; color: #0a2f52; }
.rn-sp-intro__ttl .cyan { color: #00C6FD; }
.rn-sp-intro__text { margin: 0; font: 500 clamp(15px,1.3vw,17px)/2.2 "Noto Sans JP", sans-serif; color: #0a2f52; text-wrap: pretty; }
.rn-sp-intro__btns { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.rn-sp-btn-day { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #06264a; text-decoration: none; font: 800 14px/1 "Noto Sans JP", sans-serif; padding: 16px 30px; border-radius: 999px; border: 1.5px solid #06264a; transition: all .2s; }
.rn-sp-btn-day:hover { background: #1550A6; border-color: #1550A6; color: #fff; }
.rn-sp-btn-night { display: inline-flex; align-items: center; gap: 8px; background: #07152b; color: #fff; text-decoration: none; font: 800 14px/1 "Noto Sans JP", sans-serif; padding: 16px 30px; border-radius: 999px; border: 1.5px solid #07152b; transition: all .2s; }
.rn-sp-btn-night:hover { background: #1550A6; border-color: #1550A6; }
.rn-sp-intro__media { position: relative; }
.rn-sp-intro__dots { position: absolute; right: -22px; bottom: -22px; width: 100%; height: 100%; border-radius: 6px; background-image: repeating-linear-gradient(45deg, rgba(0,198,253,.55) 0, rgba(0,198,253,.55) 2px, transparent 2px, transparent 7px); pointer-events: none; }
.rn-sp-fade { position: relative; overflow: hidden; background: #07152b; border-radius: 6px; aspect-ratio: 16/10; }
.rn-sp-fade__layer { position: absolute; inset: 0; }
.fade-day, .fade-night { transition: opacity 1.2s ease; }
.fade-day { opacity: 1; }
.fade-night { opacity: 0; }
.rn-sp-fade__caps { position: absolute; top: 0; right: clamp(18px,3vw,40px); bottom: 0; display: flex; align-items: center; gap: 18px; pointer-events: none; }
.rn-sp-fade__caps-inner { position: relative; height: 90%; }
.rn-sp-fade__capgrp { position: absolute; inset: 0; display: flex; gap: 14px; flex-direction: row-reverse; }
.rn-sp-vtext { writing-mode: vertical-rl; background: #fff; color: #0a2f52; font: 700 clamp(16px,1.7vw,23px)/1 "Noto Sans JP", sans-serif; letter-spacing: .2em; padding: 20px 12px; box-shadow: 0 8px 30px rgba(7,21,43,.25); }
.rn-sp-vtext--end { align-self: flex-end; }
.rn-sp-day { background: #F6F8FA; scroll-margin-top: 110px; }
.rn-sp-curve { display: block; width: 100%; height: auto; }
.rn-sp-day__inner { max-width: 1140px; margin: 0 auto; padding: 0 clamp(16px,4vw,44px) clamp(60px,8vw,110px); }
.rn-sp-dayhead { position: relative; text-align: center; max-width: 720px; margin: 0 auto 56px; }
.rn-sp-daybadge { display: inline-flex; align-items: center; gap: 10px; background: #00C6FD; color: #fff; font: 800 12px/1 "Manrope", sans-serif; letter-spacing: .16em; padding: 8px 16px; border-radius: 999px; }
.rn-sp-dayhead__ttl { margin: 20px 0 12px; font: 900 clamp(24px,3vw,36px)/1.35 "Noto Sans JP", sans-serif; color: #0a2f52; }
.rn-sp-dayhead__time { font: 700 16px/1 "Manrope", sans-serif; color: #1550A6; margin-bottom: 16px; }
.rn-sp-dayhead__time small { font: 500 13px/1 "Noto Sans JP", sans-serif; color: #6a7c8c; }
.rn-sp-dayhead__text { margin: 0; font: 500 14.5px/2 "Noto Sans JP", sans-serif; color: #3a4a58; text-wrap: pretty; }
.rn-sp-subttl { display: flex; align-items: center; gap: 12px; margin: 0 0 20px; font: 900 22px/1 "Noto Sans JP", sans-serif; color: #07152b; }
.rn-sp-subttl::before { content: ""; flex: none; width: 5px; height: 1.05em; background: #00C6FD; border-radius: 3px; }
.rn-sp-subttl--white { color: #fff; }
.rn-sp-food-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 44px; }
.rn-sp-food { background: #fff; border-radius: 8px; overflow: hidden; }
.rn-sp-food__media { position: relative; aspect-ratio: 3/2; background: #eef6fb; }
.rn-sp-food__badge { position: absolute; top: 12px; left: 12px; background: #DC143C; color: #fff; font: 800 15px/1 "Noto Sans JP", sans-serif; padding: 6px 12px; border-radius: 999px; }
.rn-sp-food__body { padding: 20px; }
.rn-sp-food__ttl { margin: 0 0 8px; font: 900 16px/1.4 "Noto Sans JP", sans-serif; color: #0a2f52; }
.rn-sp-food__text { margin: 0; font: 500 13px/1.8 "Noto Sans JP", sans-serif; color: #4a5a68; }
.rn-sp-drink-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rn-sp-drink { background: #fff; border: 1px solid rgba(10,47,82,.12); border-radius: 16px; padding: 22px 24px; }
.rn-sp-drink__ttl { margin: 0 0 6px; font: 900 15px/1.4 "Noto Sans JP", sans-serif; color: #0a2f52; }
.rn-sp-drink__text { margin: 0; font: 500 13px/1.8 "Noto Sans JP", sans-serif; color: #4a5a68; }
.rn-sp-menu-btnwrap { display: flex; justify-content: center; margin-top: 44px; }
.rn-sp-menu-btn { display: inline-flex; align-items: center; gap: 10px; background: #07152b; color: #fff; text-decoration: none; font: 800 15px/1 "Noto Sans JP", sans-serif; padding: 18px 40px; border-radius: 999px; transition: background .2s; }
.rn-sp-menu-btn:hover { background: #1550A6; }
.rn-sp-night { padding: clamp(60px,8vw,110px) clamp(16px,4vw,44px); background: #07152b; scroll-margin-top: 110px; }
.rn-sp-night__inner { max-width: 1140px; margin: 0 auto; }
.rn-sp-night__hero { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,48px); align-items: center; margin-bottom: 56px; }
.rn-sp-night__media { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4/3; background: #0f2340; }
.rn-sp-night__media-glow { position: absolute; inset: 0; box-shadow: inset 0 0 90px rgba(0,198,253,.3); pointer-events: none; }
.rn-sp-night__badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(0,198,253,.15); color: #00C6FD; font: 800 12px/1 "Manrope", sans-serif; letter-spacing: .16em; padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(0,198,253,.4); }
.rn-sp-night__ttl { margin: 20px 0 12px; font: 900 clamp(24px,3vw,36px)/1.35 "Noto Sans JP", sans-serif; color: #fff; }
.rn-sp-night__time { font: 700 16px/1 "Manrope", sans-serif; color: #00C6FD; margin-bottom: 16px; }
.rn-sp-night__text { margin: 0; font: 500 14.5px/2 "Noto Sans JP", sans-serif; color: #cfe4f5; }
.rn-sp-night__stats { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.rn-sp-stat { background: rgba(0,198,253,.12); border: 1.5px solid #00C6FD; border-radius: 12px; padding: 14px 20px; }
.rn-sp-stat__num { font: 800 clamp(26px,2.4vw,34px)/1 "Manrope", sans-serif; color: #00C6FD; }
.rn-sp-stat__num small { font: 800 15px/1 "Noto Sans JP", sans-serif; color: #fff; margin-left: 4px; }
.rn-sp-stat--plain { background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.3); display: flex; align-items: center; }
.rn-sp-stat__label { font: 700 15px/1.6 "Noto Sans JP", sans-serif; color: #fff; }
.rn-sp-ndrink-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 44px; }
.rn-sp-ndrink { background: #0f2340; border: 1px solid rgba(0,198,253,.22); border-radius: 18px; padding: 26px 28px; }
.rn-sp-ndrink__ttl { margin: 0 0 14px; font: 900 15px/1 "Noto Sans JP", sans-serif; color: #fff; }
.rn-sp-ndrink__item { padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.08); font: 500 14px/1.5 "Noto Sans JP", sans-serif; color: #cfe4f5; }
.rn-sp-nfood-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.rn-sp-nfood { background: #0f2340; border: 1px solid rgba(0,198,253,.22); border-radius: 16px; padding: 22px 24px; font: 700 15px/1.6 "Noto Sans JP", sans-serif; color: #fff; }
.rn-sp-nfood small { display: block; font: 500 13px/1.6 "Noto Sans JP", sans-serif; color: #9db8d0; }
.rn-sp-note { margin: 20px 0 0; font: 500 12.5px/1.6 "Noto Sans JP", sans-serif; color: #7d99b3; }

/* ============ KOMENOKI ============ */
.rn-km-head { position: relative; text-align: center; margin-bottom: 52px; }
.rn-km-badge { display: inline-flex; align-items: center; gap: 10px; color: #fff; font: 800 12px/1 "Manrope", sans-serif; letter-spacing: .14em; padding: 9px 18px; border-radius: 999px; }
.rn-km-badge--red { background: #DC143C; }
.rn-km-badge--brown { background: #3a2811; }
.rn-km-head__ttl { margin: 22px 0 0; font: 900 clamp(23px,3vw,36px)/1.45 "Noto Sans JP", sans-serif; color: #241c15; text-align: center; text-wrap: balance; word-break: auto-phrase; }
.rn-km-head__deco { display: block; width: 170px; height: auto; margin: 14px auto 0; }
.rn-km-head__deco--silkie { width: 180px; }
.rn-km-head__deco--egg { width: 140px; }
.rn-km-head__deco--between { margin: 16px auto 6px; }
.rn-km-head__deco--top { margin: 0 auto 16px; }
.rn-km-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,70px); align-items: center; }
.rn-km-split--mb { margin-bottom: 36px; }
.rn-km-split--mb44 { margin-bottom: 44px; }
.rn-km-split__media { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4/3; background: #f0e7db; }
.rn-km-split__media--dark { background: #4a3a1e; }
.rn-km-mediawrap { position: relative; }
.rn-km-mediawrap .rn-km-split__media { position: relative; z-index: 1; }
.rn-km-stripe { position: absolute; right: -18px; bottom: -18px; width: 100%; height: 100%; border-radius: 8px; background: repeating-linear-gradient(45deg, #E4D5B7 0, #E4D5B7 2px, transparent 2px, transparent 7px); z-index: 0; pointer-events: none; }
.rn-km-split__eyebrow { font: 900 14px/1 "Manrope", sans-serif; color: #DC143C; letter-spacing: .06em; }
.rn-km-split__ttl { margin: 12px 0 25px; font: 900 clamp(20px,2.3vw,27px)/1.4 "Noto Sans JP", sans-serif; color: #241c15; }
.rn-km-split__ttl--noeyebrow { margin-top: 0; }
.rn-km-split__text { margin: 0; font: 500 15px/2.05 "Noto Sans JP", sans-serif; color: #4a4139; text-wrap: pretty; }
.rn-km-tag { margin-top: 20px; display: inline-flex; align-items: center; gap: 10px; background: #FBF4EC; border: 1px solid #e6d3bd; border-radius: 12px; padding: 12px 18px; font: 700 13.5px/1.5 "Noto Sans JP", sans-serif; color: #A0723E; }
.rn-km-order-btn { display: inline-flex; align-items: center; gap: 9px; margin-top: 24px; background: #DC143C; color: #fff; text-decoration: none; font: 800 14px/1 "Noto Sans JP", sans-serif; padding: 15px 26px; border-radius: 999px; transition: background .2s; }
.rn-km-order-btn:hover { background: #a80f2e; color: #fff; }
.rn-km-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.rn-km-tel-btn { display: inline-flex; align-items: center; gap: 9px; margin-top: 24px; background: #fff; color: #DC143C; text-decoration: none; font: 800 14px/1 "Noto Sans JP", sans-serif; padding: 14px 24px; border: 1.5px solid #DC143C; border-radius: 999px; transition: background .2s, color .2s; }
.rn-km-tel-btn:hover { background: #DC143C; color: #fff; }
.rn-km-split__deco { display: block; width: 150px; height: auto; margin: 24px auto 0 0; }
.rn-km-nuchi__deco { display: block; width: 180px; height: auto; margin-top: 14px; }
.rn-km-nuchi-titlerow { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 22px; }
.rn-km-nuchi-titledeco { width: 96px; height: auto; flex: none; }
.rn-km-nuchi__scene-below { display: block; width: 100%; max-width: 470px; height: auto; margin: 24px 0 0; }
.rn-km-nuchi__eggrow { display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap; margin-top: 24px; }
.rn-km-nuchi__eggrow img { height: clamp(96px,12vw,132px); width: auto; }
.rn-km-nuchi__eggrow img.rn-km-egg { height: clamp(46px,6vw,57px); }
.rn-km-eggwrap { position: relative; }
.rn-km-egg-onmedia { position: absolute; right: clamp(-94px,-5vw,-30px); bottom: clamp(-22px,-2vw,-12px); width: clamp(96px,11vw,178px); height: auto; z-index: 2; transform: scaleX(-1); }
.rn-km-nuchi { background: #EFE0CD; position: relative; margin-top: clamp(24px,3vw,56px); }
.rn-km-nuchi__curvewrap { position: relative; }
.rn-km-curve { display: block; width: 100%; height: auto; }
.rn-km-scene { position: absolute; left: 50%; transform: translateX(-50%); bottom: calc(55% - 20px); width: min(630px,78%); height: auto; pointer-events: none; }
.rn-km-nuchi__inner { max-width: 1120px; margin: 0 auto; position: relative; padding: 0 clamp(16px,4vw,44px) clamp(60px,8vw,110px); }
.rn-km-crops { position: relative; background: #66240B; border: 1px solid rgba(240,200,150,.2); border-radius: 20px; padding: clamp(28px,3vw,40px); }
.rn-km-crops__deco { position: absolute; right: -16px; bottom: -24px; width: clamp(150px,16.5vw,240px); height: auto; z-index: 2; pointer-events: none; }
@media (max-width: 820px) { .rn-km-crops__deco { display: none; } }
.rn-km-crops__ttl { margin: 0 0 18px; font: 900 18px/1.4 "Noto Sans JP", sans-serif; color: #fff; text-align: center; }
.rn-km-crops__text { margin: 0 0 22px; font: 500 14px/1.9 "Noto Sans JP", sans-serif; color: #eed3b8; text-align: center; }
.rn-km-crops__tags { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.rn-km-crop-tag { background: transparent; border: 1.5px dashed rgba(255,255,255,.5); border-radius: 14px; padding: 18px 20px; text-align: center; font: 800 15px/1.4 "Noto Sans JP", sans-serif; color: #f4d9b0; }
.rn-km-gallery { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 1fr; gap: 12px; margin-top: 26px; }
.rn-km-gal { position: relative; border-radius: 14px; overflow: hidden; background: #4a3a1e; }
.rn-km-gal--tall { grid-row: span 2; min-height: 320px; }
.rn-km-gal--sq { aspect-ratio: 1/1; }
.rn-km-gal--wide { grid-column: span 2; aspect-ratio: 2/1; }
.rn-km-ig-btn { display: flex; width: fit-content; margin: 26px auto 0; align-items: center; gap: 9px; background: transparent; color: #f4d9b0; text-decoration: none; font: 700 14px/1 "Noto Sans JP", sans-serif; padding: 14px 24px; border-radius: 999px; border: 1.5px solid rgba(240,200,150,.45); transition: all .2s; }
.rn-km-ig-btn:hover { background: #f4d9b0; color: #66240B; }

/* ============ SHOP ============ */
.rn-shop-promise { position: relative; max-width: 860px; margin: 0 auto; background: #fff; border: 1px solid #e6d3bd; border-radius: 20px; padding: clamp(36px,4.5vw,54px) clamp(28px,4vw,48px) clamp(28px,4vw,48px); text-align: center; }
.rn-shop-promise__badge { position: absolute; top: 0; left: 50%; transform: translate(-50%,-50%); display: inline-flex; align-items: center; gap: 9px; background: #DC143C; color: #fff; font: 800 16px/1 "Noto Sans JP", sans-serif; padding: 12px 24px; border-radius: 999px; white-space: nowrap; box-shadow: 0 6px 16px rgba(220,20,60,.25); }
.rn-shop-promise__text { margin: 0; font: 500 15px/2.1 "Noto Sans JP", sans-serif; color: #4a4139; text-wrap: pretty; text-align: left; }
.rn-shop-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rn-shop-product { border: 1.5px solid #e6d3bd; border-radius: 20px; overflow: hidden; background: #fff; }
.rn-shop-product__media { position: relative; aspect-ratio: 16/10; background: #f5ece0; }
.rn-shop-product__media--fit .img-cover { object-fit: contain; }
.rn-shop-product__body { padding: 24px 26px; }
.rn-shop-product__ttl { margin: 0 0 6px; font: 900 18px/1.4 "Noto Sans JP", sans-serif; color: #241c15; }
.rn-shop-product__vol { font: 700 14px/1 "Noto Sans JP", sans-serif; color: #A0723E; margin-bottom: 14px; }
.rn-shop-product__spec { margin: 0 0 14px; display: flex; flex-direction: column; gap: 6px; }
.rn-shop-product__spec-row { display: flex; align-items: baseline; gap: 10px; font: 500 14px/1.5 "Noto Sans JP", sans-serif; }
.rn-shop-product__spec dt { flex: 0 0 3.5em; color: #A0723E; font-weight: 700; }
.rn-shop-product__spec dd { margin: 0; color: #241c15; font-weight: 700; }
.rn-shop-product__price { display: flex; align-items: baseline; gap: 6px; }
.rn-shop-product__price b { font: 900 30px/1 "Manrope", sans-serif; color: #DC143C; }
.rn-shop-product__price span { font: 600 13px/1 "Noto Sans JP", sans-serif; color: #8a7f74; }
.rn-shop-note { margin: 26px auto 0; max-width: 760px; text-align: center; font: 500 13.5px/1.9 "Noto Sans JP", sans-serif; color: #6f6459; }
.rn-formhead__text { margin: 0; font: 500 13.5px/1.8 "Noto Sans JP", sans-serif; color: #6f6459; }

/* SHOP：商品選択（数量ステッパー・合計） */
.rn-shop-blocktitle { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; padding-left: 14px; border-left: 4px solid #DC143C; }
.rn-shop-blocktitle__ja { font: 900 clamp(20px,2.3vw,26px)/1.3 "Noto Sans JP", sans-serif; color: #241c15; }
.rn-shop-blocktitle__en { font: 800 11px/1 "Manrope", sans-serif; letter-spacing: .2em; color: #A0723E; }
.rn-shop-selectnote { margin: 0 0 28px; font: 500 13.5px/1.8 "Noto Sans JP", sans-serif; color: #6f6459; }
.rn-shop-product__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; }
.rn-qty { display: inline-flex; align-items: center; border: 1.5px solid #e6d3bd; border-radius: 999px; overflow: hidden; background: #fff; }
.rn-qty__btn { width: 40px; height: 40px; border: 0; background: #fff; color: #DC143C; font: 800 18px/1 "Manrope", sans-serif; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s, color .15s; }
.rn-qty__btn:hover { background: #DC143C; color: #fff; }
.rn-qty__num { width: 46px; height: 40px; text-align: center; border: 0; border-left: 1px solid #f0e7db; border-right: 1px solid #f0e7db; font: 800 16px/1 "Manrope", sans-serif; color: #241c15; background: #fff; -moz-appearance: textfield; }
.rn-qty__num::-webkit-outer-spin-button, .rn-qty__num::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.rn-shop-total { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: #241c15; color: #fff; border-radius: 16px; padding: 20px 28px; margin: 32px auto 0; max-width: 460px; }
.rn-shop-total__label { font: 800 15px/1.5 "Noto Sans JP", sans-serif; letter-spacing: .04em; }
.rn-shop-total__val { font: 900 28px/1 "Manrope", sans-serif; color: #fff; white-space: nowrap; }
.rn-shop-total-note { margin: 14px 0 0; font: 500 12.5px/1.7 "Noto Sans JP", sans-serif; color: #8a7f74; text-align: center; }
.rn-order-summary { min-height: 76px; resize: vertical; }

/* ============ フォーム共通 ============ */
.rn-form { background: #fff; border: 1px solid #e6d3bd; border-radius: 20px; padding: clamp(24px,4vw,44px); display: flex; flex-direction: column; gap: 22px; }
.rn-form__label { display: block; font: 700 13.5px/1 "Noto Sans JP", sans-serif; margin-bottom: 8px; color: #241c15; }
.rn-form__label--gap { margin-bottom: 9px; }
.rn-form-input { width: 100%; box-sizing: border-box; border: 1px solid #d8cab6; border-radius: 11px; padding: 13px 15px; font-size: 14.5px; color: #241c15; background: #fffdfa; outline: none; font-family: "Noto Sans JP", sans-serif; }
.rn-form-input:focus { border-color: #DC143C; }
.rn-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rn-chip-row { display: flex; gap: 10px; flex-wrap: wrap; }
.rn-chip { position: relative; display: inline-block; }
.rn-chip input { position: absolute; opacity: 0; pointer-events: none; }
.rn-chip span { display: inline-block; cursor: pointer; font: 700 13.5px/1 "Noto Sans JP", sans-serif; padding: 12px 20px; border-radius: 999px; transition: all .15s; background: #fff; color: #5a4d40; border: 1.5px solid #d8cab6; }
.rn-chip input:checked + span { background: #DC143C; color: #fff; border-color: #DC143C; }
.rn-form-submit { background: #DC143C; color: #fff; border: 0; cursor: pointer; font: 800 16px/1 "Noto Sans JP", sans-serif; padding: 19px; border-radius: 999px; transition: background .2s; }
.rn-form-submit:hover { background: #a80f2e; }
.rn-form-submit--dark { background: #241c15; }
.rn-form-submit--dark:hover { background: #000; }
.rn-form-note { margin: 0; text-align: center; font: 500 12px/1.6 "Noto Sans JP", sans-serif; color: #8a7f74; }
.rn-form-done { background: #fff; border: 1.5px solid #DC143C; border-radius: 20px; padding: 48px 32px; text-align: center; }
.rn-form-done__icon { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; background: #DC143C; display: flex; align-items: center; justify-content: center; font: 900 30px/1 "Manrope", sans-serif; color: #fff; }
.rn-form-done__ttl { margin: 0 0 12px; font: 900 22px/1.4 "Noto Sans JP", sans-serif; color: #241c15; }
.rn-form-done__text { margin: 0; font: 500 14px/1.9 "Noto Sans JP", sans-serif; color: #4a4139; }
.rn-type-list { display: flex; flex-direction: column; gap: 9px; }
.rn-type-opt { position: relative; display: block; }
.rn-type-opt input { position: absolute; opacity: 0; pointer-events: none; }
.rn-type-opt__box { display: flex; align-items: center; text-align: left; cursor: pointer; font: 700 14px/1.4 "Noto Sans JP", sans-serif; padding: 15px 18px; border-radius: 13px; transition: all .15s; background: #fff; color: #4a4139; border: 1.5px solid #e0d3c1; }
.rn-type-opt__dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 12px; flex: none; background: #d8cab6; transition: all .15s; }
.rn-type-opt input:checked + .rn-type-opt__box { background: #fdf0f2; color: #241c15; border-color: #DC143C; }
.rn-type-opt input:checked + .rn-type-opt__box .rn-type-opt__dot { background: #DC143C; box-shadow: 0 0 0 4px rgba(220,20,60,.18); }

/* ============ CONTACT ============ */
.rn-ct-grid { max-width: 1040px; margin: 0 auto; display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(24px,4vw,44px); align-items: start; }
.rn-ct-info { display: flex; flex-direction: column; gap: 16px; }
.rn-ct-info__card { background: #fff; border: 1px solid #e6d3bd; border-radius: 18px; padding: 26px; }
.rn-ct-info__label { font: 800 11px/1 "Manrope", sans-serif; letter-spacing: .2em; margin-bottom: 12px; }
.rn-ct-info__label--red { color: #DC143C; }
.rn-ct-info__label--blue { color: #1550A6; }
.rn-ct-info__tel { font: 900 24px/1 "Manrope", sans-serif; color: #241c15; text-decoration: none; }
.rn-ct-info__hours { margin: 12px 0 0; font: 500 12.5px/1.7 "Noto Sans JP", sans-serif; color: #8a7f74; }
.rn-ct-info__text { margin: 0 0 14px; font: 500 13px/1.7 "Noto Sans JP", sans-serif; color: #4a4139; }
.rn-ct-info__btn { display: inline-flex; align-items: center; gap: 8px; background: #DC143C; color: #fff; text-decoration: none; font: 700 13px/1 "Noto Sans JP", sans-serif; padding: 12px 20px; border-radius: 999px; }
.rn-ct-info__btn:hover { background: #a80f2e; color: #fff; }

/* ============ BLOG（一覧） ============ */
.rn-news-hero { background: #1c150f; }
.rn-news-hero__inner { max-width: 1200px; margin: 0 auto; padding: clamp(84px,9vw,104px) clamp(16px,4vw,44px) clamp(48px,6vw,84px); }
.rn-news-hero__en { font: 800 12px/1 "Manrope", sans-serif; letter-spacing: .3em; color: #00C6FD; }
.rn-news-hero__ttl { margin: 14px 0 0; font: 900 clamp(26px,4vw,40px)/1.3 "Noto Sans JP", sans-serif; color: #fff; }
.rn-news-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.rn-news-chip { text-decoration: none; font: 700 13px/1 "Noto Sans JP", sans-serif; padding: 11px 20px; border-radius: 999px; transition: all .15s; background: #fff; color: #5a4d40; border: 1.5px solid #e0d3c1; }
.rn-news-chip.is-active { background: #DC143C; color: #fff; border-color: #DC143C; }
.rn-news-layout { display: grid; grid-template-columns: 1fr 300px; gap: 36px; align-items: start; }
.rn-news-list { display: flex; flex-direction: column; gap: 18px; }
.rn-news-card { display: grid; grid-template-columns: 180px 1fr; gap: 22px; background: #fff; border: 1px solid rgba(36,28,21,.09); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; transition: border-color .2s; }
.rn-news-card:hover { border-color: #DC143C; }
.rn-news-card__media { position: relative; background: #f0e7db; min-height: 120px; }
.rn-news-card__body { padding: 20px 22px 20px 0; display: flex; flex-direction: column; justify-content: center; }
.rn-news-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.rn-news-card__date { font: 700 12px/1 "Manrope", sans-serif; color: #8a7f74; }
.rn-news-card__cat { font: 700 11px/1 "Noto Sans JP", sans-serif; color: #fff; padding: 5px 11px; border-radius: 999px; }
.rn-news-card__ttl { margin: 0; font: 700 16px/1.6 "Noto Sans JP", sans-serif; color: #241c15; }
.rn-pager { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.rn-pager__item { display: flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: 10px; font: 700 14px/1 "Manrope", sans-serif; cursor: pointer; background: #fff; color: #4a4139; border: 1px solid #e0d3c1; text-decoration: none; }
.rn-pager__item.is-current { background: #DC143C; color: #fff; border-color: #DC143C; }
/* お知らせ一覧：CMSページャ（中央・青） */
.rn-news-layout [class*="pager"], .rn-news-layout [class*="paging"], .rn-news-layout .pagination { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.rn-news-layout [class*="pager"] a, .rn-news-layout [class*="paging"] a, .rn-news-layout .pagination a, .rn-news-layout [class*="pager"] span, .rn-news-layout [class*="paging"] span { color: #1550A6; text-decoration: none; }
/* 月別アーカイブ（CMS出力）リンク */
#cms-blog-entry-month-1-area a { display: block; padding: 9px 0; text-decoration: none; font: 500 13.5px/1 "Noto Sans JP", sans-serif; color: #4a4139; border-bottom: 1px solid rgba(36,28,21,.06); }
#cms-blog-entry-month-1-area a:hover { color: #DC143C; }
.rn-side { display: flex; flex-direction: column; gap: 22px; }
.rn-side__card { background: #fff; border: 1px solid rgba(36,28,21,.09); border-radius: 16px; padding: 24px; }
.rn-side__card--cream { background: #FBF4EC; border: 0; }
.rn-side__ttl { margin: 0 0 16px; font: 900 14px/1 "Noto Sans JP", sans-serif; padding-bottom: 12px; color: #241c15; }
.rn-side__ttl--red { border-bottom: 2px solid #DC143C; }
.rn-side__ttl--blue { border-bottom: 2px solid #1550A6; }
.rn-side__ttl--brown { border-bottom: 2px solid #A0723E; }
.rn-side__link { display: flex; justify-content: space-between; padding: 9px 0; text-decoration: none; font: 500 13.5px/1 "Noto Sans JP", sans-serif; color: #4a4139; border-bottom: 1px solid rgba(36,28,21,.06); transition: color .2s; }
.rn-side__link:hover { color: #DC143C; }
.rn-side__link--plain { display: block; }
.rn-side__count { color: #a99e92; font-family: "Manrope", sans-serif; }
.rn-recent-link { display: block; padding: 10px 0; text-decoration: none; border-bottom: 1px solid rgba(36,28,21,.06); transition: opacity .2s; }
.rn-recent-link:hover { opacity: .7; }
.rn-recent-link__date { font: 700 11px/1 "Manrope", sans-serif; color: #8a7f74; margin-bottom: 5px; }
.rn-recent-link__ttl { font: 500 13px/1.6 "Noto Sans JP", sans-serif; color: #241c15; }

/* ============ BLOG（詳細） ============ */
.rn-crumb { background: #FBF4EC; border-bottom: 1px solid rgba(36,28,21,.07); padding-top: 64px; }
.rn-crumb__inner { max-width: 1120px; margin: 0 auto; padding: 16px clamp(16px,4vw,44px); font: 500 12.5px/1 "Noto Sans JP", sans-serif; color: #8a7f74; }
.rn-crumb__inner a { color: #8a7f74; text-decoration: none; }
.rn-crumb__cur { color: #241c15; }
.rn-entry-layout { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 300px; gap: 44px; align-items: start; }
.rn-entry__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.rn-entry__cat { font: 700 11px/1 "Noto Sans JP", sans-serif; color: #fff; background: #DC143C; padding: 6px 13px; border-radius: 999px; }
.rn-entry__date { font: 700 13px/1 "Manrope", sans-serif; color: #8a7f74; }
.rn-entry__ttl { margin: 0 0 24px; font: 900 clamp(20px,2.2vw,26px)/1.5 "Noto Sans JP", sans-serif; color: #241c15; }
.rn-entry__pager { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 36px; font: 700 14px/1.5 "Noto Sans JP", sans-serif; }
.rn-entry__pager ul { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.rn-entry__pager li { display: inline-flex; }
.rn-entry__pager a, .rn-entry__pager span { color: #1550A6; text-decoration: none; }
.rn-entry__pager a:hover { color: #00C6FD; }
/* TOPお知らせ：CMS出力のうち記事行(rn-news-row)以外（ページャ等）を非表示 */
#news #cms-blog-entry-list-1-area > *:not(.rn-news-row) { display: none; }
#news .pager, #news .paging, #news .pagination, #news [class*="pager"], #news [class*="paging"] { display: none; }
.rn-entry__hero { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 16/9; background: #f0e7db; margin-bottom: 36px; }
.rn-entry__body { font: 500 15.5px/2.15 "Noto Sans JP", sans-serif; color: #3a3128; text-wrap: pretty; }
.rn-entry__body p { margin: 0 0 24px; }
.rn-entry__body h2 { margin: 40px 0 16px; font: 900 20px/1.5 "Noto Sans JP", sans-serif; padding-left: 14px; border-left: 4px solid #DC143C; color: #241c15; }
.rn-entry__btn { display: inline-flex; align-items: center; gap: 9px; margin-top: 16px; background: #DC143C; color: #fff; text-decoration: none; font: 800 14px/1 "Noto Sans JP", sans-serif; padding: 16px 28px; border-radius: 999px; transition: background .2s; }
.rn-entry__btn:hover { background: #a80f2e; color: #fff; }
.rn-entry__foot { margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(36,28,21,.1); display: flex; justify-content: space-between; }
.rn-entry__back { font: 700 13px/1 "Noto Sans JP", sans-serif; color: #241c15; text-decoration: none; }

/* ============ レスポンシブ ============ */
@media (max-width: 768px) {
  /* 狭幅では電話・SNS・注文CTAはヘッダーバーから隠し、オーバーレイ内に集約 */
  .rn-header__tel, .rn-header__sns, .rn-header__cta { display: none; }
  .rn-header__bar { gap: 12px; }
  /* ロゴを縮小してはみ出し防止 */
  .rn-header__logo-main { font-size: 18px; }
  .rn-header__logo-sub { font-size: 10px; }
  .rn-header__logo-crest { height: 34px; }
  /* ハンバーガー：SPは白背景・黒文字/ライン */
  .rn-header .rn-menu-btn { background: #fff; color: #241c15; border-color: rgba(36,28,21,.2); }
  /* SPはヘッダー背景を常に透明（スクロールでも白くしない） */
  .rn-header.is-solid { background: transparent; box-shadow: none; }
  /* MENU展開時はナビを画面いっぱいに表示。ヘッダー（ロゴ・MENUボタン）は
     オーバーレイより上（z-index 100 > 99）に残るので、文字は消えない */
  .rn-overlay { top: 0; }
  .rn-overlay__inner { padding-top: 104px; }
  .rn-header.is-open, .rn-header.is-open.is-solid { background: transparent; box-shadow: none; }
}
@media (max-width: 900px) {
  .rn-news-layout, .rn-entry-layout { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .rn-phero__grid { grid-template-columns: 1fr; padding-left: clamp(16px,4vw,44px); padding-right: clamp(16px,4vw,44px); padding-top: 104px; padding-bottom: 30px; }
  .rn-phero__media { order: -1; border-radius: 6px; }
  .rn-hero__grid { grid-template-columns: 1fr; }
  .rn-hero__half { min-height: 440px; }
  .rn-hero__plate { position: static; transform: none; width: auto; margin: 0; padding: 34px 16px; }
  .rn-biz-grid { grid-template-columns: 1fr; }
  .rn-shopcta__grid { grid-template-columns: 1fr; }
  .rn-co-greet__grid { grid-template-columns: 1fr; }
  .rn-sp-intro__grid { grid-template-columns: 1fr; }
  .rn-sp-food-grid, .rn-sp-drink-grid, .rn-sp-ndrink-grid, .rn-sp-nfood-grid { grid-template-columns: 1fr; }
  .rn-sp-night__hero { grid-template-columns: 1fr; }
  .rn-km-split { grid-template-columns: 1fr; }
  .rn-km-split__media, .rn-km-mediawrap, .rn-km-eggwrap { order: -1; }
  .rn-km-egg-onmedia { right: 8px; bottom: 8px; width: clamp(84px,24vw,120px); }
  .rn-sp-intro__dots { right: 0; }
  .rn-km-stripe { right: 0; }
  .rn-km-crops__tags { grid-template-columns: repeat(2,1fr); }
  .rn-km-gallery { grid-template-columns: repeat(2,1fr); }
  .rn-km-gal--tall { grid-row: auto; min-height: 0; aspect-ratio: 1/1; }
  .rn-km-gal--wide { grid-column: span 2; }
  .rn-km-scene { display: none; }
  .rn-shop-products { grid-template-columns: 1fr; }
  .rn-form-row { grid-template-columns: 1fr; }
  .rn-ct-grid { grid-template-columns: 1fr; }
  /* 改行切替 */
  .rn-sp-br { display: inline; }
  .rn-pc-br { display: none; }
  /* Spocafeイントロ本文はSPで手動改行を無効化 */
  .rn-sp-intro__text br { display: none; }
  /* Spocafeイントロ画像：少し縦を拡張 */
  .rn-sp-fade { aspect-ratio: 4/3; }
  /* 下層ヒーロー：文字サイズ・画像高さのバランス */
  .rn-phero__title { font-size: 25px; line-height: 1.35; }
  .rn-phero__title--km { font-size: 27px; }
  .rn-phero__lead { font-size: 13px; }
  .rn-phero__media { aspect-ratio: 16/10; }
  /* MV：スマホで見やすく */
  .rn-hero__grid { min-height: auto; }
  .rn-hero__half { min-height: 48vh; }
  .rn-hero__cap-title { font-size: 26px; }
  /* その他の生産物タグ */
  .rn-km-crop-tag { padding: 14px 10px; font-size: 14px; }
  /* 商品カード文字バランス */
  .rn-shop-product__ttl { font-size: 16px; }
  .rn-shop-product__price b { font-size: 26px; }
  /* 各セクションタイトル（日本語見出し）はSPで22px */
  .rn-secttl__ja, .rn-biz-head__ttl, .rn-top-intro__ttl, .rn-topnews__ttl,
  .rn-shopcta__ttl, .rn-km-head__ttl, .rn-co-greet__ttl, .rn-sp-intro__ttl,
  .rn-sp-dayhead__ttl, .rn-sp-night__ttl { font-size: 22px; }
  /* ABOUT USリード：SPは左揃え・手動改行無効 */
  .rn-top-intro__lead { text-align: left; }
  .rn-top-intro__lead br { display: none; }
  /* フッターSPは1カラム＋中央揃え */
  .rn-footer__cols { grid-template-columns: 1fr; gap: 36px; }
  .rn-footer__nav { display: none; }
  .rn-footer__col { text-align: center; }
  .rn-footer__logo { justify-content: center; }
  .rn-footer__logo-col { align-items: center; }
  .rn-footer__desc { margin-left: auto; margin-right: auto; }
  .rn-footer__sns-row { justify-content: center; }
  /* SpocafeヒーロータイトルはSPで途中改行 */
  .rn-sp-hero-title .cyan { display: block; }
  /* 湾曲カーブ：SPは高さ固定で崩れ防止 */
  .rn-sp-curve, .rn-km-curve { height: 50px; object-fit: cover; }
  /* DAYリード文：SP左揃え */
  .rn-sp-dayhead__text { text-align: left; }
  /* NIGHTスタットのラベル：SPは13px */
  .rn-sp-stat__label { font-size: 13px; }
  /* 商品代金の注記：SP左揃え */
  .rn-shop-total-note { text-align: left; }
  /* フォーム見出しの説明文：SP左揃え */
  .rn-formhead__text { text-align: left; }
}
@media (max-width: 560px) {
  .rn-news-card { grid-template-columns: 1fr; }
  .rn-news-card__media { min-height: 160px; }
  .rn-news-card__body { padding: 0 20px 20px; }
  .rn-co-table__row { flex-direction: column; }
  .rn-co-table__dt { width: 100%; }
}
