/* ============================================================================
   Globals  (resets, html, body, header, footer, nav, keyframes, ...)
   ============================================================================ */

:root {
  --bg: #050b18;
  --ink: rgba(255, 255, 255, .92);
  --muted: rgba(255, 255, 255, .72);
  --muted2: rgba(255, 255, 255, .56);
  --panel: rgba(255, 255, 255, .06);
  --panel2: rgba(255, 255, 255, .04);
  --border: rgba(255, 255, 255, .11);
  --accent: #2b6cff;
  --accent2: #00b3ff;
  --shadow: 0 18px 60px rgba(0, 0, 0, .35);
  --shadow2: 0 26px 90px rgba(0, 0, 0, .45);
  --radius: 18px;
  --maxw: 1160px;
  --grow-blue: #2b6cff;
  --grow-blue-dark: #1e4ed8;
  --grow-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
  --grow-shadow-hover: 0 24px 60px rgba(15, 23, 42, 0.16);
  --bgShift: 0;
  --gold: rgba(196, 158, 44, .55);
  --gold-soft: rgba(196, 158, 44, .22);
  --gold-accent: rgba(218, 184, 76, .95);
  /* NEWSページ専用のアクセント色（金色は本当に目立たせたい所だけに残し、お知らせは青系で統一） */
  --news-accent: rgba(160, 190, 255, .80);
  --font-serif: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Times New Roman", serif;
  --font-sans: "Inter", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  /* scroll-behavior: smooth は意図的に外している。
     - cross-page hash navigation（例：news/ → #greeting）で smooth-scroll が走ると、
       非同期コンテンツのレイアウトシフトと競合して "ガタつく" 原因になる
     - in-page クリックの smooth は v39-init の click ハンドラで scrollIntoView({behavior:'smooth'}) を
       明示的に呼ぶことで実現する
     これで「他ページから=パッと着地」「TOP内クリック=滑らか」を一本のロジックで制御できる。 */
  scroll-padding-top: 16px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", "Times New Roman", serif;
  letter-spacing: .02em;
  overflow-x: hidden;
  padding-top: 0 !important;
  background-attachment: scroll;
  background: radial-gradient(1200px 700px at 20% calc(10% + (var(--bgShift) * 1%)), rgba(201, 162, 39, 0.10), transparent 60%), radial-gradient(1100px 650px at 85% calc(25% + (var(--bgShift) * 0.6%)), rgba(90, 140, 255, 0.10), transparent 55%), linear-gradient(180deg, #050b18, #061125 40%, #050b18);

  &.hero-ready .hero::before {
    opacity: 1;
  }

  &::after {
    content: none;
  }

  &.sp-menu-open .sp-menu-toggle__bar:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
  }

  &.sp-menu-open .sp-menu-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  &.sp-menu-open .sp-menu-toggle__bar:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
  }

  &.sp-menu-open .sp-menu-drawer {
    transform: translateX(0);
    visibility: visible;
  }

  &.sp-menu-open .sp-menu-backdrop {
    opacity: 1;
    visibility: visible;
  }

  &.sp-menu-open {
    overflow: hidden;
  }
}

a {
  color: inherit;
  text-decoration: none;
  font-weight: 400;

  &.btn.primary {
    padding: 8px 14px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    border-radius: 22px !important;
    min-width: auto !important;
    white-space: nowrap;
    background: linear-gradient(90deg, rgba(43, 108, 255, .98), rgba(0, 179, 255, .90)) !important;
    box-shadow: 0 10px 28px rgba(0, 90, 255, .22), inset 0 1px 0 rgba(255, 255, 255, .24) !important;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease !important;
  }

  &.btn.primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 14px 32px rgba(0, 90, 255, .28), inset 0 1px 0 rgba(255, 255, 255, .28) !important;
  }

  &.hero-actions .btn.primary {
    padding: 18px 38px !important;
    font-size: 16px !important;
    letter-spacing: .05em !important;
    border-radius: 999px !important;
    min-width: 260px !important;
    min-height: 56px !important;
    font-weight: 700 !important;
    box-shadow: 0 16px 40px rgba(0, 90, 255, .28), inset 0 1px 0 rgba(255, 255, 255, .26) !important;
  }

  &.btn {
    border-radius: 999px !important;
    padding: 14px 28px !important;
    font-weight: 600 !important;
    transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease, opacity .28s ease;
  }

  &.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(43, 108, 255, 0.18);
  }
}

/* body直下の <header> のみ対象（article__header等セマンティックheaderは除外） */
/* 初期状態（ページ最上部）：半透明 + 背後をblur。MV超えたら .is-scrolled で不透明に切り替わる */
body>header {
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  backface-visibility: hidden;
  transform: translateZ(0);
  backdrop-filter: blur(3px) saturate(120%);
  -webkit-backdrop-filter: blur(3px) saturate(120%);
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1020;
  background: rgba(4, 10, 22, .26);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .14);
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;

  /* MV（ヒーロー）を通り越したら不透明に切り替え */
  &.is-scrolled {
    background: rgba(4, 10, 22, .96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  & .btn {
    padding: 10px 18px !important;
    font-size: 14px !important;
    border-radius: 24px !important;
  }

  & .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 20px;
  }

  & .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  & .brand {
    flex: 0 0 auto;
  }

  & .main-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin: 0;
    white-space: nowrap;
  }

  & .main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    padding: 0;
  }

  & .btn.primary {
    flex: 0 0 auto;
    margin-left: auto;
  }

  &.scrolled {
    background: rgba(5, 11, 24, 0.92);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

    background: rgba(5, 11, 24, 0.94) !important;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38) !important;
  }

  & .logo {
    transition: transform 0.4s ease;
  }

  &.scrolled .logo {
    transform: scale(1.03);

    filter: none;
  }

  &.scrolled img {
    filter: none;
  }

  & nav a {
    font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif !important;
    letter-spacing: .05em;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;

  & img {
    height: 30px;
    width: auto;
    display: block;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .35));
  }
}

.menu {
  display: flex;
  gap: 22px;
  align-items: center;
  font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

  & a {
    font-size: 14px;
    color: rgba(255, 255, 255, .82);
    padding: 10px 8px;
    border-radius: 12px;
  }

  & a:hover {
    background: rgba(255, 255, 255, .06);
  }
}

@keyframes glow {
  0% {
    transform: translateX(-2%) translateY(0%);
  }

  50% {
    transform: translateX(2%) translateY(-1%);
  }

  100% {
    transform: translateX(-2%) translateY(0%);
  }
}

h1 {
  margin: 14px 0 10px;
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 1.05;
  text-shadow: 0 18px 55px rgba(0, 0, 0, .46);
  font-weight: 600 !important;
  letter-spacing: 0.01em;
}

section {
  padding: 96px 0;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  animation: none !important;
  transition: none !important;

  &.section-active {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }

  &.section-flash {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }
}

input {
  width: 100%;
  padding: 12px 12px;
  border: 0;
  background: rgba(0, 0, 0, .18);
  color: rgba(255, 255, 255, .92);
  font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  outline: none;
  border-radius: 14px !important;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;

  &[type="submit"] {
    border-radius: 999px !important;
    padding: 14px 28px !important;
    font-weight: 600 !important;
    transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease, opacity .28s ease;
  }

  &[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(43, 108, 255, 0.18);
  }

  &:focus {
    outline: none;
    border-color: rgba(43, 108, 255, 0.5) !important;
    box-shadow: 0 0 0 4px rgba(43, 108, 255, 0.12) !important;
  }
}

textarea {
  width: 100%;
  padding: 12px 12px;
  border: 0;
  background: rgba(0, 0, 0, .18);
  color: rgba(255, 255, 255, .92);
  font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  outline: none;
  min-height: 120px;
  resize: vertical;
  border-radius: 14px !important;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;

  &:focus {
    outline: none;
    border-color: rgba(43, 108, 255, 0.5) !important;
    box-shadow: 0 0 0 4px rgba(43, 108, 255, 0.12) !important;
  }
}

small {
  color: var(--muted2);
  font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  /* content-visibility: auto を削除。画像がviewport到達時まで非描画になり、
     スクロール中の遅延描画＝ "画像がスクロールに合わせて現れる" 現象＋下要素のレイアウトシフトを起こすため。
     &[loading="lazy"] { contain-intrinsic-size: 800px 500px; } も合わせて削除。 */
}

@keyframes heroFadeUpMain {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: .45;
    transform: translateY(0);
  }
}

.site-logo {
  height: 28px;
  width: auto;
  display: block;
}

.footer--refined {
  padding: 56px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: none !important;
}

.footer-inner--refined {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-company {
  margin: 0;
  font-size: 18px;
  letter-spacing: .08em;
  color: #f5f7ff;
}

.footer-copy {
  margin: 0;
  font-size: 13px;
  color: rgba(230, 236, 255, .72);
  letter-spacing: .06em;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(230, 236, 255, .72);
  font-size: 13px;
  line-height: 1.8;

  & p {
    margin: 0;
  }

  & a {
    color: rgba(245, 247, 255, .82);
    text-decoration: none;
  }

  & a:hover {
    color: #fff;
  }
}

.footer-copyright {
  margin: 0;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(230, 236, 255, .5);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 4px;

  & a {
    color: rgba(245, 247, 255, .82);
    text-decoration: none;
  }

  & a:hover {
    color: #fff;
  }
}

main {
  margin-top: 0 !important;

  /*
   * content-visibility: auto はパフォーマンス最適化のためのプロパティだが、
   * 各セクションが viewport 外では contain-intrinsic-size で仮の高さ（900px）が
   * 使われ、入った瞬間に実コンテンツ高さへ切り替わるため "全セクション縮む/広がる"
   * 大規模レイアウトシフトが発生する。アンカースクロールが click時のレイアウトを
   * 元に Y座標を計算するため、smooth-scroll中に下のセクションが上下にズレて、
   * 結果として目的地へ正しく着地できなくなる原因となっていた。
   * パフォーマンスより正確なスクロール挙動を優先するため無効化。
   *
   *  &>section:not(.hero) {
   *    content-visibility: auto;
   *    contain-intrinsic-size: 1px 900px;
   *  }
   */

  &>section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  &>section.hero {
    padding-top: 110px;
    padding-bottom: 96px;
  }
}

button {
  border-radius: 999px !important;
  padding: 14px 28px !important;
  font-weight: 600 !important;
  transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease, opacity .28s ease;

  &.btn.primary {
    padding: 8px 14px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    border-radius: 22px !important;
    min-width: auto !important;
    white-space: nowrap;
    background: linear-gradient(90deg, rgba(43, 108, 255, .98), rgba(0, 179, 255, .90)) !important;
    box-shadow: 0 10px 28px rgba(0, 90, 255, .22), inset 0 1px 0 rgba(255, 255, 255, .24) !important;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease !important;
  }

  &.btn.primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 14px 32px rgba(0, 90, 255, .28), inset 0 1px 0 rgba(255, 255, 255, .28) !important;
  }

  &[type="submit"] {
    border-radius: 999px !important;
    padding: 14px 28px !important;
    font-weight: 600 !important;
    transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease, opacity .28s ease;
  }

  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(43, 108, 255, 0.18);
  }

  &[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(43, 108, 255, 0.18);
  }

  &.primary {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35), 0 0 0 1px rgba(255, 255, 255, .08) inset !important;
    transform: translateZ(0);
  }

  &.primary:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, .42), 0 0 0 1px rgba(255, 255, 255, .10) inset !important;
  }
}

article.news-card {
  border-radius: 18px !important;
  box-shadow: var(--grow-shadow) !important;
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease, background-color .32s ease;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  will-change: transform, box-shadow, opacity;

  &:hover {
    transform: translateY(-10px) scale(1.01) !important;
    box-shadow: 0 24px 54px rgba(0, 0, 0, .28), 0 10px 28px rgba(43, 108, 255, .12), inset 0 1px 0 rgba(255, 255, 255, .08) !important;
    border-color: rgba(120, 170, 255, .22) !important;
  }

  &:focus-within {
    transform: translateY(-10px) scale(1.01) !important;
    box-shadow: 0 24px 54px rgba(0, 0, 0, .28), 0 10px 28px rgba(43, 108, 255, .12), inset 0 1px 0 rgba(255, 255, 255, .08) !important;
    border-color: rgba(120, 170, 255, .22) !important;
  }

  &::after {
    content: "";
    position: absolute;
    inset: auto -20% -55% -20%;
    height: 90px;
    background: radial-gradient(circle at center, rgba(79, 140, 255, .18), rgba(79, 140, 255, 0) 68%);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .28s ease, transform .28s ease;
    pointer-events: none;
  }

  &:hover::after {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-line {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  letter-spacing: .08em;
  opacity: .75;
}

.form-note {
  margin-top: 15px;
  font-size: 12px;
  opacity: .65;
}

.pricing-psychology {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  opacity: .6;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .18);
  border-radius: 4px;
}

.profile-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.progress-bar {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: #c9a227;
  width: 0%;
  z-index: 9999;
}

h2 {
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

h3 {
  font-weight: 600 !important;
  letter-spacing: 0.01em;
}

h4 {
  font-weight: 600 !important;
  letter-spacing: 0.01em;
}

h5 {
  font-weight: 600 !important;
  letter-spacing: 0.01em;
}

h6 {
  font-weight: 600 !important;
  letter-spacing: 0.01em;
}

p {
  font-weight: 400;
}

li {
  font-weight: 400;
}

span {
  font-weight: 400;
}

.new {
  background: rgba(43, 108, 255, 0.12) !important;
  color: var(--grow-blue-dark) !important;
  border: 1px solid rgba(43, 108, 255, 0.18) !important;
  border-radius: 999px !important;
  padding: 4px 10px !important;
  box-shadow: 0 0 0 1px rgba(43, 108, 255, 0.06), 0 0 22px rgba(43, 108, 255, 0.08);
  font-weight: 600 !important;
}

@keyframes growModalIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

select {
  border-radius: 14px !important;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;

  &:focus {
    outline: none;
    border-color: rgba(43, 108, 255, 0.5) !important;
    box-shadow: 0 0 0 4px rgba(43, 108, 255, 0.12) !important;
  }
}

.site-header {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.header-contact {
  padding: 10px 18px !important;
  font-size: 14px !important;
  border-radius: 24px !important;
}

.header-cta {
  padding: 10px 18px !important;
  font-size: 14px !important;
  border-radius: 24px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35), 0 0 0 1px rgba(255, 255, 255, .08) inset !important;
  transform: translateZ(0);

  &:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, .42), 0 0 0 1px rgba(255, 255, 255, .10) inset !important;
  }
}

