﻿/* ═══════════════════════════════════════
   sf-top.css — front-page 専用スタイル（旧 top-orange-navy.css）
   Step 10-9 パス2: top-orange-navy.css をリネーム、sunday-times-recruit.css /
   sunny-labo.css を統合し、@import(Montserrat 400;500;600;700) を削除。
   Montserrat 400 の唯一の消費元はフッター compliance（sf-footer.css・日本語=Noto Sans JP 400）
   のみで実害なしと確認のうえ持ち越さない。
   TOKENS（:root フルセット）は sf-base.css（全ページ enqueue）へ集約済み（パス1a）。
   front-page 限定の --sec-pad MQ 上書き（下方）は本ファイルが最終置き場。
═══════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Montserrat', 'Noto Sans JP', 'Hiragino Sans', sans-serif; font-weight: 600; background: var(--c-bg); color: var(--c-text); line-height: 1.75; font-size: 15px; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }

/* ═══════════════════════════════════════
   UTILS
═══════════════════════════════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* モダン矢印アイコン（横棒 + 先端斜め線） */
.c-arrow {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 1px;
  vertical-align: middle;
  flex-shrink: 0;
}
/* 横棒 */
.c-arrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}
/* 先端の斜め線（右端・横棒上端を軸に30deg回転） */
.c-arrow::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 9px;
  height: 1px;
  background-color: currentColor;
  transform-origin: right top;
  transform: rotate(30deg);
}

.sec-head { text-align: center; margin-bottom: 64px; }
.sec-head--left { text-align: left; }
.sec-head--left .sec-head__bar { margin-left: 0; }

.sec-head__en {
  font-family: 'Oswald', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.32em;
  color: var(--c-orange); text-transform: uppercase;
  display: block; margin-bottom: 12px;
}
.sec-head__ja {
  font-size: 30px; font-weight: 700; color: var(--c-navy); line-height: 1.3;
}
.sec-head__bar {
  width: 36px; height: 3px;
  background: var(--c-orange); border-radius: 2px;
  margin: 16px auto 0;
}

.btn-more {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.12em; color: var(--c-orange);
  border: 2px solid var(--c-orange); border-radius: 50px;
  padding: 11px 28px; transition: all 0.3s ease;
}
.btn-more:hover { background: var(--c-orange); color: #fff; }

.about__actions .btn-more,
.blog__more,
.blog__more--sp .btn-more,
.instagram__more,
.instagram__more--sp .btn-more,
.x-feed__more,
.x-feed__more--sp .btn-more {
  background: var(--c-yellow);
  border-color: var(--c-yellow);
  color: #fff;
}
.about__actions .btn-more:hover,
.blog__more:hover,
.blog__more--sp .btn-more:hover,
.instagram__more:hover,
.instagram__more--sp .btn-more:hover,
.x-feed__more:hover,
.x-feed__more--sp .btn-more:hover {
  background: var(--c-yellow);
  border-color: var(--c-yellow);
  color: #fff;
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.about__actions .btn-more:first-child {
  background: var(--c-orange);
  border-color: var(--c-orange);
}
.about__actions .btn-more:first-child:hover {
  background: var(--c-orange);
  border-color: var(--c-orange);
}

/* ═══════════════════════════════════════
   REVEAL / PARALLAX
═══════════════════════════════════════ */
.reveal {
  --reveal-y: 0px;
  --reveal-x: 0px;
  opacity: 1;
  transform: none;
}
html.reveal-ready .reveal {
  --reveal-y: var(--reveal-from-y, 52px);
  --reveal-x: var(--reveal-from-x, 0px);
  opacity: 0;
  transform: translate3d(var(--reveal-x), calc(var(--reveal-y) + var(--parallax-y, 0px)), 0);
  transition: var(--reveal-transition, opacity .7s cubic-bezier(0.4, 0, 0.2, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1));
  will-change: opacity, transform;
}
html.reveal-ready .reveal.is-revealed {
  --reveal-y: 0px;
  --reveal-x: 0px;
  opacity: 1;
  transform: translate3d(var(--reveal-x), calc(var(--reveal-y) + var(--parallax-y, 0px)), 0);
}
[data-reveal-delay="1"] { transition-delay: .10s; }
[data-reveal-delay="2"] { transition-delay: .20s; }
[data-reveal-delay="3"] { transition-delay: .30s; }
[data-reveal-delay="4"] { transition-delay: .40s; }

[data-parallax] {
  --parallax-y: 0px;
  transform: translate3d(0, calc(var(--reveal-y, 0px) + var(--parallax-y)), 0);
  will-change: transform;
}
.recruit__inner::before,
.recruit__inner::after {
  transform: translate3d(0, var(--parallax-deco-y, 0px), 0);
  will-change: transform;
}

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 86px; display: flex; align-items: center;
  background: rgba(250,250,248,0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.header-mode-transparent {
  background: transparent;
}
.site-header.header-mode-transparent:not(.scrolled) {
  border-bottom-color: transparent;
  box-shadow: none;
}
.site-header.header-mode-transparent:not(.scrolled) .nav-links a {
  color: var(--c-text);
}
.site-header.header-mode-transparent:not(.scrolled) .nav-link__ja {
  color: var(--c-sub);
}
.site-header.header-mode-transparent:not(.scrolled) .nav-sns a {
  color: var(--c-sub);
}
.site-header.header-mode-transparent:not(.scrolled) .nav-sns a:hover {
  color: var(--c-orange);
  background: rgba(224,85,49,.08);
}
.site-header.header-mode-transparent.scrolled {
  background: rgba(250,250,248,0.9);
}
.site-header.header-mode-white {
  background: rgba(250,250,248,0.94);
}
.site-header.scrolled {
  border-color: var(--c-border);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}
.site-header .container {
  max-width: none;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.site-logo {
  display: inline-flex;
  align-items: center;
}
.site-logo img {
  height: 52px;
  width: auto;
}

.site-nav { display: flex; align-items: center; gap: 28px; }
.nav-links  { display: flex; align-items: center; gap: 20px; }
.nav-links a {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: 'Montserrat', 'Noto Sans JP', 'Hiragino Sans', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; color: var(--c-text);
  padding-bottom: 6px;
  transition: color .25s ease;
}
.nav-link__ja {
  font-family: 'Montserrat', 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-sub);
  line-height: 1.2;
  transition: color .25s ease;
}
@media screen and (max-width: 1100px) and (min-width: 960px) {
  .site-nav { gap: 20px; }
  .nav-links { gap: 14px; }
  .nav-links a {
    font-size: 11px;
    letter-spacing: .08em;
  }
  .nav-link__ja {
    font-size: 9px;
  }
  .btn-contact {
    font-size: 11px;
    padding: 9px 16px;
  }
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translateX(-50%);
  transition: width .25s ease;
}
.nav-links a:hover {
  color: var(--c-orange);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover .nav-link__ja {
  color: var(--c-orange);
}
.site-header.header-mode-transparent:not(.scrolled) .nav-links a:hover,
.site-header.header-mode-transparent:not(.scrolled) .nav-links a:hover .nav-link__ja {
  color: var(--c-orange);
}

.nav-sns { display: flex; gap: 10px; }
.nav-sns a {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--c-sub); transition: all .2s;
}
.nav-sns a:hover { color: var(--c-orange); background: rgba(224,85,49,.08); }

.btn-contact {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--c-orange); color: #fff !important;
  font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; padding: 10px 20px; border-radius: 50px;
  transition: all .3s ease;
}
.btn-contact:hover {
  background: var(--c-orange-dk);
  box-shadow: 0 6px 18px rgba(224,85,49,.3);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 580px;
  display: flex; align-items: flex-end; padding-bottom: 80px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__video { width: 100%; height: 100%; object-fit: cover; }
.hero__ph {
  position: absolute; inset: 0; z-index: 0;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.hero__ph-label {
  font-family: monospace; font-size: 13px; line-height: 2.2;
  color: rgba(255,255,255,.3); text-align: center; letter-spacing: .05em;
  opacity: 0;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(36,66,112,.32) 0%,
    rgba(36,66,112,.07) 55%,
    rgba(36,66,112,.32) 100%
  );
}
.hero__en-sides {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: none;
}
.hero__en-side {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(62px, 5.5vw, 94px);
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.86);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero__en-side--left {
  position: absolute;
  left: -0.13em;
  top: 50%;
  transform-origin: left top;
  transform: rotate(-90deg) translateX(-50%);
}
.hero__en-side--right {
  position: absolute;
  right: -0.13em;
  top: 50%;
  transform-origin: right top;
  transform: rotate(90deg) translateX(50%);
}
.hero__content { position: relative; z-index: 2; }
.hero__en {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(54px, 7.5vw, 100px); font-weight: 700;
  color: #fff; line-height: 1.0; letter-spacing: .03em; margin-bottom: 24px;
  display: none;
}
.hero__en span { display: block; }
.hero__ja {
  font-size: clamp(14px, 1.4vw, 17px); font-weight: 700;
  color: rgba(255,255,255,.8); letter-spacing: .08em; margin-top: 0; margin-bottom: 44px;
  transform: translateY(50px);
}
.hero__scroll {
  position: absolute;
  right: 48px;
  bottom: 0;
  z-index: 3;
  display: flex; align-items: center; gap: 12px;
  font-family: 'Oswald', sans-serif; font-size: 10px;
  letter-spacing: .25em; color: var(--c-navy);
  text-shadow: 0 2px 8px rgba(255,255,255,.35);
  cursor: pointer;
}
.hero__scroll::before {
  content: '';
  flex-shrink: 0;
  width: 1px;
  height: 52px;
  /* 縦に長いグラデを持ち上げ／下げて、明るい帯が上→下へ流れる */
  background: linear-gradient(
    to bottom,
    rgba(30, 47, 77, .18) 0%,
    rgba(30, 47, 77, .18) 38%,
    rgba(30, 47, 77, .92) 50%,
    rgba(30, 47, 77, .18) 62%,
    rgba(30, 47, 77, .18) 100%
  );
  background-size: 100% 260%;
  background-repeat: no-repeat;
  background-position: 0 0;
  animation: scrollLineFlow 2.2s linear infinite;
}
@keyframes scrollLineFlow {
  0%   { background-position: 0 100%; }
  100% { background-position: 0 0%; }
}
.hero__header-toggle {
  position: absolute;
  right: 48px;
  top: calc(86px + 12px);
  bottom: auto;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(19,31,52,.35);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__header-toggle-btn {
  border: none;
  background: transparent;
  color: rgba(255,255,255,.72);
  font-family: 'Montserrat', 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}
.hero__header-toggle-btn.is-active {
  background: rgba(255,255,255,.92);
  color: var(--c-navy);
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about { padding: var(--sec-pad) 0; background: var(--c-bg); }

/* ── Tabs ── */
.about-tabs { display: flex; justify-content: center; margin-bottom: 64px; }
.pattern-switch-note {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-sub);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.about-tabs__inner {
  display: flex;
  background: #fff; border: 2px solid var(--c-border);
  border-radius: 50px; padding: 4px;
}
.about-tab {
  font-family: 'Noto Sans JP', sans-serif; font-size: 13px; font-weight: 700;
  padding: 10px 28px; border-radius: 50px; border: none;
  background: transparent; cursor: pointer; color: var(--c-sub);
  transition: all .25s ease;
}
.about-tab.active {
  background: var(--c-orange); color: #fff;
  box-shadow: 0 4px 14px rgba(224,85,49,.25);
}
.about-switcher {
  display: none;
}
.about-switcher .about-tabs {
  margin-bottom: 0;
}
.about-switcher .about-tabs__inner {
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 10px 28px rgba(19,31,52,.12);
}
.about-switcher .about-tab {
  width: 190px;
  text-align: left;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 10px;
}
.about-panel { display: none; }
.about-panel.is-active { display: block; }

/* ══════════════════════════════
   PATTERN A : Overlap Float
   画像の上にカードが浮く重なり型
══════════════════════════════ */
.abt-a {
  position: relative;
  /* image takes left 62%, card overlaps from right */
  padding-bottom: 56px;
}
.abt-a__deco {
  position: absolute;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(92px, 12vw, 150px);
  font-weight: 700;
  color: var(--c-navy); opacity: .04;
  top: -8px; right: -28px;
  line-height: 1; letter-spacing: .05em;
  pointer-events: none; z-index: 0; user-select: none;
}
.abt-a__img-wrap {
  position: relative;
  width: 64%;
  z-index: 1;
}
.abt-a__accent {
  position: absolute;
  width: 88px; height: 88px;
  background: var(--c-orange);
  border-radius: 18px;
  bottom: -24px; right: -24px;
  z-index: 0;
}
.abt-a__img {
  width: 100%; aspect-ratio: 4/3;
  border-radius: 24px; position: relative; z-index: 1;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(19,31,52,.16);
}
.abt-a__img-label { font-family: monospace; font-size: 12px; color: #aaa; text-align: center; line-height: 2; }
.abt-a__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating card — overlaps image */
.abt-a__card {
  position: absolute;
  right: 0;
  bottom: -12px;
  transform: none;
  width: 50%;
  background: #fff;
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: 0 24px 60px rgba(19,31,52,.1);
  z-index: 2;
}
.abt-a__card .sec-head { text-align: left; margin-bottom: 24px; }
.abt-a__card .sec-head__bar { margin-left: 0; }
.abt-a__lead {
  font-size: 15px; line-height: 1.95; color: var(--c-text);
  margin-bottom: 36px; text-wrap: pretty;
}
.about__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.about__actions .btn-more {
  min-width: 168px;
  justify-content: center;
}

/* ══════════════════════════════
   PATTERN B : Editorial
   大見出し＋横罫でマガジン調
══════════════════════════════ */
.abt-b__header {
  position: relative;
  display: flex; align-items: flex-end; gap: 28px; margin-bottom: 20px;
  padding-left: 102px;
}
.abt-b__header::before {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 6px;
  width: 1px;
  height: calc(clamp(64px, 9vw, 112px) + 10px);
  background: var(--c-orange);
  border-radius: 2px;
  transform: rotate(45deg);
  transform-origin: bottom center;
}
.abt-b__big-en {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(64px, 9vw, 112px); font-weight: 700;
  color: var(--c-navy); letter-spacing: .04em; line-height: 1; flex-shrink: 0;
}
.abt-b__header-meta {
  flex: 1; display: flex; flex-direction: column;
  justify-content: flex-end; padding-bottom: 10px; gap: 4px;
}
.abt-b__sub-en {
  font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: .28em; color: var(--c-orange); text-transform: uppercase;
}
.abt-b__sub-ja { font-size: 16px; font-weight: 700; color: var(--c-sub); }
.abt-b__rule { height: 1px; background: var(--c-border); margin-bottom: 56px; }
.abt-b__body {
  display: grid; grid-template-columns: 50% 1fr;
  align-items: start;
}
.abt-b__img-col { padding-right: 52px; padding-top: 36px; }
.abt-b__img {
  width: 100%; aspect-ratio: 3/2; border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(19,31,52,.16);
}
.abt-b__img-label { font-family: monospace; font-size: 12px; color: #aaa; text-align: center; line-height: 2; }
.abt-b__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.abt-b__text-col {
  padding-left: 8px;
  padding-top: 52px;
}
.abt-b__pull {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 2.4vw, 30px); font-weight: 700;
  color: var(--c-navy); line-height: 1.35; letter-spacing: .08em;
  border-left: 5px solid var(--c-orange); padding-left: 22px;
  margin-bottom: 34px;
}
.abt-b__lead {
  font-size: 14px; line-height: 1.95; color: var(--c-text);
  margin-bottom: 44px; text-wrap: pretty;
}

/* ═══════════════════════════════════════
   SERVICE
═══════════════════════════════════════ */
.service { padding: var(--sec-pad) 0; background: var(--c-bg); }
.service__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.service__more { flex-shrink: 0; }
.service-list-link {
  position: relative;
  padding-bottom: 5px;
  font-size: 14px;
}
.service-list-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform .35s ease;
}
.service-list-link:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}
.service__more--sp {
  display: none;
  margin-top: 40px;
  text-align: center;
}
.service__title {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding-left: 102px;
}
.service__title::before {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 6px;
  width: 1px;
  height: calc(clamp(64px, 9vw, 112px) + 10px);
  background: var(--c-orange);
  border-radius: 2px;
  transform: rotate(45deg);
  transform-origin: bottom center;
}
.service__big-en {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(64px, 9vw, 112px);
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: .04em;
  line-height: 1;
}
.service__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 10px;
}
.service__sub-en {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  color: var(--c-orange);
  text-transform: uppercase;
}
.service__sub-ja {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-sub);
}
.service__rule {
  height: 1px;
  background: var(--c-border);
  margin-bottom: 44px;
}

/* Toggle tabs */
.svc-switcher {
  display: none;
}
.svc-tabs { margin-bottom: 0; }
.svc-tabs__inner {
  display: flex; flex-direction: column; gap: 8px;
  background: rgba(255,255,255,.96); border: 1px solid var(--c-border);
  border-radius: 16px; padding: 8px;
  box-shadow: 0 10px 28px rgba(19,31,52,.12);
}
.svc-tab {
  font-family: 'Noto Sans JP', sans-serif; font-size: 12px; font-weight: 700;
  padding: 10px 14px; border-radius: 10px; border: none;
  background: transparent; cursor: pointer; color: var(--c-sub);
  width: 190px; text-align: left;
  transition: all .25s ease;
}
.svc-tab.active {
  background: var(--c-navy); color: #fff;
  box-shadow: 0 8px 18px rgba(19,31,52,.25);
}

/* Panels */
.svc-panel { display: none; }
.svc-panel.is-active { display: block; }
.sf-bento-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ── Pattern A: Icon ── */
.sf-icon-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 48px 24px;
}
.sf-icon-btn {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  cursor: pointer; background: none; border: none; padding: 8px;
  font-family: inherit;
  transition: transform .3s cubic-bezier(.25,.8,.25,1);
}
.sf-icon-btn:hover  { transform: translateY(-6px); }
.sf-icon-btn:active { transform: scale(.96); }
.sf-icon-btn__shape {
  width: 136px; height: 136px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 46px; flex-shrink: 0;
  background: #fff; color: var(--c-orange);
  border: 2px solid rgba(224,85,49,.28);
  box-shadow: 0 6px 18px rgba(0,0,0,.03);
  transition: all .3s cubic-bezier(.25,.8,.25,1);
}
.sf-icon-btn:hover .sf-icon-btn__shape {
  border-color: var(--c-orange);
  box-shadow: 0 12px 28px rgba(224,85,49,.14);
}
.sf-icon-btn__en {
  font-family: 'Oswald', sans-serif; font-size: 19px; font-weight: 700;
  color: #333; letter-spacing: .08em; text-transform: uppercase;
  transition: color .3s;
}
.sf-icon-btn:hover .sf-icon-btn__en { color: var(--c-orange); }
.sf-icon-btn__ja { font-size: 12px; font-weight: 500; color: var(--c-sub); text-align: center; }

/* ── Pattern B: Bento ── */
.sf-bento {
  display: grid; grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 200px; gap: 18px; grid-auto-flow: dense;
}
.sf-bento__card {
  background: #fff; border-radius: 24px; padding: 28px 30px;
  display: flex; flex-direction: column; justify-content: center;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 4px 20px rgba(0,0,0,.025);
  transition: all .4s cubic-bezier(.16,1,.3,1);
  text-decoration: none; color: inherit; position: relative; overflow: hidden;
}
.sf-bento__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(224,85,49,.1);
  border-color: rgba(224,85,49,.2);
}
.sf-bento__card--hero {
  background: linear-gradient(145deg, var(--c-navy), var(--c-navy-dk));
  color: #fff; border: none;
}
.sf-bento__card--hero .sf-bento__icon { color: #ff9a6c; font-size: 30px; }
.sf-bento__card--hero .sf-bento__en   { font-size: 24px; }
.sf-bento__card--hero .sf-bento__ja   { color: rgba(255,255,255,.5); }
.sf-bento__card--hero .sf-bento__desc { color: rgba(255,255,255,.65); }
/* B: ベントグリッド1 はヒーローアイコンを大きめに */
#panel-b .sf-bento__card--hero .sf-bento__icon { font-size: 48px; }
#panel-b .sf-bento__card--hero:hover .sf-bento__icon {
  transform: scale(1.04) rotate(-2deg);
}
.sf-bento__icon {
  font-size: 30px; color: var(--c-orange); margin-bottom: 14px;
  transition: transform .3s ease;
}
.sf-bento__card:hover .sf-bento__icon { transform: scale(1.12) rotate(-5deg); }
.sf-bento__en {
  font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700;
  letter-spacing: .05em; line-height: 1.1; margin-bottom: 4px;
}
.sf-bento__ja   { font-size: 12px; font-weight: 700; color: var(--c-sub); margin-bottom: 10px; }
.sf-bento__desc { font-size: 12px; color: var(--c-sub); line-height: 1.7; }
.size-sq { grid-column: span 1; grid-row: span 1; }
.size-lg { grid-column: span 2; grid-row: span 2; }
.size-wd { grid-column: span 2; grid-row: span 1; flex-direction: row; align-items: center; gap: 22px; }
.size-wd .sf-bento__icon { margin-bottom: 0; }

