/* ===== RESET & BASE ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; scroll-padding-top: 72px; }
body  {
  background-color: #061423;
  font-family: 'Noto Serif JP', serif;
  color: #d6e4f9;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ===== SCROLLBAR ========================================================= */
::-webkit-scrollbar          { width: 6px; }
::-webkit-scrollbar-track    { background: #061423; }
::-webkit-scrollbar-thumb    { background: #283646; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #e9c349; }
::selection { background: #e9c349; color: #3c2f00; }

/* ===== CSS CUSTOM PROPERTIES ============================================= */
:root {
  --primary:          #e9c349;
  --primary-fixed:    #ffe088;
  --primary-container:#221900;
  --on-primary:       #3c2f00;
  --secondary:        #bbc6e2;
  --on-background:    #d6e4f9;
  --on-surface-variant: #c4c6cc;
  --surface:          #061423;
  --surface-container-low:    #0f1c2c;
  --surface-container:        #132030;
  --surface-container-high:   #1e2b3b;
  --surface-container-highest:#283646;
  --surface-container-lowest: #020f1e;
  --outline-variant:  #44474c;
}

/* ===== TYPOGRAPHY ======================================================== */
.font-headline { font-family: 'Shippori Mincho', 'Noto Serif JP', serif; }
.font-body     { font-family: 'Noto Serif JP', serif; }
.font-label    { font-family: 'Shippori Mincho', 'Noto Serif JP', serif; }
h1,h2,h3,h4,h5 { font-family: 'Shippori Mincho','Noto Serif JP',serif; letter-spacing:.05em; }
p,span,a       { letter-spacing:.03em; }

/* ===== COLOR UTILITIES =================================================== */
.text-primary            { color: var(--primary); }
.text-secondary          { color: var(--secondary); }
.text-on-background      { color: var(--on-background); }
.text-on-surface-variant { color: var(--on-surface-variant); }
.text-on-primary         { color: var(--on-primary); }
.text-secondary-fixed-dim{ color: #bbc6e2; }
.bg-surface               { background-color: var(--surface); }
.bg-surface-container-low { background-color: var(--surface-container-low); }
.bg-surface-container-lowest  { background-color: var(--surface-container-lowest); }
.bg-white    { background-color: #fff; }

/* ===== FONT SIZES ======================================================== */
.text-xs   { font-size:.75rem;  }
.text-sm   { font-size:.875rem; }
.text-base { font-size:1rem;    }
.text-lg   { font-size:1.125rem;}
.text-xl   { font-size:1.25rem; }
.text-2xl  { font-size:1.5rem;  }
.text-3xl  { font-size:1.875rem;}
.text-4xl  { font-size:2.25rem; }

/* ===== FONT WEIGHT ======================================================= */
.font-normal    { font-weight:400; }
.font-semibold  { font-weight:600; }
.font-bold      { font-weight:700; }
.font-extrabold { font-weight:800; }

/* ===== DISPLAY / POSITION ================================================ */
.block   { display:block; }
.hidden  { display:none !important; }
.flex    { display:flex; }
.grid    { display:grid; }
.inline-flex { display:inline-flex; }
.relative { position:relative; }
.absolute { position:absolute; }
.fixed    { position:fixed; }
.overflow-hidden { overflow:hidden; }
.pointer-events-none { pointer-events:none; }
.z-0  { z-index:0;  }
.z-10 { z-index:10; }
.z-20 { z-index:20; }
.z-50 { z-index:50; }

/* ===== SIZING ============================================================ */
.w-full   { width:100%; }
.h-full   { height:100%; }
.w-8      { width:2rem;    }
.w-9      { width:2.25rem; }
.w-10     { width:2.5rem;  }
.w-11     { width:2.75rem; }
.w-20     { width:5rem;    }
.w-24     { width:6rem;    }
.w-28     { width:7rem;    }
.w-36     { width:9rem;    }
.w-40     { width:10rem;   }
.w-52     { width:13rem;   }
.w-px     { width:1px;     }
.h-8      { height:2rem;   }
.h-9      { height:2.25rem;}
.h-10     { height:2.5rem; }
.h-11     { height:2.75rem;}
.h-12     { height:3rem;   }
.h-24     { height:6rem;   }
.h-28     { height:7rem;   }
.h-40     { height:10rem;  }
.min-h-screen { min-height:100vh; }
.max-w-xs  { max-width:20rem; }
.max-w-xl  { max-width:36rem; }
.max-w-2xl { max-width:50rem; }
.max-w-3xl { max-width:48rem; }
.max-w-5xl { max-width:64rem; }
.max-w-6xl { max-width:72rem; }
.max-w-7xl { max-width:80rem; }
.mx-auto   { margin-left:auto; margin-right:auto; }

/* ===== FLEXBOX =========================================================== */
.flex-col        { flex-direction:column; }
.items-start     { align-items:flex-start; }
.items-center    { align-items:center; }
.justify-center  { justify-content:center; }
.justify-between { justify-content:space-between; }
.shrink-0        { flex-shrink:0; }

/* ===== GAP =============================================================== */
.gap-0   { gap:0; }
.gap-1   { gap:.25rem; }
.gap-2   { gap:.5rem;  }
.gap-3   { gap:.75rem; }
.gap-4   { gap:1rem;   }
.gap-5   { gap:1.25rem;}
.gap-6   { gap:1.5rem; }
.gap-8   { gap:2rem;   }
.gap-10  { gap:2.5rem; }

/* ===== GRID ============================================================== */
.grid-cols-2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
.grid-cols-3 { grid-template-columns:repeat(3,minmax(0,1fr)); }

/* ===== PADDING =========================================================== */
.p-3   { padding:.75rem; }
.p-4   { padding:1rem;   }
.p-5   { padding:1.25rem;}
.p-8   { padding:2rem;   }
.px-3  { padding-left:.75rem;  padding-right:.75rem; }
.px-4  { padding-left:1rem;    padding-right:1rem;   }
.px-6  { padding-left:1.5rem;  padding-right:1.5rem; }
.px-5  { padding-left:1.25rem; padding-right:1.25rem;}
.px-10 { padding-left:2.5rem;  padding-right:2.5rem; }
.py-1  { padding-top:.25rem;  padding-bottom:.25rem; }
.py-2  { padding-top:.5rem;   padding-bottom:.5rem;  }
.py-3  { padding-top:.75rem;  padding-bottom:.75rem; }
.py-4  { padding-top:1rem;    padding-bottom:1rem;   }
.py-16 { padding-top:4rem;    padding-bottom:4rem;   }
.pt-1  { padding-top:.25rem; }
.pt-6  { padding-top:1.5rem; }
.pb-5  { padding-bottom:1.25rem; }
.pb-6  { padding-bottom:1.5rem;  }

/* ===== MARGIN ============================================================ */
.mt-1   { margin-top:.25rem; }
.mt-4   { margin-top:1rem;   }
.mt-5   { margin-top:1.25rem;}
.mt-6   { margin-top:1.5rem; }
.mt-8   { margin-top:2rem;   }
.mt-10  { margin-top:2.5rem; }
.mb-1   { margin-bottom:.25rem;  }
.mb-2   { margin-bottom:.5rem;   }
.mb-3   { margin-bottom:.75rem;  }
.mb-4   { margin-bottom:1rem;    }
.mb-5   { margin-bottom:1.25rem; }
.mb-6   { margin-bottom:1.5rem;  }
.mb-8   { margin-bottom:2rem;    }
.mb-10  { margin-bottom:2.5rem;  }
.mb-12  { margin-bottom:3rem;    }
.mr-1   { margin-right:.25rem; }

/* ===== BORDER RADIUS ===================================================== */
.rounded-lg   { border-radius:.25rem; }
.rounded-xl   { border-radius:.75rem; }
.rounded-full { border-radius:9999px; }


/* ===== OBJECT FIT ======================================================== */
.object-cover   { object-fit:cover; }
.object-contain { object-fit:contain; }

/* ===== TEXT ============================================================== */
.text-center  { text-align:center; }
.text-left  { text-align:left; }
.text-right  { text-align:right; }
.leading-relaxed { line-height:1.7; }
.leading-tight   { line-height:1.15; }
.tracking-tight  { letter-spacing:-.02em; }
.tracking-tighter{ letter-spacing:-.04em; }
.tracking-widest { letter-spacing:.2em; }
.uppercase { text-transform:uppercase; }
.break-all { word-break:break-all; }
.align-middle { vertical-align:middle; }

/* ===== OPACITY / TRANSFORM =============================================== */
.opacity-50 { opacity:.5; }
.-translate-x-1\/2 { transform:translateX(-50%); }
.-translate-y-1\/2 { transform:translateY(-50%); }

/* ===== POSITIONING ======================================================= */
.inset-0  { top:0;right:0;bottom:0;left:0; }
.top-0    { top:0; }
.right-0  { right:0; }
.bottom-0 { bottom:0; }
.bottom-10{ bottom:2.5rem; }
.left-0   { left:0; }
.left-1\/2{ left:50%; }
.-left-9  { left:-2.25rem; }
.-left-10 { left:-2.5rem; }
.-left-24 { left:-6rem; }
.-right-24{ right:-6rem; }
.top-1\/2 { top:50%; }

/* ===== GRADIENTS ========================================================= */
.bg-gradient-to-b  { background-image:linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image:linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-r  { background-image:linear-gradient(to right, var(--tw-gradient-stops)); }
.from-primary        { --tw-gradient-from:#e9c349; --tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,rgba(233,195,73,0)); }
.to-primary-fixed    { --tw-gradient-to:#ffe088; }
.to-primary-container{ --tw-gradient-to:#221900; }
.to-transparent      { --tw-gradient-to:transparent; }
.from-transparent    { --tw-gradient-from:transparent; --tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,transparent); }

/* ===== TRANSITIONS ======================================================= */
.transition-all    { transition:transform .3s cubic-bezier(.25,.8,.25,1), opacity .3s ease, box-shadow .3s ease, background-color .3s ease, border-color .3s ease, color .3s ease; }
.transition-colors { transition:color .2s ease,background-color .2s ease,border-color .2s ease; }
.duration-200 { transition-duration:.2s; }
.duration-300 { transition-duration:.3s; }
.ease-in-out  { transition-timing-function:ease-in-out; }
.hover\:scale-105:hover        { transform:scale(1.05) translateZ(0); }
.hover\:scale-\[1\.02\]:hover  { transform:scale(1.02) translateZ(0); }
.active\:scale-\[0\.99\]:active{ transform:scale(.99) translateZ(0); }

/* ===== PROFILE STICKY (PC only) ======================================= */
@media (min-width: 1024px) {
  .profile-sticky {
    position: sticky;
    top: 5.5rem;
    align-self: start;
  }
}

/* ===== SHIMMER BUTTON ================================================== */
.btn-shimmer {
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s ease;
}
.btn-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.45) 50%, transparent 100%);
  transform: skewX(-20deg);
}
.btn-shimmer:hover::after {
  animation: btn-shimmer-wave .55s ease forwards;
}
.btn-shimmer:hover {
  box-shadow: 0 16px 44px rgba(233,195,73,.35);
}
@keyframes btn-shimmer-wave {
  to { left: 125%; }
}

/* ===== COMPONENTS ======================================================== */

/* Glass card */
.glass-card {
  background: rgba(40,54,70,.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(187,198,226,.1);
}

/* Glow */
.golden-glow        { box-shadow:0 12px 40px 0 rgba(233,195,73,.15); }
.golden-glow-strong { box-shadow:0 20px 50px rgba(233,195,73,.25); }
.ambient-shadow     { box-shadow:0 12px 40px 0 rgba(6,20,35,.08); }

/* Gold gradient text */
.text-gradient-gold {
  background: linear-gradient(135deg,#ffe088 0%,#e9c349 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

/* Kinetic divider */
.kinetic-path {
  background: linear-gradient(90deg,transparent,#e9c349,transparent);
  height: 1px; width: 100%; opacity: .3;
}

/* Animations */
@keyframes pulseGlow {
  0%,100% { box-shadow:0 0 40px rgba(233,195,73,.2); }
  50%      { box-shadow:0 0 80px rgba(233,195,73,.45); }
}
.pulse-glow { animation:pulseGlow 3s ease-in-out infinite; }

@keyframes fadeInUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade-in-up { animation:fadeInUp .8s ease forwards; }
.delay-2    { animation-delay:.3s; }
.delay-3    { animation-delay:.45s; }

/* Business card hover */
.business-card { display: flex; flex-direction: column; }

@media (max-width: 640px) {
  /* 展開エリアのカードをSPで均等に整える */
  .business-card {
    padding: .875rem .5rem;
  }
  .business-card .w-10 {
    width: 2rem;
    height: 2rem;
  }
  .business-card .text-sm {
    font-size: .8rem;
  }
}


/* Nav */
.nav-link { position:relative; }
.nav-link::after {
  content:''; position:absolute;
  bottom:-2px; left:0;
  width:0; height:2px;
  background:var(--primary);
  transition:width .3s ease;
}
.nav-link:hover::after { width:100%; }

.nav-link {
  color: #ffffff !important;
  transition: color .2s ease;
}
.nav-link:hover {
  color: #e9c349 !important;
}

.mobile-nav-link { transition:background .2s,color .2s; }
.mobile-nav-link:hover {
  background:rgba(233,195,73,.08);
  color:var(--primary) !important;
}

/* Hamburger icon */
#menu-btn {
  position: relative;
}
.hamburger-icon {
  position: relative;
  width: 22px;
  height: 16px;
  flex-shrink: 0;
}
.hamburger-bar {
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center center;
}
.hamburger-bar:nth-child(1) { top: 0; }
.hamburger-bar:nth-child(2) { top: 7px; }
.hamburger-bar:nth-child(3) { top: 14px; }

/* X state */
#menu-btn.menu-open .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu-btn.menu-open .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
#menu-btn.menu-open .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== FOIL CANVAS ======================================================= */
.foil-canvas {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index:0;
}


/* ===== NAV =============================================================== */
section { position:relative; }
#top { padding-top:0; padding-bottom:0; }

nav {
  position:fixed; top:0; left:0; width:100%; z-index:50;
  background:rgba(6,20,35,.8);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  box-shadow:0 4px 30px rgba(6,20,35,.6);
}
.nav-inner {
  display:flex; justify-content:space-between; align-items:center;
  padding:1rem 1.5rem;
  max-width:80rem; margin:0 auto;
}
@media (min-width:768px) {
  .nav-inner { padding:1rem 2.5rem; }
}

/* ===== SECTION SPACING =================================================== */
/* Base: comfortable vertical rhythm */
section {
  padding-top:    3.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width:768px) {
  section {
    padding-top:    4.5rem;
    padding-bottom: 4.5rem;
  }
}
@media (min-width:1024px) {
  section {
    padding-top:    5.5rem;
    padding-bottom: 5.5rem;
  }
}

/* ===== SECTION HEADER SPACING ============================================ */
/* py-28 / py-32 etc inline classes override sections — keep as fallback */

/* ===== BUSINESS CATEGORIES =============================================== */
.biz-cat + .biz-cat {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(187,198,226,.07);
}
@media (min-width:768px) {
  .biz-cat + .biz-cat { margin-top:4rem; padding-top:4rem; }
}

/* ===== FOOTER ============================================================ */
footer {
}

/* ===== HERO TEXT (mobile) ================================================ */
@media (max-width:640px) {
  .hero-h1  { font-size:2.6rem; line-height:1.15; }
  .hero-sub { font-size:.95rem; }
}

/* ===== RESPONSIVE UTILITIES ============================================== */
@media (min-width:640px) {
  .sm\:block       { display:block; }
  .sm\:flex        { display:flex; }
  .sm\:flex-row    { flex-direction:row; }
  .sm\:grid-cols-3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .sm\:hidden      { display:none !important; }
  .sm\:col-span-1  { grid-column:span 1; }
  .sm\:text-4xl    { font-size:2.25rem; }
}
@media (min-width:768px) {
  .md\:block       { display:block !important; }
  .md\:flex        { display:flex !important; }
  .md\:grid        { display:grid !important; }
  .md\:hidden      { display:none !important; }
  .md\:col-span-2  { grid-column:span 2/span 2; }
  .md\:col-span-3  { grid-column:span 3/span 3; }
  .md\:col-span-1  { grid-column:span 1; }
  .md\:grid-cols-2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .md\:grid-cols-3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .md\:grid-cols-5 { grid-template-columns:repeat(5,minmax(0,1fr)); }
  .md\:flex-row    { flex-direction:row; }
  .md\:flex-col    { flex-direction:column; }
  .md\:items-start { align-items:flex-start; }
  .md\:mb-0        { margin-bottom:0; }
  .md\:mt-0        { margin-top:0; }
  .md\:p-14        { padding:3.5rem; }
  .md\:px-8        { padding-left:2rem; padding-right:2rem; }
  .md\:py-28       { padding-top:7rem; padding-bottom:7rem; }
  .md\:text-5xl    { font-size:3rem; }
  .md\:text-6xl    { font-size:3.75rem; }
  .md\:text-7xl    { font-size:4.5rem; }
  .md\:text-8xl    { font-size:6rem; }
  .md\:text-base   { font-size:1rem; }
  .md\:text-xl     { font-size:1.25rem; }
  .md\:text-3xl    { font-size:1.875rem; }
  .md\:leading-tight { line-height:1.15; }
  .md\:w-52        { width:13rem; }
  .md\:h-52        { height:13rem; }
  .md\:h-auto      { height:auto; }
  .md\:p-10        { padding:2.5rem; }
  .md\:p-8         { padding:2rem; }
}

@media (min-width:1024px) {
  .lg\:block       { display:block !important; }
  .lg\:hidden      { display:none !important; }
  .lg\:flex        { display:flex !important; }
  .lg\:grid-cols-2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .lg\:grid-cols-3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .lg\:grid-cols-5 { grid-template-columns:repeat(5,minmax(0,1fr)); }
  .lg\:col-span-2  { grid-column:span 2/span 2; }
  .lg\:col-span-3  { grid-column:span 3/span 3; }
  .lg\:p-14        { padding:3.5rem; }
  .lg\:h-auto      { height:auto; }
}

/* ===== BUSINESS SCROLL (SP横スクロール) ================================ */
.biz-scroll-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 767px) {
  .biz-scroll-wrap {
    cursor: grab;
  }
  .biz-scroll-wrap:active,
  .biz-scroll-wrap.is-dragging {
    cursor: grabbing;
    user-select: none;
  }
  .biz-scroll-wrap {
    display: flex;
    overflow-x: auto;
    gap: .875rem;
    padding-bottom: .75rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* スクロールバーを細く */
    scrollbar-width: thin;
    scrollbar-color: rgba(233,195,73,0.3) transparent;
  }
  .biz-scroll-wrap::-webkit-scrollbar {
    height: 3px;
  }
  .biz-scroll-wrap::-webkit-scrollbar-track {
    background: transparent;
  }
  .biz-scroll-wrap::-webkit-scrollbar-thumb {
    background: rgba(233,195,73,0.3);
    border-radius: 2px;
  }
  .biz-scroll-wrap > * {
    flex: 0 0 75vw;
    max-width: 280px;
    scroll-snap-align: start;
  }
}

/* ===== AREAS MAP ======================================================== */
.areasmap-wrap {
  padding: 1rem;
}
.areasmap-img {
  object-fit: contain;
  max-height: 480px;
  border-radius: 8px;
  display: block;
}
@media (max-width: 767px) {
  .areasmap-wrap {
    padding: 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }
  .areasmap-img {
    object-fit: contain !important;
    max-height: none !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
  }
}

/* ===== SP 関連会社カード調整（→ company-card-body 定義より後に移動済み） === */

/* ===== TABLET (768–1023px) 固有調整 ====================================== */
@media (min-width:768px) and (max-width:1023px) {
  /* セクションパディングをタブレット向けに最適化 */
  section { padding-top: 4rem; padding-bottom: 4rem; }

  /* ヒーローh1サイズ調整 */
  .hero-h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); }

  /* お知らせセクションのカードをタブレットで横並びのまま保つ */
  .news-item { flex-wrap: nowrap; }
}

/* ===== TIMELINE ========================================================== */
.tl-wrap { position: relative; }

.tl-node {
  display: flex;
  gap: 20px;
  margin-bottom: 2.5rem;
}
.tl-node-last { margin-bottom: 0; }

/* Gutter: fixed 20px wide, holds the line + dot */
.tl-gutter {
  position: relative;
  width: 20px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

/* Vertical line — full height of the node, centered in gutter */
.tl-line {
  position: absolute;
  top: 20px;          /* start below the dot */
  bottom: -2.5rem;    /* extend to next node */
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(to bottom, rgba(233,195,73,0.6), rgba(233,195,73,0.1));
}

/* Dot — 12px circle, centered in gutter */
.tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--surface);
  margin-top: 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.tl-dot::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

/* Active (last) dot */
.tl-dot-active {
  background: var(--primary);
  box-shadow: 0 0 12px rgba(233,195,73,0.5);
}
.tl-dot-active::after {
  background: var(--on-primary);
}

/* Text content */
.tl-body { flex: 1; padding-bottom: 0.25rem; }


/* ===== PARTICLE CANVAS ================================================== */
#particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ===== TYPING ANIMATION ================================================= */
.typing-cursor::after {
  content: '|';
  color: var(--primary);
  animation: blink .7s step-end infinite;
  margin-left: 2px;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* ===== SCROLL REVEAL ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-stagger.revealed > *:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:.05s; }
.reveal-stagger.revealed > *:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:.15s; }
.reveal-stagger.revealed > *:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:.25s; }
.reveal-stagger.revealed > *:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:.35s; }
.reveal-stagger.revealed > *:nth-child(5) { opacity:1; transform:translateY(0); transition-delay:.45s; }
.reveal-stagger.revealed > *:nth-child(6) { opacity:1; transform:translateY(0); transition-delay:.55s; }
.reveal-stagger.revealed > *:nth-child(7) { opacity:1; transform:translateY(0); transition-delay:.65s; }
.reveal-stagger.revealed > *:nth-child(8) { opacity:1; transform:translateY(0); transition-delay:.72s; }
.reveal-stagger.revealed > *:nth-child(9) { opacity:1; transform:translateY(0); transition-delay:.79s; }
.reveal-stagger.revealed > *:nth-child(10){ opacity:1; transform:translateY(0); transition-delay:.85s; }
.reveal-stagger.revealed > *:nth-child(11){ opacity:1; transform:translateY(0); transition-delay:.91s; }

/* ===== NEWS SECTION ====================================================== */
.news-section {
  background-color: var(--surface-container-lowest);
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(187,198,226,0.08);
}

.news-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 640px) {
  .news-header {
    display: block;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    text-align: center;
  }  
}

.news-label {
  font-family: 'Shippori Mincho', serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(233,195,73,0.08);
  border: 1px solid rgba(233,195,73,0.2);
  padding: .3rem .8rem;
  border-radius: 999px;
}

.news-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--on-background);
  letter-spacing: .06em;
}