.header {
  & .btn {
    padding: 10px 18px !important;
    font-size: 14px !important;
    border-radius: 24px !important;
  }

  & nav a {
    font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif !important;
    letter-spacing: .05em;
  }
}

.footer-policy-links {
  margin-top: 18px !important;

  & a {
    position: relative;
    transition: .25s ease;
  }

  & a:hover {
    color: #fff;
    opacity: .95;
  }

  & a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #caa85e;
    transition: .25s ease;
  }

  & a:hover::after {
    width: 100%;
  }
}

.footer-brand {
  padding: 24px 0 10px;
  text-align: center;

  & h3 {
    margin: 0 0 10px;
    font-size: 32px;
    letter-spacing: .08em;
  }

  & p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
  }
}

.footer-contact-line {
  margin: 24px auto 10px;
  text-align: center;
  font-size: 18px;
  line-height: 1.9;

  & .sep {
    opacity: .5;
    margin: 0 14px;
  }
}

.footer-nav-clean {
  margin: 28px auto 0;
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;

  & a {
    color: #f2f4f8;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .04em;
  }

  & a:hover {
    opacity: .82;
  }
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;

  & a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: .04em;
    font-weight: 700;
  }

  & a:hover {
    opacity: .82;
  }
}

.footer-cta {
  margin: 42px auto 20px;
  max-width: 760px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  box-shadow: 0 16px 45px rgba(0, 0, 0, .18);
}

.footer-cta-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px;
}

.footer-cta-text {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .82);
}

.footer-cta-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1f7cff, #22b0ff);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.main-nav {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
  white-space: nowrap;

  & a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
  }

  & a:hover {
    opacity: .82;
  }
}

.footer-nav-under-hours {
  margin-top: 22px;
  justify-content: center;
  gap: 24px;
}

footer {
  font-size: 14px;
  opacity: .9;
  padding-bottom: 60px !important;
}

@keyframes contactGlow {
  0% {
    box-shadow: 0 0 0 rgba(201, 162, 39, 0.0);
    outline-color: rgba(201, 162, 39, 0.0);
  }

  35% {
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.14), 0 18px 42px rgba(0, 0, 0, 0.35);
    outline: 1px solid rgba(201, 162, 39, 0.65);
    outline-offset: 6px;
  }

  100% {
    box-shadow: 0 0 0 rgba(201, 162, 39, 0.0);
    outline-color: rgba(201, 162, 39, 0.0);
  }
}

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

@keyframes lineGrow {
  to {
    transform: scaleX(1);
  }
}

@keyframes gentleShake {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-2px);
  }

  75% {
    transform: translateX(2px);
  }
}

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

@keyframes heroHint {
  to {
    opacity: 1;
  }
}

@keyframes dotBounce {
  0% {
    transform: translateY(0);
    opacity: 0.9;
  }

  100% {
    transform: translateY(0);
    opacity: 0.9;
  }

  50% {
    transform: translateY(10px);
    opacity: 0.55;
  }
}

@keyframes ctaBreath {
  0% {
    box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.35), 0 12px 26px rgba(0, 0, 0, 0.35);
  }

  100% {
    box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.35), 0 12px 26px rgba(0, 0, 0, 0.35);
  }

  50% {
    box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.55), 0 0 28px rgba(201, 162, 39, 0.10), 0 14px 30px rgba(0, 0, 0, 0.42);
  }
}

@keyframes shimmerRun {
  to {
    transform: translateX(140%);
    opacity: 0;
  }
}

@keyframes titleFlash {
  0% {
    opacity: 1;
    text-shadow: none;
  }

  40% {
    opacity: 1;
    text-shadow: 0 0 22px rgba(201, 162, 39, 0.18);
  }

  100% {
    opacity: 1;
    text-shadow: none;
  }
}

.end-cap {
  padding: 26px 0 10px;
}

.end-cap-inner {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  border-radius: 18px;
}

.end-cap-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

@keyframes sectionFlash {
  0% {
    background-color: rgba(255, 255, 255, 0.02);
  }

  100% {
    background-color: transparent;
  }
}

.footer-glow {
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.03));
}

.gnav {
  & a {
    font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif !important;
    letter-spacing: .05em;
  }
}

.photo-section {
  & .btn {
    display: none !important;
  }
}

@keyframes newsFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes newsUp {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes newsPulse {
  0% {
    box-shadow: 0 0 0 rgba(120, 190, 255, 0), 0 0 18px rgba(120, 190, 255, .16);
  }

  100% {
    box-shadow: 0 0 0 rgba(120, 190, 255, 0), 0 0 18px rgba(120, 190, 255, .16);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(120, 190, 255, .05), 0 0 22px rgba(120, 190, 255, .24);
  }
}

.profile-container {
  border-color: var(--gold) !important;

  &:before {
    border-color: var(--gold-soft) !important;
  }
}

.mobile-fixed-cta {
  display: none;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .28s ease, transform .28s ease;

  &.is-hidden {
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
  }
}

.sp-menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  margin-left: 12px;
  flex: 0 0 auto;
  z-index: 1010;
}

.sp-menu-toggle__bar {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, top .3s ease, opacity .2s ease;

  &:nth-child(1) {
    top: 14px;
  }

  &:nth-child(2) {
    top: 21px;
  }

  &:nth-child(3) {
    top: 28px;
  }
}

.sp-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100dvh;
  background: linear-gradient(180deg, rgba(6, 12, 26, .98), rgba(4, 10, 23, .98));
  border-left: 1px solid rgba(255, 255, 255, .08);
  box-shadow: -20px 0 60px rgba(0, 0, 0, .5);
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1010;
  /* headerの1020より下 */
  display: flex;
  flex-direction: column;
  padding: calc(64px + 20px) 22px 32px;
  gap: 14px;
  visibility: hidden;
}

.sp-menu-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.sp-menu-drawer__title {
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 22px;
  letter-spacing: .18em;
  color: rgba(218, 184, 76, .95);
  font-weight: 500;
}

.sp-menu-drawer__close {
  position: relative;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;

  & span {
    position: absolute;
    left: 9px;
    top: 17px;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
  }

  & span:nth-child(1) {
    transform: rotate(45deg);
  }

  & span:nth-child(2) {
    transform: rotate(-45deg);
  }
}

.sp-menu-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;

  & a {
    display: block;
    padding: 16px 4px;
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .04em;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: color .2s ease, padding .25s ease;
  }

  & a:hover {
    color: rgba(218, 184, 76, .95);
    padding-left: 10px;
  }
}

.sp-menu-drawer__cta {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 16px 20px;
  background: linear-gradient(90deg, rgba(43, 108, 255, .98), rgba(0, 179, 255, .90));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .05em;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 90, 255, .28);
}

.sp-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 1000;
}

/* ============================================================================
   Common components  (.btn, .card, .container, .section-title, ...)
   ============================================================================ */

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  overflow: hidden;
  will-change: transform;
  border-radius: 999px !important;
  padding: 14px 28px !important;
  font-weight: 600 !important;
  transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease, opacity .28s ease;

  &:hover {
    filter: brightness(1.08);

    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(43, 108, 255, 0.18);
  }

  &.primary {
    background: linear-gradient(90deg, rgba(43, 108, 255, .98), rgba(0, 179, 255, .86));
    border-color: rgba(255, 255, 255, .18);
    box-shadow: 0 12px 36px rgba(0, 100, 255, .20);

    min-width: 220px;

    padding: 8px 14px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    border-radius: 22px !important;
    min-width: auto !important;
    white-space: nowrap;
    background: linear-gradient(90deg, rgba(43, 108, 255, .98), rgba(0, 179, 255, .90)) !important;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease !important;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .35), 0 0 0 1px rgba(255, 255, 255, .08) inset !important;
    transform: translateZ(0);
  }

  &.primary::after {
    content: "";
    position: absolute;
    inset: -40% -20%;
    background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, .25) 48%, transparent 62%);
    transform: translateX(-60%) rotate(10deg);
    transition: transform .9s ease;
  }

  &.primary:hover::after {
    transform: translateX(60%) rotate(10deg);
  }

  &.primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);

    box-shadow: 0 14px 40px rgba(0, 0, 0, .42), 0 0 0 1px rgba(255, 255, 255, .10) inset !important;
  }

  &.premium-cta-main {
    border-radius: 999px !important;
    padding: 0 24px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700 !important;
    letter-spacing: .02em;

    background: linear-gradient(135deg, #1557b8, #2b6ee7) !important;
    color: #fff !important;
    box-shadow: 0 16px 34px rgba(43, 110, 231, .26), 0 0 0 1px rgba(255, 255, 255, .14);

    width: 100%;
    min-width: 0;
    min-height: 60px;
  }

  &.premium-cta-sub {
    border-radius: 999px !important;
    padding: 0 24px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700 !important;
    letter-spacing: .02em;

    background: rgba(255, 255, 255, .08) !important;
    color: rgba(255, 255, 255, .92) !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .16);

    width: 100%;
    min-width: 0;
    min-height: 60px;
  }

  &.premium-cta-main:hover {
    box-shadow: 0 22px 44px rgba(43, 110, 231, .34), 0 0 0 1px rgba(255, 255, 255, .18);
  }

  &.premium-cta-sub:hover {
    background: rgba(255, 255, 255, .14) !important;
  }
}

.tag {
  padding: 7px 10px;
  font-size: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, .14);
  color: rgba(255, 255, 255, .82);
  font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.section-title {
  margin: 0 0 16px;
  position: relative;
  padding-left: 18px;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 40px;
  text-align: center;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  letter-spacing: 0.04em;
  line-height: 1.25;

  &::before {
    bottom: 2px;

    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    border-radius: 2px;
    background: linear-gradient(180deg, #f3e6b3 0%, #d4af37 45%, #b8962e 80%, #8a6f1a 100%);

    width: 2px;
    box-shadow: none;
  }

  & span:last-child {
    order: 1 !important;
  }
}

.section-sub {
  margin: 0 0 34px;
  color: var(--muted);
  line-height: 1.95;
  font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  padding: 20px;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .045));
  border-color: rgba(255, 255, 255, .14);
  border-radius: 18px !important;
  box-shadow: var(--grow-shadow) !important;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  transition: all .25s ease;

  &::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(420px 220px at 30% 10%, rgba(43, 108, 255, .14), transparent 60%), radial-gradient(360px 260px at 76% 0%, rgba(0, 179, 255, .10), transparent 55%);
    opacity: .9;
    pointer-events: none;
  }

  & h3 {
    margin: 0 0 10px;
    font-size: 18px;

    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
  }

  & p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
    font-size: 13.5px;
    font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  }

  & .mini {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  & .mini span {
    font-size: 12px;
    color: rgba(255, 255, 255, .78);
    border: 0;
    background: rgba(0, 0, 0, .14);
    border-radius: 999px;
    padding: 6px 10px;
    font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  }

  &:hover {
    box-shadow: var(--grow-shadow-hover) !important;

    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .15);
  }
}

.card-inner {
  position: relative;
}

.panel {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);

  & h3 {
    margin: 0 0 12px;
    font-size: 22px;
  }

  & .text {
    color: var(--muted);
    line-height: 2.0;
    font-size: 14.5px;
    font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  }

  & .text p {
    margin: 0 0 14px;
    line-height: 1.85;
  }

  & .text p:last-child {
    margin-bottom: 0;
  }
}

.photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 0;
  box-shadow: var(--shadow2);
  background: rgba(255, 255, 255, .02);
  position: relative;

  & img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.01);
    transition: transform .9s ease;
  }

  &:hover img {
    transform: scale(1.04);
  }

  &::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, .22) 100%);
    pointer-events: none;
  }
}

.alt-bg {
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .00));
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.section-title--left {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-title-line {
  width: 2px;
  background: rgba(218, 184, 76, 0.95);
  border-radius: 2px;
  box-shadow: 0 0 18px rgba(218, 184, 76, 0.18);
  order: 2 !important;
  margin-left: 12px !important;
  height: 28px !important;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 0.8s ease forwards;

  &:first-child {
    display: none !important;
  }
}

.cta-button {
  &.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-left: 15px;
  }
}

.primary {
  &:hover {
    box-shadow: 0 18px 44px rgba(0, 100, 255, .28);
  }
}

.secondary {
  &:hover {
    background: rgba(255, 255, 255, .06);
  }
}

.section {
  padding: 76px 0;
}

.cta-btn {
  border-radius: 999px !important;
  padding: 14px 28px !important;
  font-weight: 600 !important;
  background: linear-gradient(135deg, #2b6cb0, #3182ce);
  color: #fff;
  display: inline-block;
  transition: all .25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35), 0 0 0 1px rgba(255, 255, 255, .08) inset !important;
  transform: translateZ(0);

  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);

    box-shadow: 0 14px 40px rgba(0, 0, 0, .42), 0 0 0 1px rgba(255, 255, 255, .10) inset !important;
  }
}

