:root{
  --bg:#0b1220;
  --text:#e8eefc;
  --muted:#b8c4e6;
  --brand:#37c1ff;
  --brand2:#7c5cff;
  --accent:#22c55e;
  --warn:#f59e0b;
  --danger:#ef4444;
  --line:rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
  --maxNavi: 1400px;

  /* --panel: rgba(255,255,255,.07); */
  /* --panel: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); */
  --panel: linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  --panel2: rgba(255,255,255,.10);
  --panel3: rgba(255,255,255,.04);

  --headerH: 64px;
  --anchorGap: 14px;

  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, "Apple Color Emoji","Segoe UI Emoji";
  --heroPad: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  min-height:100vh;

}

/* =============================================================================
   背景
============================================================================= */
@media (min-width: 940px){
  body{
  background:
    /* at  X   Y */
    radial-gradient(1200px 600px at 15% 10%, rgba(55,193,255,.25), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(124,92,255,.18), transparent 55%),
    radial-gradient(900px 480px at 15% 33%, rgba(83, 20, 20,.25), transparent 65%),
    radial-gradient(900px 600px at 35% 100%, rgba(34,197,94,.10), transparent 60%),
    linear-gradient(180deg, #070b14 0%, var(--bg) 100%);
  }
}

@media (max-width: 940px){
  body{
    background:
      radial-gradient(1200px 600px at 15% 10%, rgba(55,193,255,.20), transparent 60%),
      radial-gradient(900px 500px at 85% 20%, rgba(124,92,255,.15), transparent 55%),
      /* radial-gradient(900px 480px at 15% 27%, rgba(83, 20, 20,.35), transparent 65%), */
      radial-gradient(900px 600px at 35% 100%, rgba(34,197,94,.12), transparent 60%),

      radial-gradient(500px 500px at 10% 44%, rgba(56,189,248,.12), transparent 65%),
      /* radial-gradient(460px 460px at 85% 50%, rgba(124,92,255,.10), transparent 65%), */
      radial-gradient(520px 520px at 45% 60%, rgba(34,197,94,.08), transparent 65%),
      radial-gradient(480px 480px at 15% 70%, rgba(56,189,248,.10), transparent 65%),
      radial-gradient(460px 460px at 30% 80%, rgba(124,92,255,.08), transparent 65%),
      radial-gradient(520px 520px at 70% 90%, rgba(34,197,94,.12), transparent 70%),
      /* ベース */
      linear-gradient(180deg, #070b14 0%, var(--bg) 100%);
  }
}

a{ color:inherit; text-decoration:none; }

.container{ width:min(var(--max), calc(100% - 20px)); margin:0 auto; }

section[id], main[id], div[id]{
  scroll-margin-top: calc(var(--headerH) + var(--anchorGap));
}


/* =============================================================================
Topbar
============================================================================= */
.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(7,11,20,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  width:min(var(--maxNavi), calc(100% - 20px)); margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:800; letter-spacing:.2px;
  min-width: 150px;
}
.brand-text{ display:flex; flex-direction:column; gap:1px; }
.brand-title{ font-size:14px; }
.brand-sub{ font-size:11px; color:var(--muted); }

.logo{
  width:34px; height:34px; border-radius:12px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 30px rgba(55,193,255,.22);
  display:grid; place-items:center;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
}
.logo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* =========================
   PC Nav Dropdown
========================= */

.nav{
  display:flex; 
  align-items:center; 
  gap:14px; 
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}

.nav-group{
  position: relative;
}

.nav-trigger{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  font-size: 13px;
  color: rgba(255,255,255,.86);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
}

.nav-trigger:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}

/* v記号 */
.nav-caret{
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255,255,255,.7);
  border-bottom: 2px solid rgba(255,255,255,.7);
  transform: rotate(45deg) translateY(-1px);
}

/* dropdown */
.nav-dropdown{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  display: none;

  background: rgba(7,11,20,.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  box-shadow: 0 22px 80px rgba(0,0,0,.55);
}

.nav-dropdown a{
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,.86);
}

.nav-dropdown a:hover{
  background: rgba(255,255,255,.06);
}

/* open */
.nav-group.is-open .nav-dropdown{
  display: block;
}

.nav a{
  padding:8px 10px; border-radius:12px;
  border:1px solid transparent;
}
.nav a:hover{ color:var(--text); border-color:var(--line); background: rgba(255,255,255,.04); }

/* PCナビ内の「今すぐエントリー」を少し強調 */
.nav a.nav-entry{
  color: rgba(255,255,255,.95);
  border-color: rgba(55,193,255,.25);
  background: rgba(255,255,255,.06);
}
.nav a.nav-entry:hover{
  border-color: rgba(55,193,255,.45);
  background: rgba(55,193,255,.10);
}

@media (max-width: 940px){
  :root{ --headerH: 84px; }
  .nav{ display:none; }
}

/* =========================================================
   Icon Menu (MyPage + Hamburger) - FULL
   - 枠あり
   - 縦並び（マイページ）
   - メニューは3本線のみ
========================================================= */

.topbar-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* PC: keep MyPage button stable (avoid wrapping) */
@media (min-width: 941px){
  .topbar-actions{ gap: 12px; }
}

.icon-menu{
  width: 64px;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;

  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);

  color: rgba(255,255,255,.92);
  text-decoration: none;
  white-space: nowrap;
}

/* =========================================================
  MyPage Navi
========================================================= */