/* ═══════════════════════════════════════
   NEWS
═══════════════════════════════════════ */
.news { padding: 0; background: var(--c-bg-alt); }
/* アンカー移動時：固定ヘッダー下に余白（#news の先頭が隠れないように） */
#news { scroll-margin-top: calc(86px + 16px); }
.news__list { max-width: 820px; margin: 0 auto 48px; }
.news__item {
  /* アーカイブ同様: 日付＋カテゴリラベルを1行目、タイトルを2行目に */
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 8px 12px;
  align-items: center;
  padding: 20px 0; border-bottom: 1px solid var(--c-border);
  transition: opacity .2s;
}
.news__item .news__date { grid-column: 1; grid-row: 1; }
.news__item .news__tags {
  grid-column: 2; grid-row: 1;
  display: flex; flex-wrap: wrap; gap: 6px;
  justify-self: start;
}
.news__item .news__tag  { justify-self: start; }
.news__item:first-child { border-top: 1px solid var(--c-border); }
.news__item:hover { opacity: .65; }
.news__date {
  font-family: 'Oswald', sans-serif; font-size: 13px;
  color: var(--c-sub); flex-shrink: 0; letter-spacing: .05em;
}
.news__tag {
  font-size: 10px; font-weight: 700; color: var(--c-orange);
  border: 1px solid var(--c-orange); border-radius: 4px;
  padding: 2px 8px; flex-shrink: 0; letter-spacing: .04em;
  white-space: nowrap;
}
/* ── News tag colors (カテゴリ slug ベース / CATEGORY_MIGRATION_PLAN §4-1) ── */
.news__tag--event-info {
  color: #f59e0b;
  border-color: #f59e0b;
  background: rgba(245,158,11,.10);
}
.news__tag--news {
  color: #7b57d1;
  border-color: #7b57d1;
  background: rgba(123,87,209,.10);
}
.news__tag--pickup {
  color: #db2777;
  border-color: #db2777;
  background: rgba(219,39,119,.10);
}
.news__tag--aichi-museum {
  color: #0ea5e9;          /* 水色: 可読性のため一段濃く（B案） */
  border-color: #0ea5e9;
  background: rgba(56,189,248,.12);
}
.news__tag--mm-museum {
  color: #16a34a;
  border-color: #16a34a;
  background: rgba(22,163,74,.10);
}
.news__tag--restaurant {
  color: #1e40af;
  border-color: #1e40af;
  background: rgba(30,64,175,.10);
}
.news__tag--other {
  color: #ca8a04;          /* 黄: 可読性のため濃いアンバー（B案） */
  border-color: #ca8a04;
  background: rgba(234,179,8,.12);
}
.news__title { grid-column: 1 / -1; grid-row: 2; width: auto; text-align: left; font-size: 14px; color: var(--c-text); text-decoration: none; }
.news__title:hover { opacity: .65; }
.news__more { text-align: center; }

