/*
* ===============================================
*  テーマCSS for base2 shinjuku
* ===============================================
*/

:root {
  /* --- 色の定義 --- */
  --shop-primary-color: #ff0066;
  --shop-secondary-color: #00ffcc;
  --bg-color: #0d0d1a;
  --text-color: #e0e0f0;
  --text-muted-color: #a0a0b0;
  --shop-primary-color-translucent: rgba(255, 0, 102, 0.25);
  --shop-secondary-color-translucent: rgba(0, 255, 204, 0.2);

  /* --- スマホ用の文字サイズ --- */
  --font-size-base: 1rem;
  --font-size-sm: 0.9rem;
  --font-size-lg: 1.1rem;
  --font-size-xl: 1.8rem;
  
  /* トップのキャッチコピー専用（スマホ用）*/
  --hero-font-size-main: clamp(2.0rem, 10vw, 5rem);
  --hero-font-size-sub: clamp(0.75rem, 3vw, 1.3rem);
  
  /* ▼▼▼ スマホ用ヘッダーロゴのスタイル変数をここに移動 ▼▼▼ */
  --sp-header-logo-font-size: 0.9rem;
  --sp-header-logo-text-shadow: 0 0 5px var(--shop-secondary-color);
  --sp-header-sublogo-font-size: 1.0rem;
}

/* --- PC表示用の設定 (画面幅が1024px以上の場合) --- */
@media (min-width: 1024px) {
  :root {
    /* PCで表示した時だけ、文字サイズ変数の値を「上書き」します */
    --font-size-base: 1rem;
    --font-size-sm: 0.9rem;
    --font-size-lg: 1.2rem;
    --font-size-xl: 2.2rem;
    
    /* トップのキャッチコピー専用（PC用）*/
    --hero-font-size-main: clamp(.5rem, 5vw, 5.5rem);
    --hero-font-size-sub: clamp(1.1rem, 2vw, 1.4rem);
  }
  #section1 .hero-catchphrase { top: 15vh; left: 37%; transform: translateX(-50%); text-align: center;}
  
  /* 英語ページ専用（PC表示時） */
  html[lang="en"] #section1 .hero-catchphrase {
    top: 13vh;       /* 位置を少し上げる */
    left: 50%;       /* 横位置も微調整 */
    transform: translateX(-50%);
    text-align: center;
    line-height: 1.2; /* 行間を少し詰める */
  }
}

/* --- スマホ用の背景デザイン (画面幅が1023px以下の場合) --- */
@media (max-width: 1023px) {
  /* ... (背景デザインの部分は変更なし) ... */
  .full-screen {
    background-image: none !important;
  }
  body {
    background-color: var(--bg-color);
    background-image: 
      radial-gradient(circle at 15% 20%, var(--shop-primary-color-translucent) 0%, transparent 40%),
      radial-gradient(circle at 85% 75%, var(--shop-secondary-color-translucent) 0%, transparent 40%);
    background-attachment: fixed;
  }
  #section1.full-screen {
    background-image: url('/shops/base2-shinjuku-kabukicho/img/img_1.jpg') !important;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
/* --- 調整用トークン（共通デフォルト） --- */
:root{
  --pc-nav-font-size: 1.05rem;
  --pc-nav-font-weight: 600;
  --pc-nav-letter-spacing: 0.03em;
  --pc-nav-text-transform: none;     /* uppercase / none */
  --pc-nav-text-shadow: 0 0 6px rgba(0,0,0,.85);
  --pc-nav-hover-color: var(--shop-primary-color);
  --pc-nav-active-bg-alpha: .30;     /* active時の背景濃度を文字で補助 */
}

/* --- PCだけ適用（1024px以上）--- */
@media (min-width:1024px){
  #pc-nav nav li a{
    font-size: var(--pc-nav-font-size);
    font-weight: var(--pc-nav-font-weight);
    letter-spacing: var(--pc-nav-letter-spacing);
    text-transform: var(--pc-nav-text-transform);
    color:#fff;
    text-shadow: var(--pc-nav-text-shadow);
    line-height: 1.7;
  }
  #pc-nav nav li a:hover{ color: var(--pc-nav-hover-color); }
  #pc-nav nav li a.active{
    /* 既存のactive表現を邪魔せず、文字の視認性を補助 */
    background-color: rgba(255,255,255,var(--pc-nav-active-bg-alpha));
  }
}
/* PCだけ・英語ページだけのヒーロー文字調整 */
@media (min-width: 1024px) {
  html[lang="en"] {
    /* フォントサイズ */
    --hero-font-size-main: clamp(3.2rem, 4.5vw, 7rem);
    --hero-font-size-sub: clamp(1.2rem, 1.8vw, 1.8rem);
  }
    /* 必要に応じて左右中央寄せ解除も可能 */
    /* text-align: center; */
  }