.mypage-icon{
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-block;
}
.mypage-icon__head{
  position: absolute;
  top: 0;
  left: 50%;
  width: 9px;
  height: 9px;
  background: #fff;
  border-radius: 999px;
  transform: translateX(-50%);
}
.mypage-icon__body{
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 16px;
  height: 9px;
  background: #fff;
  border-radius: 9px 9px 0 0;
  transform: translateX(-50%);
}

.icon-menu__label{
  font-size: 10px;
  line-height: 1;
}


/* =========================================================
  Hamburger
========================================================= */

.nav-toggle{
  display: none; /* SP/タブレットのみ */
  padding: 0;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(55,193,255,.35);
  background: linear-gradient(135deg, rgba(55,193,255,.22), rgba(124,92,255,.18));
  box-shadow: 0 10px 30px rgba(55,193,255,.18);
}


@media (max-width: 940px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
}

/* ===== Topbar Actions (Login + Hamburger) ===== */
.nav-toggle__icon{
  position:absolute;
  inset: 0;
  margin:auto;
  width: 18px;
  height: 12px;
  display:block;
  background:
    linear-gradient(rgba(255,255,255,.92), rgba(255,255,255,.92)) 0 0 / 100% 2px no-repeat,
    linear-gradient(rgba(255,255,255,.92), rgba(255,255,255,.92)) 0 50% / 100% 2px no-repeat,
    linear-gradient(rgba(255,255,255,.92), rgba(255,255,255,.92)) 0 100% / 100% 2px no-repeat;
  opacity: .95;
}


/* ===== Mobile Drawer Nav ===== */
.nav-overlay{
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
}

.nav-drawer{
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(380px, 90vw);
  z-index: 81;
  border-left: 1px solid rgba(255,255,255,.12);
  background: rgba(7,11,20,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 80px rgba(0,0,0,.55);
  display:flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform .18s ease;
}
.nav-drawer.is-open{ transform: translateX(0); }

.nav-drawer__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.nav-drawer__title{
  font-weight: 900;
  letter-spacing: .08em;
  color: rgba(255,255,255,.92);
}
.nav-drawer__close{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-size: 20px;
  cursor:pointer;
}

.nav-drawer__body{
  padding: 10px 12px 18px;
  overflow:auto;
  -webkit-overflow-scrolling: touch;
}

.nav-drawer__acc{
  font-size: 14px;
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.88);
  font-weight: 800;
  letter-spacing: .04em;
  cursor:pointer;
}
.nav-drawer__chev{
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255,255,255,.7);
  border-bottom: 2px solid rgba(255,255,255,.7);
  transform: rotate(45deg);
  opacity: .8;
}
.nav-drawer__acc[aria-expanded="true"] .nav-drawer__chev{
  transform: rotate(-135deg);
}

.nav-drawer__sub{
  margin: 10px 0 12px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.nav-drawer__sub a{
  display:block;
  padding: 10px 10px;
  border-radius: 14px;
  color: rgba(255,255,255,.82);
}
.nav-drawer__sub a:hover{
  background: rgba(255,255,255,.06);
}

.nav-drawer__nav a{
  display:block;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid transparent;
  color: rgba(255,255,255,.86);
}
.nav-drawer__nav a:hover{
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

.nav-drawer__cta{
  margin-top: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(55,193,255,.92), rgba(124,92,255,.92));
  color: rgba(255,255,255,.95);
  font-weight: 900;
  text-align:center;
  box-shadow: 0 18px 60px rgba(55,193,255,.14);
}
.nav-drawer__cta:hover{ filter: brightness(1.05); }

/* body scroll lock */
body.is-nav-open{ overflow:hidden; }

/* =========================================================
   部品
   - 改行制御
   - ボタン
   - カプセル形 タグ / ラベル (pill)
   - Card
   - Sections
   - Images
========================================================= */

/* PC/SP 改行制御 */
.br-pc{ display:none; }
.br-sp{ display:inline; }
@media (min-width: 941px){
  .br-pc{ display:inline; }
  .br-sp{ display:none; }
}

/* =========================================================
Buttons
========================================================= */
.btn{
  border:1px solid var(--line);
  background: rgba(255,255,255,.08);
  color:var(--text);
  padding:10px 14px;
  border-radius:14px;
  font-weight:700;
  font-size:14px;
  display:inline-flex; align-items:center; gap:10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  cursor:pointer;
  transition: transform .08s ease, background .18s ease, border-color .18s ease, opacity .18s ease;
  user-select:none;
  max-width: 100%;
  justify-content: center;
}
.btn:hover{ background: rgba(255,255,255,.12); border-color:rgba(255,255,255,.18); }
.btn:active{ transform: translateY(1px); }
.btn.primary{
  background: linear-gradient(135deg, rgba(55,193,255,.92), rgba(124,92,255,.92));
  border-color: rgba(255,255,255,.18);
}
.btn.primary:hover{ filter: brightness(1.05); }


.btn.disabled,
.btn[aria-disabled="true"]{
  opacity:.45;
  cursor:not-allowed;
  pointer-events:none;
  filter:saturate(.9);
}

.btn.secondary{
  background: linear-gradient(135deg,
    #1f9f92,  /* 少し暗く */
    #5bc8e3   /* 少し明るく */
  );
  border-color: rgba(255,255,255,.22);
  color: #ffffff;
}
.btn.secondary:hover{
  filter: brightness(1.05) saturate(1.05);
}


/* ===== Pill ===== */
.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:6px 12px;
  margin-top: 0;
  border-radius:999px;

  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;

  color: var(--muted);
  background: rgba(25,160,95,.18);
  border:1px solid var(--line);

  box-shadow: 0 6px 18px rgba(0,0,0,.18) inset;
}

