/* 下層では通常ヘッダーを隠す（PHPで出さないが保険） */
body.show-fixed .ns-header--primary { display: none !important; }

/* 固定ヘッダーが有効なときだけ main 上に余白をつけたい場合のユーティリティ */
.has-fixed-header main { padding-top: 30px; }

/* ===== Loader ===== */
.ns-loader{
  position: fixed; inset:0; z-index: 99999;
  display:grid; place-items:center;
  background:#fff; transition: opacity .35s ease;
}
.ns-loader__inner{ display:grid; place-items:center; gap:18px; }
.ns-loader__logo img{ display:block; width:auto; height:48px; }
.ns-loader__ring{ animation: ring-rot 1.1s linear infinite; }
@keyframes ring-rot{ to{ transform: rotate(360deg); } }

/* メニューの見栄えの微調整（安全に強制） */
.ns-nav a{ font-weight: 800; }

/* ===== 全体のセクション余白 ===== */
main > section {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 768px){
  main > section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
/* 個別調整 */
.hero { padding: 0; }
.lineup { padding-top: 32px; }
.cta-duo { margin: 50px auto; }
.insta-feed { padding: 0; } /* スライダーは余白なし */


/* ===== Header ===== */
.ns-header { background:#fff; color:var(--c-text); }
 .ns-header__bar{
  background:var(--c-brand);
  color:#fff;
  padding:6px 8px;
  font-size:12px;
 }

/* Notice */
.notice-marquee{ display:flex; align-items:center; gap:10px; overflow:hidden; }
.notice-ico{ display:inline-grid; place-items:center; color:#fff; flex:0 0 auto; }
.notice-text{ color:#fff; text-decoration:none; white-space:nowrap; }

/* 溢れない=静止のときは中央寄せ */
.notice-marquee.is-static{ justify-content:center; }

/* 溢れる=スクロール時 */
.notice-marquee.is-marquee{ justify-content:flex-start; }
.notice-track{ display:inline-flex; align-items:center; gap:32px; will-change:transform; }
@keyframes notice-marquee-left { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.notice-marquee.is-marquee .notice-track{
  animation: notice-marquee-left var(--notice-dur,16s) linear infinite;
}
@media (prefers-reduced-motion: reduce){
  .notice-marquee.is-marquee .notice-track{ animation:none!important; }
}

/* ===== Notice marquee ===== */
.notice-marquee{
  max-width: 100%;
  margin: 0 auto;
  display: block;
  overflow: hidden;           /* はみ出しを隠す */
  color:#fff;
}
.notice-ico{
  display:inline-grid; place-items:center;
  vertical-align: middle;
  margin-right: 10px;
}
.notice-text{
  color:#fff; text-decoration:none;
  white-space: nowrap;        /* 折り返さない */
}

/* JSが is-marquee を付けたときの走行用トラック */
.notice-track{
  display:inline-flex; align-items:center; gap:32px;
  will-change: transform;
}
@keyframes notice-marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* 複製した2周分の半分でループ */
}
.notice-marquee.is-marquee .notice-track{
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: notice-marquee-left;
}
/* 動きを苦手な利用者には静かに */
@media (prefers-reduced-motion: reduce){
  .notice-marquee.is-marquee .notice-track{ animation: none !important; }
}

.ns-notice__viewport{
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;          /* 溢れは隠す */
  display: flex;
  justify-content: center;   /* 収まる時はセンター */
}

.ns-notice__content{
  display: inline-block;
  color:#fff;
  text-decoration:none;
  white-space: nowrap;
  line-height: 1.8;
  padding: 0 8px;
}

/* 溢れたら親に .is-scroll を付けてマルチコピー＋左流し */
.ns-notice__viewport.is-scroll{
  justify-content: flex-start;   /* 流すときは左基準 */
}
.ns-notice__viewport.is-scroll .ns-notice__content{
  padding-right: 40px; /* 途切れ防止の隙間 */
  animation: ns-ticker 18s linear infinite;
}
@keyframes ns-ticker{
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

.ns-header__row{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:15px 16px 18px; border-bottom:1px solid var(--c-border);
}

/* 通常ヘッダーは“固定しない”（上に流れて消える） */
.ns-header--primary .ns-header__row{
  position: static; top:auto; z-index:auto;
}

/* 固定ヘッダー：最初は隠しておき、クラスで出す */
.ns-header--fixed{
  position: fixed; inset: 0 0 auto 0; /* top:0; left/right:0 */
  transform: translateY(-110%);
  transition: transform .28s ease;
  border-bottom:1px solid var(--c-border);
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
  z-index: 10000;
}
/*
@media (max-width: 1200px) {
  .has-fixed-header main { padding-top: var(--header-h, 64px); }
}
*/

body.show-fixed .ns-header--fixed{
  transform: translateY(0);
}

/* IG/STORE 小物 */
.logo img{ display:block; height:32.5px; width:auto; margin-top: -3px; }
@media (min-width: 1024px){
  .logo img{height:41.5px;margin-top: -6px; }

}
.ns-nav{ display:none; gap:25px; align-items:center; }
.ns-nav ul, .ns-nav .menu {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 22px;
  align-items: center;
}
.ns-nav li {   list-style: none;margin: 0; }
.ns-nav a { text-decoration: none; color: var(--c-text); font-weight: 700; }
.ns-ig{
  display:none; place-items:center;
  width:36px; height:36px; border-radius:999px;
  border:1px solid var(--c-border); background:#fff; color: var(--c-text);
  transition:.2s;
}
@media (min-width: 1024px){
  .ns-ig {
    display: inline-grid;
  }
}
.ns-ig svg{ width:18px; height:18px; display:block; }
.ns-ig:hover{ background:#f7f7f7 }
.btn-pill{ display:inline-flex; align-items:center; gap:8px; padding:10px 14px; border-radius:999px; border:1px solid var(--c-border); background:#fff; transition:.2s; }
.btn-pill:hover{ background:#f0f0f0; }
.ns-store{margin-left: 5px;background: var(--c-brand); color:#fff; border-color:var(--c-brand); font-weight:700; padding:8.5px; }
.ns-store:hover{ background: var(--c-accent); border-color: var(--c-accent); }
.ns-store .ico-cart{ width:18px; height:18px; }
.ns-store span {display: none;}
.nav-toggle {
  background: #2fc0f0;
  border: none;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

@media (min-width:1024px){
  .ns-store {   padding: 10px 20px; }
  .ns-store span {display: inline;}
  .nav-toggle{ display:none;}
  .ns-nav{ display:flex; }
}

/* 動きを嫌う人には静かに */
@media (prefers-reduced-motion: reduce){
  .ns-header--fixed{ transition: none; }
}
#drawer{position:fixed;inset:0 auto 0 0;width:82vw;max-width:360px;height:100dvh;background:#fff;z-index:30;border-right:1px solid var(--c-border);padding:16px;top: 108px;}
.show-fixed #drawer {top: 56px;}
#drawer li.menu-item {list-style: none;}
#drawer[hidden]{display:none}
#drawer nav a{display:block;padding:14px 6px;border-bottom:1px solid var(--c-border)}
@media (min-width:1024px){.nav-toggle{display:none}#drawer{display:none!important}.ns-nav{display:flex}}

/* ===== Hero ===== */
.hero{ position:relative; }
.hero-media video{width:100%; height:65vh; object-fit:cover; background:#cfefff;}
@media (min-width:768px){
  .hero-media video{ height:70vh; } /* ここで“少し小さく” */
}
.hero-copy{position:absolute;/* left:calc(67% - 600px + 16px); */
  bottom:95px;color:#fff;text-shadow:0 2px 14px rgba(0,0,0,.45)}
  .hero-copy h1{    line-height: 0.9em;font-size:80px;padding-bottom:15px;margin:0}
  @media (max-width: 480px) {
    .hero-copy h1 {
      font-size: 65px;
      margin: 0 0 10px;
    }
  }
  .hero-copy .tm{font-size:60%;vertical-align:super;margin-left:2px}
  .hero-copy .sub {
    font-size: 14px;
    font-style: italic;
    letter-spacing: 3px;
    line-height: 0;
    display: none;
  }
  main .hero + * { margin-top: 40px; }
  .hero-news{
    position:absolute; right:16px; bottom:40px; z-index:2;
    display:inline-flex; align-items:center; gap:10px;
    padding:10px 24px; max-width:80vw; border-radius:999px;
    color:#fff; text-shadow:0 2px 10px rgba(0,0,0,.6);
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.28);
    backdrop-filter: saturate(130%) blur(8px);
    -webkit-backdrop-filter: saturate(130%) blur(8px);
  }
  .hero-news time{ font-variant-numeric: tabular-nums; opacity:.9; }
  .hero-news span{ overflow:hidden; white-space:nowrap; text-overflow:ellipsis; max-width:60vw; }
  @media (min-width:1024px){
    .hero-news{ right:calc(57% - 575px + 0px); } /* container右端に合わせる */
    .hero-news span{ max-width:360px; }
  }
  @media (min-width:1200px){
    .hero-copy{left:calc(50% - 600px + 16px);bottom:48px; }
    .hero-copy .sub {display: block;}
    .hero-news{ right:calc(50% - 575px + 0px); } /* container右端に合わせる */
  }

/* ===== Tabs + Lineup Slider (loop, arrows, no native scroll) ===== */

/* タブ全体 */
.tabs { width: 100%; }
.tabs .container { /* 既存 .container を使う */ }

/* タブ行：左にタブ、右に矢印 */
.tabs__nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
}

/* タブボタンのピル */
.tabs__btns{
  display:inline-flex; gap:6px; padding:6px;
  border:1px solid var(--c-border); border-radius:999px; background:#fff;
}
.tabs__btn{
  appearance:none; border:0; background:transparent;
  padding:10px 18px; border-radius:999px; font-weight:700; letter-spacing:.02em;
  color:var(--c-sub); transition: color .18s ease, background .18s ease;
}
.tabs__btn:is(:hover,:focus-visible){ color: var(--c-text); }
.tabs__btn.is-active{ color:#fff; background: var(--c-brand); }

/* パネル */
.tabs__panels{ margin-top:18px; }
.tabs__panel{ display:none; opacity:0; transform:translateY(6px); }
.tabs__panel.is-active{
  display:block;
  animation: tabs-fade .28s cubic-bezier(.2,.6,.2,1) both .06s;
}
@keyframes tabs-fade{
  from{ opacity:0; transform:translateY(6px); }
  to  { opacity:1; transform:translateY(0); }
}

/* 矢印 */
.slider-arrows{ display:flex; gap:10px; }
.slider-arrow{
  width:40px; height:40px; border-radius:999px;
  border:1px solid var(--c-border);
  display:grid; place-items:center;
  background:#fff; color:var(--c-text);
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  transition:.18s;
}
@media (min-width: 480px) {
  .slider-arrow{
   padding-left: 10px;
 }
}
.slider-arrow:hover{ background:#f5f5f5; }

/* ダブルタップズーム抑止：操作系はタップ＝操作のみ */
.slider-arrow,
.tabs__btn,
.btn-pill {
  touch-action: manipulation;         /* iOS/Chromeでダブルタップズーム抑止 */
  -ms-touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* スライダー本体（横スク禁止） */
.lineup-slider{ width:100%; }
.lineup-viewport {
  position: relative;
  overflow-x: hidden;               /* ドラッグ操作で横に動かす下地（[2]） */
  overflow-y: visible;
  padding-inline: 40px;           /* 覗き用の内側余白 */
  scrollbar-width: none;          /* Firefox: スクロールバー非表示 */
}
.lineup-viewport::-webkit-scrollbar { display: none; } /* Chrome/Safari も非表示 */

@media (min-width: 1200px) {
  /* PC時は左右を覗かせる（ビューポート外を見せる） */
  .tabs { overflow: hidden; }
}

@media (max-width: 480px) {
.lineup-viewport {
  overflow-x: hidden;               /* ドラッグ操作で横に動かす下地（[2]） */
  overflow-y: hidden;
}
}

.lineup-track{ display:flex; gap:14px; will-change:transform; transform:translate3d(0,0,0); }

/* カード（既存の見た目を踏襲） */
.vcard{
  min-width:240px; max-width:260px; background:#fff;
  border:1px solid var(--c-border); border-radius:12px; position:relative;overflow: hidden;
}
.vcard img{border-radius: 12px 12px 0 0;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 32px -21px;
  width: 100%;
  background: #f7f8f9;
  transform: scale(1.2);
  position: relative;}
  .vcard h3{font-family: "nunito";
    font-size: 15px;
    padding: 14px 12px 0;
    line-height: 18px;}
    .vcard .meta{color:var(--c-sub); font-size:10px;line-height: 19px; margin:4px 12px 67px}
    .vcard .cart-btn{
      position:absolute; right:12px; bottom:12px; width:44px; height:44px; border-radius:999px;
      display:grid; place-items:center; background:var(--c-brand); color:#fff; border:none;
    }
    .vcard .cart-btn svg{width:22px; height:22px; display:block}

/* PC/ポインタあり環境だけ有効化 */
@media (hover: hover) and (pointer: fine){
  .vcard{
    transition: transform .7s ease, box-shadow .7s ease;
    will-change: transform;
  }
  .vcard:hover,
  .vcard:focus-within{                    /* キーボード操作でも同効果 */
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
  }
  /* 画像は元が scale(1.2) なので、ホバー時だけ少し上乗せ */
  .vcard:hover img,
  .vcard:focus-within img{
    transform: scale(1.1);
    transition: 0.7s;
  }
}

.vcard{ position: relative; overflow: hidden; }
.vcard__full{
  position: absolute; inset: 0;
  z-index: 5;                 /* 最前面にして全クリックを拾う */
}
.vcard .cart-btn{
  position: absolute; right:12px; bottom:12px;
  z-index: 6;                 /* 見た目は上 */
  pointer-events: none;       /* でもクリックは下の全体リンクに通す */
}

/* 旧・横スク用のスタイルが残っているなら潰す（安全策） */
.card-rail{ overflow:visible !important; scroll-snap-type:none !important; }

/* ===== CTA Duo：水色背景の白文字 ===== */
.cta-duo{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:22px auto}
.btn-pill.lg{
  padding:18px 22px;font-weight:700;justify-content: center;
  background:var(--c-brand);color:#fff;border:0
}
.btn-pill.lg:hover { background: var(--c-accent); }

/* ===== BRAND STORY (左画像、右テキスト) ===== */
/* ===== BRAND STORY (左画像、右テキスト) ===== */
.brand-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  overflow: clip; /* パララックスのはみ出しを隠す */
}
.bs-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bs-media img {
  border-radius: 12px;
  display: block;
  width: 100%;
  height: auto;
  will-change: transform, opacity;  /* GPUに優しく */
  transform-origin: center center;
}
.bs-copy h2 { line-height: 25px;font-size: 22px; font-weight: 900; margin: 0 0 26px; }

.bs-copy p  { color: var(--c-sub);     font-size: 13px;
  line-height: 25px;
  letter-spacing: 1.2px; margin: 0 0 20px; }
  .bs-copy .btn-pill { font-weight:bold;padding: 10px 60px;margin-top: 6px; }

  @media (min-width: 1024px) {
    .bs-copy h2 { line-height: 30px;font-size: 24px;margin: 0 0 26px; }
  }

  @media (min-width: 768px) {
    .brand-story {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
  }

  @media (max-width: 480px) {
    .bs-copy h2 {
      margin-bottom: 15px;
    }

    .bs-copy .btn-pill {
      display: block;
      text-align: center;
    }
  }

  .lineup-tabs{display:flex; gap:12px; margin:10px 0 16px}
  .lineup-tabs .btn-pill{opacity:.65}
  .lineup-tabs .btn-pill.is-active{opacity:1}

  .lineup-rail-wrap{position:relative}
  .lineup-rail{
    display:flex; gap:16px; padding:4px 8px;
    overflow-x:auto; scroll-snap-type:x mandatory;
    scroll-padding:8px;
  }
  .lineup-rail > .card{
    min-width: 280px; max-width: 320px; flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .car-btn{
    position:absolute; top:50%; transform:translateY(-50%);
    width:40px; height:40px; border-radius:50%;
    border:1px solid rgba(0,0,0,.08); background:#fff;
    display:grid; place-items:center; cursor:pointer;
    box-shadow:0 6px 16px rgba(0,0,0,.12);
  }
  .car-prev{left:-12px}
  .car-next{right:-12px}
  @media (max-width: 768px){
    .car-prev{left:-4px} .car-next{right:-4px}
  }

/* 動きが苦手な人には静かに */
@media (prefers-reduced-motion: reduce) {
  .bs-media img { transform: none !important; transition: none !important; }
}
/* components.css (PURPOSEセクションのスタイルのみ) */

/* ===== PURPOSE：縦→横→縦（pin 付き）===== */
.purpose {
  position: relative;
  background-color: var(--c-brand); /* Base color */
  color: #fff;
  padding: 20px 0 90px;
  overflow: visible;
  overscroll-behavior: contain;
}

/* ::before疑似要素でドット背景を追加 */
.purpose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 3色のグラデーションドットを生成 */
  background-image: 
  radial-gradient(#87CEEB 15%, transparent 16%),
  radial-gradient(#B0E0E6 15%, transparent 16%);
  background-size: 80px 80px; /* ドットの間隔 */
  background-position: 0 0, 40px 40px; /* ドットをずらして配置 */
  opacity: 0.1; /* さりげない透明度 */
  z-index: 0;
}

/* タイトルは上部に固定的に見える配置 */
.pur-fixed {
  text-align: center;
  margin: 0 auto;
  position: relative; /* 背景ドットの上に表示させるため */
  z-index: 1;
}
.pur-fixed small { opacity: .85; letter-spacing: .06em; display: block; margin-bottom: 6px; }
.pur-fixed h3 { margin: 0 0 6px; font-size: 34px; font-weight: 900; }
.pur-sub { opacity: .9; margin: 0; }

/* 横スクの器 */
.pur-viewport {
  position: relative;
  width: 100%;
  padding: 10px 0 0;
  z-index: 1; /* 背景ドットの上に表示 */
/* Safariのペイント最適化を安定化（見た目は変わらない） */
-webkit-mask-image: linear-gradient(#000,#000);
mask-image: linear-gradient(#000,#000);
}

.pur-viewport::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
 .pur-viewport { padding: 40px 0 0; }
}

/* 横一列トラック */
.pur-track {
  display: flex;
  align-items: flex-start;
  gap: 4vw;
  width: max-content;
  will-change: transform;
  /* contain: layout paint; */
}

/* 1枚の見せ幅 */
.pur-card {
  flex: 0 0 100vw;
  color: inherit;
}

/* カード内レイアウト */
.pur-card-inner {
  display: grid;
  gap: clamp(16px, 3vw, 28px);
  grid-template-columns: 1fr; /* SPでは縦積み */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.pur-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
}
@media (min-width: 1024px) {
 .pur-img img {
  aspect-ratio: 4/5; 
}
}
.pur-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pur-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  opacity: 0.8;
}
.pur-title-wrap .pur-icon{
  color: #ffffff; /* or var(--c-brand-on-blue) */
  width: 28px; height: 28px; flex: 0 0 auto;
}
.pur-en{ color:#fff } /* 寄りで白字を保証（背景が青） */
.pur-en { font-family:"nunito";font-size: 19px;font-weight: 900; letter-spacing: .06em; margin: 0; color: #fff; opacity: .95; }
.pur-ja { font-size: 22px; font-weight: 800; margin: 14px 0 20px; color: #fff; }
.pur-desc { color: #fff; opacity: .9;    font-size: 13px;
  line-height: 25px;
  letter-spacing: 1.2px; margin: 0; }

/* PC：タイトルを上に“据え置き”しつつ、横スクを開始 */
@media (min-width: 1024px) {
  .pur-fixed {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 2;
  }
  .pur-viewport {
    overflow: hidden;
  }
  .pur-track {
    padding-top: clamp(96px, 15vh, 180px); /* タイトルとの余白 */
  }
  .pur-card-inner {
    grid-template-columns: 45% 1fr;
    gap: 4vw;
  }
}

/* SP：指で横スクロール＋スナップ */
@media (max-width: 1023px) {
  .pur-fixed {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 2;
  }
  .pur-viewport {
    overflow-x: hidden; /* ★ GSAPで制御するためhiddenに変更 */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    /* scroll-snap-type: x mandatory; GSAP制御中は不要 */
  }
  .pur-track { 
    padding-top: 120px;
    gap: 0; 
  }
  .pur-card { 
    flex: 0 0 50vw;
    min-width: 50vw; 
    scroll-snap-align: center; 
  }
  .pur-card-inner {
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .pur-img img {
    aspect-ratio: 5 / 4;
  }
  .pur-card { 
    flex: 0 0 100vw;
    min-width: 100vw; 
  }
}  



/* ===== Instagram Slider - 新規追加 ===== */
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); } /* 画像8枚の半分でリセット */
}
.insta-feed {
  overflow: hidden;
  padding: 50px 0;
  background: var(--c-bg);
}
.insta-track {
  display: flex;
  width: calc(300px * 16); /* (画像幅) x (枚数 x 2) */
  animation: slide 60s linear infinite;
}
.insta-track img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  padding: 0 8px; /* 画像間に少し隙間 */
}

/* ===== NEWS SECTION ===== */
.home-news {
  margin: 64px auto 96px;
}
@media (max-width: 768px) {
  .home-news {
    margin: 40px auto 72px;
    padding: 0 16px; /* SPで左右に余白を強制 */
  }
}

.home-news .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* 右にMoreボタン固定 */
  margin-bottom: 16px;
}
.home-news .section-title {
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: 0.02em;
  font-weight: 700;
}
.home-news .btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.home-news .btn-more:hover { opacity: .8; }

.news-list {
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.news-item {
  padding: 18px 0;
  border-top: 1px solid rgba(0,0,0,.08);
  list-style: none;
}
.news-item:first-child { border-top: 1px solid rgba(0,0,0,.16); }
.news-item:last-child  { border-bottom: 1px solid rgba(0,0,0,.16); }

.news-item .news-date {
  display: block;
  font-size: 12px;
  color: #7a7a7a;
  margin-bottom: 6px;
}
.news-item .news-title {
  display: inline-block;
  font-weight: 700;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.5;
  color: #111;
  text-decoration: none;
}
.news-item .news-title:hover { text-decoration: underline; }
.news-item .news-excerpt {
  margin-top: 6px;
  color: #4b4b4b;
  font-size: 13px;
  line-height: 1.7;
}

/* 既存の「白いニュースカード」系スタイルがあれば無効化して衝突回避 */
.news-card, .news-box {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
}
/* ===== PV（NEWSとフッターの間・フルブリード） ===== */
.pv-video {
  padding: 0;            /* グローバルの section 余白を無効化 */
  background: #000;      /* レターボックス時も黒で締める */
}
.pv-video__el {
  display: block;
  width: 100%;
  height: auto;          /* アスペクト維持 */
  background: #000;
  max-height: 50vh; object-fit: cover;
}

/* ===== INSTAGRAM MARQUEE ===== */
.insta-feed { padding: 0; }

#ns-insta-marquee { 
  overflow: hidden; 
  position: relative;
}

#ns-insta-marquee .instagram-marquee-content { 
  /* Smash Balloonの中身をここで横並びに差し替える（JSが .ns-insta-track を作る） */
}

.ns-insta-track {
  display: flex;
  align-items: stretch;
  gap: 12px;
  will-change: transform;
}

.ns-insta-item {
  flex: 0 0 auto;
  display: block;
  line-height: 0;
}

.ns-insta-item img {
  display: block;
  height: 280px;          /* 好みで調整 */
  width: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* PCとSPで「高さ」だけ微調整 */
@media (max-width: 768px) {
  .ns-insta-item img { height: 200px; }
}

/* ===== Footer ===== */
.site-footer.navy{background:#0b2a3f;color:#fff;padding: 50px 0 28px;border-top:1px solid rgba(255,255,255,.08)}
.footer-grid{display:grid;grid-template-columns:1fr;gap:18px;align-items:start}

/* 左ブロック：SPから横並び。PCは少し間隔広め */
.footer-left{
  display:flex;
  align-items:center;
  gap:12px;
}
@media (min-width:1024px){
  .footer-left{ align-items:flex-end; gap:14px; }
}
.footer-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1); /* SVGを白にする */
}
/* SNSボタン行：最大3個まで横並びで崩れない */
.footer-sns{
  display:flex;
  gap:8px;
  margin:0;              /* ロゴ横に吸着 */
  flex-wrap:nowrap;      /* 最大3想定のため折り返しなし */
}

@media (max-width: 480px){
  .footer-sns {
    margin: 10px 0 0 5px;
  }
}
/* 共通ボタンベース */
.sns-btn{
  display:grid; place-items:center;
  width:36px; height:36px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.28);
  background:#fff; color: var(--c-text);
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.sns-btn:hover{ transform: translateY(-1px); }
/* 個別：IGアイコンのサイズだけ上書き */
.footer-ig svg{ width:20px; height:20px; display:block }
@media (min-width:1024px){
  .sns-btn{ width:36px; height:36px; }
  .footer-ig svg{ width:22px; height:22px }
}
.footer-main h4,.footer-sub h4{font-weight:900;margin:0 0 8px;font-size:14px;opacity:.8}
.footer-main a,.footer-sub a{display:block;color:#fff;padding:6px 0;border-bottom:1px dashed rgba(255,255,255,.18)}
.copy{display:block;text-align:center;margin-top: 40px;opacity:.7}
@media (min-width:900px){
  .footer-grid{grid-template-columns:1fr 1fr 1fr}
}