/* BeMOSS お知らせ（/news/ 配下）の見た目。
   ここが見た目の単一の真実。地の柄とヘッダーは assets/site.css（全ページ共通）にある。
   🔴 端の余白は width で作る（padding ショートハンドを姉妹クラスに書くと左右が 0 に戻る・2026-07-28の事故）。 */

:root {
  --bg: #07070f;
  --cyan: #00e5ff;
  --pink: #ff4fa0;
  --purple: #a855f7;
  --text: #f2f3f8;
  --dim: #a7abc4;
  --jp: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Hiragino Sans", sans-serif;
  --en: "Orbitron", "M PLUS Rounded 1c", sans-serif;
  --cc: var(--cyan);
  --gut: 22px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--jp);
  background: var(--bg);
  color: var(--text);
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-break: strict;
}
.nb { display: inline-block; }
h1, h2, h3, p, li, .chip { word-break: auto-phrase; }
h1, h2, .lead, .sec-lead { text-wrap: balance; }
::selection { background: var(--cc); color: #000; }
a { color: inherit; }
img { max-width: 100%; }

/* 端の余白は幅で作る。上下だけ足したいときは padding-block を使う */
.wrap { width: min(1080px, 100% - var(--gut) * 2); margin-inline: auto; }

body::after {
  content: ""; position: fixed; inset: 0; z-index: 60; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
}

/* ===== 共通見出し ===== */
.label {
  font-family: var(--en); font-size: 12px; font-weight: 700; letter-spacing: .34em;
  color: var(--cc); text-transform: uppercase; margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
}
.label::after { content: ""; height: 1px; width: 64px; background: linear-gradient(90deg, var(--cc), transparent); }
h2 { font-size: clamp(24px, 3.2vw, 34px); font-weight: 900; line-height: 1.45; margin-bottom: 14px; }
.sec-lead { color: var(--dim); font-weight: 500; max-width: 44em; font-size: 15px; }
.cyan { color: var(--cyan); text-shadow: 0 0 20px rgba(0,229,255,.6); }

.news section { padding-block: 64px 0; }

/* ===== パンくず ===== */
.crumbs { padding-block: 96px 0; font-size: 12px; color: var(--dim); }
.crumbs a { color: var(--dim); text-decoration: none; }
.crumbs a:hover { color: var(--cyan); }
.crumbs span { margin: 0 6px; opacity: .5; }

/* ===== ヒーロー ===== */
.news-hero { padding-block: 26px 8px; }
.news-hero h1 {
  font-size: clamp(30px, 5.6vw, 52px); font-weight: 900; line-height: 1.32; margin-bottom: 18px;
}
.news-hero .lead { color: var(--dim); font-size: 16px; max-width: 40em; }
.closed-note {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px;
  font-size: 12.5px; font-weight: 700; color: var(--dim);
  border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 6px 14px;
}
/* ===== お知らせ一覧（トップの News セクション／news/ 一覧ページ共通） ===== */
.news-list { margin-top: 26px; display: grid; gap: 8px; }
.news-list a {
  display: flex; align-items: center; gap: 14px; padding: 13px 18px;
  border-radius: 12px; border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.025); text-decoration: none; color: var(--text);
  transition: border-color .2s ease, background .2s ease;
}
.news-list a:hover { border-color: rgba(0,229,255,.4); background: rgba(255,255,255,.05); }
.news-list time {
  font-family: var(--en); font-size: 12px; font-weight: 700; color: var(--dim); flex-shrink: 0;
}
.news-list .news-title { font-weight: 700; font-size: 13.5px; flex: 1; }
.news-list .news-tag {
  flex-shrink: 0; font-size: 10.5px; font-weight: 800; letter-spacing: .04em;
  padding: 3px 9px; border-radius: 999px; color: var(--dim); border: 1px solid rgba(255,255,255,.14);
}
.news-more { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 800; color: var(--cyan); text-decoration: none; }
.news-more:hover { opacity: .8; }

.meta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  border: 1px solid rgba(255,255,255,.14); border-radius: 999px;
  padding: 7px 15px; background: rgba(255,255,255,.03);
}
.chip b {
  font-family: var(--en); font-size: 10px; letter-spacing: .12em;
  color: var(--dim); font-weight: 700;
}
.chip.on { border-color: color-mix(in srgb, var(--pink) 55%, transparent); background: rgba(255,79,160,.09); }
.chip.on b { color: var(--pink); }