/* ── News panels ── */
.news-panel { display: none; }
.news-panel.is-active { display: block; }

/* ── Pattern D: 現行デザイン ── */
.news-d { padding: 80px 0 var(--sec-pad); }

/* ── Pattern A: 2カラム ── */
.news-a { padding: 64px 0 80px; }
.news-a__inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: start;
}
.news-a__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-right: 48px;
  border-right: 1px solid var(--c-border);
  padding-top: 0;
}
.news-a__en {
  font-family: 'Oswald', sans-serif;
  font-size: 22px; font-weight: 600;
  letter-spacing: .18em; color: var(--c-navy);
  text-transform: uppercase;
  display: block; margin-bottom: 2px;
}
@media screen and (min-width: 960px) {
  .news-a__en {
    font-size: 28px;
  }
}
.news-a__ja {
  font-size: 11px; font-weight: 600;
  color: var(--c-sub); letter-spacing: .06em;
  margin-bottom: 16px; display: block;
}
.news-a__list {
  margin: 0 !important;
  padding-left: 48px;
  max-width: none !important;
}
.news-a__list .news__item:first-child { border-top: 1px solid var(--c-border); }

/* ── Pattern B: ティッカー ── */
.news-b { padding: 48px 0 72px; }
.news-b__bar {
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: stretch;
  min-height: 64px;
}
.news-b__label {
  font-family: 'Oswald', sans-serif;
  font-size: 15px; font-weight: 600;
  letter-spacing: .18em; color: var(--c-navy);
  text-transform: uppercase;
  padding: 0 24px;
  flex-shrink: 0;
  border-right: 1px solid var(--c-border);
  display: flex; align-items: center;
}
.news-b__ticker {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.news-b__item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  opacity: 0;
  transition: opacity .9s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  text-decoration: none;
  color: inherit;
}
.news-b__item.is-active {
  opacity: 1;
  pointer-events: auto;
}
.news-b__date {
  font-family: 'Oswald', sans-serif; font-size: 13px;
  color: var(--c-sub); flex-shrink: 0; letter-spacing: .05em;
}
.news-b__title {
  font-size: 14px; color: var(--c-text);
  flex: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.news-b__more {
  font-family: 'Oswald', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; color: var(--c-orange);
  padding: 0 24px;
  flex-shrink: 0;
  border-left: 1px solid var(--c-border);
  display: flex; align-items: center; gap: 8px;
  transition: color .25s;
  text-decoration: none;
}
.news-b__more:hover { color: var(--c-orange-dk); }

/* ── A・C 用コンパクト VIEW MORE ── */
.news-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--c-orange);
  text-decoration: none;
  transition: color .25s, gap .25s;
}
.news-text-link i { font-size: 10px; }
.news-text-link:hover { color: var(--c-orange-dk); gap: 10px; }
.news-text-link.service-list-link { font-size: 14px; }

/* Panel A 専用 VIEW MORE アンダーライン */
.news-a__left .news-text-link {
  position: relative;
  padding-bottom: 5px;
}
.news-a__left .news-text-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform .35s ease;
}
.news-a__left .news-text-link:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

/* ── Pattern C: ヘッダーライン統合 ── */
.news-c { padding: 64px 0 80px; }
.news-c__head {
  display: flex; align-items: center;
  justify-content: space-between;
  border-top: 2px solid var(--c-navy);
  border-bottom: 1px solid var(--c-border);
  padding: 14px 0;
}
.news-c__title-group {
  display: flex; align-items: center; gap: 10px;
}
.news-c__en {
  font-family: 'Oswald', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: .28em; color: var(--c-navy);
  text-transform: uppercase;
}
.news-c__sep { color: var(--c-border); font-size: 12px; }
.news-c__ja {
  font-size: 11px; font-weight: 600;
  color: var(--c-sub); letter-spacing: .06em;
}
.news-c__list {
  max-width: none !important;
  margin-bottom: 0 !important;
}
.news-c__list .news__item:first-child { border-top: none; }

/* ── News switcher ── */
.news-switcher {
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 83;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.news-switcher.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.news-tabs__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 10px 28px rgba(19,31,52,.12);
}
.news-tab {
  width: 190px;
  text-align: left;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px; font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  background: transparent; cursor: pointer;
  color: var(--c-sub);
  transition: all .25s ease;
}
.news-tab.active {
  background: var(--c-orange); color: #fff;
  box-shadow: 0 4px 14px rgba(224,85,49,.25);
}
.news-tab--hidden {
  display: none !important;
}

/* ═══════════════════════════════════════
   BLOG
═══════════════════════════════════════ */
/* section. で限定（重要）: SWELL は body_class を <body> でなく #body_wrap に付与し、
   ホーム(blog index)の #body_wrap は class="… blog …" を持つ。素の `.blog` だと
   その div にも当たり、padding(=--sec-pad 100px)/背景が漏れてフッター下に約100pxの
   余白が出ていた（上側は spfix の #body_wrap{padding-top:0!important} で相殺され下側だけ残存）。 */
section.blog { padding: var(--sec-pad) 0; background: var(--c-bg-alt); }
/* 本体幅は他セクションと統一（.container = var(--max-w)）。1576px 上書きは撤去。 */
.blog__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.blog__title {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding-left: 102px;
}
.blog__title::before {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 6px;
  width: 1px;
  height: calc(clamp(64px, 9vw, 112px) + 10px);
  background: var(--c-orange);
  border-radius: 2px;
  transform: rotate(45deg);
  transform-origin: bottom center;
}
.blog__big-en {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(64px, 9vw, 112px);
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: .04em;
  line-height: 1;
}
.blog__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 10px;
}
.blog__sub-en {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  color: var(--c-orange);
  text-transform: uppercase;
}
.blog__sub-ja {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-sub);
}
.blog__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-bottom: 48px;
}
.blog-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.03);
  transition: all .3s ease; text-decoration: none; color: inherit;
  display: block;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
.blog-card__img {
  width: 100%; aspect-ratio: 1.618 / 1;
  overflow: hidden;
}
.blog-card__img-label { font-family: monospace; font-size: 11px; color: #bbb; }
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card__body { padding: 20px 24px 24px; background: #fcfcfc; }
.blog-card__meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 10px; }
.blog-card__date {
  font-family: 'Oswald', sans-serif; font-size: 12px;
  color: var(--c-sub); letter-spacing: .05em;
}
.blog-card__cat {
  font-size: 10px; font-weight: 700; color: #fff;
  background: var(--c-orange); border-radius: 4px;
  padding: 2px 8px; letter-spacing: .04em;
}
/* ── Blog category colors (カテゴリ slug ベース / CATEGORY_MIGRATION_PLAN §4-2) ── */
.blog-card__cat--work {
  color: #fff;
  background: #1f5fd6;     /* 青 */
}
.blog-card__cat--work-side-story {
  color: #fff;
  background: #7b57d1;     /* 紫 */
}
.blog-card__cat--daily {
  color: #fff;
  background: #16a34a;     /* 緑 */
}
.blog-card__cat--gourmet {
  color: #fff;
  background: #db2777;     /* ピンク */
}
.blog-card__cat--interview {
  color: #fff;
  background: #14b8a6;     /* ティール */
}
.blog-card__cat--expo2025 {
  color: #fff;
  background: #1e40af;     /* ネイビー */
}
.blog-card__cat--other {
  color: #fff;
  background: #eab308;
}
.blog-card__cat--archive-20260531 {
  color: #fff;
  background: #6b7280;     /* スレートグレー（過去記事受け皿） */
}
.blog-card__title { font-size: 14px; font-weight: 700; line-height: 1.65; }
.blog__more { flex-shrink: 0; }
.blog__more--sp {
  display: none;
  margin-top: 40px;
  text-align: center;
}

/* ═══════════════════════════════════════
   INSTAGRAM
═══════════════════════════════════════ */
.instagram {
  padding: var(--sec-pad) 0;
  background: var(--c-bg);
  --ig-gap: 18px;
}
.instagram__head {
  margin-bottom: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.instagram__title {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding-left: 102px;
}
.instagram__title::before {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 6px;
  width: 1px;
  height: calc(clamp(64px, 9vw, 112px) + 10px);
  background: var(--c-orange);
  border-radius: 2px;
  transform: rotate(45deg);
  transform-origin: bottom center;
}
.instagram__big-en {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(64px, 9vw, 112px);
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: .04em;
  line-height: 1;
}
.instagram__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 10px;
}
.instagram__sub-en {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  color: var(--c-orange);
  text-transform: uppercase;
}
.instagram__sub-ja {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-sub);
}
.instagram__more { flex-shrink: 0; }
.ig-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background: linear-gradient(45deg, #feda75 0%, #fa7e1e 25%, #d62976 55%, #962fbf 78%, #4f5bd5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.btn-more:hover .ig-logo {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: #fff;
}
.instagram__more--sp {
  display: none;
  margin-top: 40px;
  text-align: center;
}
.ig-marquee {
  position: relative;
  overflow: hidden;
  padding: 10px 0 6px;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.ig-marquee:hover .ig-track { animation-play-state: paused; }
.ig-track {
  display: flex;
  width: max-content;
  gap: var(--ig-gap);
  animation: igMarquee var(--ig-duration, 40s) linear infinite;
  will-change: transform;
}
.ig-card {
  width: 268px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 10px 26px rgba(19,31,52,.06);
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ig-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(19,31,52,.1);
  border-color: rgba(224,85,49,.22);
}
.ig-card__img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: repeating-linear-gradient(
    45deg, #e8e8e4 0, #e8e8e4 8px, #efefe9 8px, #efefe9 16px
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.ig-card__icon {
  width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.85);
  color: var(--c-orange);
  font-size: 20px;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}
.ig-card__img .ig-card__icon { display: none; }
.ig-card__body { padding: 14px 16px 16px; }
.ig-card__user {
  font-family: 'Montserrat', 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--c-navy);
  margin-bottom: 6px;
}
.ig-card__cap {
  font-size: 12px;
  color: var(--c-sub);
  line-height: 1.65;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@keyframes igMarquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-1 * var(--ig-half-w, 50%)), 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .ig-track { animation: none; }
  .hero__scroll::before {
    animation: none;
    background: linear-gradient(to bottom, rgba(30, 47, 77, .18), rgba(30, 47, 77, .6));
    background-size: 100% 100%;
  }
  .reveal,
  .reveal.is-revealed,
  [data-parallax],
  .recruit__inner::before,
  .recruit__inner::after {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

/* ═══════════════════════════════════════
   RECRUIT
═══════════════════════════════════════ */
.recruit { padding: var(--sec-pad) 0; }
.recruit__inner {
  background: linear-gradient(135deg, #f6f8fc 0%, #eef2fb 100%);
  border-radius: 32px; padding: 80px 88px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 48px; position: relative; overflow: hidden;
}
.recruit__inner::before {
  content: ''; position: absolute; right: -80px; bottom: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(30,47,77,.08);
}
.recruit__inner::after {
  content: ''; position: absolute; right: 80px; bottom: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(224,85,49,.18);
}
.recruit__en {
  font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: .3em; color: rgba(30,47,77,.6); text-transform: uppercase;
  display: block; margin-bottom: 12px;
}
.recruit__ja {
  font-size: 26px; font-weight: 700; color: var(--c-navy); line-height: 1.5; margin-bottom: 16px;
}
.recruit__desc { font-size: 14px; color: rgba(30,47,77,.72); line-height: 1.9; }
.recruit__btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--c-orange); color: #fff;
  font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 600;
  letter-spacing: .12em; padding: 18px 40px; border-radius: 50px;
  white-space: nowrap; flex-shrink: 0; position: relative; z-index: 1; align-self: center;
  transition: all .3s ease;
}
.recruit__btn:hover {
  background: var(--c-orange-dk);
  box-shadow: 0 8px 24px rgba(224,85,49,.4);
  transform: translateY(-2px);
}