.pill--open{
  color:#d1fae5;
  border-color: rgba(34,197,94,.35);
  background: rgba(34,197,94,.14);
}
.pill--coming{
  color:#dbeafe;
  border-color: rgba(55,193,255,.35);
  background: rgba(55,193,255,.12);
}
.pill--done{
  color:#e5e7eb;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
}

.callout{
  margin-top: 10px;
  padding:12px 14px;
  border-radius: var(--radius);
  border:1px solid rgba(34,197,94,.35);
  background: rgba(34,197,94,.12);
  color:#d1fae5;
  font-weight:800;
  font-size:13px;
  line-height:1.65;
}

.bullets{
  margin:10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size:13px;
  line-height:1.85;
}
.bullets li{ margin: 2px 0; }


/* =========================================================
 Layout helpers
========================================================= */
.row{ 
  display:flex; 
  gap:10px; 
  flex-wrap:wrap; 
  align-items:center; 
  justify-content: center;
}
.row-between{ justify-content:space-between; }
.mt-12{ margin-top:12px; }
.mt-14{ margin-top:14px; }


/* =========================================================
 Sections
========================================================= */
.section{ padding: 14px 5px; }


/* =========================
   Optional: below-the-fold performance
   (LP全体の体感を上げたい場合)
   ========================= */
@supports (content-visibility: auto){
  .section{
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
  }
}

.section-title {
  font-size: clamp(26px, 4.0vw, 32px);
  font-weight: 800;
  line-height: 1.28;      /* 少しだけ読みやすさ寄り */
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 13px;
  margin-bottom: 22px;
  text-align: center;
  

  background: linear-gradient(
    170deg,
    #eef2ff 0%,   /* ほぼ白に近いブルー */
    #c9d2ff 55%,  /* 落ち着いたラベンダー */
    #d7efe6 100%  /* ミントは「気づく人だけ」 */
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;  /* にじみ防止 */
}
@media (max-width: 940px){
  .section-title {
    margin-top: 0 ;
  }
}


.section-title::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform: translateX(-50%);

  width: 72px;
  width: 13%;
  height: 3px;
  border-radius: 999px;

  background: linear-gradient(
    90deg,
    rgba(124,92,255,.0),
    rgba(124,92,255,.8),
    rgba(55,193,255,.8),
    rgba(124,92,255,.0)
  );
  opacity: .9;
}

.section-title--no-underline{
  padding-bottom: 0;
}

.section-title--no-underline::after{
  display: none;
}

@media (max-width: 640px){
  .section-title:not(.section-title--no-underline){
    padding-bottom: 10px;
  }

  .section-title:not(.section-title--no-underline)::after{
    height: 2px;            
    width: 18%;            
    max-width: 56px;
  }
}


.sub{ 
  color:var(--muted); 
  margin:0 0 14px; 
  line-height:1.7; 
  text-align: center;
}


/* =========================================================
   Hero photo (background image + logo overlay)
   - 背景サイズが基準
   - 背景が縮めばロゴも同時に縮む
   - ロゴは背景より高くならない
   - フェードインは 10.0s / delay 0.8s
========================================================= */
#hero{
  padding-top: 0;
}

.photo-hero{
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: hidden;

  position: relative;
  aspect-ratio: 16 / 9;

  padding-top: 0px;
  padding-bottom: 0px;

  /* JSが background-image を直接上書きする */
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center, center, center;
  background-size: cover, cover, cover;

  --logoW: 30%;
  --logoWSp: 43%;
}


/* =========================================================
 Hero Logo
========================================================= */

.photo-inner{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}
.photo-logo{
  width: var(--logoW);
  height: auto;
  opacity: 0;
  transform: translateY(10px);
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.45));
}

@media (max-width: 680px){
  .photo-hero{
    background-size: cover, cover, contain;
  }
  .photo-logo{
    width: var(--logoWSp);
  }
}

.photo-hero.is-inview.is-bg-loaded .photo-logo{
  animation: logoReveal 10.0s cubic-bezier(.16,1,.3,1) 0.8s forwards;
}

@keyframes logoReveal{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
　concept
========================================================= */


#concept-massage{
  margin-top: 5px;
}

.conceptImg{
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 50px;
}

@media (max-width: 940px){
  .conceptImg{
    margin-bottom: 30px;
  }
}

.main-description{
  font-size: clamp(15px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.28;      /* 少しだけ読みやすさ寄り */
  letter-spacing: 0.03em;
  margin-bottom: 22px;
  text-align: center;

  background: linear-gradient(
    170deg,
    #e6ecff 0%,
    #bcc6f0 55%,
    #cdeade 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================================================
 Card
========================================================= */

/* ===== Grids ===== */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 980px){ 
  .grid-3{ grid-template-columns: 1fr; } 
}

.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
@media (max-width: 980px){
   .grid-2{ grid-template-columns: 1fr; } 
  }

.tile{
  padding:16px;
  border:1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  min-width: 0;
}
.tile .tag{
  display:inline-flex; 
  gap:8px; 
  align-items:center;
  font-size:12px; color:var(--muted);
}
.icon{
  width:30px; height:30px;
  border-radius:12px;
  background: rgba(255,255,255,.08);
  border:1px solid var(--line);
  display:grid; place-items:center;
  font-family: var(--mono);
  font-weight: 900;
  color: rgba(255,255,255,.85);
}
.tile h3{ 
  margin:0 0 6px; 
  font-size:16px; 
  text-align: center;

}
.tile p{ 
  margin:0; 
  color:var(--muted); 
  font-size:13px; 
  line-height:1.7; 
  text-align: center;
}

.tile-span-2{ grid-column: span 2; }
@media (max-width: 980px){ .tile-span-2{ grid-column:auto; } }



/* =========================
   core-value section 
   
   #core-value .grid-3 > .tile
   .tag .icon / h3 / .peek / p
========================= */


#core-value .tile{
  /* Card */
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* Layout */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

}

#core-value .tag{
  padding: 8px 12px;
  font-size: 16px;
  letter-spacing: .08em;
  color: rgba(230,236,255,.92);
}

