@charset "UTF-8";

/* =========================================
   SORANSAI カスタムCSS（レイアウト共通化）
========================================= */

/* ------- ユーティリティ ------- */

.mb1 { margin-bottom: 1vw; }
.mb3 { margin-bottom: 3vw; }
.mb5 { margin-bottom: 5vw; }
.mt30 { margin-top: 40vw !important; }

.w50 { display: block; width: 50%; margin-left: auto; margin-right: auto; }
.w100 { width: 100% !important; }

/* スマホ・PCでのベース文字サイズ */
@media screen and (max-width: 999px) {
  body {
    background: #fff;
    color: #000;
    font-family: sans-serif;
    font-size: 3.5vw;
  }
}
@media screen and (min-width: 1000px) {
  body {
    background: #fff;
    color: #000;
    font-family: sans-serif;
    font-size: 1vw;
  }
}

/* =========================================
   1) 全ページ共通の幅
========================================= */

.maincont,
.shoplist {
  max-width: 1080px;
  width: 100%;
  margin: 40px auto 60px;
  padding: 0 16px;
  box-sizing: border-box;
}

/* =========================================
   2) フッター（修正版・テーマ準拠）
========================================= */

.site-footer {
  padding: 24px 0 18px;
  background: #000;
}

.footer-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  text-align: center;
}

.footer-sns {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 26px;
}

.footer-sns .sns-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background .25s ease;
  box-shadow: none;
}

.footer-sns .sns-icon img,
.footer-sns .sns-icon svg {
  width: 20px;
  height: 20px;
}

/* コピーライト */
.footer-copy {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  opacity: 0.7;
  margin-bottom: 0;
}

/* =========================================
   3) shoplist SNS（ページ限定）
========================================= */

.sns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
}

.shoplist .sns-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

/* SVGサイズ */
.shoplist .sns-icon svg {
  width: 26px;
  height: 26px;
}

/* shoplistのみ黒統一（リンク色を無効化） */
.shoplist .sns-icon,
.shoplist .sns-icon:link,
.shoplist .sns-icon:visited,
.shoplist .sns-icon:hover,
.shoplist .sns-icon:active {
  color: #000 !important;
}

/* Instagram / X の色指定を shoplist 限定で有効にする */
.shoplist .sns-icon--ig {
  color: #000; /* 元々は #E4405F だが黒統一ならここで黒 */
}
.shoplist .sns-icon--x {
  color: #000;
}

/* =========================================
   4) SHOPLIST：小見出し（1日目/2日目）
========================================= */

.shoplist-subtitle {
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: .05em;
  padding: 10px 0 20px;
  color: #222;
  position: relative;
}

.shoplist-subtitle::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #000;
  border-radius: 999px;
  margin: 8px auto 0;
}

@media (min-width: 768px) {
  .shoplist-subtitle {
    font-size: 1.3rem;
    padding: 14px 0 24px;
  }
  .shoplist-subtitle::after {
    width: 72px;
  }
}

/* =========================================
   5) SHOPLIST：日別タブ切り替え
========================================= */

.shoplist-day-switch {
  max-width: 420px;
  margin: 0 auto 24px;
  padding: 4px;
  display: flex;
  gap: 4px;
  background: #f3f3f3;
  border-radius: 999px;
}

.shoplist-day-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 0;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: #555;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .1s ease;
}

.shoplist-day-btn.is-active {
  background: #000;
  color: #fff;
  transform: translateY(-1px);
}

/* セクション表示切替 */
.shoplist-day {
  display: none;
}
.shoplist-day.is-active {
  display: block;
}

@media (min-width: 768px) {
  .shoplist-day-btn {
    font-size: 1rem;
    padding: 12px 0;
  }
}
/* =========================================
   フッターSNSアイコン 最終オーバーライド
   （style.css / 他指定との競合リセット）
========================================= */

.site-footer .sns-icon,
.site-footer .sns-icon.ig,
.site-footer .sns-icon.x {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;           /* はっきり見える白丸 */
  color: #000000;                /* 中のアイコンを黒に */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}

/* SVG / 画像のサイズと色 */
.site-footer .sns-icon svg,
.site-footer .sns-icon img {
  width: 20px;
  height: 20px;
  /* currentColor を使うSVGならこの color が効く */
  color: inherit;
  fill: currentColor;
}

/* =========================================
   上に戻るボタン
========================================= */

.to-top-btn {
  position: fixed;
  right: 16px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  background: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  cursor: pointer;

  /* 最初は非表示状態 */
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity .25s ease,
    transform .25s ease;
  z-index: 900; /* オーバーレイメニューより下げたかったら調整 */
}

/* フッターと重なりそうな時の見た目と位置 */
.to-top-btn.is-over-footer {
  bottom: 96px;          /* フッターにかぶらないよう少し上げる */
  background: #fff;
  color: #333;
}

.to-top-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* 表示時の状態 */
.to-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* スマホで少しコンパクトに */
@media (max-width: 768px) {
  .to-top-btn {
    right: 12px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

/* shop-card のホバー overlay がクリックを邪魔しないように */
.shop-card::after {
  pointer-events: none !important;
}

/* =========================
   SHOPLIST：キッチンカー
========================= */
.shoplist-subtitle--kc{
  margin-top: 32px;
}

.shop-grid--kc{
  margin-top: 8px;
}

.shop-card--kc .shop-img{
  position: relative;
}

.kc-badge{
  position:absolute;
  left:10px;
  top:10px;
  font-size:12px;
  letter-spacing:.08em;
  padding:6px 10px;
  border-radius:999px;
  background:#000;
  color:#fff;
}

.shop-desc{
  margin-top: 6px;
  font-size: .85rem;
  opacity: .85;
  line-height: 1.4;
  padding: 0 12px;
}

/* =========================
   Overlay menu polish
========================= */
.overlay-menu ul{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.overlay-menu a{
  display:inline-block;
  padding:14px 18px;
  border-radius:999px;
  letter-spacing:.12em;
  line-height:1;
  transition:transform .15s ease, background .2s ease, opacity .2s ease;
}

.overlay-menu a:hover{
  background:rgba(255,255,255,.10);
  transform:translateY(-1px);
}

.overlay-menu a.is-current{
  background:rgba(255,255,255,.16);
  outline:1px solid rgba(255,255,255,.25);
}

.overlay-menu a.is-current::after{
  content:" ●";
  font-size:.9em;
  opacity:.75;
}

/* =========================
   Notice page styling
========================= */
.notice-page{
  max-width: 980px;
  margin: 40px auto 60px;
  padding: 0 16px;
}

.notice-page h2{
  font-size: 1.4rem;
  margin: 0 0 14px;
  letter-spacing: .06em;
}

.notice-page ul{
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.notice-page li{
  padding: 14px 16px;
  line-height: 1.7;
  border-top: 1px solid rgba(0,0,0,.08);
  position: relative;
  padding-left: 42px;
}

.notice-page li:first-child{
  border-top: none;
}

.notice-page li::before{
  content: "!";
  position: absolute;
  left: 16px;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