/* CONTACT CTA: sf-contact-cta.css へ移管済み（B-1 / 2026-05-28 削除） */

/* ═══════════════════════════════════════
   SUNYY LABO / COMPLIANCE
═══════════════════════════════════════ */
.sunyy-labo {
  padding: 0 0 calc(var(--sec-pad) * .8);
}
.sunyy-labo__inner {
  border: 1px dashed rgba(30,47,77,.25);
  border-radius: 24px;
  padding: 40px 44px;
  background: rgba(255,255,255,.86);
}
.sunyy-labo__en {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: .24em;
  color: rgba(30,47,77,.58);
  display: block;
  margin-bottom: 8px;
}
.sunyy-labo__ja {
  font-size: 26px;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 8px;
}
.sunyy-labo__desc {
  font-size: 14px;
  color: rgba(30,47,77,.72);
}
.compliance {
  padding: 0 0 calc(var(--sec-pad) * .9);
}
.compliance__inner {
  border-radius: 16px;
  border: 1px solid rgba(30,47,77,.1);
  background: #fff;
  padding: 26px 30px;
}
.compliance__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 8px;
}
.compliance__desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(30,47,77,.72);
}

/* ═══════════════════════════════════════
   X SECTION
═══════════════════════════════════════ */
.x-feed {
  padding: calc(var(--sec-pad) * .75) 0 var(--sec-pad);
  background: var(--c-bg-alt);
}
.x-feed__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.x-feed__title {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding-left: 102px;
}
.x-feed__title::before {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 6px;
  width: 1px;
  height: calc(clamp(64px, 9vw, 112px) + 10px);
  background: var(--c-orange);
  border-radius: 2px;
  transform: rotate(45deg);
  transform-origin: bottom center;
}
.x-feed__en {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(64px, 9vw, 112px);
  font-weight: 700;
  line-height: 1;
  color: var(--c-navy);
  letter-spacing: .04em;
}
.x-feed__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 10px;
}
.x-feed__sub-en {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  color: var(--c-orange);
  text-transform: uppercase;
}
.x-feed__ja {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-sub);
}
.x-feed__more {
  flex-shrink: 0;
}
.x-feed__more--sp {
  display: none;
  margin-top: 40px;
  text-align: center;
}
.x-feed__posts {
  margin-top: 32px;
}
.x-feed__posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.x-feed__post {
  height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #1e2f4d #eef3fb;
  -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 78%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0, #000 78%, transparent 100%);
}
.x-feed__post .twitter-tweet {
  margin: 0 auto !important;
  max-width: 100% !important;
}
.x-feed__post::-webkit-scrollbar {
  width: 10px;
}
.x-feed__post::-webkit-scrollbar-track {
  background: #eef3fb;
  border-radius: 999px;
}
.x-feed__post::-webkit-scrollbar-thumb {
  background: #1e2f4d;
  border-radius: 999px;
  border: 2px solid #eef3fb;
}
.x-feed__post::-webkit-scrollbar-thumb:hover {
  background: #1e2f4d;
}
@media (max-width: 1024px) {
  .blog__grid { grid-template-columns: repeat(3, 1fr); }
  .blog__more { display: none; }
  .blog__more--sp { display: block; }
  .instagram__more { display: none; }
  .instagram__more--sp { display: block; }
  .x-feed__more { display: none; }
  .x-feed__more--sp { display: block; }
  .service__more { display: none; }
  .service__more--sp { display: block; }
}
@media (max-width: 1195px) {
  .x-feed__posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 959px) {
  .x-feed__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .x-feed__title {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
  }
  .x-feed__en {
    font-size: clamp(52px, 16vw, 80px);
  }
  .x-feed__title::before {
    display: none;
  }
  .x-feed__meta {
    position: relative;
    padding-bottom: 0;
    margin-left: 48px;
  }
  .x-feed__meta::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 0;
    width: 1px;
    height: calc(1.3em * 2.83);
    background: var(--c-orange);
    border-radius: 2px;
    transform: rotate(45deg);
    transform-origin: top center;
  }
  .x-feed__sub-en,
  .x-feed__ja {
    display: block;
    line-height: 1.3;
  }
}
@media (max-width: 600px) {
  .x-feed__meta {
    margin-left: 48px;
  }
  .x-feed__posts-grid {
    grid-template-columns: 1fr;
  }
  .x-feed__post:nth-child(n + 2) {
    display: none;
  }
}

/* FOOTER は sf-footer.css（全ページ enqueue）が正準。パス2で重複ブロックを削除。 */
/* TOP FAB / VIDEO WORKS FAB: sf-fab.css へ移管済み（B-1 / 2026-05-28 削除） */