.feature-card {
  border-radius: 18px !important;
  box-shadow: var(--grow-shadow) !important;
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease, background-color .32s ease;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;

  &:hover {
    transform: translateY(-8px);
    box-shadow: var(--grow-shadow-hover) !important;
  }
}

.read-btn {
  background: var(--grow-blue) !important;
  color: #fff !important;
  border: none !important;

  &:hover {
    background: var(--grow-blue-dark) !important;
  }
}

.read-more {
  background: var(--grow-blue) !important;
  color: #fff !important;
  border: none !important;

  &:hover {
    background: var(--grow-blue-dark) !important;
  }
}

.badge-new {
  background: rgba(43, 108, 255, 0.12) !important;
  color: var(--grow-blue-dark) !important;
  border: 1px solid rgba(43, 108, 255, 0.18) !important;
  border-radius: 999px !important;
  padding: 4px 10px !important;
  box-shadow: 0 0 0 1px rgba(43, 108, 255, 0.06), 0 0 22px rgba(43, 108, 255, 0.08);
  font-weight: 600 !important;
}

.modal {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.modal-content {
  border-radius: 22px !important;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.30) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: growModalIn .28s ease;
}

.close {
  width: 40px;
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: background-color .2s ease, transform .2s ease;

  &:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: rotate(90deg);
  }
}

[class*="pill"] {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.sp {
  display: none;
}

.btn-primary {
  background: linear-gradient(135deg, #2b6cb0, #3182ce);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
  transition: all .25s ease;

  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
  }
}

.quiet-break {
  padding: 36px 0;
}

.quiet-line {
  height: 1px;
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0.9;
}

.kwd-shimmer {
  position: relative;
  display: inline-block;
  color: inherit;

  &::after {
    content: "";
    position: absolute;
    inset: -2px -8px;
    background: linear-gradient(110deg, transparent 30%, rgba(201, 162, 39, 0.35) 45%, transparent 60%);
    transform: translateX(-140%);
    opacity: 0;
    pointer-events: none;
  }

  &.run::after {
    opacity: 1;
    animation: shimmerRun 0.6s ease forwards;
  }
}

.section-active {
  & .section-accent {
    filter: brightness(1.25);
    box-shadow: 0 0 18px rgba(201, 162, 39, 0.18);
    transition: filter 0.35s ease, box-shadow 0.35s ease;
  }

  & .section-title-accent {
    filter: brightness(1.25);
    box-shadow: 0 0 18px rgba(201, 162, 39, 0.18);
    transition: filter 0.35s ease, box-shadow 0.35s ease;
  }

  & .title-accent {
    filter: brightness(1.25);
    box-shadow: 0 0 18px rgba(201, 162, 39, 0.18);
    transition: filter 0.35s ease, box-shadow 0.35s ease;
  }

  & .section-title::before {
    filter: brightness(1.25);
    box-shadow: 0 0 18px rgba(201, 162, 39, 0.18);
    transition: filter 0.35s ease, box-shadow 0.35s ease;
  }
}

.section-flash {
  animation: sectionFlash 0.25s ease;
}

.glow {
  box-shadow: 0 0 0 1px rgba(140, 200, 255, .45), 0 0 24px rgba(120, 190, 255, .20) !important;
}

/* ============================================================================
   Section: Hero (#top / .hero)
   ============================================================================ */

.hero {
  display: flex;
  align-items: flex-end;
  padding: 64px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  overflow: hidden;
  margin-top: 0 !important;
  padding-top: 136px !important;
  min-height: calc(89vh + 18px);
  position: relative;

  &::before {
    opacity: 0;

    background: linear-gradient(180deg, rgba(5, 11, 24, .10) 0%, rgba(5, 11, 24, .45) 55%, rgba(5, 11, 24, .80) 100%), url("assets/img/hero3.webp") center/cover no-repeat !important;

    backface-visibility: hidden;

    content: "";
    position: absolute;
    inset: 0;
    height: 100%;
    background: radial-gradient(320px 220px at 25% 30%, rgba(201, 162, 39, 0.10), transparent 70%), radial-gradient(360px 240px at 75% 10%, rgba(90, 140, 255, 0.10), transparent 70%);
    filter: none;
    pointer-events: none;

    transform: scale(var(--heroZoom, 1));
    transform-origin: center;
    transition: transform 0.8s ease;
    will-change: transform;

    opacity: 1 !important;
  }

  &::after {
    animation: glow 9s ease-in-out infinite;

    display: none !important;

    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 600px at 50% 20%, rgba(0, 0, 0, 0.18), transparent 55%), linear-gradient(180deg, rgba(5, 11, 24, 0.10) 0%, rgba(5, 11, 24, 0.35) 55%, rgba(5, 11, 24, 0.78) 100%), url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%27200%27%20height%3D%27200%27%3E%0A%3Cfilter%20id%3D%27n%27%3E%0A%20%20%3CfeTurbulence%20type%3D%27fractalNoise%27%20baseFrequency%3D%270.9%27%20numOctaves%3D%272%27%20stitchTiles%3D%27stitch%27/%3E%0A%20%20%3CfeColorMatrix%20type%3D%27matrix%27%20values%3D%271%200%200%200%200%20%200%201%200%200%200%20%200%200%201%200%200%20%200%200%200%200.35%200%27/%3E%0A%3C/filter%3E%0A%3Crect%20width%3D%27100%25%27%20height%3D%27100%25%27%20filter%3D%27url%28%23n%29%27%20opacity%3D%270.55%27/%3E%0A%3C/svg%3E");
    opacity: .55;
    pointer-events: none;
    mix-blend-mode: overlay;

    will-change: opacity, transform;
  }

  & h1 {
    font-size: 48px;
    font-weight: 700;

    opacity: 0;
    transform: translateY(10px);
    animation: heroIn 0.9s ease forwards 0.05s;

    letter-spacing: 0.04em;
    line-height: 1.25;

    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6), 0 8px 24px rgba(0, 0, 0, 0.45);

    letter-spacing: .02em !important;
    line-height: 1.18 !important;
  }

  & h1 .punct {
    font-size: .85em;
    opacity: .95;
  }

  & h1 .line1 {
    display: block;
    animation: heroFadeUpMain 1.0s ease both;
    white-space: nowrap;

    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }

  & h1 .line2 {
    display: block;
    font-size: .62em;
    font-weight: 400;
    opacity: 0;
    color: rgba(255, 255, 255, .45);
    letter-spacing: .08em;
    margin-top: .22em;
    transform: translateY(10px);
    animation: heroFadeUp 1.2s ease forwards;
    animation-delay: .65s;

    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }

  & p {
    font-size: 16px !important;
    line-height: 1.8;

    max-width: 35em !important;

    font-size: 18px;
    margin-top: 10px;

    opacity: 0;
    transform: translateY(10px);
    animation: heroIn 0.9s ease forwards 0.22s;

    letter-spacing: .01em !important;
    line-height: 1.75 !important;
  }

  & img {
    transform: scale(1.03);
    transition: transform 1.2s ease;
  }

  & .hero-text {
    max-width: 560px !important;
  }

  & .hero-content {
    max-width: 560px !important;
  }

  & .chip {
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  & .tag {
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  & .badge {
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  & .keyword {
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  & .chip:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
  }

  & .tag:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
  }

  & .badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
  }

  & .keyword:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
  }

  & [class*="pill"] {
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(6px);
  }

  & .hero-title {
    opacity: 0;
    transform: translateY(10px);
    animation: heroIn 0.9s ease forwards 0.05s;
  }

  & .title {
    opacity: 0;
    transform: translateY(10px);
    animation: heroIn 0.9s ease forwards 0.05s;
  }

  & .hero-subcopy {
    opacity: 0;
    transform: translateY(10px);
    animation: heroIn 0.9s ease forwards 0.22s;
  }

  & .subtitle {
    opacity: 0;
    transform: translateY(10px);
    animation: heroIn 0.9s ease forwards 0.22s;
  }

  & .lead {
    opacity: 0;
    transform: translateY(10px);
    animation: heroIn 0.9s ease forwards 0.22s;
  }

  & .hero-seo-copy {
    animation-delay: 0.38s !important;
  }
}

.hero-inner {
  position: relative;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 26px;
  align-items: end;
}

.kicker {
  font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.lead {
  margin: 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.9;
  font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;

  & .btn.primary {
    padding: 18px 38px !important;
    font-size: 16px !important;
    letter-spacing: .05em !important;
    border-radius: 999px !important;
    min-width: 260px !important;
    min-height: 56px !important;
    font-weight: 700 !important;
    box-shadow: 0 16px 40px rgba(0, 90, 255, .28), inset 0 1px 0 rgba(255, 255, 255, .26) !important;
  }

  & a.btn.primary {
    padding: 18px 38px !important;
    font-size: 16px !important;
    letter-spacing: .05em !important;
    border-radius: 999px !important;
    min-width: 260px !important;
    min-height: 56px !important;
    font-weight: 700 !important;
    box-shadow: 0 16px 40px rgba(0, 90, 255, .28), inset 0 1px 0 rgba(255, 255, 255, .26) !important;
  }

  & .btn.primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 22px 48px rgba(0, 90, 255, .35), inset 0 1px 0 rgba(255, 255, 255, .30) !important;
  }

  & a.btn.primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 22px 48px rgba(0, 90, 255, .35), inset 0 1px 0 rgba(255, 255, 255, .30) !important;
  }
}

.hero-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(10, 16, 28, .58);

  & h3 {
    margin: 0 0 8px;
    font-size: 18px;

    position: relative;
    padding-bottom: 12px;
  }

  & p {
    margin: 0;
    color: var(--muted);
    line-height: 1.85;
    font-size: 14px;
    font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  }

  & h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 54px;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 162, 39, .0), rgba(201, 162, 39, .65), rgba(201, 162, 39, .0));
    opacity: .9;
  }

  & .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 10px;
    margin-top: 14px;
  }

  & .tag {
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .10);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  }
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.hero-subcopy {
  font-size: 18px;
  margin-top: 20px;
  color: #cdd6ff;
  letter-spacing: 1px;
}

.hero-philosophy {
  margin-top: 25px;
  font-size: 14px;
  letter-spacing: .08em;
  opacity: .75;
}

.hero-bg {
  backface-visibility: hidden;
  transform: scale(1.03);
  transition: transform 1.2s ease;
}

.hero__bg {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.fv {
  & h1 {
    line-height: 1.12 !important;
    letter-spacing: 0.03em;

    font-size: clamp(34px, 4vw, 44px) !important;
  }

  & p {
    line-height: 1.9 !important;

    font-size: 16px !important;
    line-height: 1.8;

    max-width: 34em !important;
  }

  & .hero-text {
    max-width: 560px !important;
  }

  & .hero-content {
    max-width: 560px !important;
  }

  & .chip {
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  & .tag {
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  & .badge {
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  & .keyword {
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  & .chip:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
  }

  & .tag:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
  }

  & .badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
  }

  & .keyword:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
  }

  & [class*="pill"] {
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(6px);
  }
}

.main-visual {
  & h1 {
    line-height: 1.12 !important;
    letter-spacing: 0.03em;

    font-size: clamp(34px, 4vw, 44px) !important;
  }

  & p {
    line-height: 1.9 !important;

    font-size: 16px !important;
    line-height: 1.8;

    max-width: 34em !important;
  }

  & img {
    transform: scale(1.03);
    transition: transform 1.2s ease;
  }

  & .hero-text {
    max-width: 560px !important;
  }

  & .hero-content {
    max-width: 560px !important;
  }

  & .chip {
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  & .tag {
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  & .badge {
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  & .keyword {
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  & .chip:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
  }

  & .tag:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
  }

  & .badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
  }

  & .keyword:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
  }

  & [class*="pill"] {
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(6px);
  }
}

.mv {
  & h1 {
    font-size: clamp(42px, 6vw, 56px) !important;
    line-height: 1.12 !important;
    letter-spacing: 0.03em;
  }

  & p {
    font-size: clamp(16px, 2vw, 18px) !important;
    line-height: 1.9 !important;
  }
}

.first-view {
  & h1 {
    line-height: 1.12 !important;
    letter-spacing: 0.03em;

    font-size: clamp(34px, 4vw, 44px) !important;
  }

  & p {
    line-height: 1.9 !important;

    font-size: 16px !important;
    line-height: 1.8;

    max-width: 34em !important;
  }

  & .hero-text {
    max-width: 560px !important;
  }

  & .hero-content {
    max-width: 560px !important;
  }

  & .chip {
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  & .tag {
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  & .badge {
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  & .keyword {
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  & .chip:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
  }

  & .tag:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
  }

  & .badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
  }

  & .keyword:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
  }

  & [class*="pill"] {
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(6px);
  }
}

.hero-image {
  & img {
    transform: scale(1.03);
    transition: transform 1.2s ease;
  }
}

.fv-bg {
  transform: scale(1.03);
  transition: transform 1.2s ease;
}

.hero-seo-copy {
  margin-top: 18px;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeSeo 0.8s ease forwards 0.4s;
}

.hero-seo-main {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #c9a227;
}

.hero-seo-sub {
  margin-top: 6px;
  opacity: 0.9;
  letter-spacing: 0.06em;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroHint 0.9s ease forwards 0.9s;
}

.scroll-hint-label {
  font-size: 12px;
  letter-spacing: 0.32em;
  opacity: 0.65;
}

.scroll-hint-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.85);
  box-shadow: 0 0 0 6px rgba(201, 162, 39, 0.12);
  animation: dotBounce 1.6s ease-in-out infinite;
}

.hero-title {
  letter-spacing: .02em !important;
  line-height: 1.18 !important;
}

.fv-title {
  letter-spacing: .02em !important;
  line-height: 1.18 !important;
}

.hero-subtitle {
  letter-spacing: .01em !important;
  line-height: 1.75 !important;
}

.fv-sub {
  letter-spacing: .01em !important;
  line-height: 1.75 !important;
}