#core-value .tag .icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 28px;
  padding: 0 10px;
  border-radius: 12px;
  border: 1px solid rgba(55,193,255,.28);
  background: rgba(55,193,255,.10);

  font-weight: 700;
  font-size: 12px;
  letter-spacing: .10em;
  color: rgba(230,236,255,.95);
}

/* タイトル（カード内の主見出し） */
#core-value .tile h3{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 800;
  color: rgba(230,236,255,.98);
}


/* -------------------------
   Peek UI
------------------------- */
#core-value .peek{
  width: 90%;
  margin: 14px auto 12px; /* ← peekをカード重心へ */
  padding: 10px 12px;

  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;

  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 10px 26px rgba(0,0,0,.26);

  /* 主役にしすぎない */
  opacity: .78;
}

#core-value .peek::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  box-shadow:
    inset 0 -14px 22px rgba(0,0,0,.28),
    inset 0  10px 18px rgba(255,255,255,.03);
}

#core-value .peek__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 8px 0;
}

#core-value .peek__row + .peek__row{
  border-top: 1px solid rgba(255,255,255,.10);
}

#core-value .peek__label{
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #fff;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#core-value .peek__value{
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #fff;

  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.18);

  flex: 0 0 auto;
}


#core-value .tile--log  .tag .icon{ border-color: rgba(55,193,255,.40); background: rgba(55,193,255,.12); }
#core-value .tile--team .tag .icon{ border-color: rgba(34,197,94,.40);  background: rgba(34,197,94,.12); }
#core-value .tile--shot .tag .icon{ border-color: rgba(124,92,255,.40); background: rgba(124,92,255,.12); }

#core-value .peek__value--log{ border-color: rgba(55,193,255,.40); background: rgba(55,193,255,.12);}
#core-value .peek__value--team{ border-color: rgba(34,197,94,.40);  background: rgba(34,197,94,.12); }
#core-value .peek__value--shot{ border-color: rgba(124,92,255,.40); background: rgba(124,92,255,.12); }


/* 説明文：カード下部は軽く、2行感 */
#core-value .tile p{
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(230,236,255,.78);

  /* 下に落ちすぎない */
  margin-top: 6px;

  /* “カードの下で詰まる”のを防ぐ */
  max-width: 28em;
}



/* =========================
   MyPage section (LP-optimized)
   ========================= */

.section--feature .section-head{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

/* Copy */
.section--feature .section-head__copy{
  min-width: 0;
}

.section--feature .micro-badges{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.section--feature .micro-badges li{
  font-size: .92rem;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 999px;
  /* border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06); */
  backdrop-filter: blur(8px);

  color: #e6fdf3;
  border-color: rgba(34, 197, 94, .24);
  background: rgba(34, 197, 94, .10);
}

/* Media */
.section--feature .section-head__media{
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
  isolation: isolate; /* overlayを綺麗に */
}

/* 画像は必ずカバー */
.section--feature .section-head__media img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;  
  object-fit: cover;
  transform: scale(1.01); /* 端の隙間が出る環境対策 */
}

/* 画像上のグラデ（文字・UIの視認性UP & 高級感） */
.section--feature .section-head__media::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 320px at 70% 25%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.55));
  pointer-events: none;
  z-index: 1;
}

/* caption（熱量を上げるワンフレーズ） */
.section--feature .media-caption{
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(10,12,18,.55);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  font-weight: 800;
  letter-spacing: .02em;
}

/* =========================
   Tiles: 6 cards layout (auto fit)
   ========================= */