/* ===== セクション0：お知らせ／募集 ===== */
:root{
  --notice-bg: rgba(13,13,26,0.7);
  --notice-surface: rgba(255,255,255,0.06);
  --notice-border: rgba(255,255,255,0.14);
  --notice-title: #fff;
  --notice-tag-bg: rgba(255,255,255,0.10);
  --notice-tag-text: #e8f6ff;
}

.notice-section{
  position: relative;
  z-index: 2;
  padding: 32px 20px;
  background:
    radial-gradient(1200px 200px at 10% 0%, var(--shop-primary-color-translucent), transparent 60%),
    radial-gradient(1200px 200px at 90% 0%, var(--shop-secondary-color-translucent), transparent 60%),
    var(--notice-bg);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--notice-border);
  border-bottom: 1px solid var(--notice-border);
}

.notice-inner{
  margin: 0 auto;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr; /* ←常に縦並び */
  gap: 18px;
}

.notice-card{
  background: var(--notice-surface);
  border: 1px solid var(--notice-border);
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}

.notice-title{
  margin: 0 0 10px 0;
  font: 800 1.2rem/1.2 'Noto Sans JP', system-ui, sans-serif;
  color: var(--notice-title);
  letter-spacing: .02em;
  text-shadow: 0 0 8px rgba(0,0,0,.3);
}

.notice-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 10px 0;
  padding: 0;
  list-style: none;
}
.notice-tags li{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--notice-tag-bg);
  color: var(--notice-tag-text);
  border: 1px solid var(--notice-border);
  font-weight: 700;
  font-size: .9rem;
}

.notice-desc{
  margin: 0 0 14px 0;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.98rem;
}

.notice-ctas{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.notice-ctas .btn-primary,
.notice-ctas .btn-outline{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.notice-ctas .btn-primary{
  background: linear-gradient(180deg, var(--shop-primary-color), #c80054);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255,0,102,.25);
  border: 1px solid rgba(255,255,255,.22);
}
.notice-ctas .btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 16px 36px rgba(255,0,102,.35); }

.notice-ctas .btn-outline{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 8px 18px rgba(0,0,0,.24);
}
.notice-ctas .btn-outline:hover{ transform: translateY(-1px); background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05)); }

/* ★ PC用の2カラム指定は削除またはコメントアウト済み */

.notice-ctas {
  display: flex;
  flex-direction: column; /* 縦並び */
  gap: 10px;
}

.notice-ctas .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 8px 18px rgba(0,0,0,.24);
}
.notice-ctas .btn-outline:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
}
.notice-tags li {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.notice-tags li:nth-child(1) { background: rgba(255, 102, 102, 0.25); } /* 時給 */
.notice-tags li:nth-child(2) { background: rgba(255, 204, 102, 0.25); } /* 交通費 */
.notice-tags li:nth-child(3) { background: rgba(102, 204, 255, 0.25); } /* シフト */
.notice-tags li:nth-child(4) { background:rgba(42, 34, 255, 0.25); } /* シフト */
.notice-card {
  background: linear-gradient(
      180deg,
      rgba(255, 102, 153, 0.12) 0%, /* 上部に淡いピンク */
      rgba(0, 0, 0, 0.4) 100%       /* 下部に暗めの透過 */
    ),
    var(--notice-surface);
  border: 1px solid var(--notice-border);
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}
@media (min-width: 1024px) {
  #pc-nav nav ul {
    gap: 16px; /* 項目同士の間隔を少し詰める */
  }
  #pc-nav nav li a {
    padding: 0px 12px; /* 上下の余白を減らす */
    line-height: 1.4;   /* 行間も少し詰める */
  }
}
/* Prices & Menu セクションは可変高さにする */
#section4.full-screen{
  height:auto;           /* ← 固定100vhを解除 */
  min-height:100svh;     /* 画面よりは短くならない程度に */
  overflow:visible;      /* コンテンツを切らない */
  padding-bottom:32px;   /* 画像の下が詰まらないよう余白 */
}

/* 画像を横幅フィット＆縦比率維持で表示 */
#section4 .menu-images{
  display:grid;
  gap:16px;
  justify-items:center;
}
#section4 .menu-images img{
  width:min(100%, 980px);
  height:auto;
  display:block;
  border-radius:8px;
}

