/* =========================================================
  Vars / Base
   ========================================================= */
/* ベース：白背景 */
:root {
  --bg: #fff;
  --text: #111827;
  --muted: #6b7280;
  --primary: #b91c1c;
  --border: #e5e7eb;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(0, 0, 0, .08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans JP', sans-serif;
  line-height: 1.7;
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
  padding: 24px 0;
}

[hidden] {
  display: none !important;
}

a {
  text-decoration: none;
  color: #1a1a1a;
}

/* =========================================================
  Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  background: #db6b67;
  border-bottom: 1px solid var(--border);
  z-index: 30;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.brand-logo {
  width: 36px;
  /* ここでサイズ調整 */
  height: 36px;
  object-fit: contain;
  /* 縦横比を保持して収める */
  display: block;
}

.brand-text {
  font-size: 1.1rem;
  /* 好きなサイズに */
  line-height: 1;
  /* ベースラインのズレ防止 */
}

/* ヘッダーのタイトル（.brand）の文字サイズ調整 */
.site-header .brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
}

/* トグルボタン */
.nav-toggle {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* nav-toggle 内の画像にだけ効く */
.nav-toggle img {
  width: 41px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* =========================================================
  Drawer (Right Slide) & Backdrop
   ========================================================= */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 90vw);
  background: #fff;
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

.drawer-nav {
  padding: 10px 16px;
  overflow: auto;
}

.drawer-character {
  margin-top: auto;
  /* 一番下へ */
  padding: 8px 0 12px;
  min-height: 140px;
  /* エリアの高さ（画像に合わせて調整） */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(to top, rgba(0, 0, 0, .05), transparent 60%);
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.drawer-character img{
  width: min(140px, 70%);
  height: auto;
  transform: translateY(12px) scale(.98);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  pointer-events: none;
  /* 装飾として扱う場合 */
}

.drawer.open .drawer-character img {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.tab-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  background: #fff;
}

.tab:hover {
  background: #fafafa;
}

.tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Backdrop */
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .28);
  z-index: 35;
}

/* =========================================================
  Hero
   ========================================================= */
.hero h1 {
  margin: .2rem 0 0;
}

.lead {
  color: var(--muted);
  margin: 0 0 1rem;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.hero-logo {
  max-width: 650px;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

/* ロゴ */
.logo {
  max-width: 200px;
  height: auto;
}

/* =========================================================
  Visitor Counter
   ========================================================= */
.visitor-section {
  padding: 8px 0 24px;
}

.visitor-line {
  font-size: 1.1rem;
}

.muted {
  color: var(--muted);
  font-size: .9rem;
}

/* =========================================================
  Footer & Back-to-top
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 18px;
  background: #fff;
}

/* ===== Footer SNS ===== */
.site-footer .container {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 12px 0;
  /* 既存が小さければ少し広げる */
}

.footer-sns {
  display: flex;
  gap: 10px;
}

.sns-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .15s ease, opacity .15s ease, box-shadow .15s ease;
}

.sns-btn i {
  font-size: 20px;
}

/* ブランドカラー（お好みで変更可） */
.sns-line i {
  color: #06C755;
}

/* LINE */
.sns-instagram i {
  color: #C13584;
}

/* Instagram */
.sns-facebook i {
  color: #1877F2;
}

/* Facebook */

.sns-btn:hover {
  transform: translateY(-2px);
  opacity: .9;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  border: none;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  display: none;
  z-index: 45;
}

.back-to-top.show {
  display: block;
}

/* =========================================================
  Countdown (Legacy base styles)
   ========================================================= */
/* Supplementary global for countdown block */
body {
  /* 既存指定（重複だが値は変更しない方針のため保持） */
  background-color: #f2f1ed;
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", "Noto Sans JP", sans-serif;
}

/* 位置調整：下に配置（絶対配置→通常フローへ） */
.wrap {
  position: static !important;
  max-width: 960px;
  margin: 48px auto 0;
  padding-bottom: 24px;
}

/* タイトル */
h1 {
  margin-bottom: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 2.5em;
  text-transform: none;
}

h2 {
  margin-bottom: 80px;
  text-align: center;
  font-weight: 300;
  font-size: 1.2em;
  text-transform: uppercase;
}

h2 strong {
  font-weight: 400;
}

/* 旧来のカウントダンン本体サイズ（後段の上書きでレイアウト変更） */
.countdown {
  width: 1300px;
  margin: auto;
}

.countdown .bloc-time:last-child {
  margin-right: 0;
}

.countdown .count-title {
  display: block;
  margin-bottom: 15px;
  font-size: .94em;
  font-weight: 400;
  color: #1a1a1a;
  text-transform: uppercase;
}

/* 数字カード（ベース） */
.countdown .figure {
  position: relative;
  float: left;
  height: 85px;
  width: 75px;
  margin-right: 10px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 4px rgba(0, 0, 0, .2), inset 2px 4px rgba(255, 255, 255, .08);
  perspective: 200px;
  transform-style: preserve-3d;
}

.countdown .figure:last-child {
  margin-right: 0;
}

.countdown .figure>span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  font-weight: 700;
  font-size: 4em;
  line-height: 88px;
  color: #de4848;
  text-align: center;
}