.grid-3.grid-3--cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.tile.tile--card{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

/* タイル内の余白・見出しの読みやすさ */
.tile.tile--card h3{
  margin-top: 2px;
  margin-bottom: 15px;
}


@media (max-width: 980px){
  .section--feature .section-head{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .grid-3.grid-3--cards{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px){
  .grid-3.grid-3--cards{
    grid-template-columns: 1fr;
  }
  .section--feature .media-caption{
    font-size: .95rem;
  }
}


/* =============================================================================
   Schedule UI (PC / SP) - Complete CSS (NO .srow__meta)
   Required markup:
   .schedule-list
     .srow
       .srow__status  > .pill
       .srow__date    > .date-main + .date-sub(.dow)
       .srow__title   > .st-round + .st-gym
       .srow__actions > .btn.primary + .btn.secondary(or .ghost)
============================================================================= */

/* ------------------------------
   Container
------------------------------ */
.schedule-list{
  display:flex;
  flex-direction:column;
  gap:0;

  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius2, 18px);
  overflow:hidden;

  background: var(--panel, rgba(255,255,255,.03));
}

/* ------------------------------
   Row (shared)
------------------------------ */
.srow{
  display:grid;
  align-items:center;
  gap:16px;

  padding:8px 18px;
  background: transparent;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.srow:last-child{ border-bottom:none; }

/* ------------------------------
   Status (shared)
------------------------------ */
.srow__status{
  display:flex;
  align-items:center;
  min-height: 34px;
  min-width: 13vw;
  min-width: 130px; 
}

/* ------------------------------
   Date (shared) - 1 column (date-main + date-sub)
------------------------------ */
.srow__date{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;

  min-width:72px;
  text-align:center;
}

.date-main{
  font-size:17px;
  font-weight:500;
  line-height:1;
  letter-spacing:.02em;
}

.date-sub{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  justify-content:center;
}

.dow{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:22px;
  min-width:44px;
  padding:4px 8px;

  border-radius:999px;
  font-size:11px;
  font-weight:800;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);


  line-height:1;
  letter-spacing:.02em;

  color: rgba(230,235,255,.92);
}
.dow--sat{
  border-color: rgba(110,185,255,.45);
  background: rgba(110,185,255,.12);
}
.dow--sun{
  border-color: rgba(255,150,180,.45);
  background: rgba(255,150,180,.10);
}

/* ------------------------------
   Title block (shared)
------------------------------ */
.srow__title{
  display:flex;
  align-items:center;
  gap:6px;
}

.st-round{
  font-size:16px;
  font-weight:500;
  letter-spacing:.02em;
  opacity:.78;
}

.st-gym{
  font-size:16px;
  font-weight:500;
  letter-spacing:.01em;
}
/* ------------------------------
   Actions (shared) - 1 row (btn + btn)
------------------------------ */
.srow__actions{
  display:flex;
  align-items:center;
  gap:12px;
}
.srow__actions .btn{
  white-space: nowrap;
}

/* =============================================================================
   PC (>= 940px)
   - parents (1)(2)(3)(4) in 1 row
   - (2-1)(2-2) already 1 column
   - (3-1)(3-2) in 1 row
   - (4-1)(4-2) in 1 row
============================================================================= */
@media (min-width: 940px){
  .srow{
    grid-template-columns:
      minmax(13vw, auto) /* status */
      auto               /* date */
      1fr                /* title */
      auto;              /* actions */
    column-gap:16px;
  }

  .srow__status{
    justify-content:center;
  }

  .srow__date{
    min-width: 13vw;
  }
  .date-main{
    font-size:16px;
  }

  .srow__title{
    flex-direction:row;         /* (3-1)(3-2) 1行 */
    align-items:baseline;
    gap:12px;
    text-align:left;
    margin-left: 1vw;
  }
  .st-round{
    font-size:16px; 
    min-width: 60px;
    text-align: center;
    margin-right: .8vw;
  }
  .st-gym{ font-size:16px; }

  .srow__actions{
    justify-content:flex-end;
  }
  .srow__actions .btn{
    height:40px;
    padding:0 10px;
  }
}

/* =============================================================================
   SP (< 940px)
   - parents: (1) then (7) then (4) in 1 column
   - (7) = (5)(6) in 1 row
   - (5) = date column, (6) = title column
============================================================================= */
@media (max-width: 940px){
  .srow{
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "status status"
      "date   title"
      "acts   acts";
    gap:14px;
    padding:16px 14px 18px;
  }

  .srow__status{
    grid-area: status;
    justify-content:center;
    /* padding:10px 0 12px; */
    min-width: 0; /* SPでは親幅に従う */
  }

  .srow__date{
    grid-area: date;
    min-width: 0;
  }

  .srow__title{
    grid-area: title;
    flex-direction:column;      /* (3-1)(3-2) 1列 = (6) */
    justify-content:center;
    gap:6px;
    text-align:center;
  }
  .st-round{
    font-size:16px;
  }
  .st-gym{
    font-size:16px;
    white-space:nowrap;
    max-width: 100%;
  }

  /* Actions: centered, two buttons */
  .srow__actions{
    grid-area: acts;
    justify-content:center;
    gap:12px;
    margin-top:6px;
  }
  .srow__actions .btn{
    flex:1;
    max-width: 220px;
    height:40px;
    padding:0 10px;
  }
}

 /* Optional: Row hover focus (kept subtle) */
@media (hover:hover){
  .srow:hover{
    background: rgba(255,255,255,.03);
  }
}


/* =============================================================================
   Category UI (NO horizontal scroll)
   Items: No / 区分 / カテゴリー / 対象
   PC  : 1 line  -> [No][区分][カテゴリー][対象]
   SP  : 2 lines -> 1) [No][区分][カテゴリー]  2) [対象] centered
   Markup (keeps #categoryBody for JS):
     .category-list
       #categoryBody.category-body
         .crow
           .crow__no / .crow__kbn(> .chip) / .crow__cat / .crow__target
============================================================================= */

.category-list{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius2);
  overflow: hidden;
  background: var(--panel);
}

.category-body{
  display:flex;
  flex-direction:column;
}

.crow{
  display:grid;
  align-items:center;
  gap: 0px 14px;
  padding:8px 18px;

  background: transparent;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.crow:last-child{ border-bottom:none; }

/* No */
.crow__no{
  letter-spacing: .02em;
  text-align:center;
  opacity:.95;
}

/* 区分チップは既存 .chip を流用（見た目を画像寄せに微調整） */
.crow__kbn .chip{
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(34,197,94,.18);
  border-color: rgba(34,197,94,.35);
  color: rgba(230,255,240,.92);
}

.chip.kids{
  color:#dbeafe;
  border-color: rgba(55,193,255,.35);
  background: rgba(55,193,255,.12);
}
.chip.general{
  color:#d1fae5;
  border-color: rgba(34,197,94,.35);
  background: rgba(34,197,94,.14);
}

/* カテゴリー文字 */
.crow__cat{
  text-align: center;
  letter-spacing: .02em;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 対象 */
.crow__target{
  text-align: center;
  letter-spacing: .02em;
  opacity: .92;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--muted);
  font-size: 14px;
}

@media (min-width: 940px){
  .crow{
    /* grid-template-columns: 64px auto 1fr auto; */
    /* grid-template-columns: 13vw 13vw auto 32vw; */
    grid-template-columns:
    minmax(120px, 1.3fr)
    minmax(100px, 1.0fr)
    minmax(200px, 2.5fr)
    minmax(240px, 3.2fr);
  }

  .crow__target{
    text-align:center;
  }
}

/* =========================
   SP (< 940px) 画像の2行
   1) [No][区分][カテゴリー]
   2) [対象] centered (full width)
========================= */
@media (max-width: 939px){
  .crow{
    grid-template-columns: 64px auto 1fr;
    grid-template-areas:
      "no  kbn cat"
      "tar tar tar";
    /* row-gap: 14px; */
  }

  .crow__no{ grid-area: no; }
  .crow__kbn{ grid-area: kbn; }
  .crow__cat{ grid-area: cat; }

  .crow__target{
    grid-area: tar;
    text-align:center;
    padding-top: 5px;
  }
}

@media (hover:hover){
  .crow:hover{
    background: rgba(255,255,255,.03);
  }
}

/* =========================================================
Price
========================================================= */
/* ===== Info cards ===== */
.info-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top: 10px;
}

#info-grid-fee{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
  margin-top: 10px;
}
@media (max-width: 980px){
  #info-grid-fee{
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 980px){ .info-grid{ grid-template-columns: 1fr; } }
.info-card{
  padding:16px;
  border:1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  min-width: 0;
}
.info-card h3{ margin:0 0 8px; font-size:16px; }
.info-card p{ margin:0; color:var(--muted); font-size:13px; line-height:1.75; }