/* ============================================================================
   Section: Service (#service)
   ============================================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  margin-top: 22px;

  &.ai-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: center;
  }

  &.ai-reverse .panel {
    grid-row: 1;

    grid-column: 2;
  }

  &.ai-reverse .photo {
    grid-row: 1;

    grid-column: 1;
  }

  &.meo-reverse .panel {
    grid-column: 1;
    grid-row: 1;
  }

  &.meo-reverse .photo {
    grid-column: 2;
    grid-row: 1;
  }

  &.meo-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: center;
  }
}

.service-block {
  & h3 {
    margin-bottom: 24px;
  }

  & p {
    margin-bottom: 18px;
    line-height: 1.9;
  }
}

.service-card {
  border-radius: 18px !important;
  box-shadow: var(--grow-shadow) !important;
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease, background-color .32s ease;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;

  &:hover {
    transform: translateY(-8px);
    box-shadow: var(--grow-shadow-hover) !important;
  }
}

/* ============================================================================
   Section: Flow (#flow)
   ============================================================================ */

.flow-problems-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .00));
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);

  &::before {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(50px);
    pointer-events: none;

    width: 260px;
    height: 260px;
    top: 40px;
    left: -80px;

    background: rgba(43, 108, 255, .10);
    opacity: .34;
  }

  &::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(50px);
    pointer-events: none;

    width: 280px;
    height: 280px;
    bottom: 20px;
    right: -90px;

    background: rgba(0, 179, 255, .08);
    opacity: .28;
  }
}

.flow-section {
  position: relative;
  padding: 88px 0;
}

.flow-head {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.flow-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .08);
}

.flow-title {
  margin: 18px 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.25;
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  color: rgba(255, 255, 255, .96);
}

.flow-sub {
  margin: 0 auto;
  line-height: 1.9;
  max-width: 720px;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, .68);
}

.flow-grid-premium {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 54px;
    height: 1px;
    z-index: 0;

    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .14), transparent);
  }
}

.flow-card {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  padding: 28px 22px 24px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  &:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .08);
    border-color: rgba(43, 108, 255, .24);
  }

  & h3 {
    margin: 0 0 10px;
    font-size: 1.12rem;

    color: rgba(255, 255, 255, .94);
  }

  & p {
    margin: 0;
    line-height: 1.85;
    font-size: .96rem;

    color: rgba(255, 255, 255, .68);
  }

  & .flow-mini {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  & .flow-mini span {
    font-size: .78rem;
    padding: 7px 10px;
    border-radius: 999px;

    background: rgba(0, 0, 0, .14);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .76);
  }
}

.flow-step {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #1557b8, #2b6ee7);
  box-shadow: 0 16px 34px rgba(43, 110, 231, .26);
}

/* ============================================================================
   Section: Problems (#problems)
   ============================================================================ */

#problems {
  & .problems-head {
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
  }

  & .problems-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .76);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

  & .problems-title {
    margin-bottom: 14px;
    letter-spacing: .01em;
  }

  & .problems-sub {
    margin: 0 auto;

    max-width: 760px;
    font-size: 1.02rem;
    line-height: 1.95;
    color: rgba(255, 255, 255, .72);
  }

  & .problem-premium-shell {
    padding: 34px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(9, 18, 34, .88), rgba(18, 31, 57, .82));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 28px 80px rgba(6, 13, 27, .28), inset 0 1px 0 rgba(255, 255, 255, .06);
  }

  & .refined-problem-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  & .refined-problem-item {
    min-height: 184px;
    padding: 24px 22px 20px;
    gap: 14px;
    border-radius: 22px;
  }

  & .refined-problem-item .problem-card-item__icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 1rem;
    background: linear-gradient(135deg, rgba(21, 87, 184, .95), rgba(43, 110, 231, .95));
    box-shadow: 0 16px 34px rgba(43, 110, 231, .22), inset 0 1px 0 rgba(255, 255, 255, .18);
  }

  & .refined-problem-item .problem-card-item__body h4 {
    font-size: 1.03rem;
    line-height: 1.65;
    margin: 2px 0 8px;
  }

  & .refined-problem-item .problem-card-item__body p {
    font-size: .91rem;
    line-height: 1.78;
    color: rgba(255, 255, 255, .68);
  }

  &.problems-section {
    position: relative;
    padding: 96px 0 28px;
  }

  & .problem-hero-row {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 24px;
  }

  & .problems-copy--premium {
    padding: 8px 4px 0 4px;
  }

  & .problem-mini-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .72);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  & .problems-copy--premium h3 {
    margin: 16px 0 12px;
    font-size: clamp(29px, 3.5vw, 42px);
    line-height: 1.36;
    color: rgba(255, 255, 255, .97);
    font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  }

  & .problems-copy--premium p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.95;
    font-size: 1rem;
  }

  & .problem-note--premium {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .06));
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .88);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  }

  & .problem-highlight-card {
    height: 100%;
  }

  & .problem-highlight-card__inner {
    height: 100%;
    padding: 24px 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .06));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .06);
  }

  & .problem-highlight-card__label {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(20, 79, 168, .22);
    color: #dbeafe;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  & .problem-highlight-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 12px;
  }

  & .problem-highlight-list li {
    position: relative;
    padding-left: 28px;
    color: rgba(255, 255, 255, .84);
    line-height: 1.8;
    font-weight: 500;
  }

  & .problem-highlight-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7db4ff, #2b6ee7);
    box-shadow: 0 0 0 6px rgba(43, 110, 231, .14);
    transform: translateY(-50%);
  }

  & .problem-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  & .problem-card-item {
    position: relative;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px 22px 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .05));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .16), inset 0 1px 0 rgba(255, 255, 255, .05);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  }

  & .problem-card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 54px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .06);
    border-color: rgba(84, 145, 255, .26);
  }

  & .problem-card-item__icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #1557b8, #2b6ee7);
    color: #fff;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .08em;
    box-shadow: 0 16px 34px rgba(43, 110, 231, .24);
  }

  & .problem-card-item__body h4 {
    margin: 2px 0 8px;
    font-size: 1.08rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .96);
  }

  & .problem-card-item__body p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    line-height: 1.85;
    font-size: .95rem;
  }
}

.problems-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 22px auto 0;
  text-align: center;
  color: rgba(255, 255, 255, .88);

  & p {
    margin: 0;
    font-weight: 600;
    letter-spacing: .01em;
  }
}

.problems-bridge__arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1557b8, #2b6ee7);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(43, 110, 231, .24);
  flex: 0 0 38px;
}

.premium-inline-cta--enhanced {
  margin-top: 20px;

  & h3 {
    font-size: clamp(24px, 3vw, 36px);
  }

  & .premium-inline-cta__eyebrow {
    background: rgba(28, 77, 165, .22);
    color: #dbeafe;
  }
}

.problems-section {
  position: relative;
  padding: 88px 0;
}

.problems-head {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.problems-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .08);
}

.problems-title {
  margin: 18px 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.25;
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  color: rgba(255, 255, 255, .96);
}

.problems-sub {
  margin: 0 auto;
  line-height: 1.9;
  max-width: 720px;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, .68);
}

.problems-panel {
  margin-top: 40px;
  color: #fff;
  border-radius: 30px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(9, 18, 34, .82), rgba(17, 30, 54, .78));
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 26px 70px rgba(7, 14, 28, .22), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  &::before {
    content: "";
    position: absolute;
    inset: auto -60px -80px auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(43, 110, 231, .24), transparent 68%);
  }
}

.problems-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
}

.problems-copy {
  & h3 {
    margin: 0 0 12px;
    font-size: 1.5rem;
    font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  }

  & p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    line-height: 1.9;
  }
}

.problem-list-premium {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;

  & li {
    position: relative;
    padding: 16px 16px 16px 46px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    font-weight: 600;
    line-height: 1.5;

    background: rgba(255, 255, 255, .08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  }

  & li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 15px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .12);
    font-size: .82rem;
    color: #9cc0ff;
  }
}

.problem-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .88);
  line-height: 1.8;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);

  & strong {
    color: #fff;
  }
}

.premium-inline-cta {
  justify-content: space-between;
  margin-top: 30px;
  padding: 34px 40px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .75fr);
  align-items: center;
  gap: 28px;
  background: radial-gradient(420px 220px at 12% 0%, rgba(43, 108, 255, .15), transparent 60%), linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .045));
  border: 1px solid rgba(255, 255, 255, .11);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  & h3 {
    font-size: clamp(24px, 3.2vw, 34px);
    color: rgba(255, 255, 255, .96);
    font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;

    margin: 12px 0 10px;
    font-size: clamp(22px, 2.6vw, 30px) !important;
    line-height: 1.45;
    letter-spacing: .02em;
  }

  & p {
    margin: 0;

    font-size: 15px;
    line-height: 1.95;
    color: rgba(255, 255, 255, .72);
  }
}

.premium-inline-cta__text {
  max-width: 640px;
}

.premium-inline-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .80);
  border: 1px solid rgba(255, 255, 255, .08);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.premium-inline-cta__actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

/* ============================================================================
   Section: Reason (#reason)
   ============================================================================ */

.reason-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .76);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.reason-section-premium {
  & .reason-head {
    max-width: none;
    margin: 0 0 34px;
    text-align: center;
  }

  & .section-sub {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .74);

    display: none !important;
  }

  & .section-title {
    margin: 0 auto 24px;
  }

  & .reason-kicker {
    display: none !important;
  }
}

#reason {
  & .premium-reason-cards {
    gap: 18px;

    margin-top: 0;
  }

  & .premium-reason-card {
    padding: 0;
    position: relative;
    overflow: hidden;
  }

  & .premium-reason-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
  }

  & .premium-reason-card .card-inner {
    padding: 24px 22px 20px;
  }

  & .premium-reason-card h3 {
    font-size: 1.14rem;
    line-height: 1.6;
    margin: 0 0 10px;
  }

  & .premium-reason-card p {
    font-size: .94rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, .72);
  }

  & .premium-reason-card .mini {
    margin-top: 14px;
  }

  & .premium-reason-card .mini span {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .08);
  }

  & .cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  & .card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .04)) !important;
    border: 0 !important;
    box-shadow: 0 14px 50px rgba(0, 0, 0, .26) !important;
  }

  & .card:hover {
    box-shadow: 0 14px 50px rgba(0, 0, 0, .26) !important;
  }

  & .mini span {
    background: rgba(0, 0, 0, .14);
    border: 0;
    color: rgba(255, 255, 255, .78);
  }
}

.reason-card-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 28px;
  padding: 0 10px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(28, 77, 165, .20);
  border: 1px solid rgba(125, 180, 255, .18);
  color: #dbeafe;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.reason-card {
  border-radius: 18px !important;
  box-shadow: var(--grow-shadow) !important;
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease, background-color .32s ease;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;

  &:hover {
    transform: translateY(-8px);
    box-shadow: var(--grow-shadow-hover) !important;
  }
}

/* ============================================================================
   Section: Greeting (#greeting / #message)
   ============================================================================ */

.ceo {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center;

  & .name {
    margin-top: 16px;
    color: rgba(255, 255, 255, .88);
    font-weight: 800;
    font-size: 14px;
    font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  }

  & .sig {
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
    margin-top: 6px;
    font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  }

  & .btn {
    display: none !important;
  }
}

.ceo-photo {
  position: relative;
  border: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .55);

  &::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 11, 24, 0) 40%, rgba(5, 11, 24, .35) 100%);
    pointer-events: none;
  }

  & img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(.90) contrast(1.06) saturate(.95);
  }
}

#message {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;

  & .ceo-photo {
    display: block;

    min-height: 200px;
  }

  & .ceo-photo img {
    opacity: 1 !important;
    visibility: visible !important;

    width: 100%;
    height: auto;
    display: block;
  }

  & * {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  & .ceo {
    display: grid !important;
    grid-template-columns: .9fr 1.1fr !important;
  }
}

.ceo-section {
  & .btn {
    display: none !important;
  }
}

.message-photo {
  margin-bottom: 55px;

  /* adjusted to match representative greeting spacing */
  & img {
    border: 1px solid rgba(212, 175, 55, .32);
    box-shadow: 0 0 12px rgba(212, 175, 55, .10);

    border-color: rgba(196, 158, 44, .30) !important;
    box-shadow: 0 0 12px rgba(196, 158, 44, .10) !important;
  }
}

/* ============================================================================
   Section: News (#news)
   ============================================================================ */

/* #news の content-visibility / contain-intrinsic-size は削除（レイアウトシフト原因）
#news {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}
*/

.news-card {
  will-change: transform, box-shadow;
  border-radius: 18px !important;
  box-shadow: var(--grow-shadow) !important;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  animation: none !important;
  /* hover時のtransform/box-shadow/border-color/backgroundをスムーズに動かす */
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .35s ease, border-color .35s ease, background .35s ease !important;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px 24px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
  cursor: pointer;
  overflow: hidden;

  &:hover {
    transform: translateY(-10px) scale(1.01) !important;
    border-color: rgba(120, 170, 255, .22) !important;
    box-shadow: var(--grow-shadow-hover) !important;

    transform: translateY(-8px) scale(1.01);
    background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
    border-color: rgba(120, 170, 255, .28);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .32), 0 0 0 1px rgba(120, 170, 255, .12) inset;
    outline: none;
  }

  &:focus-within {
    transform: translateY(-10px) scale(1.01) !important;
    box-shadow: 0 24px 54px rgba(0, 0, 0, .28), 0 10px 28px rgba(43, 108, 255, .12), inset 0 1px 0 rgba(255, 255, 255, .08) !important;
    border-color: rgba(120, 170, 255, .22) !important;
  }

  &::after {
    content: "";
    position: absolute;
    inset: auto -20% -55% -20%;
    height: 90px;
    background: radial-gradient(circle at center, rgba(79, 140, 255, .18), rgba(79, 140, 255, 0) 68%);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .28s ease, transform .28s ease;
    pointer-events: none;
  }

  &:hover::after {
    opacity: 1;
    transform: translateY(0);
  }

  & .read-btn {
    background: var(--grow-blue) !important;
    color: #fff !important;
    border: none !important;
  }

  & .read-btn:hover {
    background: var(--grow-blue-dark) !important;
  }

  &.is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;

    opacity: 1;
    transform: translateY(0);
  }

  &::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(70, 124, 255, 0), rgba(120, 170, 255, .55), rgba(130, 190, 255, 0));
  }

  &:focus-visible {
    transform: translateY(-8px) scale(1.01);
    background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
    border-color: rgba(120, 170, 255, .28);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .32), 0 0 0 1px rgba(120, 170, 255, .12) inset;
    outline: none;
  }
}