/* ---- list ---- */
.news-list {
  display: flex;
  flex-direction: column;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(187,198,226,0.08);
  transition: background .2s;
}
.news-item:first-child {
  border-top: 1px solid rgba(187,198,226,0.08);
}

.news-date {
  font-family: 'Shippori Mincho', serif;
  font-size: .8rem;
  color: var(--secondary);
  white-space: nowrap;
  min-width: 5rem;
  letter-spacing: .04em;
}

/* ---- meta row (date + tag) ---- */
.news-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

/* ---- date ---- */
.news-date {
  font-family: 'Shippori Mincho', serif;
  font-size: .8rem;
  color: var(--secondary);
  white-space: nowrap;
  min-width: 5rem;
  letter-spacing: .04em;
}

/* ---- tags ---- */
.news-tag {
  font-family: 'Shippori Mincho', serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  white-space: nowrap;
  padding: .22rem 1rem;
  border-radius: 4px;
  min-width: 7rem;
  text-align: center;
}
.news-tag--info {
  background: rgba(187,198,226,0.1);
  color: var(--secondary);
  border: 1px solid rgba(187,198,226,0.18);
}
.news-tag--invest {
  background: rgba(233,195,73,0.1);
  color: var(--primary);
  border: 1px solid rgba(233,195,73,0.22);
}
.news-tag--pr {
  background: rgba(100,180,255,0.08);
  color: #88c4f4;
  border: 1px solid rgba(100,180,255,0.18);
}