/* 上下の分割線 */
.countdown .figure .top::after,
.countdown .figure .bottom-back::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

/* 面（faces） */
.countdown .figure .top {
  z-index: 3;
  background-color: #f7f7f7;
  transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transform: perspective(200px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.countdown .figure .bottom {
  z-index: 1;
}

.countdown .figure .bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: rgba(0, 0, 0, .02);
}

.countdown .figure .bottom-back {
  z-index: 2;
  top: 0;
  height: 50%;
  overflow: hidden;
  background-color: #f7f7f7;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: absolute;
  left: 0;
  right: 0;
}

.countdown .figure .bottom-back span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.countdown .figure .top,
.countdown .figure .top-back {
  height: 50%;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.countdown .figure .top-back {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 4;
  bottom: 0;
  background-color: #fff;
  transform-origin: 50% 0;
  -webkit-transform-origin: 50% 0;
  transform: perspective(200px) rotateX(180deg);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.countdown .figure .top-back span {
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  margin: auto;
}

/* =========================================================
  Countdown Panel / Layout overrides
   ========================================================= */
/* カード化（背景色/枠） */
.countdown-panel {
  background: #f6f7ff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 14px;
  margin: 16px auto 8px;
}

/* レイアウト：float→flex へ（見やすい配置） */
.countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 20px;
  width: min(1100px, 96%);
}

/* ブロック（Days/Hours/Minutes/Seconds）の整列：Gridでラベル上・数字下 */
.countdown .bloc-time {
  float: none;
  margin: 0 !important;
  display: grid;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-right: 0;
  grid-template-rows: auto auto;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  justify-content: center;
  column-gap: 10px;
  row-gap: 6px;
  margin-right: 0 !important;
}

/* ラベル（バッジ風） */
.countdown .count-title {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 8px;
  font-weight: 700;
  font-size: .9rem;
  color: #334155;
  background: #eaf0ff;
  border: 1px solid #d6e1ff;
  border-radius: 999px;
}

/* 仕切り線（最後以外） */
.countdown .bloc-time:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 10%;
  bottom: 10%;
  width: 2px;
  background: linear-gradient(to bottom, #dbe0ea, #94a3b8);
  opacity: .8;
  border-radius: 2px;
}

/* 数字カードの見栄え微調整 */
.countdown .figure {
  background: #ffffff;
  box-shadow: 0 3px 4px rgba(0, 0, 0, .14), inset 2px 4px rgba(255, 255, 255, .08);
}

/* Gridの行割当（数字は2行目で横並び） */
.countdown .bloc-time .count-title {
  grid-column: 1 / -1;
  grid-row: 1;
  margin: 0;
  justify-self: center;
}

.countdown .bloc-time .figure {
  grid-row: 2;
  float: none !important;
  margin-right: 0 !important;
  display: block;
}

/* 汎用水平線 */
.divider {
  height: 1px;
  background: #e5e7eb;
  /* 好きな色に */
  margin: 24px 0;
  /* 前後の余白 */
  border: 0;
}

/* 薄い→濃いのグラデ（中央に濃さ） */
.divider--soft {
  height: 1px;
  border: 0;
  margin: 28px 0;
  background: linear-gradient(to right, transparent, #d1d5db, transparent);
}


/* 1) h1 の既定マージンを消す＋行間をやや詰める */
.maintheme h1 {
  margin: 0;
  line-height: 2.5;
  /* 1.0〜1.2の範囲で微調整 */
}

/* 2) 行と行の間隔はここでまとめて管理（数値だけ変えればOK） */
.maintheme h1+h1 {
  margin-top: 12px;
  /* 6〜12pxくらいでお好み調整 */
}

/* メインテーマのフォント変更 */
.maintheme h1:nth-of-type(1) {
  font-size: 40px;
}

.maintheme h1:nth-of-type(2) {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 100px;
  line-height: 1.0;
}

.maintheme h1:nth-of-type(3) {
  font-size: 30px;
}

.mt-desc {
  margin: clamp(10px, 2vw, 16px) auto 0;
  /* 上だけ少し空ける */
  max-width: min(800px, 92%);
  /* 読みやすい横幅に制限 */
  font-size: clamp(.95rem, 2.2vw, 1.1rem);
  line-height: 1.7;
  color: var(--muted);
  text-align: var(--mt-align, left);
  /* 上の変数と揃える */
  text-wrap: balance;
}

/* ===== Coming Soon ===== */
.comingsoon {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
  padding: 48px 12px;
}

.cs-icon {
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
}

.cs-title {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin: 6px 0;
}

.cs-lead {
  font-size: clamp(1.1rem, 4.3vw, 1.9rem);
  color: black;
  margin: 0;
}

.cs-note {
  color: #1e2227;
  margin: 6px 0 16px;
}

.cs-actions .btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
}

.cs-actions .btn:hover {
  opacity: .9;
}

/* Identity ページ用：ヒーロー帯 */
.theme-hero {
  width: min(1100px, 92%);
  margin: 24px auto 12px;
  padding: clamp(24px, 6vw, 56px) clamp(16px, 4vw, 28px);
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.theme-hero .kicker {
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 10px;
  font-size: .9rem;
  letter-spacing: .08em;
  color: #374151;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 999px;
}

.theme-hero h1 {
  margin: 0;
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.4rem);
  color: #b91c1c;
  /* アクセント色 */
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  /* ご希望のImpact */
}

.theme-hero .subtitle {
  margin: .4rem 0 0;
  color: #6b7280;
  font-size: clamp(1rem, 2.6vw, 1.4rem);
}

/* 目次（ページ内リンク） */
.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 10px 0 22px;
}

.toc a {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #374151;
  background: #fff;
}

.toc a:hover {
  background: #fafafa;
}

/* 本文の読みやすさ（簡易プローズ） */
.prose {
  width: min(900px, 96%);
  margin: 0 auto 32px;
  color: #111827;
}

.prose h2 {
  margin: 1.2em 0 .4em;
  font-size: 1.5rem;
}

.prose p {
  margin: .6em 0;
}

.prose ul {
  padding-left: 1.2em;
}

.prose li {
  margin: .4em 0;
}

.prose details {
  margin: .4em 0;
}

.prose .backlink {
  margin-top: 1.6rem;
}

/* 柱リスト（視認性UP） */
.pill-list {
  list-style: none;
  margin: .6rem 0 1rem;
  padding: 0;
  display: grid;
  gap: 12px;
}

.pill-list li {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.pill-list h3 {
  margin: .2rem 0 .2rem;
  font-size: 1.1rem;
}

/* 実行委員紹介 */

.committee-nav {
  background:none;
  border: none;
  box-shadow: none;
  padding: 10px 0;
  margin-bottom: 30px;
  text-align: center;
  position: sticky; /* ← スクロールしても上に固定 */
  top: 70px;        /* ヘッダーの高さに合わせて調整 */
  z-index: 30;
}

.committee-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}

.committee-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #b91c1c;
  background: #fff;
  border: 2px solid #b91c1c;
  border-radius: 20px;
  padding: 6px 14px;
  transition: all 0.2s ease;
}