/* ===== 特典（段階） ===== */
.tiers { display: grid; gap: 16px; margin-top: 28px; grid-template-columns: 1fr 1fr; }
.tier {
  border: 1px solid rgba(255,255,255,.11); border-radius: 18px;
  padding: 26px 24px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  position: relative; overflow: hidden;
}
.tier::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), transparent);
}
.tier-n {
  font-family: var(--en); font-size: 11px; font-weight: 900; letter-spacing: .22em;
  color: var(--cyan); margin-bottom: 4px;
}
.tier-goal { font-family: var(--en); font-size: 22px; font-weight: 900; margin-bottom: 12px; }
.tier h3 { font-size: 18px; font-weight: 900; margin-bottom: 8px; line-height: 1.5; }
.tier p { color: var(--dim); font-size: 14px; }
.note { color: var(--dim); font-size: 13px; margin-top: 18px; }

/* ===== 参加方法 ===== */
.steps { list-style: none; display: grid; gap: 14px; margin-top: 26px; }
.steps li {
  display: flex; gap: 18px; align-items: flex-start;
  border: 1px solid rgba(255,255,255,.1); border-radius: 16px;
  padding: 22px 22px 24px; background: rgba(255,255,255,.028);
}
.step-n {
  flex: none; width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 50%; font-family: var(--en); font-weight: 900; font-size: 16px;
  background: linear-gradient(135deg, var(--cyan), var(--purple)); color: #04040a;
}
.steps h3 { font-size: 17px; font-weight: 900; margin-bottom: 6px; }
.steps p { color: var(--dim); font-size: 14px; }
.mini-cta {
  display: inline-block; margin-top: 12px; text-decoration: none;
  font-size: 13px; font-weight: 800;
  border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 8px 18px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.mini-cta:hover { border-color: var(--cyan); transform: translateY(-1px); }
.mini-cta.primary {
  background: linear-gradient(135deg, #06c755, #05a648); border-color: transparent; color: #fff;
}
.mini-cta.primary:hover { transform: translateY(-1px) scale(1.02); }

/* ===== 注意 ===== */
.notes { list-style: none; display: grid; gap: 10px; margin-top: 20px; }
.notes li {
  color: var(--dim); font-size: 14px; padding-left: 20px; position: relative;
}
.notes li::before {
  content: ""; position: absolute; left: 4px; top: 14px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); opacity: .7;
}

/* ===== 最終CTA ===== */
.final { text-align: center; padding-block: 92px 100px; margin-top: 70px; }
.final .label { justify-content: center; }
.final .sec-lead { margin-inline: auto; }
.cta-row { display: flex; justify-content: center; margin-top: 26px; }
.cta {
  display: inline-flex; flex-direction: column; align-items: center; gap: 2px;
  text-decoration: none; border-radius: 999px; padding: 15px 40px;
  background: linear-gradient(135deg, var(--cyan), var(--purple)); color: #04040a;
  font-weight: 900; box-shadow: 0 10px 40px rgba(0,229,255,.28);
  transition: transform .2s ease;
}
.cta:hover { transform: translateY(-2px) scale(1.02); }
.cta .en { font-family: var(--en); font-size: 16px; }
.cta .sub { font-size: 11px; font-weight: 800; opacity: .8; }
.cta-note { color: var(--dim); font-size: 13px; margin-top: 16px; }

/* ===== フッター ===== */
footer { text-align: center; padding-block: 54px 60px; border-top: 1px solid rgba(255,255,255,.07); }
.foot-logo img { height: 21px; width: auto; opacity: .9; }
.foot-social { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 22px 0; }
.foot-store { display: inline-flex; transition: transform .18s ease, opacity .18s ease; }
.foot-store img { display: block; height: 40px; width: auto; }
.foot-store:hover { transform: translateY(-1px); opacity: .88; }
.foot-sns {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 50%; background: #fff; transition: transform .18s ease, opacity .18s ease;
}
.foot-sns img { width: 16px; height: auto; display: block; }
.foot-sns:hover { transform: translateY(-1px); opacity: .88; }
.foot-fb { display: inline-flex; transition: transform .18s ease, opacity .18s ease; }
.foot-fb img { width: 40px; height: 40px; display: block; }
.foot-fb:hover { transform: translateY(-1px); opacity: .88; }
.foot-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin: 0 0 16px; font-size: 13px; }
.foot-links a { color: var(--dim); text-decoration: none; }
.foot-links a:hover { color: var(--cyan); }
.copy { color: var(--dim); font-size: 12px; opacity: .7; }

@media (max-width: 720px) {
  .tiers { grid-template-columns: 1fr; }
  .news-hero { padding-block: 18px 4px; }
  .crumbs { padding-block: 84px 0; }
  .steps li { padding: 20px 18px 22px; gap: 14px; }
  .final { padding-block: 72px 80px; margin-top: 54px; }
}

/* 特典が1つのときは横いっぱいに置く（2枚並びの grid をまたぐ） */
.tier.wide { grid-column: 1 / -1; }
.tier.wide .tier-goal { font-size: clamp(20px, 3.4vw, 28px); }
