/* =========================================================
   ALMA FIGHT GYM - Global Styles (Clean Complete)
   - Max width: 1200px
   - Header is vertically centered & balanced paddings
   - Hero photo background (limited height on PC)
   - Dual labels for nav & buttons
   ========================================================= */

/* -------------------------
   Design Tokens
------------------------- */
:root{
  --bg:#0b0d10;
  --card:#10141a;
  --text:#e8eef6;
  --muted:rgba(232,238,246,.68);
  --line:rgba(232,238,246,.12);
  --accent:#ff2d2d;
  --shadow:0 14px 40px rgba(0,0,0,.35);

  --radius:18px;

  /* User rule: PC max-width 1400 */
  --container:1320px;

  /* Header height */
  --headerH:78px;

  /* Global horizontal padding */
  --gutter:18px;
  --gutterWide:clamp(16px, 4vw, 24px);
}

/* -------------------------
   Base / Reset
------------------------- */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  padding-top: var(--headerH);
  background:
    radial-gradient(900px 500px at 20% -10%, rgba(255,45,45,.18), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(255,255,255,.08), transparent 55%),
    var(--bg);
  color:var(--text);
  font-family:"Contrail One","Noto Sans JP",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  letter-spacing:.02em;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}

/* -------------------------
   Layout Helpers
------------------------- */
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 var(--gutter);
}
.inner{
  max-width:var(--container);
  margin:0 auto;
  padding:0 var(--gutter);
}
.inner.narrow{
  max-width:800px;
}
.section{padding:72px 0}

/* Titles (generic) */
.h1{font-size:clamp(28px,3.2vw,44px);letter-spacing:.06em;margin:0 0 14px}
.lead{color:var(--muted);max-width:720px;line-height:1.9;margin:0}

/* Skip link */
.skip-link{
  position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip-link:focus{
  left:18px;top:18px;width:auto;height:auto;
  background:#fff;color:#000;padding:10px 12px;border-radius:10px;z-index:9999;
}

/* =========================================================
   HEADER
   - Fix: height is stable
   - Fix: contents vertically centered (no "up-shift")
   - Fix: left logo padding equals right burger padding
   ========================================================= */
/* Header: sticky → fixed に変更（確実に固定） */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: var(--headerH);
  backdrop-filter: blur(10px);
  background: rgba(11,13,16,.72);
  border-bottom: 1px solid var(--line);
}


/* The single source of truth for header spacing & centering */
.header-inner{
  height:100%;
  max-width:var(--container);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.site-header .header-inner{
  max-width: none;
}

@media (max-width: 768px){
	.header-inner{
  height:100%;
  max-width:var(--container);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  justify-content: flex-start;
  gap:10px;
  min-width:160px;
}
.brand-logo{
  height: 50px;     /* 高さだけ固定 */
  width: auto;      /* 幅は自動 */
  display:block;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 768px){
  .brand-logo{
    width:180px;     /* ← SP用に少し小さく */
    height:auto;     /* 縦は比率に任せる */
  }
}


/* Desktop nav */
.nav{margin-left:auto}
.nav-list{
  display:flex;
  gap:18px;
  list-style:none;
  margin:0;
  padding:0;
}

/* Dual-label nav item */
.nav-link.nav-dual{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  padding:10px 12px;
  border-radius:14px;

  color:var(--muted);
  background:transparent;
  overflow:hidden;

  transition:transform .18s ease, background .25s ease, color .25s ease;
}

.nav-en{
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  line-height:1.1;
}
.nav-ja{
  margin-top:5px;
  font-size:10px;
  font-weight:400;
  letter-spacing:.12em;
  opacity:.62;
  line-height:1.1;
  font-family:"Noto Sans JP","Contrail One",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  transition:opacity .25s ease, transform .25s ease;
}

/* Light sweep */
.nav-link.nav-dual::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:linear-gradient(120deg,
    transparent 0%,
    rgba(255,255,255,.14) 18%,
    transparent 36%
  );
  transform:translateX(-120%);
  transition:transform .55s cubic-bezier(.2,.8,.2,1);
  pointer-events:none;
}

/* Subtle accent line */
.nav-link.nav-dual::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:8px;
  height:1px;
  background:linear-gradient(90deg,
    transparent,
    rgba(255,45,45,.85),
    transparent
  );
  opacity:0;
  transform:translateY(4px);
  transition:opacity .25s ease, transform .25s ease;
  pointer-events:none;
}

.nav-link.nav-dual:hover{
  color:var(--text);
  background:rgba(255,255,255,.06);
  transform:translateY(-1px);
}
.nav-link.nav-dual:hover::before{ transform:translateX(120%); }
.nav-link.nav-dual:hover::after{ opacity:1; transform:translateY(0); }
.nav-link.nav-dual:hover .nav-ja{ opacity:.9; transform:translateY(-1px); }
.nav-link.nav-dual:active{ transform:translateY(0) scale(.99); }

/* Header CTA (PC) */
.header-cta{
  display:flex;
  gap:10px;
  align-items:center;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:40px;
  padding:0 14px;
  border-radius:999px;

  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;

  border:1px solid transparent;
  transition:transform .15s ease, background .2s ease, border-color .2s ease, opacity .2s ease, box-shadow .2s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0) scale(.99)}

.btn-primary{
  background:var(--accent);
  color:#fff;
  box-shadow:0 12px 28px rgba(255,45,45,.22);
}
.btn-primary:hover{opacity:.92}

.btn-ghost{
  background:transparent;
  border-color:rgba(255,255,255,.22);
  color:var(--text);
}
.btn-ghost:hover{background:rgba(255,255,255,.06)}