/* モバイルはさらに余白を確保 */
@media (max-width: 768px){
  #section4.full-screen{ min-height:auto; }
  #section4 .section-content{ padding-bottom:40px; }
}
/* 画像2枚の横並び */
.menu-images{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  align-items:start;
  margin-top:16px;
}
.menu-images img{
  width:100%;
  height:auto;
  display:block;
  border-radius:12px;
  box-shadow:0 4px 16px rgba(0,0,0,.08);
}
.menu-images figcaption{
  font-size:.9rem;
  text-align:center;
  margin-top:6px;
  color:#555;
}
/* スマホは縦積み */
@media (max-width: 680px){
  .menu-images{ grid-template-columns:1fr; }
}
/* =========================================
   Section4: SPプラン強調＋収まり最適化 (新デザイン)
   ========================================= */

#section4 .highlight-plan {
  position: relative;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #232526 0%, #414345 100%);
  color: #f0f0f0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .3);
  border: 1px solid rgba(255, 255, 255, .1);
  overflow: hidden;
}

/* リボン */
#section4 .highlight-plan::before {
  content: "SP PLAN";
  position: absolute;
  top: 18px;
  right: -42px;
  transform: rotate(35deg);
  background: #e03c8a;
  color: #fff;
  padding: 8px 60px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(224, 60, 138, .5);
}

/* 見出し・ヘッダー */
#section4 .plan-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
#section4 .plan-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(224, 60, 138, .15);
  color: #e03c8a;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #e03c8a;
}
#section4 .plan-title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .03em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
  text-wrap: balance;
}

/* レイアウト */
#section4 .plan-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  align-items: stretch;
}

/* 料金ボックス */
#section4 .plan-prices {
  grid-column: span 5;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#section4 .price-section-title {
  text-align: center;
  font-weight: 700;
  color: #e0e0e0;
  font-size: 16px;
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
#section4 .price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, .2);
  text-align: center;
}
#section4 .price-label {
  font-weight: 700;
  color: #c0c0c0;
  white-space: nowrap; /* ← PCでは折り返さない */
}
#section4 .price-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: linear-gradient(45deg, #e03c8a, #f266ab);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(224, 60, 138, .3);
  white-space: nowrap;
}
#section4 .price-pill .yen {
  font-size: 14px;
  font-weight: 400;
  opacity: .9;
}
#section4 .price-pill .amt {
  font-size: 22px;
}
#section4 .subcopy {
  margin-top: auto;
  padding-top: 6px;
  font-size: 12px;
  line-height: 1.6;
  color: #b0b0b0;
  text-align: center;
}

/* セット内容・オプション */
#section4 .plan-includes {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#section4 .include-card {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, .1);
}
#section4 .include-title {
  font-weight: 800;
  color: #e03c8a;
  margin-bottom: 8px;
  text-wrap: balance;
}
#section4 .include-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 8px 24px;
}
#section4 .include-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: loose;
  font-size: clamp(15px, 1.6vw, 16px);
}
#section4 .include-item .dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e03c8a;
  box-shadow: 0 0 8px rgba(224, 60, 138, .7);
  margin-top: 8px;
}
#section4 .include-item.span-2 {
  grid-column: 1 / -1;
}
#section4 .plan-note {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.6;
  color: #a0a0a0;
}

/* ▼▼▼ HTML構造の変更に合わせてセレクタと余白を修正 ▼▼▼ */
/* メニュー画像エリア */
#section4 .cta-wrap {
  display: flex;
  gap: 24px; /* PCでは画像間の隙間を広めに */
  margin-top: 32px; /* 上のプランの箱との隙間を確保 */
}
#section4 .menu-link {
  flex: 1;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .4);
  transition: all .25s ease;
}
#section4 .menu-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, .5);
}
#section4 .menu-link img {
  display: block;
  width: 100%;
  height: auto;
}
/* ▲▲▲ ここまで ▲▲▲ */


/* ユーティリティ */
.nowrap {
  white-space: nowrap;
}

/* ===========================
   モバイル最適化 (640px以下)
   =========================== */
@media (max-width: 640px) {
  #section4 .highlight-plan {
    padding: 16px;
  }
  #section4 .plan-title {
    font-size: 20px;
  }
  #section4 .plan-grid {
    grid-template-columns: 1fr;
  }
  #section4 .plan-prices,
  #section4 .plan-includes {
    grid-column: auto;
  }
  #section4 .include-list {
    grid-template-columns: 1fr;
  }
  #section4 .include-item {
    font-size: 15px;
  }
  #section4 .price-pill .amt {
    font-size: 20px;
  }
  #section4 .price-row {
    padding: 12px;
  }
  #section4 .cta-wrap {
    gap: 12px; /* モバイルでは隙間を少し狭く */
    margin-top: 24px;
  }

  /* ▼▼▼ ここを修正しました ▼▼▼ */
  #section4 .price-label {
    white-space: normal; /* テキストの折り返しを許可 */
    line-height: 1.4;    /* 行間を調整して見やすくする */
  }
  /* ▲▲▲ ここまで ▲▲▲ */
}
@media (min-width:1024px){
  html[lang="en"] #section1 .hero-catchphrase {
    top: 15vh;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
}
/* --- ピザメニューのスタイル --- */
/* ▼▼▼ ここをパターンCに置き換えました ▼▼▼ */
.pizza-menu-feature {
  background-color: rgba(30, 30, 30, 0.7); /* 半透明の黒 */
  backdrop-filter: blur(10px); /* 背景をぼかす（すりガラス効果） */
  -webkit-backdrop-filter: blur(10px); /* Safari向け */
  border-radius: 12px;
  padding: 2.5rem;
  margin: 50px auto;
  max-width: 960px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1); /* 半透明の白い枠線 */
}
/* ▲▲▲ ここまでが置き換えた部分 ▲▲▲ */