.news-list {
  margin-top: 40px;

  & .card {
    will-change: transform, box-shadow, opacity;
  }

  & .card:hover {
    transform: translateY(-10px) scale(1.01) !important;
    box-shadow: 0 24px 54px rgba(0, 0, 0, .28), 0 10px 28px rgba(43, 108, 255, .12), inset 0 1px 0 rgba(255, 255, 255, .08) !important;
    border-color: rgba(120, 170, 255, .22) !important;
  }

  & .card:focus-within {
    transform: translateY(-10px) scale(1.01) !important;
    box-shadow: 0 24px 54px rgba(0, 0, 0, .28), 0 10px 28px rgba(43, 108, 255, .12), inset 0 1px 0 rgba(255, 255, 255, .08) !important;
    border-color: rgba(120, 170, 255, .22) !important;
  }

  & .card::after {
    content: "";
    position: absolute;
    inset: auto -20% -55% -20%;
    height: 90px;
    background: radial-gradient(circle at center, rgba(79, 140, 255, .18), rgba(79, 140, 255, 0) 68%);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .28s ease, transform .28s ease;
    pointer-events: none;
  }

  & .card:hover::after {
    opacity: 1;
    transform: translateY(0);
  }

  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-modal__dialog {
  box-shadow: 0 34px 110px rgba(0, 0, 0, .62), 0 16px 42px rgba(43, 108, 255, .10), inset 0 1px 0 rgba(255, 255, 255, .06) !important;
  position: relative;
  width: min(760px, calc(100% - 28px));
  max-height: min(78vh, 860px);
  overflow: auto;
  margin: 8vh auto;
  border-radius: 24px;
  border: 1px solid rgba(120, 170, 255, .14);
  background: linear-gradient(180deg, rgba(12, 18, 34, .96), rgba(6, 10, 22, .95));
  padding: 26px 24px 20px;
  animation: newsUp .22s ease both;
}

.news-modal__close {
  top: 14px !important;
  right: 14px !important;
  width: 30px !important;
  height: 30px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  padding: 0 !important;
  line-height: 1 !important;
  font-size: 15px !important;
  transform: none !important;
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .06);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;

  &:hover {
    transform: translateY(-1px) !important;

    background: rgba(255, 255, 255, .10);
    border-color: rgba(120, 170, 255, .22);
    transform: translateY(-1px);
    outline: none;
  }

  &:focus-visible {
    transform: translateY(-1px) !important;

    background: rgba(255, 255, 255, .10);
    border-color: rgba(120, 170, 255, .22);
    transform: translateY(-1px);
    outline: none;
  }
}

.news-modal__overlay {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 18, .72);
  animation: newsFade .18s ease both;
}

.news-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(8, 16, 32, .40), rgba(5, 10, 22, .88));
}

.news-item {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform .3s cubic-bezier(0.22, 1, 0.36, 1), border-color .3s ease, box-shadow .3s ease;
}

.news-date {
  margin-bottom: 8px;
  font-size: 12px;
  color: rgba(160, 190, 255, .80);
}

.news-title {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  margin: 0 0 10px 0;
  /* 2行ぶんの高さを常に確保（タイトルが1行/2行どちらでもカード総高は変わらない）
     これでスケルトン → 実データ差し替え時のレイアウトシフトを防止 */
  min-height: calc(16px * 1.5 * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.news-all {
  font-size: 14px;
  color: rgba(200, 220, 255, .85);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .10);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .03);

  &:hover {
    background: rgba(255, 255, 255, .06);
  }
}

.news-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.news-badge {
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .92);
  border: 1px solid rgba(120, 190, 255, .38);
  background: linear-gradient(180deg, rgba(79, 142, 255, .30), rgba(43, 108, 255, .18));
  padding: 4px 8px;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(120, 190, 255, .18);
  animation: newsPulse 2.4s ease-in-out infinite;
}

.news-excerpt {
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  margin: 0 0 14px 0;
  /* 3行を超えたら末尾に「…」を自動表示 */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 短い記事でも常に3行ぶんの高さを確保（スケルトン→実データのレイアウトシフト防止） */
  min-height: calc(13px * 1.7 * 3);
}

.news-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.news-link {
  font-size: 13px;
  color: rgba(235, 242, 255, .96);
  text-decoration: none;
  cursor: pointer;
}

.news-link--button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 102px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(120, 170, 255, .38);
  background: linear-gradient(180deg, rgba(56, 104, 255, .92), rgba(43, 108, 255, .78));
  box-shadow: 0 12px 26px rgba(18, 44, 120, .26), inset 0 1px 0 rgba(255, 255, 255, .18);
  letter-spacing: .08em;
  font-weight: 600;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;

  &:hover {
    text-decoration: none;
    transform: translateY(-1px);
    border-color: rgba(150, 190, 255, .62);
    background: linear-gradient(180deg, rgba(70, 124, 255, 1), rgba(43, 108, 255, .92));
    box-shadow: 0 16px 32px rgba(18, 44, 120, .34), inset 0 1px 0 rgba(255, 255, 255, .22);
  }
}

.news-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;

  &.is-open {
    display: block;
  }
}

.news-modal__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.news-modal__date {
  font-size: 12px;
  color: rgba(160, 190, 255, .85);
}

.news-modal__badge {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(120, 190, 255, .35);
  background: rgba(70, 140, 255, .18);
  color: #fff;
}

.news-modal__title {
  margin: 0 0 14px 0;
  color: #fff;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.55;
}

.news-modal__body {
  color: rgba(255, 255, 255, .82);
  line-height: 1.95;
  font-size: 14.5px;

  & p {
    margin: 0 0 10px 0;
  }

  & ul {
    margin: 8px 0 10px 18px;
  }
}

.news-modal__footer {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}

.news-modal__link {
  color: rgba(200, 220, 255, .92);
  text-decoration: none;
  font-size: 13px;
  border: 0;
  background: rgba(255, 255, 255, .03);
  padding: 10px 14px;
  border-radius: 999px;

  &:hover {
    background: rgba(255, 255, 255, .06);
  }
}

/* ============================================================================
   Section: Company (#company)
   ============================================================================ */

.company {
  /* content-visibility: auto / contain-intrinsic-size: 1px 900px を削除（レイアウトシフト原因） */
  padding: 100px 0;
}

.company-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 50px;
  margin: 0 auto;
  font-size: 13px !important;
  max-width: 1140px !important;

  & .company-value {
    display: flex;
    align-items: center;

    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  & .company-value--multiline {
    display: block;
  }

  & .company-row--last .company-value {
    display: block;
  }

  & .company-value--offset {
    padding-top: 6px;
  }

  & .company-en {
    font-size: 10px !important;
    letter-spacing: 0.18em !important;
  }

  & .company-jp {
    font-size: 11px !important;
    margin-top: 6px !important;
  }
}

.company-table {
  display: flex;
  flex-direction: column;
}

.company-row {
  align-items: center !important;
  min-height: 92px;
  display: flex;
  gap: 28px;
  padding: 26px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;

  &:first-child {
    border-top: none;
  }

  &:first-child .company-value {
    font-weight: 600 !important;
  }

  &:nth-child(3) .company-value {
    word-break: keep-all !important;
    line-height: 1.7 !important;
  }
}

.company-label {
  width: 240px;
  text-align: center;
  flex: 0 0 240px;
}

.company-en {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
}

.company-jp {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

.company-value {
  flex: 1;
  margin: 0;
  font-size: 18px;
  line-height: 1.85;
  color: #e6ecff;
}

.company-link {
  color: #e6ecff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity .2s ease, transform .2s ease;

  &:hover {
    opacity: .88;
    transform: translateY(-1px);
  }
}

.company-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(218, 184, 76, .45);
  border-radius: 999px;
  color: #d8b44c;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 0 14px rgba(218, 184, 76, .12);
}

.company-profile-box {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.biz-bullets {
  display: none;
}

/* ============================================================================
   Section: Access (#access)
   ============================================================================ */

#access {
  padding: 30px 0 10px;
}

.access-wrap {
  display: grid;
  grid-template-columns: 1.02fr 1.15fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 28px;
}

.access-panel {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  padding: 42px 38px;
  box-shadow: var(--shadow);
}

.access-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.access-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);

  &:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.access-label {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: .04em;
}

.access-value {
  font-size: 17px;
  line-height: 1.9;
  color: #e7edff;
}

.access-note {
  display: block;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .72);
  margin-top: 6px;
}

.access-map {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, rgba(10, 18, 38, .92), rgba(6, 12, 26, .96));
  box-shadow: var(--shadow);
  position: relative;
  min-height: 320px;

  & iframe {
    display: block;
    width: 100%;
    height: 520px;
    min-height: 320px;
    border: 0;
    filter: grayscale(.03) contrast(1.02);
    background: linear-gradient(180deg, rgba(16, 27, 56, .95), rgba(8, 14, 29, .98));
  }
}

.access-map-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(7, 15, 30, .55);
  font-size: 14px;
  line-height: 1.6;
  color: #dbe7ff;

  & a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .28);
  }

  & a:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, .48);
  }
}

.access-link {
  color: #e7edff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .24);

  &:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, .48);
  }
}

.access-map-toplink {
  display: flex;
  justify-content: flex-end;
  padding: 12px 12px 0;

  & a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(43, 108, 255, .96), rgba(0, 179, 255, .90));
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0, 90, 255, .22);
  }
}

/* ============================================================================
   Section: Contact (#contact)
   ============================================================================ */

.contact-box {
  border-radius: calc(var(--radius) + 6px);
  border: 0;
  background: radial-gradient(840px 280px at 10% 10%, rgba(43, 108, 255, .18), transparent 60%), radial-gradient(720px 280px at 90% 30%, rgba(0, 179, 255, .12), transparent 60%), rgba(255, 255, 255, .05);
  box-shadow: var(--shadow);
  padding: 26px;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  & h3 {
    margin: 0;
    font-size: 22px;
  }

  & p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.85;
    font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.trust {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;

  & span {
    font-size: 12px;
    color: rgba(255, 255, 255, .82);
    border: 0;
    background: rgba(0, 0, 0, .14);
    border-radius: 999px;
    padding: 7px 10px;
    font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  }
}

.form {
  display: grid;
  gap: 10px;
}

.footer {
  font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 14px;
  color: #9db2ff;

  & a {
    margin: 0 12px;
    color: #9db2ff;
    text-decoration: none;
  }

  & a:hover {
    opacity: 0.7;
  }
}

#contact {
  /* content-visibility: auto / contain-intrinsic-size: 1px 900px を削除（レイアウトシフト原因） */
  position: relative;

  & button.btn.primary#submitBtn {
    padding: 18px 44px !important;
    font-size: 16px !important;
    letter-spacing: .05em !important;
    min-width: 280px !important;
    min-height: 58px !important;
    font-weight: 700 !important;
  }

  & .contact-box {
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .05));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .06);

    position: relative;

    z-index: 5;
  }

  & .form input {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .92);
  }

  & .form textarea {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .92);
  }

  & .form input:focus {
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 0 0 4px rgba(43, 110, 231, .10);
  }

  & .form textarea:focus {
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 0 0 4px rgba(43, 110, 231, .10);
  }

  & .contact-grid {
    position: relative;

    z-index: 5;
  }

  & form {
    position: relative;

    z-index: 5;

    isolation: isolate;
  }

  & input {
    position: relative;

    z-index: 6;
    pointer-events: auto;
  }

  & textarea {
    position: relative;

    z-index: 6;
    pointer-events: auto;
  }

  & button {
    position: relative;

    z-index: 6;
    pointer-events: auto;
  }

  & a {
    position: relative;

    z-index: 6;
    pointer-events: auto;
  }

  & button.btn.primary {
    width: 100%;
    min-height: 54px;
    touch-action: manipulation;
    -webkit-appearance: none;
    appearance: none;
  }

  &.contact-glow {
    animation: contactGlow 1.4s ease-in-out 1;
  }

  & .contact-glow {
    animation: contactGlow 1.4s ease-in-out 1;
  }

  & form input {
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }

  & form textarea {
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }

  & form select {
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }

  & form input:focus {
    outline: none !important;
    border-color: rgba(201, 162, 39, 0.75) !important;
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.14) !important;
    background: rgba(255, 255, 255, 0.03) !important;
  }

  & form textarea:focus {
    outline: none !important;
    border-color: rgba(201, 162, 39, 0.75) !important;
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.14) !important;
    background: rgba(255, 255, 255, 0.03) !important;
  }

  & form select:focus {
    outline: none !important;
    border-color: rgba(201, 162, 39, 0.75) !important;
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.14) !important;
    background: rgba(255, 255, 255, 0.03) !important;
  }

  & form .field--filled input {
    border-color: rgba(255, 255, 255, 0.24) !important;
  }

  & form .field--filled textarea {
    border-color: rgba(255, 255, 255, 0.24) !important;
  }

  & form .field--filled select {
    border-color: rgba(255, 255, 255, 0.24) !important;
  }

  & form .field--filled {
    position: relative;
  }

  & form .field--filled::after {
    content: "✓";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.55;
    pointer-events: none;
  }

  & form.form-attempted input:invalid {
    border-color: rgba(255, 120, 120, 0.75) !important;
    animation: gentleShake 0.28s ease-in-out 2;
  }

  & form.form-attempted textarea:invalid {
    border-color: rgba(255, 120, 120, 0.75) !important;
    animation: gentleShake 0.28s ease-in-out 2;
  }

  & .form-title.flash {
    animation: titleFlash 0.65s ease;
  }

  & h2.flash {
    animation: titleFlash 0.65s ease;
  }
}