/* Dual label inside button */
.btn-dual{
  flex-direction:column;
  line-height:1.05;
  padding:10px 16px 9px;
  height:auto; /* allow two lines */
}
.btn-en{
  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
}
.btn-ja{
  margin-top:4px;
  font-size:10px;
  font-weight:600;
  letter-spacing:.10em;
  opacity:.78;
  font-family:"Noto Sans JP","Contrail One",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

/* =========================================================
   BURGER (SP)
========================================================= */
.nav-toggle{
  display:none;
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.04);
  color:var(--text);

  align-items:center;
  justify-content:center;
  cursor:pointer;

  transition:transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.nav-toggle:hover{
  background:rgba(255,255,255,.07);
  border-color:rgba(255,255,255,.22);
  box-shadow:0 10px 24px rgba(0,0,0,.28);
  transform:translateY(-1px);
}
.nav-toggle:active{ transform:translateY(0) scale(.98); }

.nav-icon{
  position:relative;
  width:20px;
  height:14px;
  display:block;
}
.nav-icon span{
  position:absolute;
  left:0;
  width:100%;
  height:2px;
  background:rgba(232,238,246,.92);
  border-radius:999px;
  transition:transform .22s ease, top .22s ease, opacity .18s ease, background .22s ease, width .22s ease;
}
.nav-icon span:nth-child(1){ top:0; }
.nav-icon span:nth-child(2){ top:6px; opacity:.92; }
.nav-icon span:nth-child(3){ top:12px; width:74%; }

.nav-toggle.is-open .nav-icon span:nth-child(1){
  top:6px;
  transform:rotate(45deg);
  background:var(--accent);
}
.nav-toggle.is-open .nav-icon span:nth-child(2){ opacity:0; }
.nav-toggle.is-open .nav-icon span:nth-child(3){
  top:6px;
  width:100%;
  transform:rotate(-45deg);
  background:var(--accent);
}

/* SP dropdown */
.sp-menu{
  border-top:1px solid var(--line);
  background:rgba(11,13,16,.92);
  animation: spFade .18s ease;
}
@keyframes spFade{
  from{opacity:0; transform:translateY(-6px);}
  to{opacity:1; transform:translateY(0);}
}
.sp-menu-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:14px var(--gutter) 18px;
  display:grid;
  gap:10px;
}
.sp-link{
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  font-weight:800;
  letter-spacing:.10em;
  color:var(--text);
}
.sp-link:hover{ background:rgba(255,255,255,.06); }

.sp-cta{
  display:flex;
  gap:12px;
  margin-top:18px;
}
.sp-cta .btn-sp{
  flex:1;
  height:52px;
  padding:10px 12px 8px;
  border-radius:999px;
}
@media (max-width: 360px){
  .sp-cta{flex-direction:column;}
}

/* Responsive header switches */
@media (max-width: 980px){
  .nav, .header-cta{display:none}
  .nav-toggle{display:inline-flex}
}

/* =========================================================
   HERO (Photo Background) - subtle motion (Ken Burns)
========================================================= */
.sec-hero{
  position:relative;
  min-height:72vh;
  max-height:860px;
  display:flex;
  align-items:center;
  background:none;
  overflow:hidden;
}

/* 背景画像（動かす本体） */
.sec-hero::before{
  content:"";
  position:absolute;
  inset:-10%;
  background:url("../img/hm-t-hero-1.png") center top / cover no-repeat;

  transform:scale(1.05) translate3d(0,0,0);
  animation:heroKenBurns 14s ease-in-out infinite alternate;

  will-change:transform;
  z-index:0;
}

/* 暗めオーバーレイ */
.sec-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.45) 40%, rgba(0,0,0,.85) 100%),
    radial-gradient(60% 40% at 20% 30%, rgba(255,255,255,.08), transparent 60%);
  pointer-events:none;
  z-index:1;
}

@keyframes heroKenBurns{
  0%   { transform:scale(1.05) translate3d(0px, 0px, 0); }
  100% { transform:scale(1.14) translate3d(-22px, 14px, 0); }
}

/* Hero inner（文字） */
.sec-hero .inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding-left:clamp(24px, 6vw, 84px);
  padding-right:clamp(24px, 4vw, 72px);
}

/* Hero title / lead / cta（これはあなたの後半の指定を残してOK） */
.hero-title{
  font-family: "Goblin One", sans-serif;
  font-size:clamp(40px, 10vw, 80px);
  font-weight:400;
  letter-spacing:.14em;
  line-height:1.05;
  margin:0 0 24px;
  max-width:820px;
}
.hero-lead{
  max-width:520px;
  font-size:16px;
  line-height:1.9;
  color:rgba(232,238,246,.85);
  margin:0 0 36px;
}
.hero-cta{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  max-width:720px;
}

/* テキストのフェードアップ（既存のままでOK） */
.hero-title,
.hero-lead,
.hero-cta{
  opacity:0;
  transform:translateY(14px);
  animation:heroFade .8s ease forwards;
}
.hero-lead{ animation-delay:.12s; }
.hero-cta{  animation-delay:.24s; }

@keyframes heroFade{
  to{ opacity:1; transform:translateY(0); }
}

/* SP hero（これも1つだけに統一） */
@media (max-width: 768px){
  .sec-hero{
    min-height:50vh;
    max-height:none;
    align-items:flex-end;
    padding-bottom:clamp(64px, 10vh, 120px);
  }
  .sec-hero::before{
    animation-duration:18s; /* SPは少しゆっくり */
  }
  .sec-hero .inner{
    padding-left:var(--gutter);
    padding-right:var(--gutter);
  }
  .hero-title{
    font-size:40px;
    letter-spacing:.14em;
  }
  .hero-lead{
    font-size:14px;
    margin-bottom:28px;
  }
  .hero-cta{ gap:12px; }
}