.price{
  margin-top: 10px;
  display:grid;
  gap:8px;
}

.price-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
}

.price-text{
  display:flex;
  flex-direction:column;
  gap:2px; /* 行間はここで調整 */
}

.price-row b{
  font-size:13px;
  color: rgba(255,255,255,.92);
}

.price-text span{
  font-size:12px;
  line-height:1.7;
  color: var(--muted);
}

.yen{
  font-family: var(--mono);
  font-weight:900;
  color:#d1fae5;
  letter-spacing:.2px;
  white-space:nowrap;
}


/* =========================================================
Novelty
========================================================= */

.sample-tile h3{ margin:0 0 8px; font-size:16px; }
.sample-tile p{ margin:0 0 10px; color:var(--muted); font-size:13px; line-height:1.7; }

.img-slot{
  border:1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,255,255,.05);
  aspect-ratio: 1 / 1;
  display:grid;
  place-items:center;
  position:relative;
}
.img-slot img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.90;
  display:block;
}
.img-slot .cap{
  position:absolute;
  left:10px; bottom:10px;
  padding:6px 10px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(7,11,20,.62);
  color: rgba(255,255,255,.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing:.2px;
}


/* =========================================================
シリーズポイント
========================================================= */

/* ===== Points table ===== */
.points-table-wrap{
  margin-top: 12px;
  border:1px solid var(--line);
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,255,255,.04);
}
.points-table{
  width:100%;
  border-collapse:collapse;
}
.points-table th, .points-table td{
  padding:10px 12px;
  border-bottom:1px solid var(--line);
  font-size:13px;
  vertical-align:middle;
  text-align: center;
}
.points-table th{
  color: var(--muted);
  font-size:12px;
  letter-spacing:.2px;
  text-transform: uppercase;
  background: rgba(255,255,255,.06);
}
.points-table tr:last-child td{ border-bottom:none; }
.th-right{ text-align:center; }

.points-rank{
  width:40%;
  font-family: var(--mono);
  font-weight: 900;
  color: rgba(255,255,255,.92);
}
.points-point{
  width:60%;
  /* text-align:right; */
  font-family: var(--mono);
  font-weight: 900;
  color:#d1fae5;
  letter-spacing:.2px;
}
.points-scroll{
  max-height: 220px;
  overflow:auto;
}
.points-scroll::-webkit-scrollbar{ height:10px; width:10px; }
.points-scroll::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.14); border-radius:999px; }
.points-scroll::-webkit-scrollbar-track{ background: rgba(255,255,255,.04); }

/* ===== Points concept ===== */
.points-concept{
  margin: 14px 0 18px;
  padding: 16px 16px 18px;
  border-radius: var(--radius2);
  /* border: 1px solid rgba(55,193,255,.28); */
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
}
.points-concept h3{
  text-align: center;
  margin-top: 0;
}