/* ↓↓↓ 以下の部分はそのまま残っています ↓↓↓ */
.pizza-menu-title {
  text-align: center; 
  font-size: 1.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
}

.pizza-menu-image {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
}

/* --- スマートフォン向けの調整 --- */
@media (max-width: 768px) {
  .pizza-menu-feature {
    padding: 1.5rem;
    margin: 30px 15px;
  }

  .pizza-menu-title {
    font-size: 1.0rem;
    margin-bottom: 1.5rem;
  }
}
/* --- Style for Pizza Menu Description --- */
.pizza-menu-description {
  color: #f0f0f0; /* Light gray text color */
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem auto; /* Top 0, centered left/right, bottom margin */
  padding: 0 1rem;
}

/* --- Adjustments for Smartphones --- */
@media (max-width: 768px) {
  .pizza-menu-description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
}
/* ========== UGC（お客様の声）セクション - Final Optimized Ver. ========== */
#ugc {
  background: radial-gradient(ellipse at top, #10151c 0%, #070a0e 100%);
  padding: 80px 24px;
  color: #eaeaea;
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
  overflow: hidden;
}

#ugc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/images/common/noise.png') repeat;
  opacity: 0.15;
  pointer-events: none;
}

/* セクションタイトル */
#ugc .section-header {
  text-align: center;
  margin-bottom: 56px;
}

#ugc .section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: #ffffff;
  letter-spacing: 0.05em;
  position: relative;
}

#ugc .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #6fc9ff, #0099ff);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* ======= UGCリスト ======= */
.ugc-list {
  display: grid;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

/* 各口コミカード */
.ugc-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 28px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.ugc-item:hover {
  border-color: #6fc9ff;
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(111, 201, 255, 0.15);
}

/* アバター共通設定 */
.ugc-avatar {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #2a3a4a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 8px rgba(111, 201, 255, 0.3);
}
.ugc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(85%) brightness(115%);
  transition: all 0.3s ease;
}

.ugc-avatar:hover img {
  filter: saturate(100%) brightness(130%);
}

/* 男女別の背景色トーン */
.ugc-avatar.is-ladies {
  box-shadow: 0 0 10px rgba(255, 135, 192, 0.4);
}
.ugc-avatar.is-mens {
  box-shadow: 0 0 10px rgba(111, 201, 255, 0.4);
}

/* カップル用アバター（サイズ統一・中央表示） */
.ugc-avatar.is-couple {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #2a3a4a;
  box-shadow: 0 0 10px rgba(111, 201, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.ugc-avatar.is-couple img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* contain→coverに変更で余白なし */
  object-position: center;
  filter: saturate(85%) brightness(115%);
  transition: all 0.3s ease;
}


/* 本文部 */
.ugc-body {
  flex: 1;
}

.ugc-meta {
  font-weight: 700;
  color: #00FFCB;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.ugc-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #e5e5e5;
}

/* CTAボックス */
.ugc-cta-box {
  margin-top: 56px;
  text-align: center;
}

.ugc-cta-lead {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #cfcfcf;
}

.ugc-cta-box .sns-btn {
  display: inline-block;
  background: linear-gradient(90deg, #0099ff, #6fc9ff);
  color: #fff;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}

.ugc-cta-box .sns-btn:hover {
  opacity: 0.9;
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0, 153, 255, 0.6);
}

/* ======= レスポンシブ ======= */
@media (max-width: 768px) {
  #ugc {
    padding: 60px 16px;
  }

  .ugc-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .ugc-avatar {
    width: 70px;
    height: 70px;
    margin-bottom: 16px;
  }

  .ugc-avatar.is-couple {
    width: 80px;
    height: auto;
  }

  .ugc-avatar.is-couple img {
    width: 80px;
    height: auto;
    object-fit: contain;
  }

  #ugc .section-title {
    font-size: 1.6rem;
  }

  /* ▼▼▼ ここに追記します ▼▼▼ */
  .ugc-cta-box .sns-btn {
    font-size: 14px; /* ← お好みの文字サイズに変更してください */
  }
}