/* 動きが苦手な人向け */
@media (prefers-reduced-motion: reduce){
  .sec-hero::before{ animation:none; transform:scale(1.08); }
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer{
  margin-top:80px;
  border-top:1px solid var(--line);
  background:rgba(0,0,0,.20);
}
.site-footer .container{
  max-width:1320px;
}
.footer-grid{
  display:grid;
  gap:48px;
  padding:36px 0;

  grid-template-columns:minmax(260px, 1fr) minmax(200px, 260px) minmax(260px, 340px);
  align-items:start;
}

.footer-ttl{
  font-weight:900;
  letter-spacing:.12em;
  font-size:14px;
  color:var(--muted);
  margin-bottom:10px;
}

.footer-brand-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}
.footer-logo-img{
  width:230px;
  height:auto;
  opacity:.85;
}
@media (max-width: 768px){
  .footer-logo-img{
    width:180px;     /* ← SP用に少し小さく */
    height:auto;     /* 縦は比率に任せる */
  }
}
.footer-brand-link:hover .footer-logo-img{ opacity:1; }

.footer-sub{
  margin-top:6px;
  font-family:"Contrail One",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size:12px;
  font-weight:500;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(232,238,246,.72);
}

@media (max-width: 768px){
	.footer-sub{
  margin-top:6px;
  font-family:"Contrail One",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size:10px;
  font-weight:500;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(232,238,246,.72);
}
}

.footer-note{
  color:var(--muted);
  line-height:1.9;
  max-width:420px;
  margin:12px 0 0;
}

.footer-nav a,
.footer-info .footer-line{
  display:block;
  color:var(--muted);
  line-height:2;
  font-size:12px;
}
.footer-nav a:hover{ color:var(--text); }

/* OPEN badge */
.footer-open{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:6px;
}
.open-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 10px;
  border-radius:999px;

  font-size:11px;
  font-weight:900;
  letter-spacing:.12em;

  color:#fff;
  background:linear-gradient(135deg, rgba(255,45,45,.95), rgba(255,45,45,.75));
  box-shadow:0 6px 18px rgba(255,45,45,.35), inset 0 0 0 1px rgba(255,255,255,.18);
}
.open-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 0 8px rgba(255,255,255,.9);
}
.open-time{
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  color:var(--muted);
}

/* SNS */
.footer-sns{
  display:flex;
  gap:14px;
  margin-top:14px;
  flex-wrap:wrap;
}

.sns-icon{
  width:36px;
  height:36px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.03);
  transition:transform .25s ease, background .25s ease, border-color .25s ease;
}
.sns-icon svg{
  width:18px;
  height:18px;
  stroke:#fff;
  fill:none;
  stroke-width:1.6;
}
.sns-icon:hover{
  background:rgba(255,45,45,.12);
  border-color:rgba(255,45,45,.6);
  transform:translateY(-2px);
}
.sns-icon:hover svg{ stroke:var(--accent); }

/* Footer bottom */
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:14px 0 22px;
  border-top:1px solid var(--line);
  color:var(--muted);
}

/* Back to top (Modern) */
.to-top{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:10px 14px;
  border-radius:999px;

  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.03);
  color:rgba(232,238,246,.78);

  overflow:hidden;
  transition:transform .18s ease, border-color .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.to-top__icon{
  width:34px;
  height:34px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}
.to-top__icon svg{
  width:18px;
  height:18px;
  stroke:rgba(232,238,246,.92);
  fill:none;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:transform .25s ease, stroke .25s ease;
}
.to-top__text{ display:flex; flex-direction:column; line-height:1.05; }
.to-top__en{ font-size:11px; font-weight:900; letter-spacing:.16em; }
.to-top__ja{
  margin-top:4px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.10em;
  opacity:.7;
  font-family:"Noto Sans JP","Montserrat",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.to-top::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,.14) 18%, transparent 36%);
  transform:translateX(-120%);
  transition:transform .6s cubic-bezier(.2,.8,.2,1);
  pointer-events:none;
}
.to-top:hover{
  transform:translateY(-1px);
  color:rgba(232,238,246,.95);
  background:rgba(255,255,255,.06);
  border-color:rgba(255,45,45,.45);
  box-shadow:0 14px 36px rgba(0,0,0,.30);
}
.to-top:hover::before{ transform:translateX(120%); }
.to-top:hover .to-top__icon{
  border-color:rgba(255,45,45,.45);
  background:rgba(255,45,45,.10);
}
.to-top:hover .to-top__icon svg{
  stroke:var(--accent);
  transform:translateY(-1px);
}
.to-top:active{ transform:translateY(0) scale(.99); }

@media (max-width: 768px){
  .to-top{ padding:9px 12px; }
  .to-top__icon{ width:32px; height:32px; }

  .footer-grid{
    grid-template-columns:1fr;
    gap:22px;
  }
}

/* CONCEPT */
.sec-concept{
  padding:120px 0;
}

.sec-eyebrow{
  font-size:20px;
  letter-spacing:.28em;
  font-weight:800;
  color:rgba(232,238,246,.55);
  margin-bottom:18px;
}

.sec-title{
  font-size:clamp(28px, 3.6vw, 44px);
  font-weight:800;
  line-height:1.25;
  letter-spacing:.06em;
  margin:0 0 28px;
}

.sec-text{
  font-size:15px;
  line-height:2;
  color:rgba(232,238,246,.75);
}