.committee-nav a:hover {
  background: #b91c1c;
  color: #fff;
}

.group-title{
  margin: 24px 0 8px;
  font-size: 1.25rem;
  font-weight: 800;
}

/* 区切りはそのまま */
.committee-group+.committee-group {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 20px;
}

/* Grid 配置（auto-fit + 中央寄せ） */
.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 20px 0;
  justify-items: center;
  /* 各セル内で中央に */
}

/* カードの最大幅を決めて、セル中央に配置 */
.member-card {
  width: 100%;
  max-width: 360px;
  /* 好きなカード幅に調整 */
}

/* カード（高さ固定で周囲を動かさない） */
.member-card {
  height: 340px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* 3Dフリップの土台 */
.flip-card {
  perspective: 1200px;
}

/* 回転する内側 */
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.2, .7, .2, 1);
}

/* 表裏の面 */
.card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  backface-visibility: hidden;
  /* ←これが超重要 */
}

/* Front面 */
.card-front {
  background: #fff;
}

/* Back面（Y軸180度反転） */
.card-back {
  background: #fff;
  transform: rotateY(180deg);
  position: absolute;
}

/* 反転状態 */
.flip-card.is-flipped .card-inner {
  transform: rotateY(180deg);
}

/* 画像・文字 */
.member-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.member-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #111;
  margin: 0;
  text-align: center;
}