.contact-info-block {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  text-align: center;
}

.contact-info-title {
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.contact-info-lines {
  opacity: 0.92;
  line-height: 1.9;
  margin-bottom: 20px;
}

.contact-info-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 24px;

  & a {
    text-decoration: none;
    opacity: 0.86;
    letter-spacing: 0.12em;
    font-weight: 600;
  }

  & a:hover {
    opacity: 1;
  }
}

.contact-info-line--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;

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

  & a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}

.contact-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(218, 184, 76, .42);
  border-radius: 999px;
  color: #d8b44c;
  font-size: 13px;
  line-height: 1;
  box-shadow: 0 0 14px rgba(218, 184, 76, .1);
}

.contact-info-tagline {
  margin: -2px 0 14px;
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 13px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .72);
}

.contact-cta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.form-success {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, .82);

  &.ok {
    color: rgba(180, 220, 255, .92);
  }

  &.err {
    color: rgba(255, 200, 200, .92);
  }
}

/* ============================================================================
   Media queries  (consolidated, desktop-first)
   ============================================================================ */

@media (max-width: 1200px) {
  .main-nav {
    gap: 16px;
    flex-wrap: wrap;
    white-space: normal;
  }
}

@media (max-width:980px) {
  .split {
    grid-template-columns: 1fr;

    &.ai-reverse {
      grid-template-columns: 1fr;
    }

    &.ai-reverse .panel {
      grid-row: auto;

      grid-column: auto;
    }

    &.ai-reverse .photo {
      grid-row: auto;

      grid-column: auto;
    }

    &.meo-reverse {
      grid-template-columns: 1fr;
    }

    &.meo-reverse .panel {
      grid-column: auto;
      grid-row: auto;
    }

    &.meo-reverse .photo {
      grid-column: auto;
      grid-row: auto;
    }
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .ceo {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 40px;
    align-items: center;
  }

  .ceo-photo {
    position: relative;
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0, 0, 0, .55);

    &::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(5, 11, 24, 0) 40%, rgba(5, 11, 24, .35) 100%);
      pointer-events: none;
    }
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    &::after {
      animation: none;
    }
  }

  #problems {
    & .refined-problem-grid {
      grid-template-columns: 1fr;
    }

    & .refined-problem-item {
      min-height: auto;
    }

    & .problem-hero-row {
      grid-template-columns: 1fr;
    }

    & .problem-card-grid {
      grid-template-columns: 1fr;
    }
  }

  #reason {
    & .premium-reason-cards {
      grid-template-columns: 1fr;
    }

    & .cards {
      grid-template-columns: 1fr;
    }
  }

  .premium-inline-cta--enhanced {
    flex-direction: column;
    align-items: flex-start;

    & .premium-inline-cta__actions {
      justify-content: flex-start;
    }
  }

  .flow-grid-premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    &::before {
      display: none;
    }
  }

  .problems-layout {
    grid-template-columns: 1fr;
  }

  .premium-inline-cta {
    flex-direction: column;
    align-items: flex-start;
    grid-template-columns: 1fr;
    padding: 28px 26px;
  }

  .premium-inline-cta__actions {
    justify-content: flex-start;
  }

  .premium-inline-cta__text {
    max-width: none;
  }

  .access-wrap {
    grid-template-columns: 1fr;
  }

  .access-map {
    & iframe {
      height: 380px;
    }
  }
}

@media (max-width: 900px) {
  body>header {
    & .nav {
      flex-wrap: wrap;
      justify-content: center;
    }

    & .main-nav {
      order: 3;
      width: 100%;
      flex-wrap: wrap;
      gap: 14px;
    }

    & .btn.primary {
      margin-left: 0;
    }
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-head {
    align-items: center;
  }

  /* タブレット以下：PC横並びレイアウト → 縦並びに戻す */
  .news-item {
    display: block;
    padding: 0;
  }

  .news-item__thumb {
    width: 100%;
    border-radius: 0;
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
  }

  .news-item__body {
    display: block;
    padding: 22px 20px;
  }
}

@media (max-width: 860px) {
  /* Representative message: stack photo above text on mobile and prevent text clipping */

  .ceo {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ceo-photo {
    max-width: 440px;
    margin: 0 auto;
  }

  .message-quote {
    line-height: 1.35;
    padding: 14px 16px;
  }

  #message {
    & .ceo {
      grid-template-columns: 1fr !important;
      gap: 18px !important;
    }

    & .ceo-photo {
      max-width: 440px;
      margin: 0 auto;
    }
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px 14px;
  }

  .nav {
    gap: 10px;
  }

  .nav-links {
    display: none !important;
  }

  .nav-cta {
    margin-left: auto;

    & a {
      padding: 10px 14px;
      font-size: 14px;
    }
  }

  .hero {
    padding: 60px 20px !important;
    min-height: 100svh !important;
    padding-bottom: 38px !important;
    padding-top: 112px !important;

    & h1 {
      font-size: clamp(42px, 12vw, 56px) !important;
      line-height: 1.08 !important;
      margin: 10px 0 12px !important;
    }

    & p {
      font-size: 15px !important;
    }

    & .hero-text {
      max-width: 100% !important;
    }

    & .hero-content {
      max-width: 100% !important;
    }

    & .chip {
      font-size: 13px !important;
      padding: 9px 15px !important;
    }

    & .tag {
      font-size: 13px !important;
      padding: 9px 15px !important;
    }

    & .badge {
      font-size: 13px !important;
      padding: 9px 15px !important;
    }

    & .keyword {
      font-size: 13px !important;
      padding: 9px 15px !important;
    }

    & [class*="pill"] {
      font-size: 13px !important;
      padding: 9px 15px !important;
    }

    &::before {
      background-position: center 34%;
      transform: none !important;
    }

    & .kicker {
      font-size: 11px !important;
      letter-spacing: .12em !important;
    }

    & .lead {
      font-size: 15px !important;
      line-height: 1.85 !important;
      max-width: none !important;
    }

    &:before {
      background: linear-gradient(rgba(5, 11, 24, 0.4) 0%, rgba(5, 11, 24, 0.45) 55%, rgba(5, 11, 24, 0.8) 100%), url(assets/img/hero3.webp) center center / cover no-repeat !important;
    }

    &::after {
      mix-blend-mode: normal !important;
      opacity: .48 !important;
      background: linear-gradient(180deg, rgba(5, 11, 24, 0.18) 0%, rgba(5, 11, 24, 0.52) 60%, rgba(5, 11, 24, 0.88) 100%) !important;
      animation: none !important;
    }
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    align-items: start !important;
  }

  .hero-copy {
    padding-top: 8px;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 14px;
  }

  .section {
    padding: 44px 0 !important;
  }

  .ceo-wrap {
    grid-template-columns: 1fr !important;
  }

  .ceo-photo {
    order: 1;
  }

  .ceo-message {
    order: 2;
    width: 100% !important;
    padding: 18px 18px;

    & .text {
      font-size: 15px;
      line-height: 1.95;
      word-break: break-word;
    }

    & .headline {
      font-size: 18px;
      line-height: 1.4;
    }
  }

  .message-quote {
    font-size: clamp(15px, 4.3vw, 18px);
    letter-spacing: -0.03em;
    overflow: visible;
  }

  .message-card {
    padding: 22px 18px;
  }

  .company-card {
    border-radius: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;

    & .company-value {
      align-items: flex-start;
    }

    & .company-value--offset {
      padding-top: 5px;
    }
  }

  .company-row {
    min-height: unset;
    gap: 14px !important;
    padding: 18px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    flex-direction: row !important;
    align-items: flex-start !important;

    &:nth-child(3) .company-value {
      word-break: break-all !important;
    }
  }

  .company-label {
    text-align: left !important;
    flex: 0 0 120px !important;
    width: 120px !important;
  }

  .company-value {
    font-size: 15px !important;
    line-height: 1.75 !important;
    max-width: 100% !important;
    overflow-wrap: break-word;
    word-break: break-word !important;
  }

  .site-logo {
    height: 22px;
  }

  .company-icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .btn {
    padding: 13px 24px !important;

    &.primary {
      min-width: 0;

      padding: 8px 13px !important;
      font-size: 12.5px !important;
      border-radius: 20px !important;
    }
  }

  .footer--refined {
    padding: 44px 0 30px;
  }

  .footer-company {
    font-size: 16px;
  }

  .footer-copy {
    font-size: 12px;
  }

  .footer-meta {
    font-size: 12px;
  }

  .footer-links {
    gap: 12px 16px;
  }

  a {
    &.btn.primary {
      padding: 8px 13px !important;
      font-size: 12.5px !important;
      border-radius: 20px !important;
    }

    &.btn {
      padding: 13px 24px !important;
    }
  }

  button {
    padding: 13px 24px !important;

    &.btn.primary {
      padding: 8px 13px !important;
      font-size: 12.5px !important;
      border-radius: 20px !important;
    }

    &[type="submit"] {
      padding: 13px 24px !important;
    }
  }

  .hero-actions {
    width: 100% !important;

    & .btn.primary {
      padding: 16px 28px !important;
      font-size: 15px !important;
      min-width: 100% !important;
      min-height: 52px !important;
      width: 100% !important;
      max-width: 360px !important;
    }

    & a.btn.primary {
      padding: 16px 28px !important;
      font-size: 15px !important;
      min-width: 100% !important;
      min-height: 52px !important;
      width: 100% !important;
      max-width: 360px !important;
    }
  }

  #contact {
    scroll-margin-top: 92px;

    & button.btn.primary#submitBtn {
      padding: 16px 24px !important;
      font-size: 15px !important;
      width: 100% !important;
      min-width: 0 !important;
      min-height: 54px !important;
    }

    & .contact-box {
      overflow: visible;
    }

    & form {
      gap: 12px;
    }

    & input {
      font-size: 16px;
    }

    & textarea {
      font-size: 16px;
    }

    & button.btn.primary {
      font-size: 16px;
      border-radius: 14px;
    }
  }

  /* Stage3 mobile spacing */

  section {
    padding: 56px 0 !important;
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }

  .card {
    padding: 18px !important;
  }

  body>header {
    padding: 10px 16px !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .06) !important;

    & nav {
      display: none !important;
    }

    & .container {
      padding: 0 18px !important;
    }

    & .nav {
      height: 64px !important;
      min-height: 64px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      flex-wrap: nowrap !important;
      gap: 5px !important;
    }

    & .brand {
      min-width: 0 !important;
      flex: 0 1 auto !important;
      display: flex !important;
      align-items: center !important;
      line-height: 1 !important;
    }

    & .brand img {
      height: 26px !important;
      width: auto !important;
      max-width: 170px !important;
      object-fit: contain;
      display: block !important;
    }

    & .main-nav {
      display: none !important;
    }

    & .btn.primary {
      margin-left: auto !important;
      flex: 0 0 auto !important;
      min-height: 40px !important;
      padding: 9px 18px !important;
      font-size: 14px !important;
      font-weight: 700 !important;
      line-height: 1 !important;
      border-radius: 999px !important;
      box-shadow: 0 10px 24px rgba(0, 120, 255, .18) !important;
      white-space: nowrap !important;
      margin-right: 0;
    }
  }

  .ceo-section {
    flex-direction: column !important;
    gap: 30px !important;

    & img {
      width: 100% !important;
      height: auto !important;
      border-radius: 16px !important;
    }
  }

  .btn-primary {
    width: 100% !important;
    text-align: center !important;
  }

  /* Mobile: service image above summary */

  .split {
    display: flex;
    flex-direction: column;
    gap: 16px;

    & .photo {
      order: -1;
    }

    & .panel {
      order: 0;
    }
  }

  /* Mobile: CEO message typography and prevent overflow */

  #message {
    & .message-quote {
      display: inline !important;
      line-height: 1.45;
    }

    & .panel {
      height: auto !important;
      overflow: visible !important;
    }

    & .panel .text {
      word-break: break-word;
    }

    & .ceo {
      grid-template-columns: 1fr !important;
      gap: 22px !important;
    }

    & .ceo-photo {
      max-width: 420px;
      margin: 18px auto 0 !important;
      box-shadow: 0 20px 55px rgba(0, 0, 0, .48) !important;
    }

    & .ceo-text {
      padding-right: 0;
    }
  }

  /* keep 2-column layout */

  .company-en {
    font-size: 11px !important;
    letter-spacing: 0.18em !important;
  }

  .company-jp {
    font-size: 12px !important;
    margin-top: 6px !important;
  }

  /* card padding similar to screenshot */

  /* keep inner side padding so lines don't hit the edge */

  .company-table {
    padding: 0 20px !important;
  }

  .fv {
    & h1 {
      font-size: clamp(34px, 9vw, 42px) !important;
    }

    & .hero-text {
      max-width: 100% !important;
    }

    & .hero-content {
      max-width: 100% !important;
    }

    & .chip {
      font-size: 13px !important;
      padding: 9px 15px !important;
    }

    & .tag {
      font-size: 13px !important;
      padding: 9px 15px !important;
    }

    & .badge {
      font-size: 13px !important;
      padding: 9px 15px !important;
    }

    & .keyword {
      font-size: 13px !important;
      padding: 9px 15px !important;
    }

    & [class*="pill"] {
      font-size: 13px !important;
      padding: 9px 15px !important;
    }
  }

  .main-visual {
    & h1 {
      font-size: clamp(34px, 9vw, 42px) !important;
    }

    & .hero-text {
      max-width: 100% !important;
    }

    & .hero-content {
      max-width: 100% !important;
    }

    & .chip {
      font-size: 13px !important;
      padding: 9px 15px !important;
    }

    & .tag {
      font-size: 13px !important;
      padding: 9px 15px !important;
    }

    & .badge {
      font-size: 13px !important;
      padding: 9px 15px !important;
    }

    & .keyword {
      font-size: 13px !important;
      padding: 9px 15px !important;
    }

    & [class*="pill"] {
      font-size: 13px !important;
      padding: 9px 15px !important;
    }
  }

  .mv {
    & h1 {
      font-size: clamp(34px, 9vw, 42px) !important;
    }
  }

  .first-view {
    & h1 {
      font-size: clamp(34px, 9vw, 42px) !important;
    }

    & .hero-text {
      max-width: 100% !important;
    }

    & .hero-content {
      max-width: 100% !important;
    }

    & .chip {
      font-size: 13px !important;
      padding: 9px 15px !important;
    }

    & .tag {
      font-size: 13px !important;
      padding: 9px 15px !important;
    }

    & .badge {
      font-size: 13px !important;
      padding: 9px 15px !important;
    }

    & .keyword {
      font-size: 13px !important;
      padding: 9px 15px !important;
    }

    & [class*="pill"] {
      font-size: 13px !important;
      padding: 9px 15px !important;
    }
  }

  .modal-content {
    width: min(92vw, 640px) !important;
    margin: 16vw auto !important;
    padding: 28px !important;
  }

  .cta-btn {
    padding: 13px 24px !important;
  }

  input {
    &[type="submit"] {
      padding: 13px 24px !important;
    }
  }

  * {
    background-attachment: scroll;
  }

  #access {
    padding: 10px 0 0;
  }

  .access-panel {
    padding: 26px 22px;
  }

  .access-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 20px;
  }

  .access-label {
    font-size: 14px;
  }

  .access-value {
    font-size: 16px;
    line-height: 1.85;
  }

  .access-map {
    min-height: auto;
    border-radius: 18px !important;

    & iframe {
      height: auto;
      min-height: 320px;
      aspect-ratio: 1 / 1;
      aspect-ratio: auto !important;

      height: 420px !important;
      min-height: 420px !important;
      border-radius: 0 0 18px 18px !important;

      margin-top: 10px;
    }
  }

  .access-map-fallback {
    font-size: 13px;
    padding: 12px 14px;
    display: flex !important;
  }

  .footer-brand {
    & h3 {
      font-size: 24px;
    }
  }

  .footer-contact-line {
    font-size: 15px;
    line-height: 1.8;
    padding: 0 18px;

    & .sep {
      display: block;
      height: 0;
      margin: 4px 0;
      opacity: 0;
    }
  }

  .footer-nav-clean {
    gap: 16px;
    row-gap: 10px;
    padding: 0 18px;

    & a {
      font-size: 14px;
    }
  }

  .footer-nav {
    gap: 14px;
    padding: 0 16px;

    & a {
      font-size: 14px;
    }
  }

  .footer-cta {
    margin: 34px 16px 16px;
    padding: 22px 18px;
  }

  .footer-cta-title {
    font-size: 22px;
  }

  .footer-cta-text {
    font-size: 14px;
  }

  .main-nav {
    padding: 0 16px;
    gap: 12px;
    display: none !important;

    & a {
      font-size: 13px;
    }
  }

  .footer-nav-under-hours {
    gap: 12px;
    row-gap: 10px;
  }

  .hero-inner {
    padding-top: 8px !important;
  }

  .hero-subcopy {
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 14px !important;
    font-weight: 700 !important;
  }

  .hero-card {
    padding: 18px 16px 16px !important;

    & h3 {
      font-size: 16px !important;
    }
  }

  .tag {
    font-size: 11px !important;
    padding: 7px 10px !important;
  }

  .scroll-hint {
    display: none !important;
  }

  .access-map-toplink {
    padding: 14px 12px 0 !important;

    & a {
      width: 100% !important;
      font-size: 13px !important;
      padding: 10px 14px !important;
    }
  }

  .sp {
    display: block;
  }

  .mobile-fixed-cta {
    display: none !important;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    z-index: 9999;
    justify-content: center;
    pointer-events: none;
  }

  /* カード感を弱める（縦長に見える原因を除去） */

  /* 横幅いっぱい使う */

  /* 行をコンパクトに */

  /* 2カラム維持 */

  /* 文字サイズは変更しない（触らない） */

  /* 右カラムはみ出し防止 */

  /* 住所だけ自然改行 */

  .biz-inline {
    display: none !important;
  }

  .biz-bullets {
    display: block !important;
  }

  main {
    &>section {
      padding-top: 64px;
      padding-bottom: 64px;
    }

    &>section.hero {
      padding-top: 92px;
      padding-bottom: 72px;
    }
  }

  /* subtle gradient ring */

  /* arrow mark (no extra asset) */

  /* tap feedback */

  /* gentle breathing (very subtle) */

  @media (prefers-reduced-motion: no-preference) {
    @keyframes ctaBreath {
      0% {
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45), 0 0 0 6px rgba(201, 162, 39, 0.10);
      }

      100% {
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45), 0 0 0 6px rgba(201, 162, 39, 0.10);
      }

      50% {
        box-shadow: 0 16px 38px rgba(0, 0, 0, 0.48), 0 0 0 7px rgba(201, 162, 39, 0.13);
      }
    }
  }

  .contact-info-block {
    padding-top: 22px;
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .contact-info-nav {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px 18px !important;
    width: 100% !important;

    & a {
      text-align: center !important;

      display: inline-block !important;
      margin: 0 !important;
    }
  }

  html {
    /* SP: section padding-top 72px + ヘッダー高さ ≒ 64px を考慮し、見出しがヘッダー直下に綺麗に収まるよう調整 */
    scroll-padding-top: 16px;
  }

  .contact-info-line--cta {
    justify-content: center;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    line-height: 1.7 !important;

    & .contact-icon {
      margin: 0 auto 2px !important;
    }
  }

  .contact-cta-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .contact-icon {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }

  .contact-info-tagline {
    font-size: 11px;
    margin: 0 0 12px;
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .trust-badges {
    gap: 8px 10px;
  }

  .trust-badge {
    padding: 7px 10px;
  }

  .quiet-break {
    padding: 28px 0;
  }

  /* Stack CEO section on mobile (override any hard grid fixes) */

  /* Make hero overlay uniform on mobile (avoid left/right banding) */

  .contact-info-title {
    margin-left: auto !important;
    margin-right: auto;
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .contact-info-lines {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .contact-info-line {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .news-section {
    padding: 70px 0;
  }

  .profile-container {
    padding: 32px 22px;
    max-width: 92%;
  }

  .message-photo {
    margin-bottom: 40px;
  }

  .mobile-fixed-cta__btn {
    pointer-events: auto;
    width: 100%;
    max-width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 56px;
    padding: 14px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .08em;
    color: rgba(255, 248, 235, .96);
    background: linear-gradient(135deg, rgba(219, 187, 113, .18), rgba(255, 236, 186, .12));
    border: 1px solid rgba(230, 201, 132, .32);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .20), inset 0 -1px 0 rgba(255, 255, 255, .05);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .18);
    overflow: hidden;
    position: relative;
    isolation: isolate;

    &::before {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: 999px;
      background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04));
      pointer-events: none;
    }

    &::after {
      content: "";
      position: absolute;
      left: 16px;
      right: 16px;
      top: 8px;
      height: 42%;
      border-radius: 999px;
      background: linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0));
      pointer-events: none;
      filter: blur(1px);
    }

    & span {
      isolation: isolate;
    }

    &:active {
      transform: translateY(1px) scale(.995);
    }
  }

  body {
    padding-bottom: 94px;
  }

  .sp-menu-toggle {
    display: block;
  }

  /* SP表示でもお問い合わせボタンを表示し、メニューボタンの左にコンパクトサイズで配置 */
  .header-contact-btn {
    display: inline-flex !important;
    padding: 8px 14px !important;
    font-size: 12px !important;
    min-height: 36px !important;
    border-radius: 999px !important;
    margin-right: 6px;
    letter-spacing: .04em;
    white-space: nowrap;
  }

  .page-hero {
    padding: 64px 0 40px;
  }

  .article-nav {
    grid-template-columns: 1fr;
  }

  .news-card__thumb {
    width: calc(100% + 48px);
    margin: -24px -24px 16px;
  }

  .article__thumb {
    margin: 0 0 24px;
    border-radius: 12px;
  }
}