/* =========================================================
   SECTION 02 : CONCEPT (Quiet but Strong)
========================================================= */
.sec-concept{
  position:relative;
  padding:160px 0 60px;
  overflow:hidden;
}

/* 内側の構図を作る */
.sec-concept .inner.narrow{
  position:relative;
  padding-left:24px; /* 支点ライン分 */
}

@media (min-width: 980px){
  .sec-concept .inner.narrow{
    max-width: 920px;   /* 800px → 920px（※narrow定義がある場合） */
  }
}

/* 左の支点ライン */
.sec-concept .inner.narrow::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  bottom:8px;
  width:1px;
  background:linear-gradient(
    180deg,
    transparent,
    rgba(255,45,45,.65),
    rgba(255,255,255,.12),
    transparent
  );
}

/* 背景ビッグタイポ（象徴） */
.sec-concept::after{
  content:"REFINED";
  position:absolute;
  right:-20px;
  top:50%;
  transform:translateY(-50%);
  font-family:"Kanit", system-ui, sans-serif;
  font-weight:900;
  letter-spacing:.22em;
  font-size:clamp(64px, 12vw, 180px);
  color:rgba(255,255,255,.04);
  pointer-events:none;
  white-space:nowrap;
}

/* タイトルを少し引き締める */
.sec-concept .sec-title{
  font-family:"Contrail One", sans-serif;
  letter-spacing:.08em;
  font-weight:600;
  line-height:1.18;
  margin-bottom:26px;
}

/* 日本語テキストの余韻 */
.sec-concept .sec-text{
  max-width:560px;
  font-size:15px;
  line-height:2.05;
  color:rgba(232,238,246,.78);
}

@media (max-width: 768px){
  .sec-concept{
    padding:96px 0 40px;
  }

  .sec-concept .inner.narrow{
    padding-left:18px;
  }

  .sec-concept::after{
    right:-90px;
    font-size:160px;
  }
}


/* =========================
   NEWS Cards
========================= */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.news-cardLink {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-card {
  height: 100%;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
}

.news-cardLink:hover .news-card {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
}

/* 画像がある場合 */
.news-card.has-image .news__img {
  aspect-ratio: 16 / 10;
  background: #f2f2f2;
}

.news-card.has-image .news__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 画像がない場合：上の画像エリアが無い分、余白と見栄えを調整 */
.news-card.no-image .news__body {
  padding-top: 16px;
}

.news__body {
  padding: 14px 14px 16px;
}

.news__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.news__date {
  font-size: 12px;
  opacity: .7;
  letter-spacing: .02em;
}

.news__cat {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
}

.news__ttl {
  font-size: 15px;
  line-height: 1.35;
  margin: 0 0 8px;
}

.news__excerpt {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  opacity: .85;
}

/* 状態表示 */
.news__loading, .news__error, .news__empty {
  grid-column: 1 / -1;
  padding: 12px 0;
  opacity: .75;
}


/* =========================================================
   DISCIPLINES (A)
========================================================= */
.sec-disciplines{
  padding:96px 0;
}

.disciplines-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.discipline-card{
  position:relative;
  display:block;
  border-radius:18px;
  padding:26px 24px;

  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);

  overflow:hidden;
  transition:transform .18s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

/* うっすら“空気”を入れる（写真なしでも高級） */
.discipline-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(60% 60% at 20% 20%, rgba(255,255,255,.08), transparent 55%),
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.10) 18%, transparent 36%);
  transform:translateX(-120%);
  transition:transform .7s cubic-bezier(.2,.8,.2,1);
  pointer-events:none;
}

.discipline-head{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:14px;
}

.discipline-title{
  font-family:"Kanit", system-ui, sans-serif;
  font-size:22px;
  font-weight:900;
  letter-spacing:.14em;
  margin:0;
  transform:skewX(-6deg);
}

.discipline-sub{
  margin:0;
  color:rgba(232,238,246,.72);
  font-size:13px;
  letter-spacing:.10em;
  font-family:"Noto Sans JP","Montserrat",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.discipline-desc{
  margin:0;
  color:rgba(232,238,246,.72);
  line-height:1.95;
  font-size:14px;
}

.discipline-cta{
  margin-top:18px;
  display:inline-flex;
  align-items:center;
  gap:10px;

  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
  color:rgba(232,238,246,.80);
}

.discipline-cta::after{
  content:"";
  width:22px;
  height:1px;
  background:linear-gradient(90deg, rgba(255,45,45,.95), transparent);
  transition:transform .25s ease, opacity .25s ease;
  opacity:.85;
}

/* hover（最新っぽい“微差”だけ） */
.discipline-card:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.05);
  border-color:rgba(255,45,45,.40);
  box-shadow:0 18px 42px rgba(0,0,0,.35);
}
.discipline-card:hover::before{
  transform:translateX(120%);
}
.discipline-card:hover .discipline-cta::after{
  transform:translateX(4px);
  opacity:1;
}

/* SP */
@media (max-width: 768px){
  .sec-disciplines{ padding:72px 0; }
  .disciplines-grid{ grid-template-columns:1fr; gap:14px; }
  .discipline-card{ padding:22px 18px; }
  .discipline-title{ font-size:20px; }
}

/* =========================================================
   DISCIPLINES - photo background (subtle)
========================================================= */
.discipline-card{
  background:rgba(255,255,255,.03);
}

/* Kickboxing */
.discipline-card.is-kick{
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.80)),
    url("../img/hm-t-04.png") center / cover no-repeat;
}

/* Jiu-Jitsu */
.discipline-card.is-jiu{
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.80)),
    url("../img/hm-t-03.png") center / cover no-repeat;
}