/* ═══════════════════════════════════════
   MODAL
═══════════════════════════════════════ */
.sf-modal {
  display: none; position: fixed; inset: 0; z-index: 9999;
  align-items: center; justify-content: center; padding: 24px;
}
.sf-modal.is-open { display: flex; }
.sf-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(19,31,52,.5);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  animation: sfFadeIn .3s ease;
}
.sf-modal__box {
  position: relative; top: 20px; background: #fff; border-radius: 24px;
  width: 100%; max-width: 520px; max-height: 86vh; overflow-y: auto;
  z-index: 1; box-shadow: 0 32px 64px rgba(0,0,0,.14);
  animation: sfModalIn .4s cubic-bezier(.16,1,.3,1);
}
@keyframes sfFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes sfModalIn {
  from { opacity: 0; transform: scale(.95) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.sf-modal__thumb {
  width: 100%; aspect-ratio: 16/9; border-radius: 24px 24px 0 0;
  background: #f8f8f5; overflow: hidden;
}
.sf-modal__thumb-img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.sf-modal__body { padding: 32px 40px 40px; }
.sf-modal__title-row {
  display: flex; flex-direction: row; flex-wrap: nowrap; align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.sf-modal__icon-slot {
  flex: 0 0 56px;
  width: 56px;
  line-height: 0;
  margin-top: 2px;
}
.sf-modal__icon-slot lottie-player {
  display: block;
  width: 56px !important;
  height: 56px !important;
  max-width: 56px;
}
.sf-modal__titles { flex: 1 1 auto; min-width: 0; }
.sf-modal__en {
  font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 700;
  color: #333; letter-spacing: .05em; text-transform: uppercase;
  line-height: 1.2; margin-bottom: 4px;
}
.sf-modal__ja { font-size: 13px; font-weight: 500; color: var(--c-orange); margin-bottom: 0; }
.sf-modal__desc { font-size: 15px; line-height: 1.85; color: #555; margin-bottom: 28px; }
.sf-modal__actions--single { display: block; }
.sf-modal__actions--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.sf-modal__actions--grid > :last-child:nth-child(odd) { grid-column: 1 / -1; }
.sf-modal__actions--event > :last-child:nth-child(odd),
.sf-modal__actions--facility > :last-child:nth-child(odd),
.sf-modal__actions--education > :last-child:nth-child(odd) {
  grid-column: auto;
}
.sf-modal__actions--event > :first-child,
.sf-modal__actions--facility > :first-child,
.sf-modal__actions--education > :first-child,
.sf-modal__actions--tv-movie > * {
  grid-column: 1 / -1;
}
.sf-modal__link {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--c-orange); color: #fff;
  font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 600;
  letter-spacing: .1em; padding: 16px 32px; border-radius: 50px;
  transition: all .3s ease;
}
.sf-modal__link:hover {
  background: var(--c-orange-dk);
  box-shadow: 0 8px 20px rgba(224,85,49,.3);
  transform: translateY(-2px);
}
.sf-modal__action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: var(--c-orange);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.5;
  text-align: center;
  transition: all .3s ease;
}
.sf-modal__action:not(.is-disabled):hover {
  background: var(--c-orange-dk);
  box-shadow: 0 8px 20px rgba(224,85,49,.24);
  transform: translateY(-2px);
}
.sf-modal__action.is-disabled {
  background: #ece7df;
  border-color: #ddd4c9;
  color: #8c8479;
  cursor: not-allowed;
  box-shadow: none;
}
.sf-modal__action-label { display: block; }
.sf-modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; background: rgba(255,255,255,.92);
  color: #333; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; cursor: pointer; z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,.1); transition: all .2s;
}
.sf-modal__close:hover { background: #fff; transform: scale(1.08); }

/* ═══════════════════════════════════════
   TWEAKS PANEL
═══════════════════════════════════════ */
.tweaks-panel {
  display: none; position: fixed; bottom: 24px; right: 24px;
  background: #fff; border-radius: 16px; padding: 20px 22px;
  box-shadow: 0 8px 40px rgba(0,0,0,.14); z-index: 10000;
  min-width: 248px; border: 1px solid var(--c-border);
}
.tweaks-panel.is-open { display: block; }
.tweaks-panel h3 {
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: .12em; color: var(--c-navy); margin-bottom: 16px;
}
.tweak-item { margin-bottom: 14px; }
.tweak-item:last-child { margin-bottom: 0; }
.tweak-item label {
  display: block; font-size: 10px; font-weight: 700;
  color: var(--c-sub); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px;
}
.tweak-row { display: flex; gap: 6px; }
.tweak-btn {
  flex: 1; font-size: 12px; font-weight: 700; padding: 8px 6px;
  border: 2px solid var(--c-border); border-radius: 10px;
  background: #fff; cursor: pointer; color: var(--c-sub);
  transition: all .2s; font-family: 'Noto Sans JP', sans-serif;
}
.tweak-btn.active {
  border-color: var(--c-orange); color: var(--c-orange);
  background: rgba(224,85,49,.05);
}

/* ═══════════════════════════════════════
   HAMBURGER BUTTON (SP/TAB only)
═══════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: 8px;
  transition: background .2s;
  z-index: 1100;
}
.hamburger:hover { background: rgba(0,0,0,.05); }
.hamburger__line {
  display: block; width: 22px; height: 2px;
  background: var(--c-text); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
  transform-origin: center;
}
.site-header.header-mode-transparent:not(.scrolled) .hamburger__line {
  background: rgba(255,255,255,.9);
}
.hamburger.is-open .hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger__line:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-open .hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.sp-nav {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
}
.sp-nav.is-open { display: block; }
.sp-nav__overlay {
  position: absolute; inset: 0;
  background: rgba(19,31,52,.5);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  animation: sfFadeIn .25s ease;
}
.sp-nav__drawer {
  position: absolute; top: 0; right: 0;
  width: min(320px, 88vw); height: 100%;
  background: #fff; overflow-y: auto;
  padding: 92px 32px 44px;
  display: flex; flex-direction: column; gap: 0;
  line-height: 1.45;
  animation: spDrawerIn .3s cubic-bezier(.16,1,.3,1);
  box-shadow: -8px 0 32px rgba(19,31,52,.14);
}
@keyframes spDrawerIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
.sp-nav__links { list-style: none; margin: 0; padding: 0; }
.sp-nav__links li { border-bottom: 1px solid var(--c-border); }
.sp-nav__links a {
  display: flex; flex-direction: column; gap: 1px;
  padding: 14px 4px;
  font-family: 'Montserrat', 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: .1em; color: var(--c-text);
  line-height: 1.28;
  text-decoration: none; transition: color .2s;
}
.sp-nav__links a:hover { color: var(--c-orange); }
.sp-nav__link-ja {
  font-size: 10px; font-weight: 500; color: var(--c-sub); letter-spacing: .04em;
  line-height: 1.3;
}
.sp-nav__links a:hover .sp-nav__link-ja { color: var(--c-orange); }
.sp-nav__bottom {
  margin-top: 24px; display: flex; flex-direction: column; gap: 12px;
}
.sp-nav__sns { display: flex; gap: 12px; }
.sp-nav__sns a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--c-sub); transition: all .2s;
}
.sp-nav__sns a:hover { color: var(--c-orange); border-color: var(--c-orange); }
.sp-nav__contact {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--c-orange); color: #fff;
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: .1em; line-height: 1.2;
  padding: 12px 22px; border-radius: 50px;
  transition: all .3s ease;
}
.sp-nav__contact:hover { background: var(--c-orange-dk); }
.sp-nav__video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--c-navy);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.2;
  padding: 12px 22px;
  border-radius: 50px;
  transition: all .3s ease;
}
.sp-nav__video-btn:hover {
  background: var(--c-navy-dk);
}

/* ドロワー閉じる（ハンバーガーと同位置・ヘッダーより前面のため別ボタン） */
.sp-nav__close {
  display: none;
  position: fixed;
  z-index: 10;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--c-text);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s;
  -webkit-tap-highlight-color: transparent;
}
.sp-nav__close:hover {
  background: rgba(0, 0, 0, .06);
}
.sp-nav__close:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (600px ~ 959px)
═══════════════════════════════════════ */
@media screen and (max-width: 959px) {

  :root { --sec-pad: 72px; }

  .container { padding: 0 32px; }

  /* Header */
  .site-nav { display: none; }
  .hamburger { display: flex; }

  .sp-nav.is-open .sp-nav__close {
    display: flex;
  }
  .sp-nav__close {
    top: calc((86px - 42px) / 2);
    right: calc(max(0px, (100vw - min(var(--max-w), 100vw)) / 2) + 32px);
  }

  /* Hero */
  .hero { padding-bottom: 64px; }
  .hero__scroll { right: 32px; }
  .hero__header-toggle { top: calc(86px + 12px); right: 32px; bottom: auto; }

  /* About */
  .about-tabs__inner { flex-wrap: wrap; justify-content: center; }
  .about-switcher {
    position: static;
    transform: none;
    margin-bottom: 42px;
    transition: none;
  }
  .about-switcher .about-tabs__inner {
    flex-direction: row;
    border: 2px solid var(--c-border);
    border-radius: 50px;
    padding: 4px;
    box-shadow: none;
    gap: 0;
  }
  .about-switcher .about-tab {
    width: auto;
    text-align: center;
    font-size: 13px;
    padding: 10px 28px;
    border-radius: 50px;
  }

  /* Pattern A (Overlap) */
  .abt-a__img-wrap { width: 100%; }
  .abt-a__card {
    position: static;
    width: 100%;
    margin-top: 32px;
    padding: 36px 32px;
  }
  .abt-a__deco { font-size: clamp(64px, 10vw, 92px); right: 0; }

  /* Pattern B (Editorial) */
  .abt-b__body {
    grid-template-columns: 1fr;
  }
  .abt-b__header {
    padding-left: 92px;
  }
  .abt-b__header::before {
    height: calc(clamp(64px, 9vw, 112px) + 10px);
  }
  .abt-b__img-col { padding-right: 0; padding-top: 0; }
  .abt-b__text-col { padding-left: 0; padding-top: 32px; }

  /* Service */
  .sf-icon-grid { grid-template-columns: repeat(3, 1fr); gap: 36px 20px; }
  .sf-bento { grid-template-columns: repeat(3, 1fr); }
  .sf-icon-btn__shape { width: 110px; height: 110px; font-size: 36px; }
  .svc-switcher {
    position: static;
    transform: none;
    margin-bottom: 42px;
    transition: none;
  }
  .svc-tabs__inner {
    flex-direction: row;
    justify-content: center;
    border-radius: 999px;
    box-shadow: none;
    padding: 7px;
    gap: 0;
  }
  .svc-tab {
    width: auto;
    text-align: center;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: .03em;
  }

  /* Blog */
  .blog__grid { grid-template-columns: repeat(3, 1fr); }

  /* Recruit */
  .recruit__inner {
    grid-template-columns: 1fr;
    padding: 60px 52px;
    text-align: center;
  }
  .recruit__btn { align-self: center; }

  /* Contact CTA / video-works-fab タブレットルール: sf-contact-cta.css / sf-fab.css へ移管済み（B-1 / 2026-05-28 削除） */

  /* Footer は sf-footer.css（全ページ）が正準。重複削除（パス2）。 */

  /* News switcher */
  .news-switcher { display: none; }
}

/* .br-sp-only グローバルルール: sf-contact-cta.css / sf-footer.css にスコープ化済み（B-1 / 2026-05-28 削除） */

@media screen and (max-width: 767px) {
  .blog__grid { grid-template-columns: 1fr; }
}

/* NEWS: 800〜958px は左カラムを可変で徐々に狭める */
@media screen and (min-width: 799px) and (max-width: 958px) {
  .news-a__inner {
    grid-template-columns: clamp(132px, 17.5vw, 180px) 1fr;
  }
  .news-a__left {
    padding-right: clamp(24px, 3.2vw, 48px);
  }
  .news-a__list {
    padding-left: clamp(20px, 3vw, 48px);
  }
}

/* NEWS: 799px 以下は1カラム */
@media screen and (max-width: 798px) {
  .news__item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 8px 12px;
    align-items: center;
  }
  .news__date { grid-column: 1; grid-row: 1; }
  .news__tag { grid-column: 2; grid-row: 1; justify-self: start; }
  .news__title {
    grid-column: 1 / -1;
    grid-row: 2;
    width: auto;
    flex: none;
    text-align: left;
  }
  .news-a__inner {
    grid-template-columns: 1fr;
  }
  .news-a__left {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    gap: 0 10px;
    border-right: none;
    border-bottom: 1px solid var(--c-border);
    padding-right: 0;
    padding-bottom: 16px;
  }
  .news-a__en {
    margin-bottom: 0;
    line-height: 1;
  }
  .news-a__ja {
    margin-bottom: 0;
    line-height: 1;
    justify-self: start;
    align-self: end;
  }
  .news-a__left .news-text-link {
    grid-column: 3;
    grid-row: 1;
    margin-top: 0;
    margin-right: 4px;
    justify-self: end;
    align-self: end;
    padding-bottom: 0;
  }
  .news-a__left .news-text-link::after {
    display: none;
  }
  .news-a__list {
    padding-left: 0;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMARTPHONE (≤ 599px)
═══════════════════════════════════════ */
@media screen and (max-width: 599px) {

  :root { --sec-pad: 56px; }

  /* .br-sp-only / .contact-cta__ja-midot--sp-hide SP ルール: sf-contact-cta.css / sf-footer.css へ移管済み（B-1 / 2026-05-28 削除） */

  .container { padding: 0 20px; }

  /* News switcher: スマホ時はセクション内タブとして表示 */
  .news-switcher {
    display: block;
    position: static;
    top: auto;
    right: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-bottom: 18px;
  }
  .news-switcher .pattern-switch-note {
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 1.45;
  }
  .news-switcher .news-tabs__inner {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    border-radius: 12px;
    padding: 6px;
    box-shadow: none;
  }
  .news-switcher .news-tab {
    width: calc(50% - 3px);
    text-align: center;
    font-size: 11px;
    padding: 9px 8px;
    border-radius: 8px;
  }
  .news-a__en {
    font-size: 26px;
  }

  /* Header */
  .site-header { height: 68px; }
  #news { scroll-margin-top: calc(68px + 16px); }
  .site-logo img { height: 42px; }
  .hamburger {
    display: flex;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .hamburger__line { width: 20px; background: #111; }
  .site-header.header-mode-white .hamburger {
    background: transparent;
  }
  .site-header.header-mode-white .hamburger__line { background: #111; }

  /* Hero */
  .hero { height: 40vh; min-height: 240px; padding-bottom: 56px; }
  /* SCROLL 用の余白（absolute のため本文高に含まれず重なっていた） */
  .hero__content {
    transform: translateY(-14px);
    padding-bottom: 64px;
  }
  .hero__scroll { right: 20px; display: none; } /* スマホでは SCROLL を非表示 */
  /* 透明/白：ハンバーガー直下付近へ（SCROLL と干渉しない） */
  .hero__header-toggle {
    top: calc(68px + 10px);
    right: 20px;
    bottom: auto;
    left: auto;
  }
  .hero__en-sides { display: none; }
  .hero__en-side { display: none; }
  .hero__en {
    display: none;
    letter-spacing: .01em;
  }
  .hero__ja {
    margin-bottom: 20px;
    font-size: calc(clamp(14px, 1.4vw, 17px) - 2px);
  }

  /* Sec head */
  .sec-head { margin-bottom: 44px; }
  .sec-head__ja { font-size: 24px; }

  /* About tabs */
  .about-tabs { margin-bottom: 44px; }
  .about-tabs__inner { flex-direction: column; border-radius: 16px; }
  .about-tab { padding: 10px 20px; border-radius: 12px; }
  .about-switcher {
    position: static;
    transform: none;
    margin-bottom: 34px;
  }
  .about-switcher .about-tabs {
    margin-bottom: 0;
  }
  .about-switcher .about-tabs__inner {
    border: 2px solid var(--c-border);
    border-radius: 16px;
    padding: 4px;
    box-shadow: none;
    gap: 0;
  }
  .about-switcher .about-tab {
    width: auto;
    text-align: center;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 12px;
  }

  /* Pattern A */
  .abt-a__card { padding: 28px 24px; }
  .abt-a__accent { width: 60px; height: 60px; bottom: -16px; right: -16px; border-radius: 12px; }

  /* Pattern B */
  .abt-b__big-en { font-size: clamp(52px, 16vw, 80px); }
  .abt-b__header { gap: 16px; }
  .abt-b__header {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
  }
  .abt-b__header::before {
    display: none;
  }
  .abt-b__sub-en,
  .abt-b__sub-ja { display: block; line-height: 1.3; }
  .abt-b__header-meta {
    position: relative;
    padding-bottom: 0;
    padding-left: 0;
    margin-left: 48px;
  }
  .abt-b__header-meta::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 0;
    width: 1px;
    height: calc(1.3em * 2.83);
    background: var(--c-orange);
    border-radius: 2px;
    transform: rotate(45deg);
    transform-origin: top center;
  }
  .instagram__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .instagram__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-left: 0;
  }
  .instagram__big-en { font-size: clamp(52px, 16vw, 80px); }
  .instagram__title::before {
    display: none;
  }
  .instagram__meta {
    position: relative;
    padding-bottom: 0;
    padding-left: 0;
    margin-left: 48px;
  }
  .instagram__meta::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 0;
    width: 1px;
    height: calc(1.3em * 2.83);
    background: var(--c-orange);
    border-radius: 2px;
    transform: rotate(45deg);
    transform-origin: top center;
  }
  .instagram__sub-en,
  .instagram__sub-ja { display: block; line-height: 1.3; }
  .service__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-left: 0;
  }
  .service__big-en { font-size: clamp(52px, 16vw, 80px); line-height: .95; }
  .service__title::before {
    display: none;
  }
  .service__meta {
    position: relative;
    padding-bottom: 0;
    padding-left: 0;
    margin-left: 48px;
  }
  .service__meta::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 0;
    width: 1px;
    height: calc(1.3em * 2.83);
    background: var(--c-orange);
    border-radius: 2px;
    transform: rotate(45deg);
    transform-origin: top center;
  }
  .service__sub-en,
  .service__sub-ja { display: block; line-height: 1.3; }
  .service__rule { margin-bottom: 32px; }
  .blog__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-left: 0;
  }
  .blog__big-en { font-size: clamp(52px, 16vw, 80px); line-height: .95; }
  .blog__title::before {
    display: none;
  }
  .blog__meta {
    position: relative;
    padding-bottom: 0;
    padding-left: 0;
    margin-left: 48px;
  }
  .blog__meta::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 0;
    width: 1px;
    height: calc(1.3em * 2.83);
    background: var(--c-orange);
    border-radius: 2px;
    transform: rotate(45deg);
    transform-origin: top center;
  }
  .blog__sub-en,
  .blog__sub-ja { display: block; line-height: 1.3; }
  .blog__more { display: none; }
  .blog__more--sp { display: block; }

  /* Service tabs */
  .svc-tabs__inner { flex-direction: column; border-radius: 16px; }
  .svc-tab { padding: 10px 20px; border-radius: 12px; }

  /* Service Pattern A */
  .sf-icon-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .sf-icon-btn__shape { width: 88px; height: 88px; font-size: 28px; }
  .sf-icon-btn__en { font-size: 14px; }

  /* Service Pattern B/C Bento */
  .sf-bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
  .size-lg { grid-column: span 2; grid-row: span 1; }
  .size-wd { grid-column: span 2; flex-direction: column; gap: 12px; }
  .size-sq { grid-column: span 1; }
  .sf-bento__card { padding: 20px 18px; }
  .sf-bento__card--hero .sf-bento__en { font-size: 18px; }
  #panel-b .sf-bento__card--hero .sf-bento__icon { font-size: 32px; }
  /* ベントグリッド1・2：アイコンとタイトルをセンター */
  #panel-b .sf-bento__card,
  #panel-c .sf-bento__card {
    text-align: center;
    align-items: center;
  }
  #panel-b .sf-bento__card.size-wd,
  #panel-c .sf-bento__card.size-wd {
    align-items: center;
  }

  /* News：1行目＝日付＋カテゴリー、2行目＝タイトル */
  .news__item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 8px 12px;
    align-items: center;
  }
  .news__date { grid-column: 1; grid-row: 1; }
  .news__tag { grid-column: 2; grid-row: 1; justify-self: start; }
  .news__title {
    grid-column: 1 / -1;
    grid-row: 2;
    width: auto;
    flex: none;
    text-align: left;
  }

  /* News Panel A：縦積み */
  .news-a__inner {
    grid-template-columns: 1fr;
  }
  .news-a__left {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    gap: 0 10px;
    border-right: none;
    border-bottom: 1px solid var(--c-border);
    padding-right: 0;
    padding-bottom: 16px;
  }
  .news-a__en {
    margin-bottom: 0;
    line-height: 1;
  }
  .news-a__ja {
    margin-bottom: 0;
    line-height: 1;
    justify-self: start;
    align-self: end;
  }
  .news-a__left .news-text-link {
    grid-column: 3;
    grid-row: 1;
    margin-top: 0;
    margin-right: 4px;
    justify-self: end;
    align-self: end;
    padding-bottom: 0;
  }
  .news-a__left .news-text-link::after {
    display: none;
  }
  .news-a__list {
    padding-left: 0;
  }

  /* News Panel B：3段構成（上段=NEWS+VIEW MORE / 中段=日付+カテゴリ / 下段=タイトル） */
  .news-b__bar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    row-gap: 10px;
    min-height: 0;
    padding: 12px 0;
  }
  .news-b__label {
    border-right: none;
    padding: 0;
    line-height: 1;
    grid-column: 1;
    grid-row: 1;
  }
  .news-b__more {
    border-left: none;
    padding: 0;
    margin-right: 4px;
    font-size: 10px;
    gap: 6px;
    line-height: 1;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  .news-b__ticker {
    grid-column: 1 / -1;
    grid-row: 2;
    overflow: visible;
  }
  .news-b__item {
    position: static;
    inset: auto;
    display: none;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 8px 10px;
    padding: 0;
    opacity: 1;
    transition: none;
    pointer-events: none;
  }
  .news-b__item.is-active {
    display: grid;
    pointer-events: auto;
  }
  .news-b__item .news-b__date {
    grid-column: 1;
    grid-row: 1;
  }
  .news-b__item .news__tag {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }
  .news-b__item .news-b__title {
    grid-column: 1 / -1;
    grid-row: 2;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  /* Blog */
  .blog__grid { grid-template-columns: 1fr; }

  /* Recruit：本文は左寄せ、英日見出しのみ中央 */
  .recruit__inner {
    padding: 48px 28px;
    border-radius: 24px;
    text-align: left;
  }
  .recruit__en,
  .recruit__ja { text-align: center; }
  .recruit__ja { font-size: 20px; }
  .recruit__btn { align-self: flex-start; }

  /* Contact CTA SP ルール: sf-contact-cta.css へ移管済み（B-1 / 2026-05-28 削除） */
  .sunyy-labo__inner,
  .compliance__inner { padding: 24px 20px; }
  .sunyy-labo__ja { font-size: 22px; }
  .compliance__title { font-size: 17px; }
  .about__actions .btn-more {
    width: 100%;
    min-width: 0;
  }

  /* Footer（SP）は sf-footer.css（全ページ）が正準。重複削除（パス2）。 */

  /* Modal */
  .sf-modal__body { padding: 24px 24px 32px; }
  .sf-modal__en { font-size: 22px; }
  .sf-modal__title-row { gap: 10px; }
  .sf-modal__icon-slot {
    flex-basis: 48px;
    width: 48px;
  }
  .sf-modal__icon-slot lottie-player {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px;
  }
  .sf-modal__actions--grid { gap: 10px; }
  .sf-modal__action {
    min-height: 54px;
    padding: 14px 14px;
    font-size: 13px;
  }
  .sf-modal__actions--event > :nth-child(2) .sf-modal__action-label,
  .sf-modal__actions--event > :nth-child(3) .sf-modal__action-label {
    font-size: 0;
    line-height: 0;
  }
  .sf-modal__actions--event > :nth-child(2) .sf-modal__action-label::before,
  .sf-modal__actions--event > :nth-child(3) .sf-modal__action-label::before {
    display: block;
    font-size: 13px;
    line-height: 1.35;
    white-space: pre-line;
  }
  .sf-modal__actions--event > :nth-child(2) .sf-modal__action-label::before {
    content: "オンライン\Aイベント";
  }
  .sf-modal__actions--event > :nth-child(3) .sf-modal__action-label::before {
    content: "展示会\A講演会";
  }

  /* ドロワー：TOPボタンより前面（モーダル9999より下） */
  .sp-nav { z-index: 9600; }

  .sp-nav__close {
    top: calc((68px - 42px) / 2);
    right: calc(max(0px, (100vw - min(var(--max-w), 100vw)) / 2) + 20px);
  }

  /* TOP FAB / VIDEO WORKS FAB レスポンシブ: sf-fab.css へ移管済み（B-1 / 2026-05-28 削除） */
}

/* TOP FAB SP 円形化（@media 599px）: sf-fab.css へ移管済み（B-1 / 2026-05-28 削除） */

@media screen and (min-width: 661px) and (max-width: 959px) {
  .abt-b__header {
    align-items: flex-end;
    flex-direction: row;
    gap: 28px;
    padding-left: 102px;
  }
  .abt-b__header::before {
    display: block;
  }
  .abt-b__header-meta {
    position: static;
    padding-bottom: 10px;
    padding-left: 0;
    margin-left: 0;
  }
  .abt-b__header-meta::before {
    content: none;
  }
  .service__title,
  .blog__title {
    flex-direction: row;
    align-items: flex-end;
    gap: 18px;
    padding-left: 102px;
  }
  .service__title::before,
  .blog__title::before {
    display: block;
  }
  .service__meta,
  .blog__meta {
    position: static;
    padding-bottom: 10px;
    padding-left: 0;
    margin-left: 0;
  }
  .service__meta::before,
  .blog__meta::before {
    content: none;
  }
  .abt-b__big-en,
  .service__big-en,
  .blog__big-en,
  .instagram__big-en,
  .x-feed__en {
    font-size: 64px;
  }
  .instagram__head,
  .x-feed__head {
    align-items: flex-end;
    flex-direction: row;
    gap: 24px;
  }
  .instagram__title,
  .x-feed__title {
    flex-direction: row;
    align-items: flex-end;
    gap: 18px;
    padding-left: 102px;
  }
  .instagram__title::before,
  .x-feed__title::before {
    display: block;
  }
  .instagram__meta,
  .x-feed__meta {
    position: static;
    padding-bottom: 10px;
    padding-left: 0;
    margin-left: 0;
  }
  .x-feed__meta {
    padding-bottom: 16px;
  }
  .instagram__meta::before,
  .x-feed__meta::before {
    content: none;
  }
}

@media screen and (max-width: 660px) {
  .abt-b__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-left: 0;
  }
  .abt-b__header::before {
    display: none;
  }
  .abt-b__header-meta {
    position: relative;
    padding-bottom: 0;
    padding-left: 0;
    margin-left: 48px;
  }
  .abt-b__header-meta::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 0;
    width: 1px;
    height: calc(1.3em * 2.83);
    background: var(--c-orange);
    border-radius: 2px;
    transform: rotate(45deg);
    transform-origin: top center;
  }
  .abt-b__big-en,
  .service__big-en,
  .blog__big-en,
  .instagram__big-en,
  .x-feed__en {
    font-size: 52px;
  }
  .instagram__head,
  .x-feed__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .service__title,
  .blog__title,
  .instagram__title,
  .x-feed__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-left: 0;
  }
  .service__title::before,
  .blog__title::before,
  .instagram__title::before,
  .x-feed__title::before {
    display: none;
  }
  .service__meta,
  .blog__meta,
  .instagram__meta,
  .x-feed__meta {
    position: relative;
    padding-bottom: 0;
    margin-left: 48px;
  }
  .abt-b__header-meta,
  .service__meta,
  .blog__meta,
  .instagram__meta {
    position: relative;
    padding-bottom: 0;
    margin-left: 48px;
  }
  .abt-b__sub-en,
  .abt-b__sub-ja,
  .service__sub-en,
  .service__sub-ja,
  .blog__sub-en,
  .blog__sub-ja,
  .instagram__sub-en,
  .instagram__sub-ja,
  .x-feed__sub-en,
  .x-feed__ja {
    display: block;
    line-height: 1.3;
  }
  .abt-b__header-meta::before,
  .service__meta::before,
  .blog__meta::before,
  .instagram__meta::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 0;
    width: 1px;
    height: calc(1.3em * 2.83);
    background: var(--c-orange);
    border-radius: 2px;
    transform: rotate(45deg);
    transform-origin: top center;
  }
  .service__meta::before,
  .blog__meta::before,
  .instagram__meta::before,
  .x-feed__meta::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 0;
    width: 1px;
    height: calc(1.3em * 2.83);
    background: var(--c-orange);
    border-radius: 2px;
    transform: rotate(45deg);
    transform-origin: top center;
  }
}