@media (max-width: 640px) {
  #problems {
    & .problem-premium-shell {
      padding: 22px;
      border-radius: 24px;
    }

    & .refined-problem-grid {
      gap: 14px;
    }

    & .refined-problem-item {
      padding: 18px 16px 16px;
      border-radius: 18px;
    }

    & .refined-problem-item .problem-card-item__icon {
      width: 44px;
      height: 44px;
      flex-basis: 44px;
      border-radius: 14px;
    }

    &.problems-section {
      padding: 72px 0 22px;
    }

    & .problems-copy--premium h3 {
      font-size: clamp(25px, 7vw, 32px);
    }

    & .problem-card-item {
      padding: 18px 16px 17px;
      border-radius: 20px;
      gap: 14px;
    }

    & .problem-card-item__icon {
      width: 50px;
      height: 50px;
      flex-basis: 50px;
      border-radius: 16px;
      font-size: .84rem;
    }

    & .problem-highlight-card__inner {
      padding: 20px 18px;
      border-radius: 20px;
    }

    & .problems-sub .pc-only {
      display: none;
    }
  }

  .problems-bridge {
    align-items: flex-start;
    gap: 10px;

    & p {
      font-size: .95rem;
      line-height: 1.7;
      text-align: left;
    }
  }

  .problems-bridge__arrow {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .premium-inline-cta--enhanced {
    padding: 22px 20px;

    & .premium-inline-cta__actions {
      width: 100%;
    }

    & .premium-cta-main {
      width: 100%;
      min-width: 0;
    }

    & .premium-cta-sub {
      width: 100%;
      min-width: 0;
    }
  }

  #reason {
    & .premium-reason-card .card-inner {
      padding: 20px 18px 18px;
    }
  }

  .flow-section {
    padding: 68px 0;
  }

  .problems-section {
    padding: 68px 0;
  }

  .flow-grid-premium {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .flow-card {
    padding: 22px 18px 20px;
    border-radius: 20px;
  }

  .flow-step {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .problems-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .problem-list-premium {
    grid-template-columns: 1fr;
  }

  .flow-title {
    font-size: clamp(26px, 7vw, 34px);
  }

  .problems-title {
    font-size: clamp(26px, 7vw, 34px);
  }

  .premium-inline-cta {
    padding: 22px 18px;
    border-radius: 24px;

    & h3 {
      font-size: 24px !important;
      line-height: 1.5;
    }

    & p {
      font-size: 14px;
    }
  }

  .btn {
    &.premium-cta-main {
      width: 100%;
      min-width: 0;
    }

    &.premium-cta-sub {
      width: 100%;
      min-width: 0;
    }
  }

  .reason-section-premium {
    & .section-title {
      margin-bottom: 18px;
    }
  }
}

@media (max-width: 480px) {
  .hero-card {
    & .tag {
      font-size: 12px;
      padding: 8px 12px;
    }
  }
}

@media (max-width:420px) {
  body>header {
    & .container {
      padding: 0 14px !important;
    }

    & .nav {
      gap: 10px !important;
    }

    & .brand img {
      height: 24px !important;
      max-width: 150px !important;
    }

    & .btn.primary {
      padding: 8px 15px !important;
      font-size: 13px !important;
      min-height: 36px !important;
    }
  }

  .hero {
    padding-top: 74px !important;
  }
}

@media (max-width: 390px) {
  .message-quote {
    font-size: 15px;
  }
}

@media (min-width: 769px) {
  .hero-bg {
    filter: none !important;
    transform: none !important;
  }

  .hero__bg {
    filter: none !important;
    transform: none !important;
  }

  .hero {
    & .bg {
      filter: none !important;
      transform: none !important;

      filter: none;
      transform: none;
    }

    & .background {
      filter: none !important;
      transform: none !important;

      filter: none;
      transform: none;
    }

    & .hero-background {
      filter: none !important;
      transform: none !important;

      filter: none;
      transform: none;
    }

    & picture img {
      filter: none !important;
      transform: none !important;

      filter: none;
      transform: none;
    }

    &>img {
      filter: none !important;
      transform: none !important;

      filter: none;
      transform: none;
    }
  }

  /* ensure hero overlay/blur is applied immediately without hiding whole page */

  .access-panel {
    display: flex;
    padding-top: 36px !important;
    padding-bottom: 30px !important;
  }

  .access-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    min-height: 100%;
  }

  .access-item {
    padding: 0 0 18px !important;

    &:last-child {
      padding-bottom: 0 !important;
    }
  }

  .access-map-toplink {
    padding: 14px 14px 0 !important;
  }

  .access-map {
    & iframe {
      margin-top: 12px;
      height: 508px !important;
    }
  }

  .access-map-fallback {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  :root {
    --mx: 50;
    --my: 20;
  }

  .hero {
    &::before {
      background: radial-gradient(340px 240px at calc(var(--mx) * 1%) calc(var(--my) * 1%), rgba(201, 162, 39, 0.11), transparent 70%), radial-gradient(420px 280px at calc((100 - var(--mx)) * 1%) calc((var(--my) + 10) * 1%), rgba(90, 140, 255, 0.10), transparent 72%);
    }
  }

  .card {
    will-change: transform, box-shadow;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .feature-card {
    will-change: transform, box-shadow;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .glass-card {
    will-change: transform, box-shadow;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .service-card {
    will-change: transform, box-shadow;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .magnet {
    transform: translate(var(--mx, 0px), var(--my, 0px)) scale(1.01);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.48);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero {
    & h1 .line2 {
      animation: none;
      opacity: .45;
      transform: none;
    }

    & h1 {
      animation: none !important;
      opacity: 1 !important;
      transform: none !important;
    }

    & p {
      animation: none !important;
      opacity: 1 !important;
      transform: none !important;
    }

    & .hero-seo-copy {
      animation: none !important;
      opacity: 1 !important;
      transform: none !important;
    }
  }

  .btn {
    &.primary {
      transition: none !important;
      animation: none !important;
    }
  }

  .news-card {
    transition: none !important;
    animation: none !important;

    &::after {
      transition: none !important;
      animation: none !important;
    }
  }

  .scroll-hint {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .scroll-hint-dot {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  * {
    animation-duration: 0.001ms;
    animation-iteration-count: 1;
    transition-duration: 0.001ms;
    scroll-behavior: auto;
  }
}

/* ============================================================================
   Section: NEWS pages (/news/index.html, /news/detail.html)
   ============================================================================ */

/* ---------- 一覧ページ: Page Hero ---------- */
.page-hero {
  padding: 88px 0 56px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(43, 108, 255, .18) 0%, transparent 55%);
}

.page-hero__kicker {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--news-accent);
  margin-bottom: 14px;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: .06em;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.3;
}

.page-hero__lead {
  color: var(--muted);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ---------- 一覧ページ: News List ---------- */
.news-list-section {
  padding: 40px 0 80px;
}

.news-item__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.news-item:hover {
  transform: translateY(-3px);
  border-color: rgba(160, 190, 255, .35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.news-item__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.news-item__date {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: .14em;
  color: var(--news-accent);
  font-weight: 500;
}

.news-item__badge {
  display: inline-block;
  padding: 3px 10px;
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: .18em;
  background: rgba(160, 190, 255, .14);
  color: var(--news-accent);
  border: 1px solid rgba(160, 190, 255, .42);
  border-radius: 999px;
}

.news-item__title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 10px;
}

.news-item__excerpt {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item__more,
.news-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--news-accent);
  text-decoration: none;
}

.news-item__more::after,
.news-card__more::after {
  content: "→";
  transition: transform .3s ease;
}

.news-item:hover .news-item__more::after,
.news-card:hover .news-card__more::after {
  transform: translateX(4px);
}

.news-state {
  padding: 60px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- 一覧ページ: Pagination ---------- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.pagination__btn {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--ink);
  text-decoration: none;
  border-radius: 12px;
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: .1em;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.pagination__btn:hover {
  border-color: var(--news-accent);
}

.pagination__btn--current {
  background: rgba(160, 190, 255, .18);
  border-color: var(--news-accent);
  color: var(--news-accent);
}

.pagination__btn[aria-disabled="true"] {
  opacity: .35;
  pointer-events: none;
}

/* ---------- 詳細ページ: Container (狭め) ---------- */
.article-container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- 詳細ページ: Breadcrumb ---------- */
.breadcrumb {
  padding: 32px 0 0;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--muted);
}

.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb li+li::before {
  content: "／";
  margin-right: 8px;
  color: rgba(255, 255, 255, .3);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--news-accent);
}

.breadcrumb [aria-current="page"] {
  color: var(--news-accent);
}

/* ---------- 詳細ページ: Article本体 ---------- */
.article {
  padding: 48px 0 80px;
}

.article__header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.article__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.article__date {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: .2em;
  color: var(--news-accent);
}

.article__badge {
  display: inline-block;
  padding: 3px 10px;
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: .2em;
  background: rgba(160, 190, 255, .14);
  color: var(--news-accent);
  border: 1px solid rgba(160, 190, 255, .42);
  border-radius: 999px;
}

.article__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  margin: 0;
  letter-spacing: .04em;
}

.article__body {
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, .88);
}

.article__body p {
  margin: 0 0 1.5em;
}

.article__body h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin: 2.2em 0 .8em;
  letter-spacing: .04em;
}

.article__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 1.8em 0 .6em;
}

.article__body a {
  color: var(--news-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article__body ul,
.article__body ol {
  padding-left: 1.6em;
  margin: 0 0 1.5em;
}

.article__body li {
  margin-bottom: .4em;
}

.article__body img {
  margin: 1.5em 0;
  border-radius: 12px;
}

.article__body blockquote {
  border-left: 3px solid var(--news-accent);
  padding: 8px 0 8px 22px;
  margin: 1.5em 0;
  color: var(--muted);
  font-style: italic;
}

/* ---------- 詳細ページ: 前後記事ナビ ---------- */
.article-nav {
  margin: 64px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.article-nav__link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, border-color .3s ease;
}

.article-nav__link:hover {
  transform: translateY(-2px);
  border-color: rgba(160, 190, 255, .35);
}

.article-nav__label {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--news-accent);
}

.article-nav__title {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-nav__link--next {
  text-align: right;
}

.article-nav__link[aria-disabled="true"] {
  opacity: .3;
  pointer-events: none;
}

/* ---------- 詳細ページ: 戻るボタン ---------- */
.article-back {
  margin: 40px 0 0;
  text-align: center;
}

.article-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: .2em;
  transition: border-color .3s ease, color .3s ease;
}

.article-back a:hover {
  border-color: var(--news-accent);
  color: var(--news-accent);
}

.article-back a::before {
  content: "←";
}

/* ---------- 詳細ページ: エラー状態 ---------- */
.state {
  padding: 80px 20px;
  text-align: center;
  color: var(--muted);
}

.state__title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #fff;
  margin: 0 0 12px;
}

/* ========================================================================
   NEWS: サムネイル（アイキャッチ）
   アスペクト比 16:9 固定 / object-fit: cover で中央切り抜き
   推奨解像度: 1200 × 675px
   ======================================================================== */

/* 一覧ページ: 左カラム（PC）/ 上段（SP）のサムネ */
.news-item__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border-radius: 12px;
}