/* ---- body / link ---- */
.news-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 1rem;
  color: var(--on-background);
  transition: color .2s;
}
.news-body:hover {
  color: var(--primary);
}
.news-text {
  font-size: .9rem;
  line-height: 1.65;
  letter-spacing: .03em;
}

/* ---- responsive ---- */
@media (max-width: 640px) {
  .news-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* カード型レイアウトに切り替え */
  .news-list {
    gap: .75rem;
  }

  .news-item {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(187,198,226,0.1) !important;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    transition: background .2s, border-color .2s;
  }
  .news-item:hover {
    background: rgba(233,195,73,0.04);
    border-color: rgba(233,195,73,0.18) !important;
  }

  /* 1行目：news-metaで日付＋タグを横並び */
  .news-meta {
    margin-bottom: .45rem;
    gap: .2rem;
  }
  .news-date {
    font-size: .75rem;
  }
  .news-tag {
    font-size: .65rem;
    padding: .18rem .5rem;
    min-width: auto;
  }

  /* 2行目：本文 */
  .news-body {
    width: 100%;
    align-items: flex-start;
  }
  .news-text {
    font-size: .88rem;
    line-height: 1.7;
    flex: 1;
  }
}

/* Mobile nav link */
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .9rem 1rem;
  border-radius: 12px;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  transition: background .18s, color .18s;
  border: 1px solid transparent;
}
.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: rgba(233,195,73,0.07);
  border-color: rgba(233,195,73,0.15);
  color: var(--primary);
}
.mobile-nav-icon {
  font-size: 1.2rem;
  color: var(--primary);
  opacity: .75;
  flex-shrink: 0;
  font-variation-settings: 'FILL' 0, 'wght' 300;
}
.mobile-nav-label {
  flex: 1;
  letter-spacing: .04em;
}
.mobile-nav-arrow {
  font-size: 1.1rem;
  color: var(--secondary);
  opacity: .45;
  flex-shrink: 0;
  transition: opacity .18s, transform .18s;
}
.mobile-nav-link:hover .mobile-nav-arrow,
.mobile-nav-link:active .mobile-nav-arrow {
  opacity: .9;
  transform: translateX(3px);
  color: var(--primary);
}