/* 写真を“上品”にする（共通） */
.discipline-card.is-kick,
.discipline-card.is-jiu{
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 42px rgba(0,0,0,.35);
}

/* hoverで少しだけ“生きる” */
.discipline-card.is-kick:hover,
.discipline-card.is-jiu:hover{
  border-color:rgba(255,45,45,.40);
  transform:translateY(-2px);
}

/* =========================================================
   SECTION 04 : PROGRAMS
========================================================= */
.sec-programs{
  padding:140px 0;
}

.sec-programs .sec-title{
  margin-bottom:56px;
  font-family: "Contrail One", sans-serif;
}

.sec-title span{
  display:block;
  margin-top:6px;
  font-size:12px;
  letter-spacing:.18em;
  color:rgba(255,255,255,.45);
}


/* GRID */
.programs-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

/* CARD */
.program-card{
  position:relative;
  padding:34px 28px;
  border-radius:20px;

  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border:1px solid rgba(255,255,255,.10);

  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

/* subtle glow */
.program-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:20px;
  background:radial-gradient(
    400px 200px at 20% 0%,
    rgba(255,45,45,.18),
    transparent 60%
  );
  opacity:0;
  transition:opacity .3s ease;
  pointer-events:none;
}

/* LABEL */
.program-label{
  display:inline-block;
  font-size:11px;
  letter-spacing:.18em;
  font-weight:700;
  color:rgba(255,255,255,.55);
  margin-bottom:18px;
}

/* TITLE */
.program-title{
  font-size:20px;
  font-weight:700;
  margin:0 0 14px;
}

/* LEAD */
.program-lead{
  font-size:15px;
  margin:0 0 12px;
  color:#fff;
}

/* DESC */
.program-desc{
  font-size:14px;
  line-height:1.9;
  color:rgba(232,238,246,.75);
}

/* HOVER */
.program-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,45,45,.45);
  box-shadow:0 24px 48px rgba(0,0,0,.4);
}
.program-card:hover::after{
  opacity:1;
}

/* SP */
@media (max-width: 900px){
  .programs-grid{
    grid-template-columns:1fr;
    gap:14px;
  }
}

/* =========================================================
   SECTION 04 : PROGRAMS (High-design layout)
========================================================= */
.sec-programs{
  position:relative;
  padding:140px 0;
  overflow:hidden;
}

/* 背景に薄い斜めアクセント（写真なしでも強い） */
.sec-programs::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(700px 420px at 15% 25%, rgba(255,45,45,.10), transparent 55%),
    radial-gradient(900px 520px at 80% 55%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(115deg, rgba(255,255,255,.04) 0%, transparent 35%, rgba(255,255,255,.02) 70%, transparent 100%);
  transform:rotate(-6deg);
  pointer-events:none;
  z-index:0;
}

.sec-programs .inner{ position:relative; z-index:1; }

.sec-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:44px;
}

.sec-title span{
  display:block;
  margin-top:8px;
  font-size:12px;
  letter-spacing:.18em;
  color:rgba(255,255,255,.45);
}

/* 不規則グリッドで「羅列感」を消す */
.pro-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: auto auto;
  gap:18px;
}

.pro-card{
  position:relative;
  display:block;
  border-radius:22px;
  padding:34px 28px;

  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.11);

  overflow:hidden;
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

/* 01を大きく見せて主役に */
.pro-card.is-beginner{ grid-column:1; grid-row:1 / span 2; }
.pro-card.is-regular{  grid-column:2; grid-row:1; }
.pro-card.is-advanced{ grid-column:2; grid-row:2; }

/* 上部 */
.pro-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
}

/* 巨大番号（グラフィック化） */
.pro-num{
  font-family:"Kanit", system-ui, sans-serif;
  font-weight:900;
  letter-spacing:.08em;
  font-size:44px;
  line-height:1;
  color:rgba(255,255,255,.22);
  transform:skewX(-8deg);
}

/* タグ */
.pro-tag{
  font-size:11px;
  font-weight:800;
  letter-spacing:.16em;
  color:rgba(255,255,255,.62);
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.25);
  backdrop-filter: blur(6px);
}

/* タイトル */
.pro-title{
  margin:0 0 10px;
  font-size:20px;
  font-weight:800;
  letter-spacing:.04em;
}

.pro-lead{
  margin:0 0 14px;
  color:#fff;
  font-size:15px;
}

.pro-desc{
  margin:0 0 20px;
  color:rgba(232,238,246,.75);
  line-height:1.95;
  font-size:14px;
  max-width: 36em;
}

/* CTA（英日2段） */
.pro-cta{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
  color:rgba(232,238,246,.85);
}
.pro-cta small{
  font-size:10px;
  font-weight:700;
  letter-spacing:.12em;
  color:rgba(232,238,246,.55);
}
.pro-cta::after{
  content:"";
  width:34px;
  height:1px;
  background:linear-gradient(90deg, rgba(255,45,45,.95), transparent);
  transition:transform .25s ease, opacity .25s ease;
  opacity:.85;
}

/* 左上から斜めに光が走る（hoverで動く） */
.pro-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,.12) 18%, transparent 36%);
  transform:translateX(-120%);
  transition:transform .85s cubic-bezier(.2,.8,.2,1);
  pointer-events:none;
  opacity:.85;
}

/* Hover */
.pro-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,45,45,.45);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  box-shadow:0 26px 60px rgba(0,0,0,.45);
}
.pro-card:hover::before{ transform:translateX(120%); }
.pro-card:hover .pro-cta::after{ transform:translateX(6px); opacity:1; }