.news-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-item:hover .news-item__thumb img {
  transform: scale(1.04);
}

/* TOPカード: カード上部のサムネ */
.news-card__thumb {
  display: block;
  width: calc(100% + 48px);
  aspect-ratio: 16 / 9;
  margin: -24px -24px 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card:hover .news-card__thumb img {
  transform: scale(1.04);
}

/* 詳細ページ: 記事ヘッダー直上のヒーロー画像 */
.article__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 36px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border-radius: var(--radius);
}

.article__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========================================================================
   NEWS: サムネイル no-image フォールバック
   サムネ未設定時：薄白背景 + 中央にヘッダー白ロゴを配置
   ======================================================================== */

.news-item__thumb--noimage,
.news-card__thumb--noimage,
.article__thumb--noimage {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .06);
}

.news-item__thumb--noimage .news-noimage-logo,
.news-card__thumb--noimage .news-noimage-logo,
.article__thumb--noimage .news-noimage-logo {
  width: 45%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  opacity: .85;
  display: block;
}

/* hoverで拡大しないようにブロック */
.news-item:hover .news-item__thumb--noimage .news-noimage-logo,
.news-card:hover .news-card__thumb--noimage .news-noimage-logo {
  transform: none;
}

/* ========================================================================
   NEWS: スケルトンスクリーン（fetch待機中のレイアウトシフト防止）
   実データと同じ構造・高さで初期表示 → fetch成功時に innerHTML 置換
   置換時もシフト0。shimmer アニメで「読み込み中」をそれとなく伝える
   ======================================================================== */

@keyframes news-skeleton-shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.news-skel {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, .04) 0%,
      rgba(255, 255, 255, .09) 50%,
      rgba(255, 255, 255, .04) 100%);
  background-size: 200% 100%;
  animation: news-skeleton-shimmer 1.6s ease-in-out infinite;
  border-radius: 6px;
}

/* 一覧ページ: スケルトンアイテム */
.news-item--skeleton {
  pointer-events: none;
  cursor: default;
}

.news-item--skeleton:hover {
  transform: none;
  border-color: var(--border);
  box-shadow: none;
}

.news-item--skeleton .news-item__thumb {
  /* shimmerは画像枠にそのまま適用 */
  background: linear-gradient(90deg,
      rgba(255, 255, 255, .04) 0%,
      rgba(255, 255, 255, .09) 50%,
      rgba(255, 255, 255, .04) 100%);
  background-size: 200% 100%;
  animation: news-skeleton-shimmer 1.6s ease-in-out infinite;
}

.news-skel--date {
  display: inline-block;
  width: 90px;
  height: 14px;
}

.news-skel--badge {
  display: inline-block;
  width: 44px;
  height: 18px;
  border-radius: 999px;
}

.news-skel--title {
  display: block;
  width: 78%;
  /* 実データ .news-title の min-height（2行=48px）と同じ高さを確保 */
  height: calc(16px * 1.5 * 2);
  margin: 0 0 10px;
}

.news-skel--line {
  display: block;
  width: 100%;
  height: 14px;
  margin: 0 0 8px;
}

.news-skel--line-short {
  display: block;
  width: 62%;
  height: 14px;
  /* 実データ .news-excerpt の min-height（3行≒66px）に合わせて余白を多めに確保 */
  margin: 0 0 28px;
}

.news-skel--more {
  display: inline-block;
  width: 80px;
  height: 14px;
}

/* TOPカード: スケルトン */
.news-card--skeleton {
  pointer-events: none;
  cursor: default;
}

.news-card--skeleton:hover {
  transform: none !important;
  box-shadow: var(--grow-shadow) !important;
}

.news-card--skeleton .news-card__thumb {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, .04) 0%,
      rgba(255, 255, 255, .09) 50%,
      rgba(255, 255, 255, .04) 100%);
  background-size: 200% 100%;
  animation: news-skeleton-shimmer 1.6s ease-in-out infinite;
}

/* 詳細ページ: スケルトン */
.article--skeleton {
  padding: 48px 0 80px;
}

.article--skeleton .article__thumb {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, .04) 0%,
      rgba(255, 255, 255, .09) 50%,
      rgba(255, 255, 255, .04) 100%);
  background-size: 200% 100%;
  animation: news-skeleton-shimmer 1.6s ease-in-out infinite;
}

.news-skel--article-title {
  display: block;
  width: 70%;
  height: 36px;
  margin: 0 auto 16px;
}

.news-skel--article-line {
  display: block;
  width: 100%;
  height: 14px;
  margin: 0 0 12px;
}

.news-skel--article-line-short {
  display: block;
  width: 50%;
  height: 14px;
  margin: 0 0 12px;
}

/* ============================================================================
   ACCESS section - PC余白調整（クライアント要望 2026-04-30）
   住所と最寄り駅の間は維持、最寄り駅／営業時間／電話番号の項目間を詰める。
   SP表示は現状維持。
   ※応急処置（!important上書き）対応。コード整理時に統合予定。
   ============================================================================ */
@media (min-width: 769px) {
  /* .access-wrap の align-items: stretch が左右ブロックの高さを強制的に揃えていたため、
     access-panel が地図側の高さに引き伸ばされて余白詰めが視覚的に効かなくなる。
     高さを揃えず、access-panel と地図を縦中央揃えで配置するよう変更。 */
  #access .access-wrap {
    align-items: center !important;
  }
  #access .access-list {
    gap: 14px !important;
  }
  #access .access-list .access-item {
    padding-bottom: 14px !important;
  }
  /* .access-label の文字サイズが .access-value より小さく上に寄って見えるため、
     padding-top で押し下げて value 1行目と高さを揃える */
  #access .access-list .access-label {
    padding-top: 6px !important;
  }
  /* 最後の項目はborderなし＆padding-bottom:0 を維持 */
  #access .access-list .access-item:last-child {
    padding-bottom: 0 !important;
  }
}

/* ============================================================================
   ACCESS section - 左ブロック枠線・背景撤去＋見出し取り込み（クライアント要望 2026-05-07）
   左右ブロック（情報・地図）の高さ差を視覚的に解消する目的。
   見出し「ACCESS」は左ブロック内（.access-panel）の最上部に取り込む構成。
   ※応急処置（!important上書き）対応。コード整理時に統合予定。
   ============================================================================ */
#access .access-panel {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}
#access .access-panel > .section-title {
  margin-top: 0 !important;
  margin-bottom: 28px !important;
}
@media (max-width: 768px) {
  #access .access-panel > .section-title {
    margin-bottom: 18px !important;
  }
}

/* ============================================================================
   ACCESS section - 住所の画面幅対応改行（クライアント要望 2026-05-07）
   段階的に改行を増やす：
   ・広い画面（820px超）：自然折り返し（多くのケースで1〜2行）
   ・中間（820px以下）：〒171-0022 と 東京都豊島区... の間で改行（2〜3行）
   ・狭い画面（480px以下）：3か所すべてで改行（3行確実）
   日本語が中途半端に改行されないよう word-break: keep-all を併用。
   ============================================================================ */
.access-link--address {
  word-break: keep-all;
  overflow-wrap: break-word;
}
.access-link--address br {
  display: none;
}
@media (max-width: 820px) {
  .access-link--address br.access-br--ward {
    display: inline;
  }
}
@media (max-width: 480px) {
  .access-link--address br.access-br--postcode {
    display: inline;
  }
}

/* ============================================================================
   ACCESS section - Googleマップで開くボタンを下部右下へ移動
   （クライアント要望 2026-05-08）
   元の上部右上配置だと存在感が強すぎたため、
   「住所→マップ→必要に応じて開く」という自然な視線誘導の流れに調整。
   HTMLでも順序を iframe → button → fallback に変更済み。
   ============================================================================ */
#access .access-map-toplink {
  padding: 12px 12px !important;
}