/* ===== INLINE STYLE 移行クラス ========================================== */

/* --- NAV --- */
nav { box-shadow: 0 4px 30px rgba(6,20,35,0.6); }
.nav-link-color { color: #ffffff; }

/* --- MOBILE MENU --- */
#mobile-menu { max-height: 0; }
.mobile-menu-inner {
  background: rgba(6,20,35,0.97);
  border-top: 1px solid rgba(233,195,73,0.15);
}
.mobile-menu-divider {
  height: 1px;
  background: rgba(233,195,73,0.12);
  margin: .5rem 0;
}
.mobile-cta-btn {
  margin-left: 1rem;
  margin-right: 1rem;
}

/* --- HERO --- */
#hero-slide-0 { opacity: 1; transition: opacity 1.2s ease; }
#hero-slide-1 { opacity: 0; transition: opacity 1.2s ease; }
.hero-overlay {
  background: linear-gradient(135deg, rgba(6,20,35,0.82) 0%, rgba(6,20,35,0.65) 50%, rgba(6,20,35,0.75) 100%);
}
.hero-h1 {
  font-size: clamp(2.4rem, 7vw, 6rem);
  line-height: 1.08;
  opacity: 0;
  animation: fadeInUp .8s .3s ease forwards;
}
.hero-sub-text {
  color: #ffffff;
  font-size: clamp(.95rem, 2vw, 1.15rem);
  line-height: 1.8;
}
.hero-scroll-label { color: #ffffff; }

/* --- VISION アイコンボックス (SP: 18px / PC: 22px) --- */
.icon-box-sm {
  background: rgba(233,195,73,0.15);
}
.icon-box-sm .material-symbols-outlined { font-size: 18px; }
.icon-box-md {
  background: rgba(233,195,73,0.15);
}
.icon-box-md .material-symbols-outlined { font-size: 22px; }

/* --- VISION 装飾リング --- */
.vision-ring-sm {
  border: 1px dashed rgba(233,195,73,0.25);
}
.vision-ring-md {
  border: 1px dashed rgba(233,195,73,0.25);
}
.vision-ring-lg {
  border: 1px dashed rgba(233,195,73,0.15);
}

/* --- ABOUT 会社概要 --- */
.about-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about-info-row {
  border-bottom: 1px solid rgba(68,71,76,0.4);
}
.about-qii-badge {
  border-top: 1px solid rgba(68,71,76,0.4);
}
.about-qii-inner {
  background: rgba(233,195,73,0.08);
  border: 1px solid rgba(233,195,73,0.2);
}
.about-building-card {
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.about-building-img {
  object-fit: contain;
  max-height: 480px;
  border-radius: 8px;
}

/* --- 事業内容 ✦ 記号 --- */
.biz-bullet {
  font-size: 13px;
  line-height: 1.625;
}

/* --- 関連会社 区切り線 --- */
.section-divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233,195,73,0.25), transparent);
  margin: 3.5rem 0;
}