.member-comment {
  margin: 8px 0 0;
  color: #435675;
  text-align: center;
  padding: 0 6px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

/* 閉じるボタン（背面に表示） */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow);
}

/* 反転状態（これを hover より「後ろ」に書く） */
.flip-card.is-flipped .card-inner {
  transform: rotateY(180deg);
}

/* 裏面が前に出た時は、表のクリックを無効化しておくと安心 */
.flip-card.is-flipped .card-front {
  pointer-events: none;
}

.flip-card.is-flipped .card-back {
  pointer-events: auto;
}

/* フェス、合宿共通 */
.font_wide {
  font-weight: bold;
}

.font_wide_soft {
  font-weight: 500;
}

.font_concept {
  font-family: 'Crimson Text';
}

.text_blue {
  color: rgb(11, 11, 190);
}

.text_indent3 {
  text-indent: 3em;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.concept {
  color: brown;
}

.size30 {
  font-size: 30px;
}

.size20 {
  font-size: 20px;
}

.line {
  border-top: solid 1px #000000;
}

.underline {
  text-decoration: underline;
}

.space_min {
  margin: 10px;
}

.space_big {
  margin: 30px;
}


/*coming soon タイピングエフェクト*/
/* タイプ中のカーソル（疑似要素） */
.cs-title.typing::after {
  content: "│";
  margin-left: .08em;
  animation: caretBlink .9s steps(1, end) infinite;
}

.mainanounce {
  text-align: center;
  padding: 10px;
  border: 1px;
  background: transparent;
  border: double 5px #db6b67;/*線*/
  border-radius: 10px;/*角の丸み*/
}

.news-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.news-list li {
  margin: 12px 0;
  font-size: 1.1rem;
  color: #111;
}

.news-list li a {
  color: #1d4ed8;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.news-list li a:hover {
  border-bottom: 1px solid #1d4ed8;
}

.news-list .date {
  color: var(--muted);
  font-size: 0.9rem;
  margin-left: 6px;
}

/* 「New」バッジ */
.new {
  color: white;
  background: #e11d48;
  border-radius: 8px;
  font-size: 0.8rem;
  padding: 2px 6px;
  margin-left: 6px;
}


@keyframes caretBlink{
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}


/* 動きを苦手とする人にはアニメ無効・即表示 */
@media (prefers-reduced-motion: reduce) {
  .cs-title.typing::after {
    animation: none;
  }
}

@keyframes caretBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}


/* 動きを苦手とする人への配慮 */
@media (prefers-reduced-motion: reduce) {
  .card-inner {
    transition: none;
  }

  .flip-card.is-flipped .card-inner {
    transform: none;
  }

  /* 代替：前面を非表示に、背面を表示（すり替えのみ） */
  .flip-card .card-front {
    display: block;
  }

  .flip-card.is-flipped .card-front {
    display: none;
  }

  .flip-card .card-back {
    transform: none;
  }
}


/* スマホ最適化 */
@media (max-width:560px){
  .brand{ gap: 8px; }
  .brand-logo{ width: 32px; height: 32px; }
  .brand-text{ font-size: .95rem; }
  .drawer-character{ min-height: 110px; }
  .drawer-character img{ width: min(170px, 80%); }
  .wrap .countdown-panel.h1{ font-size: small;}/* スマホ用文字サイズ調整 */
  .countdown-panel .h1{ font-size: small;}/* スマホ用文字サイズ調整 */
  .countdown .bloc-time{ padding-right:0; }
  .countdown .bloc-time:not(:last-child)::after{ display:none; }
  .countdown .figure{ width:72px; height:82px; }
  .countdown .figure > span,
  .countdown .figure .top,
  .countdown .figure .bottom,
  .countdown .figure .top-back span,
  .countdown .figure .bottom-back span {
    font-size: 3.8em;
    line-height: 80px;
  }

  .member-extra {
    grid-template-columns: 1fr;
  }

  .member-figure img {
    height: 200px;
  }

  .member-card {
    max-width: 320px;
  }
}