.pc-visual{
  display:flex;
  gap:10px;
  justify-content:center;
  margin-bottom:12px;
}
.pc-box{
  width:48px;
  height:64px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-family: var(--mono);
  font-size:14px;
  border:1px solid var(--line);
}
.pc-box.active{ background:#ff7a18; color:#fff; }
.pc-box.muted{ background:#cfcfcf; color:#fff; }
.pc-title{
  margin: 6px 0 10px;
  text-align:center;
  font-size:16px;
  font-weight:900;
}
.pc-text p{
  margin: 0 0 10px;
  font-size:14px;
  line-height:1.75;
  color: var(--muted);
}
.pc-text ul{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size:13px;
  line-height:1.8;
}
.pc-text li{ margin-bottom:6px; }
@media (max-width: 520px){
  .pc-box{ width:40px; height:56px; font-size:13px; }
}


/* =============================================================================
   Results UI (Schedule-like rows, WITHOUT status)
   Required markup:
   .schedule-list.results-list
     .rrow
       .rrow__date   > .date-main + .date-sub(.dow)
       .rrow__round  > .st-round
       .rrow__gym    > .st-gym
       .rrow__actions> .btn x3
============================================================================= */

.results-list .rrow{
  display:grid;
  align-items:center;
  gap:16px;

  padding:8px 18px;
  background: transparent;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.results-list .rrow:last-child{ border-bottom:none; }

.results-list .rrow__date{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  min-width:13vw;
  text-align:center;
}

.results-list .rrow__round{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.results-list .rrow__gym{
  min-width:0;
  text-align:left;
}
.results-list .rrow__gym .st-gym{
  font-size:16px;
}

.results-list .rrow__actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:wrap;
}
.results-list .rrow__actions .btn{
  height:40px;
  padding:0 10px;
  white-space: nowrap;
}

/* =========================
   PC (>= 940px)
   [date][round][gym][actions]
========================= */
@media (min-width: 940px){
  .results-list .rrow{
    grid-template-columns: auto auto 1fr auto;
    column-gap:16px;
  }

  .results-list .rrow__gym{
    text-align:left;
  }
}

/* =========================
   SP (< 940px)
   [date][round]
   [gym][gym]
   [acts][acts]
========================= */
@media (max-width: 940px){
  .results-list .rrow{
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "date  round"
      "gym   gym"
      "acts  acts";
    gap:14px;
    padding:16px 14px 18px;
  }

  .results-list .rrow__date{ grid-area: date; }
  .results-list .rrow__round{ grid-area: round; }
  .results-list .rrow__gym{
    grid-area: gym;
    text-align:center;
  }
  .results-list .rrow__actions{
    grid-area: acts;
    justify-content:center;
    gap:12px;
    margin-top:6px;
  }

  .results-list .rrow__actions .btn{
    /* flex: 1 1 140px;   */
    flex: 0 0 auto; 
    max-width: 220px;
    height:40px;
    padding:0 10px;
  }
}

/* Optional hover (schedule と同じ温度感) */
@media (hover:hover){
  .results-list .rrow:hover{
    background: rgba(255,255,255,.03);
  }
}


/* =========================
Link buttons: Photo / Archive & schedule
========================= */

/* 共通：輪郭と発光の雰囲気 */
.btn.link-schedule,
.btn.link-photo,
.btn.link-archive{
  /* border-radius: 999px; */
  font-weight: 800;
  letter-spacing: .02em;

  /* 画像っぽい “ガラス感” */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  /* 文字のシャープさ */
  text-shadow: 0 1px 10px rgba(140, 255, 255, .18);
}

/* フォト：塗り（ダーク）＋シアン枠 */
.btn.link-schedule,
.btn.link-photo{
  background: rgba(20, 42, 55, .78);
  border: 2px solid rgba(110, 235, 235, .55);
  color: rgba(205, 255, 255, .90);

  /* 内側の薄いハイライト */
  box-shadow:
    inset 0 0 0 1px rgba(160, 255, 255, .12),
    0 10px 22px rgba(0, 0, 0, .28);
}

/* 動画アーカイブ：アウトライン */
.btn.link-archive{
  background: transparent;
  border: 2px solid rgba(170, 255, 255, .70);
  color: rgba(220, 255, 255, .92);

  box-shadow:
    0 10px 22px rgba(0, 0, 0, .22);
}

/* hover：上品に“少しだけ”持ち上げる */
@media (hover:hover){
  .btn.link-schedule:hover,
  .btn.link-photo:hover,
  .btn.link-archive:hover{
    transform: translateY(-1px);
  }

  .btn.link-schedule:hover,
  .btn.link-photo:hover{
    background: rgba(20, 42, 55, .86);
    border-color: rgba(170, 255, 255, .70);
  }

  .btn.link-archive:hover{
    background: rgba(20, 42, 55, .35); /* うっすら乗せる */
    border-color: rgba(200, 255, 255, .85);
  }
}

/* disabled（既存と整合） */
.btn.disabled.link-photo,
.btn.disabled.link-archive{
  opacity: .45;
  filter: saturate(.8);
  cursor: not-allowed;
  transform: none;
}

#seriesPoint{
  font-size: clamp(22px, 3.4vw, 28px);
  margin: 15px;
}

/* =========================
   Peek UI (UIの影)
   - Not a screenshot, just a hint of UI
========================= */
.peek{
  margin: 14px auto;
  width: 88%;
  padding: 10px 12px;

  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.02)
  );

  /* 主役にしない */
  opacity: .72;

  /* ほんのりガラス */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  /* 影は控えめ */
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
}


.peek__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 7px 0;
}

.peek__row + .peek__row{
  border-top: 1px solid rgba(255,255,255,.10);
}

.peek__label{
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, 0.78);

  /* 長い文言が来ても崩れない */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.peek__value{
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .02em;
  color: rgba(255,255,255,.92);

  /* 数字や短文を締める */
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.18);

  flex: 0 0 auto;
}

.peek::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  box-shadow:
    inset 0 -12px 20px rgba(0,0,0,.35),
    0 8px 20px rgba(0,0,0,.35);
  pointer-events:none;
}

/* SPでさらに“気配”寄りに（文字を少しだけ小さく） */
@media (max-width: 940px){
  .peek{ margin-top: 12px; padding: 9px 10px; border-radius: 12px; }
  .peek__label, .peek__value{ font-size: 11.5px; }
}