/* --- 関連会社カード --- */
.company-card { display: flex; flex-direction: column; }
.company-card-link {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(233,195,73,0.12);
}
.company-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.company-card-img:hover { transform: scale(1.04); }
.company-card-placeholder {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(233,195,73,0.06);
}
.company-card-body {
  padding: 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
/* ===== SP 関連会社カード調整 =========================================== */
@media (max-width: 767px) {
  .company-card-body {
    padding: 0.75rem 0.1rem;
    gap: 0.5rem;
  }
  .company-card-body h4 {
    font-size: 0.8rem;
  }
  .company-card-body p {
    font-size: 0.72rem;
    line-height: 1.6;
  }
}
.company-card-body p {
  flex: 1;
}
.company-card-desc { flex: 1; }

/* --- URLなし会社カード — クリック不可・ホバー無効 --- */
.company-card-link[data-no-url] {
  cursor: default;
  pointer-events: none;
}
.company-card-link[data-no-url] .company-card-img {
  transition: none;
}
.company-card-link[data-no-url]:hover .company-card-img {
  transform: none;
}

/* --- 関連会社カード（画像なし／プレースホルダー型） --- */
.company-card-header {
  background: rgba(233,195,73,0.06);
  border-bottom: 1px solid rgba(233,195,73,0.12);
  height: 120px;
  padding: 1.5rem;
}
.company-card-header-img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}
.company-card-header-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
}