/* ═══════════════════════════════════════
   SUNNY LABO / CONTACT CTA FULL / FOOTER BOTTOM
   （旧 sunny-labo.css を統合：この1ファイルだけ読み込んでも反映）
═══════════════════════════════════════ */

/* フルワイド版のみ（仮置き .sunyy-labo 単体ページは上のスタブを維持） */
.sunyy-labo--full {
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, #fff8ec 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 50%, #fdf3eb 0%, transparent 60%),
    var(--c-bg);
}
.sunyy-labo--full .sunyy-labo__inner {
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 0;
  text-align: left;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 64px;
  padding-right: 64px;
}

/* 2カラム：左テキスト / 右ビジュアル */
.sl-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
  position: relative;
}

/* ── 左カラム ───────────────────────── */
section.sunyy-labo .sl-text { padding: 24px 0; max-width: 540px; }

section.sunyy-labo .sl-text__eyebrow {
  position: relative;
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: .04em;
  padding: 10px 18px 10px 16px;
  margin: 0 0 28px;
}
section.sunyy-labo .sl-text__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: var(--c-orange);
  border-radius: 2px;
}

section.sunyy-labo .sl-text__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.55;
  letter-spacing: .02em;
  margin: 0 0 28px;
  padding-left: 16px;
}

section.sunyy-labo .sl-text__desc {
  font-size: 15px;
  font-weight: 500;
  color: rgba(30,47,77,.78);
  line-height: 2;
  margin: 0 0 36px;
  padding-left: 16px;
}