.value-card{
  display: flex;
  flex-direction: column;

  /* 重要：上下に余白を配分 */
  padding: 22px 18px 24px;
}

/* =========================
  Link Btn
========================= */
.row.link-btn{
  margin-top: 18px;
  margin-bottom: 18px;
  gap: 12px;
}


/* =========================
   Next Event Mini Block
========================= */
.next-event-mini {
  margin: 8px auto 24px;
  padding: 10px 16px;
  max-width: 920px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  font-size: 14px;
  line-height: 1.4;

  color: rgba(255, 255, 255, 0.85);
}

.next-event-mini {
  display: flex;
  flex-direction: column;
  gap: 6px;
}


/* 「次回開催」ラベル */
.next-event-label {
  font-weight: 600;
  opacity: 0.85;
}

/* 開催情報 */
.next-event-info {
  white-space: nowrap;
  opacity: 0.9;
}

/* CTA（超控えめ） */
.next-event-cta {
  margin-left: 6px;
  padding: 6px 14px;

  font-size: 13px;
  font-weight: 600;

  color: #fff;
  /* background: linear-gradient(135deg, #ff7a18, #ff9f1c); */
  background: linear-gradient(135deg, rgba(55,193,255,.92), rgba(124,92,255,.92));
  border-color: rgba(255,255,255,.18);
  /* border-radius: 999px; */
  border-radius:14px;

  text-decoration: none;
  white-space: nowrap;

  transition: opacity 0.2s ease, transform 0.2s ease;
}

.next-event-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .next-event-mini {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
  }

  .next-event-cta {
    padding: 6px 12px;
    font-size: 12px;
  }
}

.cta-fab__inner {
  display: flex;
  flex-direction: column; /* ← これが不足している */
  align-items: center;
}


.cta-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 8px;
}

.cta-tag {
  font-size: 12px;
  line-height: 1;
  padding: 5px 10px;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);

  color: rgba(255,255,255,.9);
  white-space: nowrap;
}

.next-event-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;   /* ← 情報とボタンの区切り */
}

.next-event-cta--secondary {
  background: transparent;
  color: #fff;

  border: 1px solid rgba(255,255,255,.35);
  font-weight: 600;

  opacity: .9;
}

.next-event-cta--secondary:hover {
  opacity: 1;
  background: rgba(255,255,255,.08);
}

@media (max-width: 768px) {
  .next-event-actions {
    gap: 8px;
  }

  .next-event-cta {
    flex: 1;
    text-align: center;
  }
}

/* =============================================================================
  FAQ
============================================================================= */
.faq{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  overflow:hidden;
  background: var(--panel);
}
.faq-item{ border-bottom:1px solid var(--line); }
.faq-item:last-child{ border-bottom:none; }
.faq-q{
  width:100%;
  text-align:left;
  padding:14px 14px;
  background: transparent;
  border:none;
  color: var(--text);
  font-weight:900;
  display:flex; justify-content:space-between; align-items:center;
  cursor:pointer;
  font-size:14px;
}
.faq-a{
  padding: 0 14px 14px;
  color: var(--muted);
  font-size:13px;
  line-height:1.75;
  display:none;
}
.chev{ opacity:.85; font-family:var(--mono); transition: transform .12s ease; }
.faq-item.open .faq-a{ display:block; }
.faq-item.open .chev{ transform: rotate(90deg); }

/* =========================
  問い合わせ
========================= */

.btn.instagram{
  color: #ffffff;
  border-color: #ffffff;
}

#instagram{
  display: block; 
  width: 50px;
  height: 50px;
  margin: 10px auto; 
}

/* =========================
  spponsor
========================= */

.photo-sponsor{
  width: 100vw;

  border: none;
  box-shadow: none;
  border-radius: 0;

  padding-top: 0px;
  padding-bottom: 0px;
  
  /* --logoW: 30%;
  --logoWSp: 43%; */
}

/* ===== Footer ===== */
footer{ 
  padding: 0 0 36px 0; 
  color: var(--muted); 
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  border-top: 1px solid var(--line);
  /* padding-top:18px; */
  padding-top:0;
  /* margin-top:12px; */
   margin-top:0x;
}
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr; } }
.small{ font-size:12px; line-height:1.6; }

.footer-brand{ margin-bottom:10px; }
.footer-title{ font-weight:900; }
.footer-copy{ margin-top:10px; }


/* -------------------------
  下部 固定CTA
------------------------- */
.reflection-border {
  position: relative;
  z-index: 0;
}

.reflection-border::before {
  content: "";
  position: absolute;
  inset: -2px;              /* 枠の外側 */
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255,255,255,0.9) 50%,
      transparent 100%
    );
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px 2px;             /* 枠の太さ */
  opacity: 0;
  animation: border-sweep 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes border-sweep {
  0% {
    background-position: 0% 0%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  50% {
    background-position: 200% 0%;
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    background-position: 200% 0%;
    opacity: 0;
  }
}

/* =========================
   Toast
========================= */
.toast{
        position: fixed;
        left: 50%;
        bottom: 22px;
        transform: translateX(-50%);
        padding: 12px 14px;
        border-radius: 14px;
        border: 1px solid rgba(255,255,255,.16);
        background: rgba(7,11,20,.85);
        backdrop-filter: blur(10px);
        color: rgba(255,255,255,.92);
        box-shadow: 0 14px 40px rgba(0,0,0,.45);
        font-weight: 800;
        font-size: 13px;
        max-width: 92vw;
        z-index: 9999;
        opacity: 0;
        transition: opacity .12s ease;
        pointer-events: none;
      }