/* --- 事業セクション アイコンボックス (20px) --- */
.icon-box-biz {
  background: rgba(233,195,73,0.15);
}
.icon-box-biz .material-symbols-outlined { font-size: 20px; }

/* --- 事業カード 画像 --- */
.biz-card-img {
  object-fit: contain;
  display: block;
  vertical-align: bottom;
}

/* --- CEO プロフィール --- */
.ceo-card { text-align: center; }
.ceo-photo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.75rem;
}
.ceo-photo-ring {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(
    rgba(233,195,73,1) 0deg,
    rgba(255,240,160,1) 60deg,
    rgba(210,170,50,0.4) 120deg,
    rgba(233,195,73,1) 180deg,
    rgba(255,240,160,1) 240deg,
    rgba(210,170,50,0.4) 300deg,
    rgba(233,195,73,1) 360deg
  );
  box-shadow: 0 0 32px rgba(233,195,73,0.35), 0 0 8px rgba(233,195,73,0.2);
  margin: 0 auto;
}
.ceo-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.ceo-accent-line {
  width: 48px;
  height: 2px;
  margin: 1rem auto 1.25rem;
  background: linear-gradient(90deg, transparent, #e9c349, transparent);
}
.ceo-profile-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  text-align: left;
}
.ceo-profile-icon {
  font-size: 15px;
  opacity: .7;
}