section.sunyy-labo .sl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-left: 16px;
}
.sl-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  letter-spacing: .04em;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  box-shadow: 0 6px 14px rgba(30,47,77,.06);
  border: none;
}
.sl-btn--orange { background: #ee6d4d; }
.sl-btn--yellow { background: #f5b937; }
.sl-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 12px 22px rgba(30,47,77,.12);
}
.sl-btn .sl-btn__ext {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
}
.sl-btn .sl-btn__ext svg { width: 100%; height: 100%; display: block; }

/* ── 右カラム ───────────────────────── */
.sl-visual {
  position: relative;
  aspect-ratio: 1144 / 717;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
.sl-visual__cloud {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 18px 30px rgba(30,47,77,.06));
}
.sl-visual__cloud-img {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #ffffff;
  -webkit-mask: url("../img/sunnylabo/kv_logo_bg.svg") center / contain no-repeat;
          mask: url("../img/sunnylabo/kv_logo_bg.svg") center / contain no-repeat;
}
.sl-visual__logo {
  position: absolute;
  left: 12%;
  top: 28%;
  width: 62%;
  height: auto;
  z-index: 2;
  animation: sl-logo-float 5s ease-in-out infinite;
}
.sl-visual__sun {
  position: absolute;
  right: -2%;
  top: 4%;
  width: 36%;
  height: auto;
  z-index: 3;
  animation: sl-sun-float 4s ease-in-out infinite;
}
@keyframes sl-sun-float {
  0%, 100% { transform: translateY(0) rotate(0) scale(1); }
  50%      { transform: translateY(-12px) rotate(-5deg) scale(1.04); }
}

/* ── 装飾 ───────────────────────── */
.sl-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.sl-deco svg { display: block; width: 100%; height: 100%; overflow: visible; }

.sl-deco--squiggle-orange { top: 12%;   left: 6%;   width: 70px;  color: #f5a83a; }
.sl-deco--squiggle-teal   { top: -1%;   left: 50%;  width: 38px;  color: #2c8a8a; transform: rotate(8deg); }
.sl-deco--squiggle-yellow { bottom: 18%; right: -4%; width: 60px; color: #f5b937; }

.sl-deco--bars-yellow     { top: 4%;    right: 27%; width: 48px;  color: #f5b937; }
.sl-deco--bars-green-sm   { top: 4%;    left: 32%;  width: 14px;  color: #6db551; }
.sl-deco--bars-orange-sm  { bottom: 28%; left: 5%;  width: 22px;  color: #ee6d4d; }

.sl-deco--half-orange     { top: 10%;   left: 38%;  width: 36px;  color: #ee8e6d; }
.sl-deco--half-teal       { bottom: 8%;  left: 32%; width: 36px;  color: #2c8a8a; transform: rotate(-30deg); }
.sl-deco--half-orange-sm  { bottom: 8%;  right: 6%;  width: 26px;  color: #ee8e6d; }

.sl-deco--ring-yellow     { bottom: 8%;  left: 18%; width: 60px;  color: #f5b937; }
.sl-deco--ring-green      { bottom: 46%; left: -3%; width: 70px;  color: #6db551; }
.sl-deco--ring-pink       { bottom: 5%;  right: 30%; width: 60px; color: #ee8e6d; }

.sl-deco--dot-green-1     { top: 2%;    left: 14%;  width: 10px; color: #6db551; }
.sl-deco--dot-green-2     { top: 22%;   left: 22%;  width: 8px;  color: #6db551; }
.sl-deco--dot-green-3     { bottom: 12%; right: 18%; width: 9px; color: #6db551; }
.sl-deco--dot-orange-1    { bottom: 24%; right: 12%; width: 8px; color: #ee6d4d; }

.sl-deco--float    { animation: sl-float 4s ease-in-out infinite; }
.sl-deco--float-2  { animation: sl-float 5.5s ease-in-out infinite -1.5s; }
.sl-deco--float-3  { animation: sl-float 7s ease-in-out infinite -3s; }
@keyframes sl-float {
  0%, 100% { transform: translate(0, 0) rotate(var(--r, 0deg)); }
  50%      { transform: translate(0, -16px) rotate(calc(var(--r, 0deg) + 7deg)); }
}
@keyframes sl-logo-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-12px) scale(1.018); }
}

/* .contact-cta--full モディファイア: sf-contact-cta.css へ移管済み（B-1 / 2026-05-28 削除） */

/* FOOTER 最下行（bottom / compliance / copyright）は sf-footer.css が正準。重複削除（パス2）。 */

@media (max-width: 980px) {
  .sl-grid { grid-template-columns: 1fr; gap: 40px; }
  section.sunyy-labo .sl-text { padding: 0; max-width: none; }
  section.sunyy-labo .sl-text__title { font-size: 26px; }
  .sl-visual { max-width: 520px; }
  .sunyy-labo--full .sunyy-labo__inner { padding-left: 32px; padding-right: 32px; }
  /* .contact-cta--full @980px: sf-contact-cta.css へ移管済み（B-1 / 2026-05-28 削除） */
}

@media (max-width: 600px) {
  .sunyy-labo--full { padding: 56px 0 72px; }
  .sunyy-labo--full .sunyy-labo__inner { padding-left: 24px; padding-right: 24px; }
  section.sunyy-labo .sl-text__title { font-size: 22px; line-height: 1.5; }
  section.sunyy-labo .sl-text__desc { font-size: 14px; line-height: 1.9; }
  .sl-btn { padding: 14px 22px; font-size: 14px; gap: 10px; flex: 1 1 auto; justify-content: center; }
  section.sunyy-labo .sl-actions { gap: 10px; }
  .sl-deco--dot-green-2,
  .sl-deco--dot-orange-1,
  .sl-deco--bars-green-sm,
  .sl-deco--half-orange-sm,
  .sl-deco--squiggle-teal,
  .sl-deco--ring-pink,
  .sl-deco--half-teal,
  .sl-deco--bars-yellow,
  .sl-deco--squiggle-yellow,
  .sl-deco--ring-green { display: none; }

  /* .contact-cta--full @600px: sf-contact-cta.css へ移管済み（B-1 / 2026-05-28 削除） */
}

/* ═══════════════════════════════════════
   SUNDAY TIMES + RECRUIT セクション（front-page）
   Step 10-9 パス2: 旧 sunday-times-recruit.css を統合（CPT 用 sf-stimes.css とは別物）。
═══════════════════════════════════════ */
/* ═══════════════════════════════════════
   SUNDAY TIMES (newsletter section)
═══════════════════════════════════════ */
.stimes {
  padding: var(--sec-pad) 0 calc(var(--sec-pad) * .75);
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}
.stimes::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(30,47,77,.08) 1px, transparent 1.2px);
  background-size: 22px 22px;
  background-position: 0 0;
  opacity: .35;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,0) 70%);
}

/* ── Masthead ── */
.stimes__masthead {
  position: relative;
  margin-bottom: 56px;
  padding-top: 12px;
}
.stimes__eyebrow {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  position: relative;
  padding-bottom: 18px;
  border-bottom: 0;
}
.stimes__eyebrow::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 7px;
  background:
    linear-gradient(var(--c-navy), var(--c-navy)) 0 0 / 100% 1px no-repeat,
    linear-gradient(var(--c-navy), var(--c-navy)) 0 5px / 100% 2px no-repeat;
}
.stimes__eyebrow-ja {
  font-size: 12px; letter-spacing: .08em; color: var(--c-navy); font-weight: 600;
}
.stimes__eyebrow-sp-break { display: none; }
.stimes__eyebrow-mark {
  width: 36px; height: 36px; flex-shrink: 0;
  color: var(--c-orange);
}
.stimes__eyebrow-mark svg { width: 100%; height: 100%; }
.stimes__title {
  margin: 16px 0 20px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: .9;
  color: var(--c-navy);
  font-size: clamp(58px, 11.5vw, 155px);
  text-transform: uppercase;
  font-stretch: condensed;
}
.stimes__title-text {
  display: inline-block;
  white-space: nowrap;
  background-image:
    repeating-linear-gradient(125deg,
      rgba(250,250,248,0) 0,
      rgba(250,250,248,0) 8px,
      rgba(250,250,248,.65) 8px,
      rgba(250,250,248,.65) 9px);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--c-navy);
  filter: contrast(1.05);
  position: relative;
}
.stimes__rule {
  display: grid; gap: 4px;
  margin: 12px 0 16px;
}
.stimes__rule span {
  display: block; height: 2px; background: var(--c-navy);
}
.stimes__rule span:last-child { height: 1px; }
.stimes__meta {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
  font-size: 12px; letter-spacing: .06em;
  color: var(--c-navy);
}
.stimes__meta-en {
  font-family: 'Oswald', sans-serif; font-weight: 500;
  letter-spacing: .22em;
}
.stimes__meta-ja {
  font-size: 12px; color: rgba(30,47,77,.72); font-weight: 500;
  text-align: right; max-width: 60%;
}

/* ── Layout ── */
.stimes__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 48px;
  align-items: stretch;
}

/* ── Feature (latest issue) ── */
.stimes__feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 28px;
  padding: 28px 28px 28px 28px;
  background: #fefcf6;
  border: 1px solid rgba(30,47,77,.16);
  box-shadow:
    0 1px 0 rgba(30,47,77,.05),
    0 18px 40px -22px rgba(30,47,77,.18);
  transition: transform .35s ease, box-shadow .35s ease;
}
.stimes__feature::before {
  content: '';
  position: absolute; inset: 6px;
  border: 1px solid rgba(30,47,77,.08);
  pointer-events: none;
}
.stimes__feature:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(30,47,77,.05),
    0 28px 50px -22px rgba(30,47,77,.28);
}
.stimes__feature-badge {
  position: absolute; top: -14px; left: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: var(--c-orange); color: #fff;
  font-family: 'Oswald', sans-serif; font-weight: 600;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(224,85,49,.25);
}
.stimes__feature-badge-en {
  font-size: 12px; letter-spacing: .22em;
}
.stimes__feature-badge-ja {
  font-size: 11px; letter-spacing: .12em;
  border-left: 1px solid rgba(255,255,255,.55);
  padding-left: 10px;
  font-family: 'Noto Sans JP', sans-serif;
}
.stimes__feature-cover {
  position: relative;
  display: block;
  margin-top: 17px;
  background: #1a1a1a;
  overflow: hidden;
  box-shadow: 0 12px 30px -16px rgba(0,0,0,.45);
  aspect-ratio: 1 / 1.414;
}
.stimes__feature-cover img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform .6s ease;
}
.stimes__feature:hover .stimes__feature-cover img { transform: scale(1.03); }
.stimes__feature-body {
  display: flex; flex-direction: column; gap: 12px;
  align-self: center;
  padding: 8px 4px 8px 4px;
}
.stimes__feature-no {
  /* 英字=Oswald（現状維持）／日本語はサイトデフォルト(Noto Sans JP)へフォールバック・bold */
  font-family: 'Oswald', 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  font-size: 44px; font-weight: 700;
  letter-spacing: .02em;
  color: var(--c-navy); line-height: 1;
}
.stimes__feature-dateline {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(30,47,77,.18);
}
.stimes__feature-date {
  font-family: 'Oswald', sans-serif;
  font-size: 13px; letter-spacing: .26em;
  color: var(--c-orange); font-weight: 600;
}
.stimes__feature-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 10px; letter-spacing: .18em; font-weight: 600;
  padding: 3px 8px;
  border: 1px solid var(--c-orange);
  color: var(--c-orange);
  white-space: nowrap;
}
.stimes__feature-headline {
  font-size: 21px; font-weight: 700;
  line-height: 1.55; color: var(--c-navy);
  text-wrap: pretty;
}
.stimes__feature-excerpt {
  font-size: 13.5px; line-height: 1.9;
  color: rgba(30,47,77,.78);
  font-weight: 500;
  text-wrap: pretty;
}
.stimes__feature-cta {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 8px;
  padding: 14px 22px;
  background: #ffc039; color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px; letter-spacing: .2em; font-weight: 600;
  align-self: flex-start;
  transition: background .25s, gap .25s;
}
.stimes__feature:hover .stimes__feature-cta {
  background: #ffc039; gap: 16px;
}

/* ── Sidebar (back numbers) ── */
.stimes__side {
  display: flex; flex-direction: column;
  background: var(--c-navy);
  color: #fff;
  padding: 32px 28px;
  position: relative;
}
.stimes__side::before {
  content: '';
  position: absolute; inset: 8px;
  border: 1px solid rgba(255,255,255,.12);
  pointer-events: none;
}
.stimes__side-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.2);
  margin-bottom: 4px;
}
.stimes__side-en {
  font-family: 'Oswald', sans-serif;
  font-size: 18px; font-weight: 600; letter-spacing: .28em;
}
.stimes__side-ja {
  font-size: 11px; letter-spacing: .12em; color: rgba(255,255,255,.65);
}
.stimes__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  flex: 1;
}
.stimes__item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  grid-template-areas:
    "no   meta tag"
    "title title title";
  gap: 4px 14px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(255,255,255,.15);
  transition: padding .25s ease, color .25s ease;
}
.stimes__item:hover { padding-left: 8px; }
.stimes__item-no {
  grid-area: no;
  /* 英字=Oswald（現状維持）／日本語はサイトデフォルト(Noto Sans JP)へフォールバック・bold */
  font-family: 'Oswald', 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  font-size: 17px; font-weight: 700; letter-spacing: .04em;
  color: #fff;
}
.stimes__item-meta {
  grid-area: meta;
  font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: .2em;
  color: rgba(255,255,255,.55);
}
.stimes__item-tag {
  grid-area: tag; justify-self: end;
  font-family: 'Oswald', sans-serif;
  font-size: 10px; letter-spacing: .18em; font-weight: 600;
  padding: 3px 8px;
  border: 1px solid var(--c-orange);
  color: var(--c-orange);
}
.stimes__item.is-coming .stimes__item-tag {
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.55);
}
.stimes__item.is-coming { opacity: .65; }
.stimes__item-title {
  grid-area: title;
  font-size: 13px; font-weight: 600; line-height: 1.6;
  color: rgba(255,255,255,.88);
  margin-top: 4px;
}
.stimes__item:hover .stimes__item-title { color: var(--c-orange); }