/* 種別ごとのニュアンス（色は薄く・上品に） */
.pro-card.is-beginner::after,
.pro-card.is-regular::after,
.pro-card.is-advanced::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  pointer-events:none;
  opacity:.9;
}
.pro-card.is-beginner::after{
  background:radial-gradient(520px 320px at 20% 10%, rgba(255,45,45,.18), transparent 60%);
}
.pro-card.is-regular::after{
  background:radial-gradient(520px 320px at 20% 10%, rgba(255,255,255,.10), transparent 60%);
}
.pro-card.is-advanced::after{
  background:radial-gradient(520px 320px at 20% 10%, rgba(255,45,45,.12), transparent 60%);
}

/* SP */
@media (max-width: 900px){
  .sec-head{ flex-direction:column; align-items:flex-start; margin-bottom:28px; }
  .pro-grid{
    grid-template-columns:1fr;
    grid-template-rows:auto;
  }
  .pro-card.is-beginner,
  .pro-card.is-regular,
  .pro-card.is-advanced{
    grid-column:auto;
    grid-row:auto;
  }
  .pro-card{ padding:26px 18px; border-radius:18px; }
  .pro-num{ font-size:38px; }
}

/* =========================================================
   PROGRAMS : BEGINNER only - photo background
========================================================= */

/* 01だけ写真を仕込む */
.pro-card.is-beginner{
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.78) 60%,
      rgba(0,0,0,.88) 100%
    ),
    url("../img/hm-t-02.png") center / cover no-repeat;
}

/* 写真を落ち着かせる（上品に） */
.pro-card.is-beginner{
  filter: saturate(.9) contrast(1.05);
}

/* hoverで“少しだけ”息をする */
.pro-card.is-beginner:hover{
  background-position: center 45%;
}

.pro-card.is-beginner > *{
  position:relative;
  z-index:2;
}

.pro-badge{
  position:absolute;
  top:20px;
  right:20px;
  z-index:3;
  font-size:10px;
  font-weight:800;
  letter-spacing:.16em;
  padding:6px 10px;
  color:#000;
  background:#ff2d2d;
  border-radius:999px;
}

.pro-note{
  font-size:12px;
  letter-spacing:.08em;
  color:rgba(232,238,246,.6);
  margin-bottom:12px;
}

.pro-card.is-beginner{
  position:relative; /* 念のため */
}

/* 01のカード内：右上固定（重なり回避） */
.pro-card.is-beginner .pro-badge{
  position:absolute;
  top:16px;
  right:22px;
  left:auto !important;   /* ←左指定が残ってても潰す */
  z-index:6;

  padding:7px 12px;
  border-radius:999px;

  background:#ff2d2d;
  color:#0b0b0b;

  font-size:10px;
  font-weight:900;
  letter-spacing:.16em;

  box-shadow:0 12px 30px rgba(0,0,0,.35);
}

/* 01（番号）を“バッジと別レイヤー”にして安全化 */
.pro-card.is-beginner .pro-num{
  position:relative;
  z-index:2;
  opacity:.8; /* 背景グラフィック感を強める（任意） */
  font-size:56px;
  letter-spacing:.12em;
}

.pro-card.is-beginner .pro-tag{
  margin-top:10px;   /* ← 視覚的に段差を作る */
}

/* =========================
   NEWS Cards (override-safe)
   ※CSSの一番最後に置く
========================= */

.news-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

.news-cardLink {
  display: block !important;
  text-decoration: none !important;
  color: inherit !important;
}

.news-card,
.news-card * {
  box-sizing: border-box;
}

.news-card {
  height: 100% !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  background: rgba(255,255,255,.06) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform .18s ease, box-shadow .18s ease !important;
}

.news-cardLink:hover .news-card {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 26px rgba(0,0,0,.25) !important;
}

.news-card.has-image .news__img {
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,.08);
}

.news-card.has-image .news__img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.news__body {
  padding: 14px 14px 16px !important;
}

.news-card.no-image .news__body {
  padding-top: 16px !important;
}

.news__meta {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 8px !important;
}

.news__date {
  font-size: 12px !important;
  opacity: .78 !important;
  letter-spacing: .02em !important;
}

.news__cat {
  font-size: 11px !important;
  padding: 4px 8px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.12) !important;
}

.news__ttl {
  font-size: 15px !important;
  line-height: 1.35 !important;
  margin: 0 0 8px !important;
}

.news__excerpt {
  font-size: 13px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  opacity: .85 !important;
}

.news__loading, .news__error, .news__empty {
  grid-column: 1 / -1;
  padding: 12px 0;
  opacity: .75;
}

.sec-news {
  width: 100%;
}

.sec-news .news-grid {
  width: 100%;
}

/* =========================
   u-container（共通コンテナ）
========================= */
.u-container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 60px;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .u-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* =========================
   NEWS page head
========================= */
.sec-pagehead{
  padding: 60px 0 28px;
}
.page-title{
  font-size: 34px;
  letter-spacing: .04em;
  margin: 0 0 10px;
}
.page-lead{
  margin: 0;
  opacity: .78;
  line-height: 1.8;
  font-size: 14px;
  max-width: 820px;
}
.breadcrumb{
  margin-top: 12px;
  font-size: 12px;
  opacity: .75;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.breadcrumb a{
  color: inherit;
  text-decoration: none;
  opacity: .85;
}
.breadcrumb a:hover{
  text-decoration: underline;
}

/* =========================
   NEWS Cards (list)
========================= */
.sec-news{
  padding: 18px 0 90px;
}

.news-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  width: 100%;
}