/* --- タイムライン・アイコン (20px) --- */
.icon-sm-20 { font-size: 20px; }
.icon-sm-22 { font-size: 22px; }
.icon-sm-18 { font-size: 18px; }
.icon-sm-16 { font-size: 16px; }
.icon-sm-15 { font-size: 15px; }
.icon-sm-14 { font-size: 14px; }

/* --- エリアマップ --- */
.areasmap-wrap { padding: 1rem; }
.areasmap-img {
  object-fit: contain;
  max-height: 480px;
  border-radius: 8px;
}

/* --- 展開エリア ロケーションアイコン --- */
.area-icon-intl { font-size: 18px; }
.area-icon-dom  { font-size: 18px; }

/* --- 実績セクション --- */
.case-concept-badge {
  background: rgba(233,195,73,0.08);
  border: 1px solid rgba(233,195,73,0.2);
}
.case-stat-card { background: rgba(233,195,73,0.05); }
.case-photos {
  min-height: 400px;
  gap: 16px;
}
.case-photos > div {
  border-radius: 12px;
}
.case-photos .grid-cols-2 {
  gap: 16px;
}
.case-photo-img {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}
.case-moss-logo-wrap { margin: -40px 100px 0; }
@media (max-width: 767px) {
  .case-moss-logo-wrap { margin: 0px auto 0; }  
}


/* --- コンタクト --- */
.contact-grid {
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}
.contact-col { display: flex; flex-direction: column; }
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-icon-box {
  background: rgba(233,195,73,0.12);
}
.contact-inquiry-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  flex: 1;
}
.contact-qii-badge {
  background: rgba(233,195,73,0.08);
  border: 1px solid rgba(233,195,73,0.15);
}

/* --- フッター --- */
footer { border-top: 1px solid rgba(187,198,226,0.1); }

/* ===== SP 全体調整 (max-width: 767px) ==================================== */
@media (max-width: 767px) {

  /* フッター横余白をSPに合わせて縮小 */
  .footer-inner {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    padding-top: 2.75rem !important;
    padding-bottom: 2.25rem !important;
  }

  /* 関連会社 見出し下マージン縮小 */
  .related-companies-heading {
    margin-bottom: 1.25rem !important;
  }

  /* 会社概要テーブル ラベル幅・文字サイズをSPで縮小 */
  .about-label-sp {
    width: 3.75rem !important;
    font-size: 0.68rem;
  }

  /* ① text-xs に leading-relaxed(1.7) が当たる箇所を適正化
        経営理念カード・その他 text-xs の説明文 */
  .text-xs.leading-relaxed {
    line-height: 1.55;
  }

  /* ② 会社概要テーブル本文 — SP時はフォントを text-sm 相当に縮小し行間を調整 */
  .about-info-list .text-base {
    font-size: 0.875rem;
    line-height: 1.65;
  }

  /* ③ 関連会社カード説明文 — 縮小後フォントサイズに対して行間を微調整 */
  .company-card-body p {
    line-height: 1.6;
  }
  
  .contact-h2{
    line-height: 1.2;
  }
}
.footer-qii-badge {
  background: rgba(233,195,73,0.08);
  border: 1px solid rgba(233,195,73,0.15);
}

/* --- Google Maps iframe --- */
.map-iframe { border: 0; display: block; }

/* --- 会社沿革タイムライン --- */
.history-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.history-item {
  display: grid;
  grid-template-columns: 72px 28px 1fr;
  gap: 0 12px;
  align-items: stretch;
  min-height: 52px;
}
.history-year {
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
  justify-content: flex-end;
}
.history-line-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.history-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e9c349, #ffd780);
  box-shadow: 0 0 8px rgba(233,195,73,0.5);
  flex-shrink: 0;
  margin-top: 3px;
  z-index: 1;
}
.history-dot--last {
  box-shadow: 0 0 14px rgba(233,195,73,0.7);
}
.history-vline {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, rgba(233,195,73,0.4), rgba(233,195,73,0.1));
  margin-top: 4px;
}
.history-content {
  display: flex;
  align-items: flex-start;
  padding-top: 1px;
  padding-bottom: 16px;
}

.right-img-top{
  justify-content: flex-end;
}
/* ============================================================
   STORE LIST — 実績セクション 店舗リンク（カード下部・全幅）
   ============================================================ */
.store-list-wrap {
  padding: 0 1.5rem 1.5rem;
}