.stimes__archive {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.4);
  font-family: 'Oswald', sans-serif;
  transition: background .25s, border-color .25s, gap .25s;
}
.stimes__archive-en {
  font-size: 13px; letter-spacing: .22em; font-weight: 600; color: #fff;
}
.stimes__archive-ja {
  font-size: 11px; letter-spacing: .12em; color: rgba(255,255,255,.6);
  margin-left: auto;
  font-family: 'Noto Sans JP', sans-serif;
}
.stimes__archive .c-arrow {
  margin-left: 10px;
}
.stimes__archive:hover {
  background: var(--c-orange); border-color: var(--c-orange);
}
.stimes__archive:hover .stimes__archive-ja { color: rgba(255,255,255,.9); }

/* ═══════════════════════════════════════
   RECRUIT — broken asymmetric layout
═══════════════════════════════════════ */
.recruit--broken {
  background: #fff;
  padding: var(--sec-pad) 0;
  position: relative;
  overflow: hidden;
}
.recruit--broken::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: max(20%, calc((100% - var(--max-w)) / 2 + 180px));
  background: var(--c-bg-alt);
  pointer-events: none;
  z-index: 0;
}
.recruit--broken .container {
  position: relative;
  z-index: 1;
  max-width: calc(var(--max-w) + 96px);
}
.recruit--broken .recruit__broken {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(20px, 3.8vw, 56px);
  align-items: center;
  padding: 24px 24px 24px 40px;
  min-height: 560px;
}

/* Vertical rail label */
.recruit__vrail {
  position: absolute;
  left: clamp(-64px, calc(-4vw - 8px), -44px); top: 0; bottom: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: .42em; font-weight: 600;
  color: rgba(30,47,77,.4);
  display: flex; align-items: center;
  padding: 24px 0;
}
.recruit__vrail::before,
.recruit__vrail::after {
  content: '';
  display: block;
  width: 1px;
  background: rgba(30,47,77,.25);
  flex: 1;
  margin: 12px auto;
}

/* Background number */
.recruit__bg-num {
  position: absolute;
  right: -32px; top: 50%;
  transform: translateY(calc(-50% - 220px));
  font-family: 'Oswald', sans-serif;
  font-size: clamp(120px, 14vw, 255px);
  font-weight: 700;
  color: #f2f2f2;
  opacity: 1;
  line-height: 1;
  letter-spacing: -.03em;
  pointer-events: none;
  z-index: 1;
}

/* Visuals column */
.recruit__visuals {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 560px;
  margin-left: clamp(-56px, -4vw, -36px);
}
.recruit__ph {
  position: absolute;
  background: linear-gradient(135deg, #e8ecf3 0%, #d8dee9 100%);
  border: 1px solid rgba(30,47,77,.12);
  overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: flex-end;
}
.recruit__ph--main {
  position: relative;
  width: min(100%, 520px);
  height: auto;
  aspect-ratio: 1 / 1;
}
.recruit__ph-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.recruit__ph-cap {
  position: absolute; inset: 0;
  z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
  text-align: center;
}
.recruit__ph-cap-mono {
  font-family: 'Oswald', 'Courier New', monospace;
  font-size: 12px; letter-spacing: .26em;
  color: rgba(30,47,77,.58);
  text-transform: uppercase;
}
.recruit__ph-cap-jp {
  font-size: 11px; letter-spacing: .12em;
  color: rgba(30,47,77,.5);
}
.recruit__ph-tag {
  position: absolute; left: 14px; top: 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: .22em; font-weight: 600;
  color: var(--c-navy);
  background: rgba(250,250,248,.92);
  padding: 6px 10px;
  z-index: 2;
}
.recruit__ph-tag--invert {
  color: #fff;
  background: var(--c-orange);
}

/* Cross + dot accents */
.recruit__cross {
  position: absolute;
  right: 40%; top: -8px;
  width: 28px; height: 28px;
  color: var(--c-orange);
  z-index: 2;
}
.recruit__cross svg { width: 100%; height: 100%; }
.recruit__dot {
  position: absolute;
  left: 70%; bottom: 38%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c-orange);
  box-shadow: 0 0 0 6px rgba(224,85,49,.15);
  z-index: 2;
}

/* Text column overrides */
.recruit--broken .recruit__text {
  position: relative;
  z-index: 2;
  padding-top: 12px;
}
.recruit--broken .recruit__en {
  display: inline-flex; align-items: baseline; gap: 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: .32em; color: var(--c-orange);
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--c-orange);
}
.recruit--broken .recruit__en-num {
  font-size: 11px; letter-spacing: .22em;
  color: rgba(30,47,77,.45);
  font-weight: 500;
}
.recruit--broken .recruit__ja {
  display: flex; flex-direction: column;
  text-align: left;
  font-size: clamp(28px, 3.1vw, 40px);
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.45;
  margin-bottom: 24px;
  letter-spacing: .02em;
}
.recruit--broken .recruit__ja-l1 {
  align-self: flex-start;
}
.recruit--broken .recruit__ja-l2 {
  align-self: flex-start;
  position: relative;
}
.recruit--broken .recruit__desc {
  font-size: 14.5px; line-height: 1.95;
  color: rgba(30,47,77,.78);
  margin-bottom: 28px;
  max-width: 460px;
}

/* Bullets */
.recruit__bullets {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(30,47,77,.15);
}
.recruit__bullets li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(30,47,77,.15);
}
.recruit__bullets-k {
  font-family: 'Oswald', sans-serif;
  font-size: 12px; letter-spacing: .22em; font-weight: 600;
  color: var(--c-orange);
}
.recruit__bullets-v {
  font-size: 14px; font-weight: 600; color: var(--c-navy);
}

/* CTA row */
.recruit__cta-row {
  display: flex; flex-wrap: nowrap; gap: 12px; align-items: center;
}
.recruit__cta-row .recruit__btn,
.recruit__cta-row .recruit__btn-ghost {
  box-sizing: border-box;
  flex: 1 1 0;
  justify-content: center;
  min-width: 0;
  height: 52px;
  padding: 0 24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
}
.recruit--broken .recruit__btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--c-orange); color: #fff;
  border-radius: 0;
  border: 2px solid var(--c-orange);
  transition: all .3s ease;
  align-self: auto;
}
.recruit__btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  color: #fff;
  background: #ffc039;
  border: 1px solid #ffc039;
  transition: all .3s ease;
}
.recruit__btn-ghost:hover {
  color: #fff;
  background: #ffc039;
  border-color: #ffc039;
}
/* broken CTA：主／ゴーストでホバー時の浮き・影を同一にする */
.recruit--broken .recruit__cta-row .recruit__btn-ghost {
  border-width: 2px;
}
.recruit--broken .recruit__cta-row .recruit__btn:hover,
.recruit--broken .recruit__cta-row .recruit__btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -10px rgba(19, 31, 52, 0.4);
}
.recruit--broken .recruit__cta-row .recruit__btn:hover {
  background: var(--c-navy);
  border-color: var(--c-navy);
}

/* Reset the original .recruit__inner styles so they don't leak in */
.recruit--broken .recruit__inner { display: none; }

/* ── Responsive ── */
@media (max-width: 1080px) {
  .stimes__layout { grid-template-columns: 1fr; gap: 32px; }
  .stimes__feature { grid-template-columns: minmax(0, .55fr) minmax(0, 1fr); }
}
@media (max-width: 798px) {
  .stimes { padding: 64px 0 68px; }
  .stimes__masthead { margin-bottom: 36px; }
  .stimes__eyebrow {
    align-items: flex-start; gap: 12px;
  }
  .stimes__eyebrow-ja { flex: 1; font-size: 11px; line-height: 1.6; }
  .stimes__eyebrow-sp-break { display: block; }
  .stimes__title { font-size: clamp(38px, 12vw, 66px); }
  .stimes__meta { flex-direction: column; gap: 6px; }
  .stimes__meta-ja { text-align: left; max-width: none; }

  .stimes__feature {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 22px;
  }
  .stimes__feature-badge { top: -12px; left: 14px; padding: 6px 12px; }
  .stimes__feature-cover { aspect-ratio: 1 / 1.414; max-width: 380px; margin: 0 auto; }
  .stimes__feature-no { font-size: 36px; }
  .stimes__feature-headline { font-size: 18px; }

  .stimes__side { padding: 24px 20px; }
  .stimes__item { grid-template-columns: auto 1fr auto; }

  /* Recruit */
  .recruit--broken { padding: 64px 0; }
  .recruit--broken .recruit__broken {
    grid-template-columns: 1fr;
    padding: 0 16px 0 36px;
    min-height: 0;
    gap: 40px;
  }
  .recruit__vrail { font-size: 9px; letter-spacing: .32em; }
  .recruit__visuals { height: 420px; }
  .recruit__ph--main { width: min(100%, 360px); }
  .recruit__bg-num { right: -12px; font-size: 96px; transform: translateY(calc(-50% - 120px)); }
  .recruit--broken .recruit__ja { font-size: clamp(16px, 6.5vw, 28px); }
  .recruit__cta-row { gap: 8px; }
  .recruit__cta-row .recruit__btn,
  .recruit__cta-row .recruit__btn-ghost {
    flex: 1 1 0; justify-content: center;
    font-size: clamp(10px, 2.9vw, 12px);
    letter-spacing: .04em;
    padding-left: 10px;
    padding-right: 10px;
  }
}