@media (max-width: 900px){
  .news-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.news-cardLink{
  display:block;
  text-decoration:none;
  color:inherit;
}

.news-card, .news-card *{
  box-sizing:border-box;
}

.news-card{
  height:100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  overflow:hidden;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform .18s ease, box-shadow .18s ease;
}

.news-cardLink:hover .news-card{
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}

.news-card.has-image .news__img{
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,.08);
}
.news-card.has-image .news__img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.news__body{
  padding: 14px 14px 16px;
}
.news-card.no-image .news__body{
  padding-top: 16px;
}

.news__meta{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.news__date{
  font-size: 12px;
  opacity: .78;
  letter-spacing: .02em;
}
.news__cat{
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}
.news__ttl{
  font-size: 15px;
  line-height: 1.35;
  margin: 0 0 8px;
}
.news__excerpt{
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  opacity: .85;
}

.news__loading, .news__error, .news__empty{
  grid-column: 1 / -1;
  padding: 12px 0;
  opacity: .75;
}

/* =========================
   NEWS 専用コンテナ
========================= */
.news-container{
  width: 100%;
  max-width: 1320px;          /* カード4枚が窮屈にならない幅 */
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;         /* ← ここがu-containerと違う */
  padding-right: 32px;
}

/* タブレット */
@media (max-width: 1024px){
  .news-container{
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* スマホ */
@media (max-width: 768px){
  .news-container{
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* =========================
   Breadcrumb (Global)
========================= */
.sec-breadcrumb{
  padding: 12px 0;
  background: rgba(255,255,255,.03); /* 背景を分離したい場合 */
}

.breadcrumb{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .04em;
  opacity: .8;
  flex-wrap: wrap;
}

.breadcrumb a{
  color: inherit;
  text-decoration: none;
  opacity: .85;
}

.breadcrumb a:hover{
  text-decoration: underline;
}

.breadcrumb-sep{
  opacity: .6;
}

.breadcrumb-current{
  opacity: .6;
}

/* =========================
   Breadcrumb (専用レイアウト)
========================= */
.sec-breadcrumb{
  padding: 6px 0;                 /* ← 上下を最小限に */
}

.breadcrumb-container{
  width: 100%;
  max-width: 1320px;              /* NEWSと揃えやすい */
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;             /* u-containerより軽め */
  padding-right: 24px;
}

/* スマホ */
@media (max-width: 768px){
  .breadcrumb-container{
    padding-left: 16px;
    padding-right: 16px;
  }
}

.breadcrumb{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .04em;
  opacity: .7;
  line-height: 1.4;               /* 行間を詰める */
}

.breadcrumb a{
  color: inherit;
  text-decoration: none;
  opacity: .85;
}

.breadcrumb a:hover{
  text-decoration: underline;
}

.breadcrumb-sep{
  opacity: .5;
}

.breadcrumb-current{
  opacity: .5;
}

/* =========================
   NEWS card font (SP)
========================= */
@media (max-width: 768px){

  /* 日付・カテゴリ */
  .news__date{
    font-size: 11px;
  }

  .news__cat{
    font-size: 10px;
    padding: 3px 7px;
  }

  /* タイトル */
  .news__ttl{
    font-size: 14px;      /* PC:15–16px → SPで一段階ダウン */
    line-height: 1.4;
    margin-bottom: 6px;
  }

  /* 本文（excerpt） */
  .news__excerpt{
    font-size: 12px;
    line-height: 1.6;
  }

}

.sec-breadcrumb.is-hidden{ display:none !important; }





/* =========================================================
   PATCH: Breadcrumb + NEWS (single source of truth)
   - u-containerを使わない運用（breadcrumb-container / news-container）
   - スマホでNEWS文字を小さく
   ※ 既存CSSの“最後”に置いて、確実に上書きします
========================================================= */

/* ---------- Breadcrumb ---------- */
.sec-breadcrumb{
  padding: 6px 0;
  margin: 0;
  background: transparent;
}
.breadcrumb-container{
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 768px){
  .breadcrumb-container{
    padding-left: 16px;
    padding-right: 16px;
  }
}
.breadcrumb{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  font-size:12px;
  letter-spacing:.04em;
  opacity:.7;
  line-height:1.4;
}
.breadcrumb a{
  color:inherit;
  text-decoration:none;
  opacity:.85;
}
.breadcrumb a:hover{ text-decoration: underline; }
.breadcrumb-sep{ opacity:.5; }
.breadcrumb-current{ opacity:.5; }

/* TOPなど隠す用（indexだけ section に is-hidden を付ける） */
.sec-breadcrumb.is-hidden{ display:none !important; }

/* ---------- NEWS ---------- */
.sec-news{
  width:100%;
  padding: 18px 0 90px;
}

/* u-containerの代わり：NEWS専用コンテナ */
.news-container{
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 1024px){
  .news-container{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 768px){
  .news-container{
    padding-left: 16px;
    padding-right: 16px;
  }
}

.news-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:18px;
  align-items:stretch;
  width:100%;
}
@media (max-width: 900px){
  .news-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.news-cardLink{
  display:block;
  text-decoration:none;
  color:inherit;
}

.news-card,
.news-card *{ box-sizing:border-box; }

.news-card{
  height:100%;
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  overflow:hidden;
  background:rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform .18s ease, box-shadow .18s ease;
}

.news-cardLink:hover .news-card{
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}

.news-card.has-image .news__img{
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,.08);
}
.news-card.has-image .news__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.news__body{
  padding: 14px 14px 16px;
}
.news-card.no-image .news__body{
  padding-top:16px;
}

.news__meta{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
  flex-wrap:wrap;
}
.news__date{
  font-size:12px;
  opacity:.78;
  letter-spacing:.02em;
}
.news__cat{
  font-size:11px;
  padding:4px 8px;
  border-radius:999px;
  background: rgba(255,255,255,.12);
}
.news__ttl{
  font-size:15px;
  line-height:1.35;
  margin:0 0 8px;
}
.news__excerpt{
  font-size:13px;
  line-height:1.6;
  margin:0;
  opacity:.85;
}
.news__loading,
.news__error,
.news__empty{
  grid-column: 1 / -1;
  padding:12px 0;
  opacity:.75;
}

/* SP：タイトル/本文を小さく */
@media (max-width: 768px){
  .news__date{ font-size:11px; }
  .news__cat{ font-size:10px; padding:3px 7px; }
  .news__ttl{ font-size:14px; line-height:1.4; margin-bottom:6px; }
  .news__excerpt{ font-size:12px; line-height:1.6; }
}


/* =========================
   Header width & gutter
========================= */
.site-header .header-inner{
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media (max-width: 768px){
  .site-header .header-inner{
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}

/* =========================
   NEWS font size (SP) - FORCE OVERRIDE
   ※style.css の一番最後に置く
========================= */
@media (max-width: 768px){

  .news__date{
    font-size: 10px !important;
  }

  .news__cat{
    font-size: 10px !important;
    padding: 3px 7px !important;
  }

  .news__ttl{
    font-size: 13px !important;
    line-height: 1.4 !important;
    margin-bottom: 6px !important;
  }

  .news__excerpt{
    font-size: 11px !important;
    line-height: 1.6 !important;
  }
}

.news-container{
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.news-detail{
  margin-top: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  overflow: hidden;
}
.news-detail__inner{ padding: 22px; }
.news-detail__ttl{ margin: 10px 0 14px; font-size: 28px; }
.news-detail__img{ margin: 14px 0; border-radius: 14px; overflow:hidden; }
.news-detail__img img{ width:100%; height:auto; display:block; }
.news-detail__body{ line-height: 1.9; font-size: 15px; opacity:.92; }
.news-detail__back{ margin-top: 18px; }
.news-detail__back a{ opacity:.85; text-decoration: underline; }
@media (max-width:768px){
  .news-detail__ttl{ font-size: 20px; }
  .news-detail__body{ font-size: 13px; }
}


/* 詳細 */
.news-detail{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  overflow: hidden;
}
.news-detail__inner{ padding: 22px; }
.news-detail__ttl{ margin: 10px 0 14px; font-size: 28px; }
.news-detail__img{ margin: 14px 0; border-radius: 14px; overflow:hidden; }
.news-detail__img img{ width:100%; height:auto; display:block; }
.news-detail__body{ line-height: 1.9; font-size: 15px; opacity:.92; }
.news-detail__back{ margin-top: 18px; }
.news-detail__back a{ text-decoration: underline; opacity:.85; }

@media (max-width:768px){
  .news-detail__ttl{ font-size: 20px; }
  .news-detail__body{ font-size: 13px; }
}

.news-detail__body .lead{
  font-size: 1.05em;
  line-height: 1.9;
  opacity: .9;
  margin-bottom: 1.1em;
}

/* 本文内の画像スタイル */
.news-detail__body img.news-img{
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  margin: 12px 0;
  border: 1px solid rgba(255,255,255,.12);
}

/* 画像横並び（2枚）*/
.news-detail__body .img-row{
  display: flex;
  gap: 10px;
  margin: 12px 0;
  flex-wrap: wrap;
}
.news-detail__body .img-row img{
  width: calc(50% - 5px);
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  object-fit: cover;
  display: block;
}

@media (max-width: 640px){
  .news-detail__body .img-row img{
    width: 100%;
  }
}
.news-detail__body h2{
  font-size: 1.25em;
  margin: 1.4em 0 .6em;
}
.news-detail__body h3{
  font-size: 1.1em;
  margin: 1.2em 0 .5em;
}

/* リード含む本文は「入力時の改行」を折り返しとして扱わない */
.news-detail__body,
.news-detail__body p{
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere; /* 長い英数字のはみ出し対策 */
}

/* リードは1段落として綺麗に見せる */
.news-detail__body .lead{
  display:block;
  margin: 0 0 1.0em;
  line-height: 1.9;
  white-space: normal;
  max-width: none;  /* ← 追加（幅制限を解除）*/
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: normal;
}

/* =========================
   NEWS本文：途中画像 / 横並び（img-row）
   （news-detail.html の #newsBody に挿入されるHTML用）
   ========================= */

/* 途中画像（1枚） */
#newsBody img.news-img,
.news-detail__body img.news-img{
  display:block;
  max-width:100%;
  height:auto;
  border-radius:14px;
  margin:14px 0;
}

/* 横並び（2枚）: img-row / imgRow 両対応 */
#newsBody .img-row,
#newsBody .imgRow,
.news-detail__body .img-row,
.news-detail__body .imgRow{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
  margin:14px 0;
}

#newsBody .img-row img,
#newsBody .imgRow img,
.news-detail__body .img-row img,
.news-detail__body .imgRow img{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
}

/* 3枚並びを使う場合（任意） */
#newsBody .img-row.cols-3,
#newsBody .imgRow.cols-3,
.news-detail__body .img-row.cols-3,
.news-detail__body .imgRow.cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* スマホは縦積み */
@media (max-width: 640px){
  #newsBody .img-row,
  #newsBody .imgRow,
  .news-detail__body .img-row,
  .news-detail__body .imgRow{
    grid-template-columns: 1fr;
  }
}