@media (min-width: 768px) {
  .store-list-wrap {
    padding: 0 2.5rem 2.5rem;
  }
}

.store-list-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(233,195,73,0.35), transparent);
  margin-bottom: 1.25rem;
}

.store-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
}

@media (min-width: 640px) {
  .store-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .store-list {
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
  }
}

.store-list li {
  display: flex;
}

/* 区切り線（PC横並び時のみ） */
@media (min-width: 1024px) {
  .store-list li + li {
    border-left: 1px solid rgba(233,195,73,0.2);
  }
}

.store-link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s ease, opacity 0.2s ease;
  width: 100%;
}
.store-link:hover {
  background: rgba(233,195,73,0.07);
}
.store-link:hover .store-link__name {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.store-link__name {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(233, 195, 73, 0.92);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.store-link__location {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}


/* ===== VIETNAM BUILDING SECTION (moved from inline <style>) ============== */

/* -- vn (完成・運営中) ---------------------------------------------------- */
.vn-wrap { padding: 0 24px 16px 24px; }
.vn-img-grid { display:grid; gap:12px; grid-template-columns:1fr; }
.vn-img-1 { width:100%; height:auto; object-fit:cover; object-position:center; display:block; }
.vn-img-2 { width:100%; height:auto; object-fit:cover; object-position:center; display:block; }
.vn-img-box { overflow:hidden; background:transparent; }
@media (min-width:768px) {
  .vn-wrap { padding: 0 24px 24px 24px; }
  .vn-header { padding-bottom: 20px; }
  .vn-img-grid { grid-template-columns: 67fr 33fr; }
  .vn-img-1 { height: 550px; object-position:left center; }
  .vn-img-2 { height: 550px; object-position:left center; }
  .vn-img-box { border-radius: 12px; background:#111; }
}

/* -- vn2 (設計中・開発中 その1) ------------------------------------------- */
.vn2-wrap { padding: 0 24px 16px 24px; }
.vn2-img-grid { display:grid; gap:12px; grid-template-columns:1fr; }
.vn2-img { width:100%; height:auto; object-fit:cover; object-position:center; display:block; }
.vn2-img-box { overflow:hidden; background:transparent; }
@media (min-width:768px) {
  .vn2-wrap { padding: 0 24px 24px 24px; }
  .vn2-header { padding-bottom: 20px; }
  .vn2-img-grid { grid-template-columns: 1fr 1fr; }
  .vn2-img { height: 730px; object-position:left center; }
  .vn2-img-box { border-radius: 12px; background:#111; }
}

/* -- vn3 (設計中・開発中 その2) ------------------------------------------- */
.vn3-wrap { padding: 0 24px 16px 24px; }
.vn3-img-grid { display:grid; gap:12px; grid-template-columns:1fr; }
.vn3-img { width:100%; height:auto; object-fit:cover; display:block; }
.vn3-img-box { overflow:hidden; background:transparent; }
@media (min-width:768px) {
  .vn3-wrap { padding: 0 24px 24px 24px; }
  .vn3-img-grid { grid-template-columns: 1fr 1fr; }
  .vn3-img { height: 720px; object-position:center; }
  .vn3-img-box { border-radius: 12px; background:#111; }
}

/* -- SP: バッジをセンタリング (完成・運営中 / 設計中・開発中) -------------- */
@media (max-width: 767px) {
  .vn-header,
  .vn2-header,
  .vn3-header {
    text-align: center;
  }
}

/* -- バッジ + ビル名 行レイアウト ----------------------------------------- */
.vn-badge-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vn-building-name {
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--on-background);
  letter-spacing: .04em;
}

/* SP: バッジの下にビル名を縦積み・センター揃え */
@media (max-width: 767px) {
  .vn-badge-row {
    flex-direction: column;
    align-items: center;
    gap: .5rem;
  }
  .vn-badge-row > div {
    display: flex !important;
    width: 100%;
    justify-content: center;
  }
}


#chonaikai-badge { display:flex; width:100%; justify-content:center; }
@media(min-width:768px) {
  #chonaikai-badge-wrap { text-align:left; }
  #chonaikai-badge { display:inline-flex; width:auto; }
}

/* ===== NEWS MORE LINK ==================================================== */
.news-more-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(233,195,73,.35);
  padding-bottom: .15rem;
  transition: color .2s, border-color .2s, gap .2s;
}
.news-more-link:hover {
  color: var(--primary-fixed);
  border-color: var(--primary-fixed);
  gap: .65rem;
}
/* ===== MOVIE SECTION ===================================================== */
.movie-section {
  padding-top: 3rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .movie-section {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}

/* 16:9 レスポンシブラッパー */
.movie-embed-wrap {
  margin-top: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(233,195,73,0.15);
  box-shadow:
    0 0 0 1px rgba(233,195,73,0.08),
    0 8px 40px rgba(0,0,0,0.55),
    0 0 60px rgba(233,195,73,0.06);
  background: #000;
  transition: box-shadow .3s, border-color .3s;
}
.movie-embed-wrap:hover {
  border-color: rgba(233,195,73,0.3);
  box-shadow:
    0 0 0 1px rgba(233,195,73,0.15),
    0 12px 50px rgba(0,0,0,0.65),
    0 0 80px rgba(233,195,73,0.1);
}

.movie-embed-ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}
.movie-embed-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
