/* ============================================
   css/base/_reset.css
   リセットスタイル・ボディ基本設定
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
.sp-br { display: none; }
@media (max-width: 767px) { .sp-br { display: inline; } }
body {
  overflow-x: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--color-text);
  background: #f0f6fb;
}
:root {
  --min-width: 1300;
  --max-width: 1600;
  --fz: clamp(10px, calc(100vw / var(--min-width) * 10), calc(var(--max-width) / 1300 * 10px));
  font-size: var(--fz);

  /* カラーパレット */
  --color-primary: #4a9ec4;
  --color-primary-dark: #2d7ba8;
  --color-primary-light: rgba(74, 158, 196, 0.10);
  --color-accent: #8bc6a0;
  --color-accent-light: rgba(139, 198, 160, 0.10);
  --color-text: #2d3a4a;
  --color-text-light: #5a6a7a;
  --color-heading: #1a2a3a;
  --color-accent-glow: rgba(74, 158, 196, 0.20);

  /* 背景色 */
  --color-bg-warm: #eef5fa;
  --color-bg-cream: #f4f8fc;
  --color-bg-white: #fff;
  --color-bg-section: #e8f0f7;

  /* グラデーション */
  --gradient-main: linear-gradient(135deg, #c4e0f0 0%, #d4ecd6 50%, #f0f4e8 100%);
  --gradient-accent: linear-gradient(135deg, #4a9ec4 0%, #8bc6a0 100%);

  /* セクション見出し英語 */
  --color-heading-en: rgba(74, 158, 196, 0.15);

  /* シャドウ */
  --shadow-soft: 0 0.4rem 2rem rgba(42, 90, 130, 0.06);
  --shadow-hover: 0 0.8rem 3.2rem rgba(42, 90, 130, 0.12);
  --shadow-card: 0 0.2rem 1.2rem rgba(42, 90, 130, 0.05);

  /* 角丸 */
  --radius-card: 1.6rem;
  --radius-btn: 5rem;
  --radius-tag: 2rem;

  /* トランジション */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* ============================================
   css/base/_animation.css
   @keyframes アニメーション定義（パフォーマンス最適化済み）
   ============================================ */

/* ============================================
   キーフレームアニメーション
   ============================================ */
@keyframes scroll-circle-anim {
  0%   { transform: scaleX(1.35) rotate(0deg); }
  100% { transform: scaleX(1.35) rotate(-360deg); }
}

@keyframes scroll-down-anim {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(15%); }
}

/* 中央スライドの角丸変形 */
@keyframes radius-center {
  0%, 100% { border-radius: 66% 34% 24% 76% / 43% 42% 58% 57%; }
  25%       { border-radius: 34% 66% 68% 32% / 31% 68% 32% 69%; }
  50%       { border-radius: 71% 29% 62% 38% / 63% 27% 73% 37%; }
  75%       { border-radius: 36% 64% 32% 68% / 28% 74% 26% 72%; }
}

/* 左サイドの角丸変形（位相ずらし） */
@keyframes radius-left {
  0%, 100% { border-radius: 36% 64% 32% 68% / 28% 74% 26% 72%; }
  25%       { border-radius: 66% 34% 24% 76% / 43% 42% 58% 57%; }
  50%       { border-radius: 34% 66% 68% 32% / 31% 68% 32% 69%; }
  75%       { border-radius: 71% 29% 62% 38% / 63% 27% 73% 37%; }
}

/* 右サイドの角丸変形（位相ずらし） */
@keyframes radius-right {
  0%, 100% { border-radius: 71% 29% 62% 38% / 63% 27% 73% 37%; }
  25%       { border-radius: 36% 64% 32% 68% / 28% 74% 26% 72%; }
  50%       { border-radius: 66% 34% 24% 76% / 43% 42% 58% 57%; }
  75%       { border-radius: 34% 66% 68% 32% / 31% 68% 32% 69%; }
}

@keyframes main-zoom-out-anim {
  0%   { transform: scale(1.12); filter: brightness(1.04); }
  100% { transform: scale(1); filter: brightness(1); }
}
@keyframes float-up-down {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-1rem) rotate(0.5deg); }
  66%      { transform: translateY(-0.4rem) rotate(-0.3deg); }
}

/* ============================================
   フローティングパーティクル
   泡・光の粒がゆっくり浮遊する背景エフェクト
   ============================================ */
@keyframes particle-float-1 {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(40px) scale(0.6); opacity: 0; }
}
@keyframes particle-float-2 {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.8; }
  100% { transform: translateY(-100vh) translateX(-30px) scale(0.4); opacity: 0; }
}
@keyframes particle-float-3 {
  0%   { transform: translateY(0) translateX(0) scale(0.8); opacity: 0; }
  15%  { opacity: 0.6; }
  85%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(20px) scale(1.1); opacity: 0; }
}

.has-particles {
  position: relative;
  overflow: hidden;
}

.has-particles::before,
.has-particles::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* レイヤー1: 大きめの淡い泡 */
.has-particles::before {
  background-image:
    radial-gradient(circle 6px at 8% 90%, rgba(74, 158, 196, 0.12) 50%, transparent 51%),
    radial-gradient(circle 4px at 22% 85%, rgba(139, 198, 160, 0.10) 50%, transparent 51%),
    radial-gradient(circle 8px at 38% 95%, rgba(74, 158, 196, 0.08) 50%, transparent 51%),
    radial-gradient(circle 5px at 55% 88%, rgba(139, 198, 160, 0.12) 50%, transparent 51%),
    radial-gradient(circle 7px at 72% 92%, rgba(74, 158, 196, 0.10) 50%, transparent 51%),
    radial-gradient(circle 4px at 88% 87%, rgba(139, 198, 160, 0.08) 50%, transparent 51%),
    radial-gradient(circle 6px at 95% 93%, rgba(74, 158, 196, 0.11) 50%, transparent 51%);
  background-size: 100% 100%;
  animation: particle-float-1 18s ease-in-out infinite;
}

/* レイヤー2: 小さめの光粒 */
.has-particles::after {
  background-image:
    radial-gradient(circle 3px at 5% 92%, rgba(74, 158, 196, 0.15) 50%, transparent 51%),
    radial-gradient(circle 2px at 15% 88%, rgba(255, 255, 255, 0.25) 50%, transparent 51%),
    radial-gradient(circle 3px at 30% 96%, rgba(139, 198, 160, 0.12) 50%, transparent 51%),
    radial-gradient(circle 2px at 45% 84%, rgba(255, 255, 255, 0.20) 50%, transparent 51%),
    radial-gradient(circle 4px at 60% 91%, rgba(74, 158, 196, 0.10) 50%, transparent 51%),
    radial-gradient(circle 2px at 75% 86%, rgba(255, 255, 255, 0.22) 50%, transparent 51%),
    radial-gradient(circle 3px at 85% 94%, rgba(139, 198, 160, 0.14) 50%, transparent 51%),
    radial-gradient(circle 2px at 92% 89%, rgba(255, 255, 255, 0.18) 50%, transparent 51%);
  background-size: 100% 100%;
  animation: particle-float-2 24s ease-in-out infinite 3s;
}

/* コンテンツを前面に */
.has-particles > * {
  position: relative;
  z-index: 1;
}

/* パフォーマンス: SP で軽量化 */
@media (max-width: 767px) {
  .has-particles::before {
    background-image:
      radial-gradient(circle 5px at 12% 90%, rgba(74, 158, 196, 0.10) 50%, transparent 51%),
      radial-gradient(circle 4px at 45% 92%, rgba(139, 198, 160, 0.10) 50%, transparent 51%),
      radial-gradient(circle 6px at 80% 88%, rgba(74, 158, 196, 0.08) 50%, transparent 51%);
    animation-duration: 22s;
  }
  .has-particles::after {
    background-image:
      radial-gradient(circle 2px at 20% 90%, rgba(255, 255, 255, 0.20) 50%, transparent 51%),
      radial-gradient(circle 3px at 55% 86%, rgba(74, 158, 196, 0.12) 50%, transparent 51%),
      radial-gradient(circle 2px at 85% 92%, rgba(255, 255, 255, 0.18) 50%, transparent 51%);
    animation-duration: 28s;
  }
}

/* prefers-reduced-motion 対応 */
@media (prefers-reduced-motion: reduce) {
  .has-particles::before,
  .has-particles::after {
    animation: none;
  }
}


/* ============================================
   ローディング（ロゴフェード）
   ============================================ */
.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 1.2s;
  will-change: opacity, filter;
}

.loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: blur(6px);
}

.loading__logo {
  width: 18rem;
  opacity: 0;
  transform: translateY(2rem) scale(0.96);
  filter: blur(8px);
  animation: loading-logo-in 1.6s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: opacity, transform, filter;
}

.loading__logo img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes loading-logo-in {
  40% {
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
}

html.is-loading {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .loading__logo {
    width: 14rem;
  }
}

/* ============================================
   スクロールアニメーション共通
   ============================================ */

/* --- フェードアップ（汎用） --- */
.js-fade-up {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1),
              transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: opacity, transform;
}

.js-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* --- フェードイン左から --- */
.js-fade-left {
  opacity: 0;
  transform: translateX(-2.5rem) translateY(1rem);
  transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1),
              transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: opacity, transform;
}

.js-fade-left.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
  will-change: auto;
}

/* --- フェードイン右から --- */
.js-fade-right {
  opacity: 0;
  transform: translateX(2.5rem) translateY(1rem);
  transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1),
              transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: opacity, transform;
}

.js-fade-right.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
  will-change: auto;
}

/* --- スケールイン --- */
.js-scale-in {
  opacity: 0 !important;
  transform: translateY(2rem) !important;
  transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1),
              transform 0.8s cubic-bezier(0.33, 1, 0.68, 1) !important;
  will-change: opacity, transform;
}

.js-scale-in.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  will-change: auto;
}

.js-scale-in.is-visible:hover {
  transform: translateY(-0.4rem) !important;
}

/* --- スタガー用ディレイ --- */
.js-stagger-1 { transition-delay: 0.2s; }
.js-stagger-2 { transition-delay: 0.4s; }
.js-stagger-3 { transition-delay: 0.6s; }
.js-stagger-4 { transition-delay: 0.8s; }
.js-stagger-5 { transition-delay: 1.0s; }
.js-stagger-6 { transition-delay: 1.2s; }


/* ============================================
   セクション見出し（共通）
   参考サイト風：温かみのあるオレンジ系アクセント
   ============================================ */
/* 旧 .sec-heading__en は _service.css の新定義に統合済み — 削除 */


/* --- アイコンナビ ポップイン --- */
.icon-nav__item {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1),
              transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: opacity, transform;
}

.icon-nav.is-visible .icon-nav__item:nth-child(1) { transition-delay: 0.1s; }
.icon-nav.is-visible .icon-nav__item:nth-child(2) { transition-delay: 0.2s; }
.icon-nav.is-visible .icon-nav__item:nth-child(3) { transition-delay: 0.3s; }
.icon-nav.is-visible .icon-nav__item:nth-child(4) { transition-delay: 0.4s; }
.icon-nav.is-visible .icon-nav__item:nth-child(5) { transition-delay: 0.5s; }
.icon-nav.is-visible .icon-nav__item:nth-child(6) { transition-delay: 0.6s; }

.icon-nav.is-visible .icon-nav__item {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* --- View All / CTA ボタン共通アニメーション --- */
.btn-more {
  opacity: 0;
  transform: translateY(2rem) scale(0.96);
  filter: blur(2px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.btn-more.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
  will-change: auto;
}

/* --- SP時はディレイをリセット --- */
@media screen and (max-width: 767px) {
  .js-stagger-1,
  .js-stagger-2,
  .js-stagger-3,
  .js-stagger-4,
  .js-stagger-5,
  .js-stagger-6 {
    transition-delay: 0s !important;
  }

  /* sec-heading SP は _service.css のSPメディアクエリで定義済み */
}
/* ============================================
   css/layout/_header.css
   ロゴ左寄せ＋メニュー横並び
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  pointer-events: none;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.is-scrolled {
  background: rgba(240, 246, 251, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0.2rem 1.2rem rgba(42, 90, 130, 0.06);
}


.site-header--sub {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header--sub.is-scrolled {
  background: rgba(240, 246, 251, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0.2rem 1.2rem rgba(42, 90, 130, 0.06);
}

.site-header__inner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8rem;
  padding: 0 3rem;
  pointer-events: auto;
}


/* ロゴ */
.site-header__logo {
  flex-shrink: 0;
  z-index: 9;
  height: auto;
  display: flex;
  align-items: center;
  margin: 0 3rem;
}

.site-header__logo-bg {
  display: flex;
  align-items: center;
}

.site-header__logo-img {
  width: 13rem;
  height: auto;
}

/* ナビ共通 */
.site-header__nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 3rem;
  height: 8rem;
}

.site-header__nav--left {
  justify-content: flex-end;
  flex: 1;
}

.site-header__nav--right {
  justify-content: flex-start;
  flex: 1;
}

.site-header__nav li {
  padding: 0;
}

.site-header__nav a {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.2em;
  text-decoration: none;
  line-height: 8rem;
  white-space: nowrap;
  position: relative;
  transition: opacity 0.3s ease;
}

.site-header__nav a:hover {
  opacity: 0.6;
}

.site-header__hamburger {
  display: none;
}

.sp-contact-circle {
  display: none;
}

/* ============================================
   アイコンヘッダー（PC）
   ============================================ */
.site-header--icon {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.04);
  pointer-events: auto;
}

.site-header__inner--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 7rem;
  gap: 0;
  padding: 0;
  max-width: 1400px;
  margin: 0 auto;
}

.site-header__inner--icon .site-header__logo {
  margin: 0;
  padding: 0 2rem;
  flex-shrink: 0;
  position: relative;
}

.site-header__inner--icon .site-header__logo::before,
.site-header__inner--icon .site-header__logo::after {
  content: '';
  position: absolute;
  top: 18%;
  height: 64%;
  width: 1px;
  background: #e0e0e0;
}

.site-header__inner--icon .site-header__logo::before {
  left: 0;
}

.site-header__inner--icon .site-header__logo::after {
  right: 0;
}

.header-icon-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem 0.6rem;
  text-decoration: none;
  color: var(--color-text);
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
  height: 7rem;
}

.header-icon-nav__item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.header-icon-nav__item:hover::after {
  transform: scaleY(1);
}

.header-icon-nav__item:hover {
  color: var(--color-primary);
  background: rgba(74, 158, 196, 0.04);
}

/* 区切り線 */
.header-icon-nav__item + .header-icon-nav__item {
  border-left: 1px solid #e8e8e8;
}

.header-icon-nav__item--contact {
  color: var(--color-primary);
}

.header-icon-nav__item--contact:hover {
  color: #fff;
  background: var(--color-primary);
}

.header-icon-nav__item--contact:hover .header-icon-nav__icon {
  color: #fff;
}

.header-icon-nav__icon {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.header-icon-nav__icon svg {
  width: 100%;
  height: 100%;
}

.header-icon-nav__label {
  font-size: max(1rem, 10px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}

/* PC時：旧ナビとContact固定を非表示 */
.site-header--icon .site-header__nav--left,
.site-header--icon .site-header__nav--right,
.site-header--icon .contact-fixed {
  display: none;
}

/* SP時：アイコンナビ非表示、旧SPボタン表示 */
@media screen and (max-width: 767px) {
  .header-icon-nav__item {
    display: none;
  }

  .site-header__inner--icon .site-header__logo::before,
  .site-header__inner--icon .site-header__logo::after {
    display: none;
  }

  .site-header__inner--icon {
    height: 6rem;
    padding: 0 1.6rem;
    justify-content: flex-start;
  }

  .site-header__inner--icon .site-header__logo {
    margin-right: auto;
    margin-left: 0;
    padding: 0;
  }

  .site-header--icon {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    pointer-events: none;
  }
}

/* タブレット */
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .header-icon-nav__icon {
    width: 2rem;
    height: 2rem;
  }

  .header-icon-nav__label {
    font-size: max(0.9rem, 9px);
  }

  .site-header__inner--icon .site-header__logo {
    padding: 0 1.4rem;
  }

  .site-header__inner--icon .site-header__logo-img {
    width: 10rem;
  }
}

/* ============================================
   Contact固定ボタン
   ============================================ */
.contact-fixed {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gradient-accent);
  color: #fff;
  text-decoration: none;
  border-radius: 0 0 1rem 1rem;
  box-shadow: 0 0.4rem 1.2rem rgba(74, 158, 196, 0.35);
  transition: box-shadow 0.3s ease, background 0.3s ease;
  white-space: nowrap;
  position: fixed;
  right: 3rem;
  top: 0;
  z-index: 999;
  padding: 1.6rem 1.8rem;
  pointer-events: auto;
}

.contact-fixed:hover {
  box-shadow: 0 0.6rem 2rem rgba(74, 158, 196, 0.5);
  background: linear-gradient(135deg, #5bb0d4, #9cd4b0);
}

.contact-fixed__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
}

.contact-fixed__icon svg {
  width: 100%;
  height: 100%;
}

.contact-fixed__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contact-fixed__en {
  font-family: 'Raleway', sans-serif;
  font-size: max(1.4rem, 12px);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.contact-fixed__ja {
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}

/* ============================================
   タブレット
   ============================================ */
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .site-header__inner {
    padding: 0 2rem;
  }

  .site-header__nav {
    gap: 1.8rem;
  }

  .site-header__nav a {
    font-size: 1rem;
  }

  .site-header__logo-img {
    width: 11rem;
  }

  .contact-fixed {
    right: 2rem;
    top: 0;
    padding: 1.4rem 1.6rem;
  }

}

/* ============================================
   SP
   ============================================ */
@media screen and (max-width: 767px) {
  .site-header__inner {
    height: 6rem;
    padding: 0 1.6rem;
  }

  .site-header__nav--left,
  .site-header__nav--right {
    display: none;
  }

  .site-header__logo {
    margin-right: auto;
    margin-left: 0;
  }

  .site-header__logo-img {
    width: 12rem;
  }

  .contact-fixed {
    display: none;
  }

  .site-header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    position: absolute;
    top: calc(env(safe-area-inset-top, 0px) + 8px);
    right: 16px;
    z-index: 102;
    cursor: pointer;
    background: #fff;
    border: none;
    border-radius: 50%;
    padding: 0;
    pointer-events: auto;
    gap: 4px;
    transition: box-shadow 0.3s ease;
  }

  .site-header__hamburger.is-open {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  }

  .hamburger-lines {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }

  .hamburger-lines span {
    display: block;
    width: 2rem;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
  }

  .hamburger-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #333;
    line-height: 1;
    font-family: 'Jost', sans-serif;
  }

  .sp-contact-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    position: absolute;
    top: calc(env(safe-area-inset-top, 0px) + 8px);
    right: 84px;
    z-index: 102;
    background: var(--gradient-accent);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(74, 158, 196, 0.3);
    pointer-events: auto;
    text-decoration: none;
  }

  .sp-contact-circle svg {
    width: 28px;
    height: 28px;
  }
}
/* ============================================
   css/sections/_fv.css
   FV（ファーストビュー）・スライダー・アイコンナビのスタイル
   （パフォーマンス最適化済み）
   ============================================ */

/* ============================================
   カーテンアニメーション背景
   ============================================ */
@keyframes curtain-move-1 {
  0%   { transform: scale(1.0) rotate(-8deg); opacity: 0.7; }
  50%  { transform: scale(2.8) rotate(3deg);  opacity: 1; }
  100% { transform: scale(1.0) rotate(-8deg); opacity: 0.7; }
}
@keyframes curtain-move-2 {
  0%   { transform: scale(1.5) rotate(5deg);  opacity: 0.5; }
  50%  { transform: scale(4.5) rotate(-2deg); opacity: 1; }
  100% { transform: scale(1.5) rotate(5deg);  opacity: 0.5; }
}
@keyframes curtain-move-3 {
  0%   { transform: scale(2.0) rotate(-12deg); opacity: 0.8; }
  50%  { transform: scale(1.2) rotate(4deg);  opacity: 0.5; }
  100% { transform: scale(2.0) rotate(-12deg); opacity: 0.8; }
}
@keyframes curtain-move-4 {
  0%   { transform: scale(1.2) rotate(2deg);  opacity: 0.6; }
  50%  { transform: scale(3.5) rotate(-10deg); opacity: 1; }
  100% { transform: scale(1.2) rotate(2deg);  opacity: 0.6; }
}
@keyframes curtain-move-5 {
  0%   { transform: scale(3.0) rotate(-5deg); opacity: 1; }
  50%  { transform: scale(1.3) rotate(8deg);  opacity: 0.6; }
  100% { transform: scale(3.0) rotate(-5deg); opacity: 1; }
}
@keyframes curtain-move-6 {
  0%   { transform: scale(1.8) rotate(10deg); opacity: 0.7; }
  50%  { transform: scale(4.0) rotate(-3deg); opacity: 1; }
  100% { transform: scale(1.8) rotate(10deg); opacity: 0.7; }
}
@keyframes curtain-move-7 {
  0%   { transform: scale(2.5) rotate(-7deg); opacity: 0.9; }
  50%  { transform: scale(1.1) rotate(5deg);  opacity: 0.5; }
  100% { transform: scale(2.5) rotate(-7deg); opacity: 0.9; }
}
@keyframes curtain-move-8 {
  0%   { transform: scale(1.3) rotate(12deg); opacity: 0.6; }
  50%  { transform: scale(3.8) rotate(-6deg); opacity: 1; }
  100% { transform: scale(1.3) rotate(12deg); opacity: 0.6; }
}
@keyframes curtain-move-9 {
  0%   { transform: scale(4.0) rotate(-3deg); opacity: 1; }
  50%  { transform: scale(1.5) rotate(9deg);  opacity: 0.6; }
  100% { transform: scale(4.0) rotate(-3deg); opacity: 1; }
}
@keyframes curtain-move-10 {
  0%   { transform: scale(1.6) rotate(6deg);  opacity: 0.8; }
  50%  { transform: scale(2.9) rotate(-11deg); opacity: 1; }
  100% { transform: scale(1.6) rotate(6deg);  opacity: 0.8; }
}

.lcl-bg-pattern {
  width: 110%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  display: flex;
  z-index: -1;
  transform: translate3d(-50%, 0, 0);
  pointer-events: none;
  overflow: hidden;
}

.lcl-bg-pattern::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(#fff, rgba(255,255,255,0) 15%);
  z-index: 1;
  pointer-events: none;
}

.lcl-bg-pattern::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(circle at left top, #fff 0, rgba(255,255,255,0) 50%);
  z-index: 1;
  pointer-events: none;
}

.lcl-bg-pattern__item {
  flex: 1 1 auto;
  width: 100%;
  height: 150%;
  position: relative;
  top: -25%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,0.5) 10%,
    rgba(255,255,255,0) 50%,
    rgba(255,255,255,0.5) 90%,
    rgba(255,255,255,0)
  );
  will-change: transform;
  transform-origin: center top;
}

.lcl-bg-pattern__item:nth-child(1)  { animation: curtain-move-1  4.2s ease-in-out infinite; }
.lcl-bg-pattern__item:nth-child(2)  { animation: curtain-move-2  5.7s ease-in-out infinite 0.8s; }
.lcl-bg-pattern__item:nth-child(3)  { animation: curtain-move-3  3.9s ease-in-out infinite 1.5s; }
.lcl-bg-pattern__item:nth-child(4)  { animation: curtain-move-4  5.1s ease-in-out infinite 0.3s; }
.lcl-bg-pattern__item:nth-child(5)  { animation: curtain-move-5  4.8s ease-in-out infinite 2.1s; }
.lcl-bg-pattern__item:nth-child(6)  { animation: curtain-move-6  3.6s ease-in-out infinite 1.0s; }
.lcl-bg-pattern__item:nth-child(7)  { animation: curtain-move-7  5.4s ease-in-out infinite 0.5s; }
.lcl-bg-pattern__item:nth-child(8)  { animation: curtain-move-8  4.5s ease-in-out infinite 1.8s; }
.lcl-bg-pattern__item:nth-child(9)  { animation: curtain-move-9  3.3s ease-in-out infinite 2.5s; }
.lcl-bg-pattern__item:nth-child(10) { animation: curtain-move-10 5.9s ease-in-out infinite 0.2s; }

/* ============================================
   FV全体のコンテナ
   ============================================ */
.lcl-fv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
}

/* ============================================
   SCROLL円形 - 中央に大きく横長に配置
   ============================================ */
.lcl-scroll-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80rem;
  height: 68rem;
  z-index: 1;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lcl-scroll-bg__circle {
  position: absolute;
  inset: 0;
  background: url("./img/bg_scroll.svg") center / contain no-repeat;
  animation: scroll-circle-anim 80s ease-in-out infinite;
  opacity: 0.12;
  transform: scaleX(1.35);
}

.lcl-scroll-bg .ico_svg {
  width: 5rem;
  animation: scroll-down-anim 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
  opacity: 0.3;
}

.lcl-scroll-bg .ico_svg .svg-path {
  stroke-width: 0.08rem;
}

/* ============================================
   キャッチコピーエリア（中央左寄せ・スライダーの上にオーバーレイ）
   ============================================ */
.lcl-catch {
  position: absolute;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%) translateX(-19rem);
  bottom: 32rem;
  width: 56rem;
  min-height: 16rem;
  text-align: left;
  pointer-events: none;
}

.catch-en {
  display: block;
  font-family: adobe-handwriting-ernie, sans-serif;
  font-size: clamp(3rem, 4vw, 5rem);
  font-weight: 400;
  font-style: normal;
  color: rgba(74, 158, 196, 0.3);
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  margin-top: 1.6rem;
  transform: rotate(-6deg);
  transform-origin: left center;
}

.catch-slide {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(1.5rem);
  width: 100%;
  opacity: 0;
  filter: blur(0.4rem);
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 1.4s cubic-bezier(0.4, 0, 0.2, 1),
              filter 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.catch-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  pointer-events: auto;
}

.catch-slide .catch-main {
  font-size: max(2.5rem, 20px);
  font-weight: 600;
  letter-spacing: 0.12em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline;
  color: #333;
  background: none;
  padding: 0;
  line-height: 1.7;
  text-shadow:
    0 0 0.4rem rgba(255,255,255,0.8),
    0 0 1.2rem rgba(255,255,255,0.5);
}

.catch-slide .catch-main .em {
  color: var(--color-primary);
  font-weight: 700;
}

.catch-slide .catch-sub {
  font-size: max(1.4rem, 12px);
  font-weight: 400;
  line-height: 2.1;
  color: rgba(255,255,255,0.95);
  margin-top: 1.6rem;
  letter-spacing: 0.08em;
  -webkit-font-smoothing: antialiased;
  text-shadow:
    0 0.1rem 0.2rem rgba(0,0,0,0.6),
    0 0.2rem 1.2rem rgba(0,0,0,0.35);
}

/* ============================================
   センターモードスライダー
   ============================================ */
.lcl-slider-area {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: 0;
  padding-bottom: 0;
  overflow: visible;
}

.lcl-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 100%;
}

/* ============================================
   スライドカード共通
   ============================================ */
.lcl-slider__card {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
              transform 1.2s cubic-bezier(0.4, 0, 0.2, 1),
              filter 1.2s cubic-bezier(0.4, 0, 0.2, 1),
              width 1.2s cubic-bezier(0.4, 0, 0.2, 1),
              height 1.2s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.lcl-slider__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   センター（アクティブ）スライド
   ============================================ */
.lcl-slider__card--center {
  width: 82rem;
  height: 60rem;
  animation: radius-center 30s ease-in-out infinite;
  z-index: 3;
  box-shadow: 0 2rem 6rem rgba(0,0,0,0.08);
  overflow: hidden;
}

.lcl-slider__card--center > img.zoom-active {
  animation: main-zoom-out-anim 12s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, filter;
}

/* ============================================
   サイドスライド（丸い形）
   ============================================ */
.lcl-slider__card--side {
  width: 30rem;
  height: 40rem;
  opacity: 0.4;
  filter: brightness(0.9) saturate(0.6);
  z-index: 1;
  cursor: pointer;
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.04);
}

.lcl-slider__card--side:hover {
  opacity: 0.6;
  filter: brightness(0.95) saturate(0.8);
}

.lcl-slider__card--prev {
  animation: radius-left 30s ease-in-out infinite;
  transform: scale(0.95);
}

.lcl-slider__card--next {
  animation: radius-right 30s ease-in-out infinite;
  transform: scale(0.95);
}

/* ============================================
   モックアップ画像
   ============================================ */
.lcl-slider__mockup {
  position: absolute;
  right: calc(50% - 82rem / 2 - 6rem);
  top: 50%;
  transform: translateY(-50%);
  width: 30rem;
  z-index: 20;
  animation: float-up-down 6s ease-in-out infinite;
  pointer-events: none;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.lcl-slider__mockup img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 1.5rem 3rem rgba(0,0,0,0.12));
}

/* ============================================
   アイコンナビゲーション（FV下部）
   ============================================ */
.icon-nav {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  max-width: 72rem;
  display: flex;
  justify-content: center;
  width: 92%;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 0.6rem 3rem rgba(0,0,0,0.08);
  overflow: hidden;
}

.icon-nav__item {
  flex: 1;
  position: relative;
  text-align: center;
  padding: 1.4rem 0.6rem 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  color: #35383e;
}

.icon-nav__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.4rem;
  background: linear-gradient(90deg, #00b4a8, #00c9a7);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.icon-nav__item:hover::before {
  transform: scaleY(1);
}

.icon-nav__item:hover {
  background: rgba(0, 180, 168, 0.04);
}

.icon-nav__item + .icon-nav__item {
  border-left: 1px solid #eee;
}

.icon-nav__icon {
  display: block;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.6rem;
}

.icon-nav__icon img,
.icon-nav__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon-nav__label {
  font-size: max(1.15rem, 10px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #2a2d33;
}

/* ============================================
   切り替え中のフェード状態
   ============================================ */
.lcl-slider.is-transitioning .lcl-slider__card img {
  opacity: 0;
}

.lcl-slider.is-transitioning .lcl-slider__card--center img {
  opacity: 0;
}

/* ============================================
   FV 新着情報
   ============================================ */
.fv-news {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 1.8rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0.8rem;
  border-left: 4px solid var(--color-primary);
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.1);
  pointer-events: auto;
  max-width: fit-content;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  margin: 0;
  z-index: 90;
}

.fv-news:hover {
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.fv-news__tag {
  display: inline-block;
  font-size: max(1.1rem, 10px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--color-primary);
  padding: 0.3rem 1rem;
  border-radius: 0.4rem;
  white-space: nowrap;
  line-height: 1.4;
}

.fv-news__date {
  font-family: 'Jost', sans-serif;
  font-size: max(1.2rem, 11px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  white-space: nowrap;
}

.fv-news__text {
  font-size: max(1.3rem, 12px);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.04em;
  line-height: 1.6;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.fv-news__text-inner {
  display: inline-block;
}

.fv-news__text.is-overflow .fv-news__text-inner {
  animation: fv-news-scroll 13s linear infinite;
  will-change: transform;
}

@keyframes fv-news-scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}


/* ============================================
   レスポンシブ（タブレット）
   ============================================ */
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .lcl-catch {
    width: 45rem;
    transform: translateX(-50%) translateX(-14rem);
    bottom: 28rem;
  }

  .catch-en {
    font-size: clamp(2.5rem, 3.5vw, 4rem);
  }

  .catch-slide .catch-main {
    font-size: max(2rem, 16px);
  }

  .catch-slide .catch-sub {
    font-size: max(1.1rem, 11px);
    margin-top: 1rem;
  }

  .lcl-slider__card--center {
    width: 60rem;
    height: 45rem;
  }

  .lcl-slider__card--side {
    width: 22rem;
    height: 16rem;
  }

  .lcl-slider {
    gap: 2rem;
  }

  .lcl-slider__mockup {
    right: calc(50% - 60rem / 2 - 4rem);
    width: 22rem;
  }
}

/* ============================================
   レスポンシブ（SP）
   ============================================ */
@media screen and (max-width: 767px) {
  /* FV全体: 通常フロー、高さはコンテンツに合わせる */
  .lcl-fv {
    min-height: calc(var(--vh, 1vh) * 100);
    height: auto;
    padding-bottom: 2rem;
    position: relative;
    padding-top: 20rem;
    overflow: hidden;
  }

  .lcl-fv::before {
    display: none;
  }

  /* FV画像: position配置、右上に楕円 */
  .lcl-slider-area {
    position: absolute;
    top: 0;
    right: -25vw;
    left: auto;
    width: 130vw;
    height: 130vw;
    transform: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
  }

  .lcl-slider {
    justify-content: center;
    margin: 0;
    width: 100%;
    height: 100%;
  }

  .lcl-slider__card--center {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }

  .lcl-slider__card--center::after {
    border-radius: 50%;
  }

  .lcl-slider__card--side {
    display: none;
  }

  /* キャッチコピー: 通常フロー */
  .lcl-catch {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: 90%;
    max-width: none;
    transform: none;
    z-index: 15;
    min-height: 28rem;
    margin: 0 auto;
    padding: 0 0 0 5%;
  }

  .catch-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .catch-en {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .catch-slide .catch-main {
    font-size: max(2.4rem, 18px);
    background: none;
    padding: 0;
    box-decoration-break: initial;
    -webkit-box-decoration-break: initial;
    line-height: 1.7;
    text-shadow:
      0 0 0.4rem rgba(255,255,255,0.8),
      0 0 1.2rem rgba(255,255,255,0.5);
  }

  .catch-slide .catch-sub {
    font-size: max(1.2rem, 11px);
  }

  /* モックアップ: SP非表示 */
  .lcl-slider__mockup {
    display: none;
  }

  /* お知らせ: SP非表示 */
  .fv-news {
    display: none;
  }

  /* アイコンナビ: 通常フロー */
  .icon-nav {
    flex-wrap: wrap;
    width: 94%;
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 2rem auto 0;
    border-radius: 0.8rem;
    z-index: 15;
  }

  .icon-nav__item {
    flex: 0 0 33.333%;
    padding: 1.2rem 0.3rem 1rem;
  }

  .icon-nav__item:nth-child(n+4) {
    border-top: 1px solid #eee;
  }

  .icon-nav__item:nth-child(4) {
    border-left: none;
  }

  .icon-nav__icon {
    width: 2.4rem;
    height: 2.4rem;
    margin-bottom: 0.4rem;
  }

  .icon-nav__label {
    font-size: max(0.85rem, 9px);
  }

  .lcl-scroll-bg {
    display: none;
  }
}


/* ============================================
   PC/SP改行切り替え
   ============================================ */
.sp-only {
  display: none;
}

.pc-only {
  display: inline;
}

@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }

  .pc-only {
    display: none;
  }
}


/* ============================================
   スクロールダウン（非表示・互換用）
   ============================================ */
.scroll_down {
  display: none;
}
/* ============================================
   セクション間ウェーブ
   ============================================ */
.section-wave {
  position: relative;
  width: 100%;
  height: 12rem;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}


.section-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* FV → サービス間 */
.section-wave--fv-to-service {
  margin-top: -12rem;
  background: transparent;
}
.section-wave--fv-to-service svg {
  fill: #fff;
}

/* サービス → 実績間 */
.section-wave--service-to-works {
  background: #fff;
}
.section-wave--service-to-works svg {
  fill: var(--color-bg-warm);
}

/* 実績 → 代表挨拶間 */
.section-wave--works-to-message {
  background: var(--color-bg-warm);
}
.section-wave--works-to-message svg {
  fill: #fff;
}

/* 代表挨拶 → お問い合わせ間 */
.section-wave--message-to-contact {
  background: #fff;
}
.section-wave--message-to-contact svg {
  fill: var(--color-bg-warm);
}


/* ============================================
   レスポンシブ
   ============================================ */
@media screen and (max-width: 767px) {
  .section-wave {
    height: 8rem;
  }

  .section-wave--fv-to-service {
    margin-top: -8rem;
  }
}


/* ============================================
   水彩風グラデーション区切り
   ============================================ */
.section-divider {
  position: relative;
  width: 100%;
  height: 16rem;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.section-divider--fv-to-service {
  margin-top: -16rem;
  background: transparent;
}

.section-divider--service-to-works {
  background: #fff;
}

.section-divider--works-to-message {
  background: var(--color-bg-warm);
}

.section-divider--medical-to-tech {
  background: #f8fbfd;
}

.section-divider--message-to-contact {
  background: #fff;
}

.section-divider--news-to-cta {
  background: var(--color-bg-warm, #eef5fa);
}

.section-divider--to-footer {
  background: var(--color-bg-warm);
  margin-bottom: -1px;
  position: relative;
}

.section-divider--to-footer::after {
  display: none;
}

@keyframes footer-wave-glow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@media screen and (max-width: 767px) {
  .section-divider {
    height: 10rem;
  }

  .section-divider--fv-to-service {
    margin-top: -10rem;
  }
}
/* ============================================
   準備中プレースホルダー
   ============================================ */
.preparing-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  margin-top: 2rem;
  text-align: center;
}

.preparing-placeholder__icon {
  display: none;
}

.preparing-placeholder__icon svg {
  width: 100%;
  height: 100%;
}

.preparing-placeholder__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: max(1.4rem, 13px);
  font-weight: 400;
  color: #999;
  letter-spacing: 0.06em;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .preparing-placeholder {
    padding: 3rem 1.6rem;
    margin-top: 1.5rem;
  }

  .preparing-placeholder__text {
    font-size: max(1.2rem, 12px);
  }
}


/* ============================================
   css/sections/_service.css
   サービスセクション・サービスカードのスタイル
   参考サイト風：温かみのある配色、柔らかい角丸・影
   ============================================ */

/* ============================================
   セクション見出し
   ============================================ */
.sec-heading {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-bottom: 6rem;
  height: auto;
  overflow: hidden;
  text-align: center;
}



.sec-heading__en {
  font-family: 'Cormorant', serif;
  font-size: clamp(7rem, 10vw, 12rem);
  font-weight: 400;
  color: #cccccc73;
  -webkit-text-stroke: none;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
  min-width: 0;
  user-select: none;
  pointer-events: none;
  position: relative;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 1.4s cubic-bezier(0.33, 1, 0.68, 1),
              transform 0.9s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: opacity, transform;
}

.sec-heading.is-visible .sec-heading__en {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.sec-heading__ja {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: max(1.5rem, 14px);
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: 0.2em;
  line-height: 1;
  z-index: 2;
  white-space: nowrap;
}

.sec-heading__ja::after {
  display: none;
}

/* 旧 .sec-heading__en は _service.css の新定義に統合済み — 削除 */

/* ============================================
   サービスセクション
   ============================================ */
.sec-service {
  padding: 10rem 0 12rem;
  position: relative;
  z-index: 1;
  background: #fff;
}

/* 見出しエリア */
/* 旧 .sec-service__heading は下の新定義に統合済み — 削除 */

.sec-service__heading {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 4rem;
  text-align: center;
}



.sec-service__en {
  font-family: 'Cormorant', serif;
  font-size: clamp(7rem, 10vw, 12rem);
  font-weight: 400;
  color: #cccccc73;
  -webkit-text-stroke: none;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  display: inline-block;
  position: relative;
}

.sec-service__title-main {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: max(1.5rem, 14px);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-heading);
  margin: 0;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  z-index: 2;
}

.sec-service__lead {
  font-size: max(1.4rem, 13px);
  font-weight: 400;
  line-height: 2.2;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 6rem;
  padding: 0 4rem;
}

/* 旧 .sec-service__title-main は上の新定義に統合済み — 削除 */

.sec-service__lead {
  font-size: max(1.4rem, 13px);
  font-weight: 400;
  line-height: 2.2;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 6rem;
  padding: 0 4rem;
}

/* グリッド（旧・未使用） */
.sec-service__grid {
  display: none;
}

/* 交互レイアウト */
.sec-service__rows {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8rem;
  overflow: visible;
}

/* ============================================
   サービスカード（参考: KKI風 斜め写真 + テキスト）
   ============================================ */
.srv-card {
  display: block;
  text-decoration: none;
  color: var(--color-text);
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.srv-card:hover {
  transform: translateY(-0.8rem);
  box-shadow: var(--shadow-hover);
}

/* 写真エリア */
.srv-card__img-area {
  position: relative;
  overflow: hidden;
}

.srv-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.srv-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-card:hover .srv-card__img img {
  transform: scale(1.08);
}

/* ナンバー（写真に重なる） */
.srv-card__num {
  position: absolute;
  bottom: -1.5rem;
  right: 2rem;
  font-family: 'Jost', sans-serif;
  font-size: max(4.5rem, 36px);
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
}

/* テキストエリア */
.srv-card__body {
  padding: 2.4rem 2.4rem 2.8rem;
}

.srv-card__title {
  font-size: max(1.8rem, 15px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-heading);
  margin-bottom: 1.2rem;
  line-height: 1.5;
  position: relative;
  padding-bottom: 1.2rem;
}

.srv-card__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 1px;
}

.srv-card__text {
  font-size: max(1.3rem, 12px);
  font-weight: 400;
  line-height: 2;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  margin-bottom: 1.6rem;
}

.srv-card__more {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: max(1.2rem, 11px);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  transition: letter-spacing 0.3s ease;
}

.srv-card:hover .srv-card__more {
  letter-spacing: 0.16em;
}

/* ============================================
   サービス交互レイアウト（参考: KKI風 point構成）
   ============================================ */
.srv-row {
  display: flex;
  align-items: center;
  gap: 5rem;
  position: relative;
}

.srv-row--reverse {
  flex-direction: row-reverse;
}

/* 画像（左端・右端からはみ出す） */
.srv-row__img {
  width: 50vw;
  flex-shrink: 0;
  border-radius: 0 2rem 2rem 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-left: calc(-50vw + 50%);
  padding-left: 0;
}

.srv-row--reverse .srv-row__img {
  width: 50vw;
  border-radius: 2rem 0 0 2rem;
  margin-left: 0;
  margin-right: calc(-50vw + 50%);
}

.srv-row__img img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-row:hover .srv-row__img img {
  transform: scale(1.04);
}

/* テキスト */
.srv-row__body {
  flex: 1;
  min-width: 0;
  padding-right: 4rem;
}

.srv-row--reverse .srv-row__body {
  padding-right: 0;
  padding-left: 4rem;
}

.srv-row__tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: max(1.2rem, 11px);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-btn);
  padding: 0.5rem 2rem;
  margin-bottom: 2rem;
}

.srv-row__title {
  font-size: max(2.2rem, 18px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-heading);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.srv-row__text {
  font-size: max(1.4rem, 13px);
  font-weight: 400;
  line-height: 2.2;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  margin-bottom: 2.4rem;
}

.srv-row__more {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.srv-row__more:hover {
  gap: 2.2rem;
}

.srv-row__more-text {
  font-family: 'Jost', sans-serif;
  font-size: max(1.4rem, 13px);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

.srv-row__more-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: #2d3a4a;
  border-radius: 50%;
  color: #fff;
  transition: background 0.3s ease, transform 0.3s ease;
}

.srv-row__more-circle svg {
  width: 2rem;
  height: 2rem;
}

.srv-row__more:hover .srv-row__more-circle {
  background: var(--color-primary);
  transform: scale(1.06);
}


/* ============================================
   横スクロールトラック
   ============================================ */
.sec-service__sticky {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sec-heading--service {
  position: absolute;
  top: 4rem;
  left: 0;
  z-index: 10;
}

.service-counter {
  position: absolute;
  top: 4.5rem;
  right: 6rem;
  z-index: 10;
  font-family: 'Jost', 'Raleway', sans-serif;
  font-size: max(1.4rem, 13px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text, #333);
  display: flex;
  align-items: baseline;
  gap: 0.3em;
}

.service-counter__current {
  font-size: max(2.8rem, 22px);
  color: var(--color-primary, #FF8C42);
  line-height: 1;
}

.service-counter__sep {
  color: #ccc;
}

.service-counter__total {
  color: #999;
}

.service-progress {
  position: absolute;
  bottom: 3.5rem;
  left: 6rem;
  right: 6rem;
  height: 2px;
  background: #e8e4de;
  z-index: 10;
  border-radius: 1px;
}

.service-progress__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary, #FF8C42), #ffb347);
  border-radius: 1px;
  will-change: transform;
  transform: scaleX(0);
  transform-origin: left center;
  backface-visibility: hidden;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.sec-service__track {
  display: flex;
  width: max-content;
  height: 100vh;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  width: 100vw;
  height: 100vh;
  padding: 8rem 8rem 6rem;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--color-text);
}

.service-panel__img {
  position: relative;
  width: 48%;
  max-width: 52rem;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card, 1.6rem);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.06);
}

.service-panel__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.service-panel:hover .service-panel__img img {
  transform: scale(1.04);
}

.service-panel__body {
  flex: 1;
  max-width: 42rem;
}

.service-panel__num {
  font-family: 'Jost', 'Raleway', sans-serif;
  font-size: max(6rem, 40px);
  font-weight: 600;
  color: var(--color-heading-en, rgba(200, 180, 155, 0.25));
  line-height: 1;
  display: block;
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
}

.service-panel__title {
  font-size: max(2.6rem, 20px);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  color: var(--color-heading, #1a1a1a);
  line-height: 1.5;
}

.service-panel__text {
  font-size: max(1.4rem, 13px);
  font-weight: 400;
  line-height: 2.2;
  color: var(--color-text-light, #666);
  letter-spacing: 0.04em;
  margin-bottom: 3rem;
}

.service-panel__link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Jost', 'Raleway', sans-serif;
  font-size: max(1.3rem, 12px);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-primary, #FF8C42);
  transition: gap 0.3s ease;
}

.service-panel__link svg {
  width: 1.8rem;
  height: 1.8rem;
  transition: transform 0.3s ease;
}

.service-panel:hover .service-panel__link {
  gap: 1.2rem;
}

.service-panel:hover .service-panel__link svg {
  transform: translateX(0.3rem);
}

.service-panel__img,
.service-panel__body {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.service-panel__body {
  transition-delay: 0.15s;
}

.service-panel.is-active .service-panel__img,
.service-panel.is-active .service-panel__body {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* ============================================
   レスポンシブ（タブレット）
   ============================================ */
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .sec-service__inner {
    gap: 2.5rem;
    padding: 0 3rem;
  }

  .service-card__title {
    font-size: max(1.5rem, 13px);
  }

  .service-card__text {
    font-size: max(1.1rem, 11px);
  }

  .service-panel {
    gap: 4rem;
    padding: 8rem 5rem 6rem;
  }

  .service-panel__img {
    width: 44%;
  }

  .service-panel__title {
    font-size: max(2.2rem, 18px);
  }

  .service-counter {
    right: 4rem;
  }

  .service-progress {
    left: 4rem;
    right: 4rem;
  }
}

/* ============================================
   レスポンシブ（SP）
   ============================================ */
@media screen and (max-width: 767px) {
  .sec-service {
    height: auto;
    padding: 6rem 0 8rem;
  }

  .sec-service__sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .sec-heading--service {
    position: relative;
    top: auto;
    margin-bottom: 3rem;
  }

  .sec-heading {
    height: 8rem;
  }

  .sec-heading__en {
    left: 2rem;
    font-size: clamp(4rem, 14vw, 7rem);
  }

  .sec-heading__ja {
    margin-left: 2rem;
  }

  .sec-service__grid {
    display: none;
  }

  .sec-service__rows {
    padding: 0 2rem;
    gap: 5rem;
  }

  .srv-row {
    flex-direction: column;
    gap: 2.4rem;
  }

  .srv-row--reverse {
    flex-direction: column;
  }

  .srv-row__img {
    width: calc(100% + 2rem);
    margin-left: -2rem;
    margin-right: 0;
    border-radius: 0 1.4rem 1.4rem 0;
  }

  .srv-row--reverse .srv-row__img {
    width: calc(100% + 2rem);
    margin-left: 0;
    margin-right: -2rem;
    border-radius: 1.4rem 0 0 1.4rem;
  }

  .srv-row__body {
    padding-right: 0;
    padding-left: 0;
  }

  .srv-row--reverse .srv-row__body {
    padding-right: 0;
    padding-left: 0;
  }


  .srv-row__tag {
    margin-bottom: 1.4rem;
  }

  .srv-row__title {
    font-size: max(1.8rem, 17px);
    margin-bottom: 1.4rem;
  }

  .srv-row__text {
    font-size: max(1.3rem, 13px);
    margin-bottom: 1.8rem;
  }

  .srv-row__more {
    display: flex;
    justify-content: flex-end;
  }

  .sec-service__heading {
    padding: 0 2rem;
    margin-bottom: 4rem;
  }

  /* sec-service__title-main SP は下部のSPメディアクエリで定義済み */

  .service-card__img-wrap {
    border-radius: 1.2rem;
  }

  .service-card__title {
    font-size: max(1.6rem, 14px);
  }

  .service-card__text {
    font-size: max(1.3rem, 12px);
  }

  .sec-service__track {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 5rem;
    padding: 0 2rem;
  }

  .service-panel {
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 0;
    gap: 2rem;
  }

  .service-panel__img {
    width: 100%;
    max-width: none;
    border-radius: 1.2rem;
  }

  .service-panel__body {
    max-width: none;
  }

  .service-panel__num {
    font-size: max(4rem, 30px);
    margin-bottom: 0.6rem;
  }

  .service-panel__title {
    font-size: max(2rem, 18px);
    margin-bottom: 1.2rem;
  }

  .service-panel__text {
    font-size: max(1.3rem, 13px);
    margin-bottom: 2rem;
  }

  .service-counter,
  .service-progress {
    display: none;
  }
}


@media screen and (max-width: 767px) {
  .sec-heading {
    padding: 0;
    margin-bottom: 4rem;
  }

  .sec-heading__en {
    font-size: clamp(3rem, 13vw, 6rem);
    left: 0;
  }

  .sec-heading__ja {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: max(1.3rem, 13px);
    margin-left: 0;
  }

  .sec-heading--message .sec-heading__en {
    left: 0;
    width: 100%;
    text-align: center;
  }

  .sec-heading--message .sec-heading__ja {
    margin-left: 0;
  }

  .sec-service__en,
  .sec-contact__en {
    font-size: clamp(4rem, 14vw, 6rem);
  }

  .sec-service__title-main,
  .sec-contact__title-main {
    font-size: max(1.3rem, 13px);
  }

  .sec-works__side-title {
    font-size: max(4.5rem, 40px);
    margin-top: -1rem;
  }

  .sec-message__en {
    font-size: clamp(4rem, 14vw, 6rem);
  }
}

/* ============================================
   css/sections/_works.css
   制作実績セクションのスタイル
   参考サイト風：温かみのあるベージュ背景、柔らかい角丸・影
   ============================================ */

/* ============================================
   制作実績セクション
   ============================================ */
.sec-works {
  padding: 10rem 0 12rem;
  position: relative;
  z-index: 1;
  background: var(--color-bg-warm);
  overflow: hidden;
}

/* 背景のグラデーション装飾 */
.sec-works::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(196, 224, 240, 0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.sec-works::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(212, 236, 214, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* セクションタイトル（左上配置） */
.sec-works__title-area {
  position: relative;
  max-width: 1300px;
  margin: 0 auto 4rem;
  padding: 0 4rem;
  text-align: left;
}

/* 左右レイアウト */
.sec-works__layout {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  gap: 5rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

/* 左カラム：見出し */
.sec-works__side {
  width: 26rem;
  flex-shrink: 0;
  position: sticky;
  top: 12rem;
}

.sec-works__side-deco {
  display: none;
}

.sec-works__side-deco span {
  display: block;
  width: 1rem;
  height: 3.6rem;
  border-radius: 0.3rem;
}

.sec-works__side-deco span:nth-child(1) {
  background: #1a2a3a;
}

.sec-works__side-deco span:nth-child(2) {
  background: var(--color-primary);
}

.sec-works__side-deco span:nth-child(3) {
  background: var(--color-accent);
}

.sec-works__title-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-works__side-sub {
  font-size: max(1.5rem, 14px);
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: 0.2em;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.sec-works__side-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(7rem, 10vw, 12rem);
  font-weight: 400;
  color: #cccccc73;
  -webkit-text-stroke: none;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 2rem;
  text-align: center;
}


.sec-works__side-text {
  font-size: max(1.3rem, 12px);
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 3rem;
}

.sec-works__side-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.sec-works__side-btn--sp {
  display: none;
}

.sec-works__side-btn:hover {
  gap: 2.2rem;
}

.sec-works__side-btn-text {
  font-family: 'Jost', sans-serif;
  font-size: max(1.4rem, 13px);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

.sec-works__side-btn-line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: #2d3a4a;
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
}

.sec-works__side-btn-line::after {
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.sec-works__side-btn:hover .sec-works__side-btn-line {
  background: var(--color-primary);
  transform: scale(1.06);
}


/* 右カラム：実績グリッド */
.sec-works__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 2.5rem;
}

/* 旧見出し非表示 */
.sec-works__heading {
  display: none;
}

.sec-works__inner {
  display: none;
}

.sec-works__more {
  display: none;
}


/* ============================================
   主な制作内容（ジャンル一覧）
   ============================================ */
.works-genres {
  max-width: 1300px;
  margin: 5rem auto 0;
  padding: 0 4rem;
  position: relative;
  z-index: 1;
}

.works-genres--page {
  max-width: 1200px;
  margin: 0 auto 5rem;
  padding: 0 4rem;
}

.works-genres__title {
  font-size: max(1.4rem, 13px);
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

.works-genres__title::before,
.works-genres__title::after {
  content: '';
  flex: 1;
  max-width: 8rem;
  height: 1px;
  background: rgba(42, 90, 130, 0.15);
}

.works-genres__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.works-genres__tag {
  display: inline-block;
  font-size: max(1.15rem, 10px);
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  padding: 0.5rem 1.4rem;
  background: rgba(74, 158, 196, 0.06);
  border: 1px solid rgba(74, 158, 196, 0.15);
  border-radius: var(--radius-btn);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.works-genres__tag:hover {
  background: rgba(74, 158, 196, 0.12);
  color: var(--color-primary);
  border-color: rgba(74, 158, 196, 0.3);
}

@media screen and (max-width: 767px) {
  .works-genres {
    margin-top: 3rem;
    padding: 0 2rem;
  }

  .works-genres--page {
    margin-bottom: 3rem;
    padding: 0 2rem;
  }

  .works-genres__title {
    font-size: max(1.3rem, 12px);
    margin-bottom: 1.6rem;
  }

  .works-genres__tags {
    gap: 0.6rem;
  }

  .works-genres__tag {
    font-size: max(1.05rem, 10px);
    padding: 0.4rem 1rem;
  }
}

/* ============================================
   制作実績カード
   ============================================ */
.works-card {
  display: block;
  text-decoration: none;
  color: var(--color-text, #333);
  cursor: pointer;
}

.works-card.is-visible {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.works-card:hover {
  transform: translateY(-0.4rem);
}


.works-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 1rem;
  background: #fff;
  border: none;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.works-card:hover .works-card__img-wrap {
  box-shadow: var(--shadow-hover);
  transform: scale(1.02);
}

.works-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.works-card__img-wrap img[src$=".svg"] {
  object-fit: contain;
  background: #f0f4f8;
}

.works-card:hover .works-card__img-wrap img {
  transform: scale(1.06);
}

/* ============================================
   タグ（画像の外・タイトルの上）
   ============================================ */
.works-card__tag {
  display: none;
}


/* ============================================
   テキストエリア
   ============================================ */
.works-card__body {
  padding: 1.2rem 0.2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.works-card__body .works-card__tag + .works-card__tag {
  margin-left: 0.4rem;
}

.works-card__title {
  width: 100%;
  font-size: max(1.3rem, 12px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text);
  line-height: 1.6;
}

/* ============================================
   View Allボタン
   ============================================ */
.sec-works__more {
  text-align: center;
  margin-top: 5rem;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  font-family: 'Jost', 'Raleway', sans-serif;
  font-size: max(1.5rem, 14px);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-text, #333);
  padding: 1.6rem 4rem;
  border: 2px solid var(--color-text, #333);
  border-radius: var(--radius-btn, 5rem);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-more:hover {
  background: var(--color-primary, #FF8C42);
  border-color: var(--color-primary, #FF8C42);
  color: #fff;
}

.btn-more__arrow {
  display: flex;
  align-items: center;
  width: 2rem;
  height: 2rem;
  transition: transform 0.3s ease;
}

.btn-more__arrow svg {
  width: 100%;
  height: 100%;
}

.btn-more:hover .btn-more__arrow {
  transform: translateX(0.4rem);
}

/* ============================================
   レスポンシブ（タブレット）
   ============================================ */
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .sec-works__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2.5rem;
    padding: 0 3rem;
  }
}

/* ============================================
   レスポンシブ（SP）
   ============================================ */
@media screen and (max-width: 767px) {
  .sec-works {
    padding: 6rem 0 8rem;
  }

  .sec-works__layout {
    flex-direction: column;
    gap: 3rem;
    padding: 0 2rem;
  }

  .sec-works__side {
    width: 100%;
    position: static;
  }

  .sec-works__side-title {
    font-size: clamp(4rem, 14vw, 6rem);
    margin-bottom: 1rem;
  }

  .sec-works__side-btn--pc {
    display: none;
  }

  .sec-works__side-btn--sp {
    display: inline-flex;
    margin-top: 3rem;
    justify-content: flex-end;
    width: 100%;
  }

  .sec-works__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.4rem;
  }

  .sec-works__inner {
    display: none;
  }

  .sec-works__heading {
    display: none;
  }

  .sec-works__more {
    display: none;
  }


  .works-card__img-wrap {
    aspect-ratio: 16 / 12;
    border-radius: 1.2rem;
  }

  .works-card__body {
    padding: 1.2rem 0.2rem 0;
    gap: 0.6rem;
  }

  .works-card__tag {
    font-size: max(1rem, 9px);
    padding: 0.35em 1em;
  }

  .works-card__title {
    font-size: max(1.3rem, 12px);
  }

  .sec-works__more {
    margin-top: 4rem;
  }
}
/* ============================================
   css/sections/_message.css
   代表挨拶（Message）セクションのスタイル
   参考サイト風：Jostフォント、温かみのあるベージュ系装飾
   ============================================ */

/* ============================================
   セクション全体
   ============================================ */
.sec-message {
  position: relative;
  z-index: 1;
  padding: 10rem 0 12rem;
  background: #fff;
  overflow: hidden;
}

.sec-message::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -15%;
  width: 50%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(196, 224, 240, 0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.sec-message::after {
  content: '';
  position: absolute;
  bottom: 5%;
  right: -10%;
  width: 40%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(212, 236, 214, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.sec-message__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  gap: 6rem;
  position: relative;
  z-index: 1;
}

/* ============================================
   左側：テキストコンテンツ
   ============================================ */
.sec-message__body {
  flex: 1;
  min-width: 0;
  position: relative;
}

/* 英語大見出し（参考サイト風：Jostフォント、ベージュ系薄色） */
.sec-message__en {
  font-family: 'Cormorant', serif;
  font-size: clamp(7rem, 10vw, 12rem);
  font-weight: 400;
  color: #cccccc73;
  -webkit-text-stroke: none;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 2.4rem;
  user-select: none;
  pointer-events: none;
}

/* キャッチコピー */
.sec-message__catch {
  font-size: max(2rem, 18px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: var(--color-heading, #1a1a1a);
  margin-bottom: 3rem;
  position: relative;
}

.sec-message__catch::after {
  content: '';
  display: block;
  width: 4rem;
  height: 2px;
  background: var(--gradient-accent);
  margin-top: 2rem;
  border-radius: 1px;
}

.message-deco {
  position: absolute;
  right: -2rem;
  top: 6rem;
  font-family: adobe-handwriting-ernie, sans-serif;
  font-size: clamp(2.5rem, 3vw, 4rem);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.08em;
  color: rgba(74, 158, 196, 0.3);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  transform: rotate(-6deg);
}

/* 本文 */
.sec-message__text {
  font-size: max(1.4rem, 13px);
  font-weight: 400;
  line-height: 2.3;
  color: var(--color-text-light, #666);
  letter-spacing: 0.04em;
  margin-bottom: 3.6rem;
}

/* CTAボタン */
.sec-message__btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: max(1.4rem, 13px);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text, #333);
  padding: 1.6rem 4rem;
  border: 2px solid var(--color-text, #333);
  border-radius: var(--radius-btn, 5rem);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.sec-message__btn:hover {
  background: var(--color-primary, #FF8C42);
  border-color: var(--color-primary, #FF8C42);
  color: #fff;
}

.sec-message__btn-arrow {
  display: flex;
  align-items: center;
  width: 2rem;
  height: 2rem;
  transition: transform 0.3s ease;
}

.sec-message__btn-arrow svg {
  width: 100%;
  height: 100%;
}

.sec-message__btn:hover .sec-message__btn-arrow {
  transform: translateX(0.4rem);
}

/* ============================================
   右側：装飾エリア（イメージ・デコレーション）
   ============================================ */
.sec-message__visual {
  position: relative;
  width: 42%;
  max-width: 46rem;
  flex-shrink: 0;
}

.sec-message__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-card, 1.6rem);
  overflow: hidden;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.06);
}

.sec-message__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 装飾：ドットパターン（温かみのあるベージュ系） */
.sec-message__visual::before {
  content: '';
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 10rem;
  height: 10rem;
  background-image: radial-gradient(circle, rgba(74, 158, 196, 0.15) 1.5px, transparent 1.5px);
  background-size: 1rem 1rem;
  z-index: -1;
  border-radius: 0.4rem;
}

/* 装飾：アクセントライン */
.sec-message__visual::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 6rem;
  height: 6rem;
  border-left: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  opacity: 0.2;
  border-radius: 0 0 0 0.4rem;
}

/* ============================================
   ウェーブ：制作実績 → 代表挨拶
   ============================================ */
.section-wave--works-to-message {
  background: var(--color-bg-warm, #f8f5f0);
}
.section-wave--works-to-message svg {
  fill: #fff;
}

/* ============================================
   レスポンシブ（タブレット）
   ============================================ */
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .sec-message__inner {
    gap: 4rem;
    padding: 0 3rem;
  }

  .sec-message__visual {
    width: 38%;
  }

  .sec-message__en {
    font-size: clamp(4rem, 8vw, 8rem);
  }

  .sec-message__catch {
    font-size: max(1.8rem, 16px);
  }
}

/* ============================================
   レスポンシブ（SP）
   ============================================ */
@media screen and (max-width: 767px) {
  .sec-message {
    padding: 6rem 0 8rem;
  }

  .sec-message__inner {
    flex-direction: column;
    gap: 3rem;
    padding: 0 2rem;
  }

  .sec-message__visual {
    width: 100%;
    max-width: none;
    order: -1;
  }

  .sec-message__img-wrap {
    aspect-ratio: 16 / 10;
    border-radius: 1.2rem;
  }

  .sec-message__visual::before {
    width: 6rem;
    height: 6rem;
    top: -1rem;
    right: -1rem;
  }

  .sec-message__visual::after {
    width: 4rem;
    height: 4rem;
    bottom: -1rem;
    left: -1rem;
  }

  .sec-message__en {
    font-size: clamp(3.6rem, 12vw, 5rem);
    margin-bottom: 1.6rem;
  }

  .sec-message__catch {
    font-size: max(1.7rem, 16px);
    margin-bottom: 2rem;
    line-height: 1.9;
  }

  .sec-message__catch::after {
    width: 3rem;
    margin-top: 1.6rem;
  }

  .sec-message__text {
    font-size: max(1.3rem, 13px);
    line-height: 2;
    margin-bottom: 2.8rem;
  }

  .sec-message__btn {
    font-size: max(1.3rem, 12px);
    padding: 1.2rem 3rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    width: fit-content;
  }
}
/* ============================================
   お問い合わせセクション
   ============================================ */
.sec-contact {
  position: relative;
  z-index: 1;
  padding: 10rem 0 12rem;
  background: var(--color-bg-warm);
  text-align: center;
  overflow: hidden;
}

.sec-contact__bg-deco {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 70%;
  height: 120%;
  background: linear-gradient(160deg, rgba(196, 224, 240, 0.35) 0%, rgba(212, 236, 214, 0.2) 50%, transparent 100%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.sec-contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
  z-index: 1;
}

/* 見出し */
.sec-contact__heading {
  position: relative;
  margin-bottom: 5rem;
  text-align: center;
}

.sec-contact__en {
  font-family: 'Cormorant', serif;
  font-size: clamp(7rem, 10vw, 12rem);
  font-weight: 400;
  color: #cccccc73;
  -webkit-text-stroke: none;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  display: inline-block;
  position: relative;
}

.sec-contact__title-main {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: max(1.5rem, 14px);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-heading);
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  z-index: 2;
}

.sec-contact__lead-text {
  font-size: max(1.4rem, 13px);
  font-weight: 400;
  line-height: 2.2;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
}

.sec-contact__lead-text .em {
  color: var(--color-primary);
  font-weight: 700;
}

/* カードグリッド */
.sec-contact__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-card {
  background: #fff;
  border-radius: 2rem;
  padding: 3.6rem 2.8rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card:hover {
  transform: translateY(-0.6rem);
  box-shadow: var(--shadow-hover);
}

.contact-card__icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  color: var(--color-primary);
}

.contact-card__icon svg {
  width: 100%;
  height: 100%;
}

.contact-card__title {
  font-size: max(1.6rem, 14px);
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
}

.contact-card__text {
  font-size: max(1.3rem, 12px);
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

.contact-card__btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: max(1.2rem, 11px);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--gradient-accent);
  padding: 1.2rem 3rem;
  border-radius: var(--radius-btn);
  text-decoration: none;
  box-shadow: 0 0.4rem 1.2rem rgba(74, 158, 196, 0.25);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-card__btn:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 0.6rem 2rem rgba(74, 158, 196, 0.4);
}

/* 注意書き */
.sec-contact__note {
  margin-bottom: 0;
}

.sec-contact__note p {
  font-size: max(1.2rem, 11px);
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 2;
  letter-spacing: 0.04em;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--gradient-accent);
  color: #fff;
  text-decoration: none;
  font-size: max(1.6rem, 15px);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2.2rem 5rem;
  border-radius: var(--radius-btn);
  box-shadow: 0 0.6rem 2rem rgba(74, 158, 196, 0.35);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-contact:hover {
  box-shadow: 0 0.8rem 3rem rgba(74, 158, 196, 0.5);
  transform: translateY(-0.2rem);
}

.btn-contact__icon {
  display: flex;
  width: 3rem;
  height: 3rem;
}

.btn-contact__icon svg {
  width: 100%;
  height: 100%;
}

.btn-contact__arrow {
  display: flex;
  width: 2rem;
  height: 2rem;
  transition: transform 0.3s ease;
}

.btn-contact__arrow svg {
  width: 100%;
  height: 100%;
}

.btn-contact:hover .btn-contact__arrow {
  transform: translateX(0.4rem);
}

/* レスポンシブ（SP） */
@media screen and (max-width: 767px) {
  .sec-contact {
    padding: 6rem 0 8rem;
  }

  .sec-contact__inner {
    padding: 0 2rem;
  }

  .sec-contact__lead-text {
    font-size: max(1.4rem, 13px);
  }

  .sec-contact__cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-card {
    padding: 2.8rem 2rem;
  }

  .sec-contact__heading {
    margin-bottom: 3rem;
  }

  .sec-contact__title-main {
    font-size: max(2rem, 18px);
  }
}


/* ============================================
   CTAバナーセクション（参考: 横長バナー2段構成）
   ============================================ */
.sec-cta-banners {
  position: relative;
  z-index: 1;
  padding: 8rem 0 10rem;
  background: var(--color-bg-warm);
}

.sec-cta-banners__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: stretch;
}


/* バナー共通 */
.cta-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3.5rem;
  overflow: hidden;
  min-height: 24rem;
  border-radius: 2rem;
  box-shadow: var(--shadow-soft);
  flex: 1;
  flex-direction: column;
  text-align: center;
  gap: 2rem;
}

/* 背景画像 */
.cta-banner__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* グラデーションオーバーレイ */
.cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* お問い合わせバナー */
.cta-banner--contact {
  background: #2d7ba8;
}

.cta-banner--contact .cta-banner__bg {
  background: linear-gradient(135deg, rgba(45, 123, 168, 0.88) 0%, rgba(74, 158, 196, 0.75) 100%);
}

/* スタッフ募集バナー */
.cta-banner--recruit {
  background: #c8a050;
}

.cta-banner--recruit .cta-banner__bg {
  background: linear-gradient(135deg, rgba(200, 160, 80, 0.88) 0%, rgba(212, 183, 106, 0.75) 100%);
}

/* 丸い装飾 */
.cta-banner__circle {
  position: relative;
  z-index: 3;
  width: 13rem;
  height: 13rem;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
}

.cta-banner--contact .cta-banner__circle {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-banner--recruit .cta-banner__circle {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-banner__circle-text {
  font-size: max(1.5rem, 13px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

/* テキストエリア */
.cta-banner__body {
  position: relative;
  z-index: 3;
  min-width: 0;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cta-banner__en {
  font-family: 'Jost', sans-serif;
  font-size: max(1.1rem, 10px);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.8rem;
}

.cta-banner__title {
  font-size: max(2.8rem, 22px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 1.4rem;
  line-height: 1.4;
}

.cta-banner__em {
  position: relative;
}

.cta-banner--contact .cta-banner__em {
  color: #ffe066;
}

.cta-banner--recruit .cta-banner__em {
  color: #fff;
}

.cta-banner__text {
  font-size: max(1.3rem, 12px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2;
  letter-spacing: 0.04em;
}

.cta-banner__info {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cta-banner__info-item {
  font-size: max(1.15rem, 10px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.cta-banner__info-label {
  display: inline-block;
  font-size: max(1.05rem, 10px);
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.2rem 0.8rem;
  border-radius: 0.4rem;
  white-space: nowrap;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .cta-banner__info-item {
    flex-direction: column;
    gap: 0.3rem;
    font-size: max(1.1rem, 10px);
  }
}

/* ボタンエリア */
.cta-banner__actions {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  margin-left: 0;
  margin-top: auto;
}

.cta-banner__btn {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  text-decoration: none;
  padding: 1.6rem 3rem;
  border-radius: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-banner__btn--primary {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta-banner__btn--primary:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-0.3rem);
  box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.15);
}

.cta-banner__btn-icon {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-banner__btn-icon svg {
  width: 100%;
  height: 100%;
}

.cta-banner__btn-label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cta-banner__btn-sub {
  font-size: max(1.1rem, 10px);
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.cta-banner__btn-main {
  font-size: max(1.6rem, 14px);
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* ============================================
   CTAバナー レスポンシブ（タブレット）
   ============================================ */
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .cta-banner {
    padding: 3rem 2.5rem;
  }

  .cta-banner__circle {
    width: 11rem;
    height: 11rem;
  }

  .cta-banner__title {
    font-size: max(2.2rem, 18px);
  }
}

/* ============================================
   CTAバナー レスポンシブ（SP）
   ============================================ */
@media screen and (max-width: 767px) {
  .sec-cta-banners {
    padding: 6rem 0 8rem;
  }

  .sec-cta-banners__inner {
    padding: 0 2rem;
    gap: 2rem;
    flex-direction: column;
  }

  .cta-banner {
    flex-direction: column;
    padding: 3rem 2rem;
    min-height: auto;
    text-align: center;
    gap: 2rem;
    border-radius: 1.4rem;
  }

  .cta-banner__circle {
    width: 12rem;
    height: 12rem;
    margin-right: 0;
  }

  .cta-banner__circle-text {
    font-size: max(1.3rem, 12px);
  }

  .cta-banner__title {
    font-size: max(2.2rem, 20px);
  }

  .cta-banner__text {
    font-size: max(1.2rem, 12px);
  }

  .cta-banner__text br {
    display: none;
  }

  .cta-banner__actions {
    margin-left: 0;
    width: 100%;
  }

  .cta-banner__btn {
    justify-content: center;
    width: 100%;
  }
}






/* ============================================
   フッター波線装飾
   ============================================ */
.footer-wave {
  display: block;
  margin-bottom: -1px;
  line-height: 0;
  background: #f0f6fb;
}
.footer-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================================
   フッター
   ============================================ */
.site-footer {
  background: #1a2a3a;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* 背景装飾 */
.site-footer::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -15%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(74, 158, 196, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.site-footer::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 40%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(139, 198, 160, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* 上部グラデーション装飾（非表示 — 波形に統合） */
.site-footer__gradient {
  display: none;
}
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.6rem 4rem 2rem;
  position: relative;
  z-index: 1;
}

/* CTAバー（フルワイド・独立エリア） */
.site-footer__cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.2rem;
  padding: 2.8rem 3.6rem;
  margin-bottom: 5.6rem;
}

.site-footer__cta-bar-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.site-footer__cta-bar-lead {
  font-size: max(1.2rem, 11px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
}

/* ロゴ単独行 */
.site-footer__logo-row {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* 左カラム */
.site-footer__col-left {
  flex: 1;
  min-width: 0;
}

/* ロゴ・会社情報 */
.site-footer__brand {
  width: auto;
  flex-shrink: 0;
  text-align: center;
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.site-footer__logo img {
  width: 16rem;
  height: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.site-footer__logo:hover img {
  opacity: 0.8;
}

.site-footer__company {
  font-size: max(1.4rem, 13px);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.site-footer__representative {
  font-size: max(1.2rem, 11px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.2rem;
}

.site-footer__address {
  font-size: max(1.2rem, 11px);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.site-footer__email {
  font-size: max(1.2rem, 11px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.site-footer__email a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__email a:hover {
  color: #8bc6a0;
}

/* フッターナビ */
.site-footer__nav {
  display: flex;
  gap: 5rem;
}

.site-footer__nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__nav-heading {
  font-family: 'Jost', sans-serif;
  font-size: max(1.3rem, 12px);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #8bc6a0;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid rgba(139, 198, 160, 0.2);
  display: inline-block;
}

.site-footer__nav-col li {
  margin-bottom: 1rem;
}

.site-footer__nav-col a {
  font-size: max(1.2rem, 11px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.site-footer__nav-col a:hover {
  color: #8bc6a0;
}

/* 対応技術（非表示） */
.site-footer__tech {
  display: none;
}

/* ロゴ + タグライン 横並び */
.site-footer__logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.6rem;
}

.site-footer__logo-row .site-footer__logo {
  margin-bottom: 0;
}

/* キャッチフレーズ */
.site-footer__tagline {
  font-family: 'Cormorant', serif;
  font-size: max(1.8rem, 15px);
  font-weight: 400;
  font-style: italic;
  color: rgba(139, 198, 160, 0.6);
  letter-spacing: 0.12em;
  margin-bottom: 0;
  line-height: 1.4;
}

/* 受付時間 */
.site-footer__hours {
  font-size: max(1.15rem, 10px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-top: 1.6rem;
}

.site-footer__hours-label {
  display: inline-block;
  font-size: max(1.05rem, 10px);
  font-weight: 700;
  color: #1a2a3a;
  background: #ffffff;
  padding: 0.15rem 0.7rem;
  border-radius: 0.3rem;
  margin-right: 0.6rem;
  letter-spacing: 0.06em;
}

/* SNSリンク */
.site-footer__sns {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.site-footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.site-footer__sns-link svg {
  width: 1.8rem;
  height: 1.8rem;
}

.site-footer__sns-link:hover {
  color: #fff;
  border-color: #8bc6a0;
  background: rgba(139, 198, 160, 0.15);
  transform: translateY(-0.3rem);
  box-shadow: 0 0.4rem 1.2rem rgba(139, 198, 160, 0.2);
}

/* フッターCTA（CTAバー内で使用） */
.site-footer__cta {
  flex-shrink: 0;
}

.site-footer__cta-text {
  font-size: max(1.3rem, 12px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
}

.site-footer__cta-em {
  font-size: max(2rem, 18px);
  font-weight: 700;
  color: #ffe066;
  margin-left: 0.4rem;
}

.site-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gradient-accent);
  color: #fff;
  text-decoration: none;
  font-size: max(1.3rem, 12px);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 1.4rem 3rem;
  border-radius: var(--radius-btn);
  box-shadow: 0 0.4rem 1.2rem rgba(74, 158, 196, 0.35),
              0 0 2rem rgba(74, 158, 196, 0.15);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.site-footer__cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.site-footer__cta-btn:hover::before {
  left: 100%;
}

.site-footer__cta-btn:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 0.8rem 2.4rem rgba(74, 158, 196, 0.5),
              0 0 3rem rgba(74, 158, 196, 0.25);
}

.site-footer__cta-btn-icon {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__cta-btn-icon svg {
  width: 100%;
  height: 100%;
}

/* 大型CTAボタングループ */
.site-footer__cta-group {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 50%;
  justify-content: center;
  align-self: center;
}

.site-footer__cta-large {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.8rem 3.2rem;
  border-radius: 0.6rem;
  font-size: max(1.4rem, 13px);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  min-width: 26rem;
  letter-spacing: 0.04em;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-footer__cta-large:hover {
  opacity: 0.88;
  transform: translateY(-0.2rem);
}

.site-footer__cta-large--contact {
  background: #4a9ec4;
}

.site-footer__cta-large--consult {
  background: #8bc6a0;
}

.site-footer__cta-large-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
}

.site-footer__cta-large-icon svg {
  width: 100%;
  height: 100%;
}

/* フラットナビ */
.site-footer__flat-nav {
  padding: 2.4rem 0 0;
  border-bottom: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2.4rem;
}

.site-footer__flat-nav--right {
  flex-shrink: 0;
  width: auto;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  align-self: center;
}

.site-footer__flat-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1.4rem;
  column-gap: 1.6rem;
}

.site-footer__flat-nav li {
  display: flex;
  align-items: center;
}

.site-footer__flat-nav li::before {
  content: '›';
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.35);
  margin-right: 0.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.site-footer__flat-nav a {
  font-size: max(1.25rem, 12px);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.site-footer__flat-nav a:hover {
  color: #8bc6a0;
}

/* コピーライト */
.site-footer__bottom {
  padding-top: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.site-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-footer__bottom-links a {
  font-size: max(1.1rem, 10px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
  position: relative;
}

.site-footer__bottom-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #8bc6a0;
  transition: width 0.3s ease;
}

.site-footer__bottom-links a:hover::after {
  width: 100%;
}

.site-footer__bottom-links a:hover {
  color: #8bc6a0;
}

.site-footer__bottom-links span {
  font-size: max(1rem, 9px);
  color: rgba(255, 255, 255, 0.2);
}

.site-footer__copyright {
  font-size: max(1.1rem, 10px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
}

/* レスポンシブ（タブレット） */
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .site-footer__top {
    gap: 4rem;
  }

  .site-footer__nav {
    gap: 3rem;
  }

  .site-footer__cta-large {
    min-width: 22rem;
    padding: 1.6rem 2.4rem;
  }
}

/* レスポンシブ（タブレット） */
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .site-footer__cta-bar {
    padding: 2.4rem 2.8rem;
  }
}

/* レスポンシブ（SP） */
@media screen and (max-width: 767px) {
  .site-footer__inner {
    padding: 5rem 2rem 2.5rem;
  }

  .site-footer__cta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.4rem 2rem;
    margin-bottom: 4rem;
  }

  .site-footer__cta-bar .site-footer__cta-btn {
    width: 100%;
    justify-content: center;
  }

  .site-footer__top {
    flex-direction: column;
    gap: 3rem;
    padding-bottom: 3rem;
  }

  .site-footer__brand {
    width: 100%;
  }

  .site-footer__cta-group {
    width: 100%;
  }


  .site-footer__nav {
    width: 100%;
    gap: 0;
    justify-content: space-between;
  }

  .site-footer__nav-col {
    flex: 1;
  }

  .site-footer__tech {
    display: none;
  }

  .site-footer__sns {
    justify-content: flex-start;
  }

  .site-footer__bottom {
    padding-top: 2.5rem;
  }

  .site-footer__bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }
}

/* ============================================
   page-service.css
   ============================================ */
/* ============================================
   css/page-service.css
   サービス概要 下層ページ専用スタイル
   ============================================ */

/* ============================================
   下層ヘッダー背景
   ============================================ */
.site-header--sub {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header--sub.is-scrolled {
  background: rgba(240, 246, 251, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0.2rem 1.2rem rgba(42, 90, 130, 0.06);
}


/* ============================================
   ページヒーロー
   ============================================ */
.page-hero {
  position: relative;
  padding: 14rem 4rem 10rem;
  background: linear-gradient(135deg, #eef5fa 0%, #d4ecd6 40%, rgba(196, 224, 240, 0.4) 100%);
  text-align: left;
  overflow: hidden;
  min-height: 28rem;
}

.page-hero__bg-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
}

.page-hero__bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero__bg-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #eef5fa 0%, rgba(238, 245, 250, 0.6) 30%, rgba(212, 236, 214, 0.2) 70%, transparent 100%);
  z-index: 1;
}

.page-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 3;
}

.page-hero__wave svg {
  width: 100%;
  height: 6rem;
  display: block;
}

.page-hero__en {
  font-family: 'Jost', sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.page-hero__title {
  font-size: max(2rem, 18px);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-heading);
  margin-top: 0;
  margin-bottom: 1.4rem;
}

.page-hero__breadcrumb {
  margin-top: 2.4rem;
  font-size: max(1.2rem, 11px);
  color: var(--color-text-light);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
}

.page-hero__breadcrumb a {
  color: var(--color-primary, #FF8C42);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.page-hero__breadcrumb a:hover {
  opacity: 0.7;
}

.page-hero__lead {
  font-size: max(1.3rem, 12px);
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
  line-height: 2;
  max-width: 44rem;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* ヒーロー → コンテンツ ウェーブ */
.section-wave--hero-to-content {
  background: linear-gradient(135deg, #e7eef3 0%, #f8f5f0 100%);
}
.section-wave--hero-to-content svg {
  fill: #fff;
}

/* ============================================
   サービスセクション共通
   ============================================ */
.srv-section {
  position: relative;
  z-index: 1;
  padding: 8rem 0 10rem;
}

.srv-section--white {
  background: #fff;
}

.srv-section--warm {
  background: var(--color-bg-warm, #f8f5f0);
}

/* ウェーブ色定義 */
.section-wave--white-to-warm {
  background: #fff;
}
.section-wave--white-to-warm svg {
  fill: var(--color-bg-warm, #f8f5f0);
}

.section-wave--warm-to-white {
  background: var(--color-bg-warm, #f8f5f0);
}
.section-wave--warm-to-white svg {
  fill: #fff;
}

/* レイアウト：画像＋テキスト横並び */
.srv-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: flex-start;
  gap: 6rem;
}

.srv-section__inner--reverse {
  flex-direction: row-reverse;
}

.srv-section__inner--center {
  flex-direction: column;
  align-items: center;
}

/* ビジュアル */
.srv-section__visual {
  width: 45%;
  flex-shrink: 0;
  position: relative;
}

.srv-section__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card, 1.6rem);
  overflow: hidden;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.06);
  position: relative;
}

.srv-section__img-label {
  position: absolute;
  bottom: -2rem;
  left: -1rem;
  font-family: adobe-handwriting-ernie, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: max(4rem, 32px);
  color: rgba(74, 158, 196, 0.5);
  letter-spacing: 0.05em;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  transform: rotate(-5deg);
}

#ad .srv-section__img-label {
  color: rgba(255, 255, 255, 0.7);
}

.srv-section__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テキストエリア */
.srv-section__body {
  flex: 1;
  min-width: 0;
}

.srv-section__body--full {
  width: 100%;
  max-width: 960px;
}

.srv-section__num {
  font-family: 'Cormorant', serif;
  font-size: max(6rem, 42px);
  font-weight: 300;
  font-style: italic;
  color: var(--color-primary);
  opacity: 0.2;
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.srv-section__title {
  font-size: max(2.4rem, 20px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-heading, #1a1a1a);
  margin-bottom: 2.4rem;
  line-height: 1.5;
  position: relative;
  padding-bottom: 1.6rem;
}

.srv-section__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary, #FF8C42), #ffb347);
  border-radius: 1px;
}

.srv-section__title-en {
  display: block;
  font-family: 'Cormorant', serif;
  font-size: max(1.8rem, 15px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-top: 0.8rem;
  opacity: 0.5;
}

.srv-section__text {
  font-size: max(1.4rem, 13px);
  font-weight: 400;
  line-height: 2.2;
  color: var(--color-text-light, #666);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

.srv-section__note {
  font-size: max(1.2rem, 11px);
  color: var(--color-text-light, #666);
  line-height: 2;
  margin-top: 3rem;
}

.srv-section__stance {
  font-size: max(1.5rem, 14px);
  font-weight: 700;
  color: var(--color-primary, #4a9ec4);
  letter-spacing: 0.06em;
  margin-top: 3rem;
  padding: 2rem 2.4rem;
  background: var(--color-primary-light, rgba(74, 158, 196, 0.08));
  border-radius: 1rem;
  border-left: 4px solid var(--color-primary, #4a9ec4);
}

/* ============================================
   ポリシーバッジ
   ============================================ */
.srv-stance-badge {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 2rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.srv-stance-badge__main {
  font-size: max(2.4rem, 20px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.6;
  display: inline-block;
  background: var(--gradient-accent);
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(74, 158, 196, 0.3);
  padding: 0.8rem 2.4rem;
  margin-top: 0.8rem;
}

.srv-stance-badge__sub {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-light, #5a6a7a);
  letter-spacing: 0.02em;
  line-height: 1.7;
  margin-top: 0.5rem;
}

@media (max-width: 767px) {
  .srv-stance-badge {
    padding: 2rem 1.6rem;
    border-radius: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .srv-stance-badge__main {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(74, 158, 196, 0.3);
    border-radius: 0;
    margin-top: 0;
    font-size: 18px;
  }

  .srv-stance-badge__sub {
    font-size: 16px;
  }
}

/* ============================================
   チェックポイント
   ============================================ */
.srv-section__points {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.srv-point {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.srv-point__icon {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  color: var(--color-primary, #FF8C42);
}

.srv-point__icon svg {
  width: 100%;
  height: 100%;
}

.srv-point__text {
  font-size: max(1.4rem, 13px);
  font-weight: 600;
  color: var(--color-text, #333);
  letter-spacing: 0.04em;
}

/* ============================================
   3ポイント v2（角丸白背景ボックス）
   ============================================ */
.srv-points-v2 {
  background: #fff;
  border-radius: 1.6rem;
  padding: 3.2rem 3.6rem;
  box-shadow: 0 4px 24px rgba(74, 158, 196, 0.07), 0 1px 4px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(74, 158, 196, 0.10);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  align-items: center;
}

.srv-points-v2__list {
  display: inline-flex;
  flex-direction: column;
  gap: 1.8rem;
}

.srv-points-v2__item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.srv-points-v2__item + .srv-points-v2__item {
  padding-top: 1.8rem;
  border-top: 1px solid rgba(74, 158, 196, 0.08);
}

.srv-points-v2__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary, #4a9ec4), var(--color-accent, #8bc6a0));
  color: #fff;
}

.srv-points-v2__icon svg {
  width: 1.6rem;
  height: 1.6rem;
}

.srv-points-v2__text {
  font-size: max(1.44rem, 13.5px);
  font-weight: 600;
  color: var(--color-text, #2d3a4a);
  letter-spacing: 0.04em;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .srv-points-v2 {
    padding: 2.4rem 2rem;
    border-radius: 1.2rem;
  }
  .srv-points-v2__list {
    gap: 1.4rem;
  }
  .srv-points-v2__item + .srv-points-v2__item {
    padding-top: 1.4rem;
  }
  .srv-points-v2__icon {
    width: 2.8rem;
    height: 2.8rem;
  }
  .srv-points-v2__icon svg {
    width: 1.4rem;
    height: 1.4rem;
  }
  .srv-points-v2__text {
    font-size: max(1.32rem, 12.5px);
  }
}

/* ============================================
   広告種類カード
   ============================================ */
.srv-ad-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}


.srv-ad-type {
  background: #fff;
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: var(--shadow-card, 0 0.2rem 1.2rem rgba(0, 0, 0, 0.04));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.srv-section--white .srv-ad-type {
  background: var(--color-bg-cream, #faf7f2);
}

.srv-ad-type__icon {
  width: 3.6rem;
  height: 3.6rem;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
}

.srv-ad-type__icon svg {
  width: 100%;
  height: 100%;
}

.srv-ad-type__title {
  font-size: max(1.4rem, 13px);
  font-weight: 700;
  color: var(--color-heading, #1a1a1a);
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}


.srv-ad-type__desc {
  font-size: max(1.2rem, 11px);
  color: var(--color-text-light, #666);
  line-height: 1.8;
  margin-bottom: 0.6rem;
}

.srv-ad-type__note {
  font-size: max(1.1rem, 10px);
  color: var(--color-primary, #FF8C42);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============================================
   採用導線ステップ
   ============================================ */
.srv-steps {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 3.6rem;
}

/* 広告セクション 種類カード 中央配置ラッパー */
.srv-ad-center {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 4rem 0;
}

.srv-ad-center .srv-ad-types {
  max-width: 100%;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
}

.srv-ad-center .srv-section__stance {
  max-width: 800px;
  margin: 3rem auto 0;
}

.srv-ad-center .srv-stance-badge {
  max-width: 800px;
  margin: 3rem auto 0;
}

@media screen and (max-width: 1200px) {
  .srv-ad-center .srv-ad-types {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .srv-ad-center {
    padding: 3rem 2rem 0;
  }
}

/* 医療セクション：ステートメントが末尾のため下padding不要 */
#medical {
  padding-bottom: 0;
}

/* 医療セクション ステップ・メッセージ 中央配置ラッパー */
.srv-medical-center {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}

.srv-medical-center .srv-steps {
  max-width: 560px;
  margin: 4rem auto 0;
}

.srv-medical-center .srv-medical-message {
  max-width: 800px;
  margin: 4rem auto 0;
}

@media screen and (max-width: 767px) {
  .srv-medical-center {
    padding: 0 2rem;
  }
}

/* 縦のライン */
.srv-steps::before {
  content: '';
  position: absolute;
  top: 1.4rem;
  left: 1.1rem;
  bottom: 1.4rem;
  width: 2px;
  background: var(--color-primary);
  opacity: 0.2;
}

.srv-step {
  background: var(--color-bg-cream, #faf7f2);
  border-radius: 1.2rem;
  padding: 2.4rem 2rem;
  position: relative;
  margin-bottom: 2rem;
}

.srv-step:last-child {
  margin-bottom: 0;
}

/* 丸いドット */
.srv-step::before {
  content: '';
  position: absolute;
  left: -3.6rem;
  top: 2.4rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--color-primary);
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(74, 158, 196, 0.1);
}

/* アクティブな丸（最初のステップ） */
.srv-step:first-child::before {
  background: var(--color-primary);
}

.srv-section--warm .srv-step {
  background: #fff;
}

.srv-step__num {
  font-family: 'Cormorant', serif;
  font-size: max(2.4rem, 20px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  opacity: 0.7;
  display: block;
  margin-bottom: 0.8rem;
}



.srv-step__title {
  font-size: max(1.5rem, 14px);
  font-weight: 700;
  color: var(--color-heading, #1a1a1a);
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}

.srv-step__text {
  font-size: max(1.2rem, 11px);
  color: var(--color-text-light, #666);
  line-height: 1.8;
}

/* ============================================
   医療系採用メッセージ
   ============================================ */
/* ============================================
   医療セクション ステートメント（フルワイド）
   ============================================ */
.srv-medical-statement {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 5rem;
  padding: 0;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: stretch;
  background: #f8fbfd;
  min-height: 36rem;
}

.srv-medical-statement__photo {
  position: relative;
  width: 25%;
  flex-shrink: 0;
  overflow: hidden;
}

.srv-medical-statement__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.srv-medical-statement__photo--right img {
  object-position: 20% center;
}

.srv-medical-statement__photo--left::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 8%;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.srv-medical-statement__photo--right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 8%;
  background: linear-gradient(45deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.srv-medical-statement__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 660px;
  margin: 0 auto;
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.srv-medical-statement__title {
  font-size: max(2.4rem, 20px);
  font-weight: 700;
  color: var(--color-heading, #1a2a3a);
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.srv-medical-statement__title-badge {
  display: inline-block;
  background: var(--gradient-accent);
  color: #fff;
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(74, 158, 196, 0.3);
  padding: 0.6rem 1.8rem;
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.srv-medical-statement__sub {
  font-family: 'Cormorant', serif;
  font-size: max(1.5rem, 14px);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-light, #5a6a7a);
  letter-spacing: 0.06em;
  margin-bottom: 3.6rem;
}

.srv-medical-statement__points {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3.6rem;
}

.srv-medical-statement__point {
  font-size: max(1.36rem, 13px);
  font-weight: 600;
  color: var(--color-heading, #1a2a3a);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.srv-medical-statement__divider {
  width: 1px;
  height: 1.6rem;
  background: rgba(42, 90, 130, 0.2);
  flex-shrink: 0;
}

.srv-medical-statement__closing {
  font-size: max(1.3rem, 12px);
  font-weight: 400;
  color: var(--color-text-light, #5a6a7a);
  line-height: 2.2;
  letter-spacing: 0.04em;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(42, 90, 130, 0.1);
  max-width: 560px;
  margin: 0 auto;
}


@media screen and (max-width: 767px) {
  .srv-medical-statement {
    flex-direction: column;
    margin-top: 3.5rem;
    min-height: auto;
  }

  .srv-medical-statement__photo {
    width: 100%;
    height: 40vw;
  }

  .srv-medical-statement__photo--left::after {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  }

  .srv-medical-statement__photo--right {
    display: none;
  }

  .srv-medical-statement__inner {
    padding: 3rem 2rem 4rem;
  }

  .srv-medical-statement__title {
    font-size: 18px;
  }

  .srv-medical-statement__sub {
    margin-bottom: 2.4rem;
  }

  .srv-medical-statement__points {
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.4rem;
  }

  .srv-medical-statement__divider {
    width: 2.4rem;
    height: 1px;
  }

  .srv-medical-statement__closing {
    font-size: max(1.2rem, 12px);
  }

  .srv-medical-statement__closing br {
    display: none;
  }
}

/* ============================================
   制作フロー
   ============================================ */
.srv-flow {
  display: grid;
  grid-template-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
  gap: 0.6rem;
  margin-top: 4rem;
  align-items: stretch;
}

.srv-flow__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.srv-flow__connector svg {
  width: 2.4rem;
  height: 1.4rem;
}

.srv-flow__item {
  background: #fff;
  border-radius: 1.2rem;
  padding: 0 1.6rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-card, 0 0.2rem 1.2rem rgba(0, 0, 0, 0.04));
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.srv-flow__item .srv-flow__text {
  margin-top: auto;
}

.srv-section--white .srv-flow__item {
  background: var(--color-bg-cream, #faf7f2);
}

.srv-flow__img {
  width: calc(100% + 3.2rem);
  margin-left: -1.6rem;
  margin-right: -1.6rem;
  aspect-ratio: 16 / 10;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 1.4rem;
  position: relative;
}

.srv-flow__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-smooth);
}

.srv-flow__item:hover .srv-flow__img img {
  transform: scale(1.04);
}



.srv-flow__step {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  font-family: 'Cormorant', serif;
  font-size: max(2.8rem, 22px);
  font-weight: 600;
  font-style: italic;
  color: #fff;
  line-height: 1;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  z-index: 1;
  pointer-events: none;
}

.srv-flow__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-heading, #1a1a1a);
  letter-spacing: 0.06em;
}

.srv-flow__text {
  font-size: max(1.1rem, 10px);
  color: var(--color-text-light, #666);
  line-height: 1.8;
}


/* ============================================
   対応技術グリッド
   ============================================ */
.srv-tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}

.srv-tech-item {
  background: var(--color-bg-cream, #faf7f2);
  border: 1px solid rgba(200, 180, 155, 0.2);
  border-radius: 1.2rem;
  padding: 2.4rem 3.2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.srv-tech-item:hover {
  transform: translateY(-0.3rem);
  box-shadow: var(--shadow-soft, 0 0.4rem 2rem rgba(0, 0, 0, 0.05));
}

.srv-tech-item__name {
  font-size: max(1.4rem, 13px);
  font-weight: 700;
  color: var(--color-heading, #1a1a1a);
  letter-spacing: 0.06em;
}

/* ============================================
   CTA
   ============================================ */
.srv-cta {
  position: relative;
  z-index: 1;
  padding: 8rem 0 10rem;
  background: var(--color-bg-warm, #f8f5f0);
  text-align: center;
}

.srv-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 4rem;
}

.srv-cta__title {
  font-size: max(2.2rem, 20px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-heading, #1a1a1a);
  margin-bottom: 2rem;
}

.srv-cta__text {
  font-size: max(1.4rem, 13px);
  color: var(--color-text-light, #666);
  line-height: 2.2;
  letter-spacing: 0.04em;
  margin-bottom: 3.6rem;
}

/* ============================================
   レスポンシブ（タブレット）
   ============================================ */
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .srv-section__inner {
    gap: 4rem;
    padding: 0 3rem;
  }

  .srv-section__visual {
    width: 42%;
  }

  .srv-ad-types {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }

  .srv-section__img-label {
    white-space: normal;
    max-width: 180px;
    font-size: 22px;
    line-height: 1.3;
  }

}

/* ============================================
   レスポンシブ（SP）
   ============================================ */
@media screen and (max-width: 767px) {
  .page-hero {
    padding: 10rem 2rem 8rem;
    min-height: auto;
  }

  .page-hero__bg-photo {
    width: 100%;
    height: 45%;
    top: auto;
    bottom: 0;
    opacity: 0.3;
  }

  .page-hero__bg-photo::after {
    background: linear-gradient(180deg, #eef5fa 0%, rgba(238, 245, 250, 0.5) 50%, transparent 100%);
  }

  .page-hero__en {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .page-hero__title {
    font-size: max(1.8rem, 17px);
  }

  .page-hero__lead {
    font-size: max(1.2rem, 12px);
    max-width: 100%;
  }

  .page-hero__wave svg {
    height: 4rem;
  }

  .srv-section {
    padding: 6rem 0 8rem;
  }

  .srv-section__inner {
    flex-direction: column;
    gap: 3rem;
    padding: 0 2rem;
  }

  .srv-section__inner--reverse {
    flex-direction: column;
  }

  .srv-section__visual {
    width: 100%;
  }

  .srv-section__img-wrap {
    border-radius: 1.2rem;
  }

  .srv-section__visual {
    position: relative;
  }

  .srv-section__img-label {
    font-size: 13px;
    bottom: 1rem;
    left: 0.8rem;
    white-space: normal;
    max-width: 160px;
    line-height: 1.3;
  }

  .srv-section__visual::after {
    content: attr(data-num);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    bottom: auto;
    left: auto;
    font-family: 'Cormorant', serif;
    font-size: max(8rem, 60px);
    font-weight: 300;
    font-style: italic;
    line-height: 1;
    color: #fff;
    opacity: 0.7;
    z-index: 2;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.35), 0 0 40px rgba(0, 0, 0, 0.15);
    pointer-events: none;
  }

  .srv-section__num {
    display: none;
  }

  .srv-section__title {
    font-size: max(2rem, 18px);
  }

  .srv-ad-types {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }

  .srv-ad-type {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .srv-ad-type__icon {
    width: 2.8rem;
    height: 2.8rem;
    margin-bottom: 0.8rem;
  }

  .srv-ad-type__title {
    font-size: max(1.2rem, 11px);
  }

  .srv-ad-type__desc {
    font-size: max(1.05rem, 10px);
  }

  .srv-ad-type__note {
    font-size: max(1rem, 9px);
  }

  .srv-steps {
    padding-left: 3rem;
  }

  .srv-step::before {
    left: -3rem;
    width: 1.8rem;
    height: 1.8rem;
  }

  .srv-steps::before {
    left: 0.9rem;
  }

  .srv-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .srv-flow__item {
    width: 100%;
  }

  .srv-flow__connector {
    padding: 0.6rem 0;
  }

  .srv-flow__connector svg {
    width: 2.4rem;
    height: 4.8rem;
    transform: rotate(90deg);
  }

  .srv-flow__title {
    font-size: 17px;
  }

  .srv-tech-grid {
    gap: 1.2rem;
  }

  .srv-tech-item {
    padding: 1.8rem 2.4rem;
  }

  .srv-cta {
    padding: 6rem 0 8rem;
  }

  .srv-cta__inner {
    padding: 0 2rem;
  }

  .srv-cta__title {
    font-size: max(1.8rem, 18px);
  }
}

/* ============================================
   page-works.css
   ============================================ */
/* ============================================
   css/page-works.css
   制作実績 下層ページ専用スタイル
   参考: Mira Design（タグフィルター＋カード）
         ひとみデザイン（温かみ・画像メイン）
         rdlp.jp（タグ＋クライアント名の一覧構成）
   ============================================ */

/* ============================================
   下層ヘッダー
   ============================================ */
.site-header--sub {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header--sub.is-scrolled {
  background: rgba(240, 246, 251, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0.2rem 1.2rem rgba(42, 90, 130, 0.06);
}


/* ============================================
   ページヒーロー
   ============================================ */
.page-hero {
  position: relative;
  padding: 14rem 4rem 10rem;
  background: linear-gradient(135deg, #eef5fa 0%, #d4ecd6 40%, rgba(196, 224, 240, 0.4) 100%);
  text-align: left;
  overflow: hidden;
  min-height: 28rem;
}

.page-hero__bg-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
}

.page-hero__bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero__bg-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #eef5fa 0%, rgba(238, 245, 250, 0.6) 30%, rgba(212, 236, 214, 0.2) 70%, transparent 100%);
  z-index: 1;
}

.page-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 3;
}

.page-hero__wave svg {
  width: 100%;
  height: 6rem;
  display: block;
}

/* page-works.css のヒーロー定義は page-service.css で統合済み */

.page-hero__lead {
  font-size: max(1.3rem, 12px);
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
  line-height: 2;
  max-width: 44rem;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* ヒーロー → コンテンツ ウェーブ */
.section-wave--hero-to-content {
  background: linear-gradient(135deg, #e7eef3 0%, #f8f5f0 100%);
}
.section-wave--hero-to-content svg {
  fill: #fff;
}

/* ============================================
   実績一覧セクション
   ============================================ */
.sec-works-list {
  position: relative;
  z-index: 1;
  padding: 6rem 0 10rem;
  background: #fff;
}

/* ============================================
   フィルターナビ
   参考: Mira Design のタブ型フィルター
   ============================================ */
.works-filter {
  max-width: 1200px;
  margin: 0 auto 5rem;
  padding: 0 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.works-filter__btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: max(1.3rem, 12px);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text-light, #666);
  background: transparent;
  border: 2px solid #e8e4de;
  border-radius: var(--radius-btn, 5rem);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.works-filter__btn:hover {
  border-color: var(--color-primary, #FF8C42);
  color: var(--color-primary, #FF8C42);
}

.works-filter__btn.is-active {
  background: var(--color-primary, #FF8C42);
  border-color: var(--color-primary, #FF8C42);
  color: #fff;
}

/* ============================================
   実績カードグリッド
   参考: ひとみデザイン（3列、画像メイン）
   ============================================ */
.works-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
}

/* ============================================
   実績カード
   参考: rdlp.jp（サムネ＋タグ＋タイトル）
         + ひとみデザイン（ホバーオーバーレイ）
   ============================================ */
.wk-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-text, #333);
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.wk-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: none;
}

/* 非表示状態 */
.wk-card.is-hidden {
  display: none;
}

/* 画像エリア */
.wk-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f4f4f4;
  border: 1px solid #e0e0e0;
  border-radius: 0.4rem;
  box-shadow: 0 0.2rem 1.2rem rgba(0, 0, 0, 0.06);
}

.wk-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.wk-card__img img[src$=".svg"] {
  object-fit: contain;
  background: #f0f4f8;
}

.wk-card:hover .wk-card__img img {
  transform: scale(1.03);
}

/* ホバーオーバーレイ（非表示） */
.wk-card__overlay {
  display: none;
}

/* テキストエリア */
.wk-card__body {
  padding: 1.4rem 0.2rem 0;
}

.wk-card__title {
  font-size: max(1.4rem, 13px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-heading, #1a1a1a);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.wk-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0;
}

.wk-card__tag {
  display: inline-block;
  padding: 0.3em 0.9em;
  font-size: max(1.05rem, 10px);
  font-weight: 400;
  letter-spacing: 0.04em;
  border-radius: 0.2rem;
  line-height: 1.4;
  color: var(--color-text-light, #666);
  background: #f0f0f0;
  border: none;
}

.wk-card__tag--type {
  color: var(--color-text-light, #666);
  background: #f0f0f0;
}

.wk-card__tag--industry {
  color: var(--color-text-light, #666);
  background: #f0f0f0;
}

.wk-card__client {
  display: none;
}

/* ============================================
   ウェーブ色
   ============================================ */
.section-wave--white-to-warm {
  background: #fff;
}
.section-wave--white-to-warm svg {
  fill: var(--color-bg-warm, #f8f5f0);
}

/* ============================================
   CTA（service.htmlと共通）
   ============================================ */
.srv-cta {
  position: relative;
  z-index: 1;
  padding: 8rem 0 10rem;
  background: var(--color-bg-warm, #f8f5f0);
  text-align: center;
}

.srv-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 4rem;
}

.srv-cta__title {
  font-size: max(2.2rem, 20px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-heading, #1a1a1a);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.srv-cta__text {
  font-size: max(1.4rem, 13px);
  color: var(--color-text-light, #666);
  line-height: 2.2;
  letter-spacing: 0.04em;
  margin-bottom: 3.6rem;
}

/* ============================================
   レスポンシブ（タブレット）
   ============================================ */
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2.5rem;
    padding: 0 3rem;
  }

  .works-filter {
    padding: 0 3rem;
  }
}

/* ============================================
   レスポンシブ（SP）
   ============================================ */
@media screen and (max-width: 767px) {
  .page-hero {
    padding: 10rem 2rem 8rem;
    min-height: auto;
  }

  .page-hero__bg-photo {
    width: 100%;
    height: 45%;
    top: auto;
    bottom: 0;
    opacity: 0.3;
  }

  .page-hero__bg-photo::after {
    background: linear-gradient(180deg, #eef5fa 0%, rgba(238, 245, 250, 0.5) 50%, transparent 100%);
  }

  .page-hero__en {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .page-hero__title {
    font-size: max(1.8rem, 17px);
  }

  .page-hero__lead {
    font-size: max(1.2rem, 12px);
    max-width: 100%;
  }

  .page-hero__wave svg {
    height: 4rem;
  }

  .page-hero__bg-text {
    font-size: clamp(6rem, 20vw, 12rem);
  }

  .sec-works-list {
    padding: 4rem 0 8rem;
  }

  .works-filter {
    padding: 0 2rem;
    margin-bottom: 3rem;
    gap: 0.8rem;
  }

  .works-filter__btn {
    padding: 0.8rem 1.8rem;
    font-size: max(1.2rem, 11px);
  }

  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.4rem;
    padding: 0 2rem;
  }

  .wk-card {
    border-radius: 0;
  }

  .wk-card__img {
    aspect-ratio: 16 / 10;
    border-radius: 0.3rem;
  }

  .wk-card__body {
    padding: 1rem 0.2rem 0;
  }

  .wk-card__tag {
    font-size: max(0.95rem, 9px);
    padding: 0.25em 0.7em;
  }

  .wk-card__title {
    font-size: max(1.25rem, 12px);
    margin-bottom: 0.8rem;
  }

  .wk-card__client {
    display: none;
  }

  .wk-card__overlay {
    display: none;
  }

  .srv-cta {
    padding: 6rem 0 8rem;
  }

  .srv-cta__inner {
    padding: 0 2rem;
  }

  .srv-cta__title {
    font-size: max(1.8rem, 18px);
  }
}

/* ============================================
   page-about.css
   代表・スタッフ紹介ページ専用スタイル
   ※トップページ(index.html)のテイストに完全統一
   ============================================ */

/* ============================================
   イントロ
   ============================================ */
.abt-intro {
  padding: 8rem 0 10rem;
  text-align: center;
}

.abt-intro__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 4rem;
}

.abt-intro__text {
  font-size: max(1.4rem, 13px);
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 2.2;
  letter-spacing: 0.04em;
  margin-top: 3rem;
}

/* ============================================
   代表紹介
   ============================================ */
.abt-ceo {
  background: var(--color-bg-warm);
  padding: 8rem 0 10rem;
}

.abt-ceo__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4rem;
  text-align: center;
}

.abt-ceo__content {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
  margin-top: 4rem;
  margin-bottom: 6rem;
}

/* 写真 */
.abt-ceo__photo-wrap {
  position: relative;
  flex-shrink: 0;
  width: 34rem;
}

.abt-ceo__photo {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.abt-ceo__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.abt-ceo__photo-deco {
  position: absolute;
  bottom: -1.6rem;
  right: -1.6rem;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-card);
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
}

/* テキスト */
.abt-ceo__body {
  flex: 1;
  min-width: 0;
}

.abt-ceo__role {
  font-family: 'Jost', sans-serif;
  font-size: max(1.1rem, 10px);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: 0.8rem;
}

.abt-ceo__name {
  margin-bottom: 2.8rem;
}

.abt-ceo__name-ja {
  display: block;
  font-size: max(2.2rem, 18px);
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

.abt-ceo__name-en {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: max(1.1rem, 10px);
  font-weight: 300;
  color: var(--color-text-light);
  letter-spacing: 0.2em;
}

.abt-ceo__message p {
  font-size: max(1.4rem, 13px);
  font-weight: 400;
  color: var(--color-text);
  line-height: 2.2;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

.abt-ceo__message p:last-child {
  margin-bottom: 0;
}

/* 経歴テーブル */
.abt-ceo__history {
  background: var(--color-bg-white);
  border-radius: var(--radius-card);
  padding: 4rem 4.8rem;
  box-shadow: var(--shadow-soft);
}

.abt-ceo__history-title {
  font-size: max(1.5rem, 14px);
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: 0.1em;
  margin-bottom: 2.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.abt-ceo__history-table {
  width: 100%;
  border-collapse: collapse;
}

.abt-ceo__history-table tr {
  border-bottom: 1px solid rgba(42, 90, 130, 0.08);
}

.abt-ceo__history-table tr:last-child {
  border-bottom: none;
}

.abt-ceo__history-table th {
  font-family: 'Jost', sans-serif;
  font-size: max(1.3rem, 12px);
  font-weight: 500;
  color: var(--color-primary);
  padding: 1.6rem 2.4rem 1.6rem 0;
  white-space: nowrap;
  vertical-align: top;
  letter-spacing: 0.05em;
  width: 12rem;
}

.abt-ceo__history-table td {
  font-size: max(1.3rem, 12px);
  font-weight: 400;
  color: var(--color-text);
  padding: 1.6rem 0;
  line-height: 1.8;
}

/* ============================================
   スタッフ紹介
   ============================================ */
.abt-staff {
  background: #fff;
  padding: 8rem 0 10rem;
  position: relative;
  overflow: hidden;
}


.abt-staff__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.abt-staff__lead {
  font-size: max(1.4rem, 13px);
  font-weight: 400;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 5rem;
  letter-spacing: 0.04em;
  line-height: 2;
}

.abt-staff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.8rem;
}

/* スタッフカード */
.staff-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  text-align: left;
  box-shadow: none;
  transition: transform 0.4s var(--ease-smooth);
}

.staff-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: none;
}

.staff-card__photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 0.4rem 1.6rem rgba(42, 90, 130, 0.10);
}

.staff-card__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-smooth);
}

.staff-card:hover .staff-card__photo-wrap img {
  transform: scale(1.04);
}

.staff-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.4rem 1.6rem 1.2rem;
  background: linear-gradient(to top, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.7) 60%, rgba(255,255,255,0) 100%);
}

.staff-card__role {
  font-size: max(1.6rem, 14px);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.staff-card__arrow {
  font-size: max(1.4rem, 12px);
  font-weight: 400;
  color: var(--color-primary);
}

.staff-card__body {
  padding: 1rem 0.2rem 0;
}

.staff-card__meta {
  font-size: max(1.3rem, 12px);
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* ============================================
   私たちの価値観
   ============================================ */
.abt-value {
  background: var(--color-bg-warm);
  padding: 8rem 0 10rem;
}

.abt-value__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4rem;
}

.abt-value__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.value-item {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 3.6rem 3.2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-smooth);
}

.value-item:hover {
  transform: translateY(-0.3rem);
}

.value-item__num {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: max(3rem, 24px);
  font-weight: 600;
  color: var(--color-primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.value-item__title {
  font-size: max(1.5rem, 14px);
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(42, 90, 130, 0.08);
}

.value-item__text {
  font-size: max(1.3rem, 12px);
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 2;
  letter-spacing: 0.03em;
}

/* ============================================
   お客様の声
   ============================================ */
.abt-voice {
  background: #fff;
  padding: 8rem 0 10rem;
}

.abt-voice__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* スライダー */
.abt-voice__slider {
  position: relative;
  margin-top: 4rem;
  padding: 0 60px; /* 矢印ボタン分の余白 */
}

/* overflow:hidden をトラック直上ラッパーに限定し矢印が切れないようにする */
.abt-voice__viewport {
  overflow: hidden;
}

.abt-voice__track {
  display: flex;
  gap: 2.4rem;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ドットナビ（PC・SP共通） */
.abt-voice__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 3.2rem;
}

.abt-voice__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #D6E4EE;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.abt-voice__dot.is-active {
  background: #4A9EC4;
  transform: scale(1.3);
}

/* 矢印ボタン */
.abt-voice__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #D6E4EE;
  background: #fff;
  color: #4A9EC4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  box-shadow: 0 2px 12px rgba(26,42,58,0.10);
}
.abt-voice__arrow svg { width: 20px; height: 20px; }
.abt-voice__arrow:hover { background: #4A9EC4; color: #fff; border-color: #4A9EC4; }
.abt-voice__arrow--prev { left: 4px; }
.abt-voice__arrow--next { right: 4px; }

.voice-card {
  /* PC: サイドカードは小さめに */
  flex: 0 0 calc(28% - 1.6rem);
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 3.2rem 3.6rem;
  box-shadow: 0 4px 24px rgba(26,42,58,0.08);
  transform: scale(0.92);
  opacity: 0.6;
  transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.7s ease,
              box-shadow 0.7s ease;
}

/* 中央カード強調 */
.voice-card.is-center {
  flex: 0 0 calc(44% - 1.6rem);
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 16px 48px rgba(26,42,58,0.14);
}

.voice-card__head {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2rem;
}

.voice-card__icon {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 0.2rem 0.8rem rgba(42, 90, 130, 0.08);
}

.voice-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.voice-card__name {
  font-size: max(1.4rem, 13px);
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: 0.08em;
}

.voice-card__desc {
  font-size: max(1.1rem, 10px);
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}

.voice-card__text {
  font-size: max(1.3rem, 12px);
  font-weight: 400;
  color: var(--color-text);
  line-height: 2;
  letter-spacing: 0.03em;
}

/* ============================================
   レスポンシブ: タブレット
   ============================================ */
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .abt-ceo__content {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }

  .abt-ceo__photo-wrap {
    width: 28rem;
  }

  .abt-ceo__body {
    text-align: center;
  }

  .abt-ceo__message p {
    text-align: left;
  }

  .abt-ceo__history {
    padding: 3.2rem 2.8rem;
  }

  /* abt-voice__grid 削除済み */

  .abt-staff__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }
}

/* ============================================
   レスポンシブ: SP
   ============================================ */
@media screen and (max-width: 767px) {
  /* イントロ */
  .abt-intro {
    padding: 6rem 0 8rem;
  }

  .abt-intro__inner {
    padding: 0 2rem;
  }

  .abt-intro__text {
    font-size: max(1.3rem, 13px);
    line-height: 2;
  }

  /* 代表紹介 */
  .abt-ceo {
    padding: 6rem 0 8rem;
  }

  .abt-ceo__inner {
    padding: 0 2rem;
  }

  .abt-ceo__content {
    flex-direction: column;
    align-items: center;
    gap: 2.8rem;
    margin-bottom: 4rem;
  }

  .abt-ceo__photo-wrap {
    width: 22rem;
  }

  .abt-ceo__photo-deco {
    bottom: -1rem;
    right: -1rem;
  }

  .abt-ceo__body {
    text-align: center;
  }

  .abt-ceo__message p {
    text-align: center;
    font-size: max(1.3rem, 13px);
  }

  .abt-ceo__name-ja {
    font-size: max(1.8rem, 17px);
  }

  .abt-ceo__history {
    padding: 2.4rem 2rem;
  }

  .abt-ceo__history-table th {
    display: block;
    padding: 1.2rem 0 0 0;
    width: 100%;
  }

  .abt-ceo__history-table td {
    display: block;
    padding: 0.4rem 0 1.2rem 0;
  }

  /* スタッフ */
  .abt-staff {
    padding: 6rem 0 8rem;
  }

  .abt-staff__inner {
    padding: 0 2rem;
  }

  .abt-staff__lead {
    margin-bottom: 3.6rem;
  }

  .abt-staff__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }

  .staff-card {
    padding: 0;
    text-align: center;
  }

  .staff-card__role {
    font-size: max(1.5rem, 14px);
  }

  .staff-card__meta {
    font-size: max(1.2rem, 12px);
  }

  /* 価値観 */
  .abt-value {
    padding: 6rem 0 8rem;
  }

  .abt-value__inner {
    padding: 0 2rem;
  }

  .abt-value__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .value-item {
    padding: 2.8rem 2.4rem;
  }

  /* お客様の声 */
  .abt-voice {
    padding: 6rem 0 8rem;
  }

  .abt-voice__inner {
    padding: 0 2rem;
  }

  /* SP: ピーク表示（左右0.5枚）・中央78%幅 */
  .abt-voice__arrow {
    display: none;
  }

  .abt-voice__slider {
    overflow: hidden;
    padding: 0;
  }

  .abt-voice__viewport {
    overflow: visible;
  }

  .abt-voice__track {
    gap: 1.6rem;
  }

  .voice-card {
    flex: 0 0 78%;
    padding: 2.4rem 2rem;
  }

  .abt-voice__dots {
    gap: 8px;
    margin-top: 2.4rem;
  }

  .abt-voice__dot {
    width: 8px;
    height: 8px;
  }

  .abt-voice__dot.is-active {
    background: #4A9EC4;
    transform: scale(1.3);
  }
}


/* ============================================
   会社情報（company.htmlから統合）
   ============================================ */
.abt-info {
  background: var(--color-bg-warm);
  padding: 8rem 0 10rem;
}

.abt-info__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4rem;
}

.abt-info__content {
  margin-top: 4rem;
}

.abt-info__table-wrap {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 4rem 4.8rem;
  box-shadow: var(--shadow-soft);
}

.abt-info__table {
  width: 100%;
  border-collapse: collapse;
}

.abt-info__table tr {
  border-bottom: 1px solid rgba(42, 90, 130, 0.08);
}

.abt-info__table tr:last-child {
  border-bottom: none;
}

.abt-info__table th {
  font-size: max(1.3rem, 12px);
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: 0.08em;
  text-align: left;
  vertical-align: top;
  padding: 2rem 2.4rem 2rem 0;
  width: 14rem;
  white-space: nowrap;
}

.abt-info__table td {
  font-size: max(1.3rem, 12px);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.9;
  letter-spacing: 0.03em;
  padding: 2rem 0;
}

/* ============================================
   アクセス（company.htmlから統合）
   ============================================ */
.abt-access {
  background: #fff;
  padding: 8rem 0 10rem;
}

.abt-access__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4rem;
}

.abt-access__content {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.abt-access__map {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.abt-access__map iframe {
  display: block;
  width: 100%;
  height: 40rem;
}

.abt-access__detail {
  display: flex;
  gap: 3rem;
}

.abt-access__detail-item {
  flex: 1;
  display: flex;
  gap: 1.6rem;
  background: var(--color-bg-warm);
  border-radius: var(--radius-card);
  padding: 2.8rem 2.4rem;
  box-shadow: var(--shadow-card);
}

.abt-access__detail-icon {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 0.2rem;
}

.abt-access__detail-icon svg {
  width: 100%;
  height: 100%;
}

.abt-access__detail-title {
  font-size: max(1.4rem, 13px);
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}

.abt-access__detail-text {
  font-size: max(1.3rem, 12px);
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

/* ============================================
   会社情報・アクセス レスポンシブ: タブレット
   ============================================ */
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .abt-info__table-wrap {
    padding: 3.2rem 2.8rem;
  }

  .abt-access__detail {
    flex-direction: column;
  }
}

/* ============================================
   会社情報・アクセス レスポンシブ: SP
   ============================================ */
@media screen and (max-width: 767px) {
  .abt-info {
    padding: 6rem 0 8rem;
  }

  .abt-info__inner {
    padding: 0 2rem;
  }

  .abt-info__table-wrap {
    padding: 2.4rem 2rem;
  }

  .abt-info__table th {
    display: block;
    padding: 1.6rem 0 0 0;
    width: 100%;
  }

  .abt-info__table tr {
    border-bottom: none;
  }

  .abt-info__table td {
    display: block;
    padding: 0.4rem 0 1.6rem 0;
  }

  .abt-access {
    padding: 6rem 0 8rem;
  }

  .abt-access__inner {
    padding: 0 2rem;
  }

  .abt-access__map iframe {
    height: 28rem;
  }

  .abt-access__detail {
    flex-direction: column;
    gap: 2rem;
  }

  .abt-access__detail-item {
    padding: 2rem 1.8rem;
  }
}
Copy




/* ============================================
   page-company.css
   ============================================ */
/* ============================================
   page-company.css
   会社概要ページ専用スタイル
   
   参考サイト:
   - carekura.com/about/ (Philosophy, Message)
   - biophilia.co.jp/about (Philosophy→Member→Info流れ)
   - feel-design.jp/office/ (会社概要テーブル)
   - kohimoto.com/about/ (Corporate英語見出し+日本語)
   - kleedesign.jp/about/ (写真+テキスト交互)
   - hitomidesign.com/ (ナチュラルベージュ配色)
   - sankoudesign.com/category/friendly-natural/
   - choooodoii.com/color/beige/
   ============================================ */

/* ---------- カスタムプロパティ ---------- */
:root {
  --cmp-bg-warm: #faf6f1;
  --cmp-bg-cream: #f5efe6;
  --cmp-bg-white: #ffffff;
  --cmp-accent: #c8a87e;
  --cmp-accent-dark: #a68b5b;
  --cmp-text: #3a3226;
  --cmp-text-light: #6b5e50;
  --cmp-border: #e8ddd0;
  --cmp-radius: 16px;
}

/* ============================================
   ヘッダー背景（下層ページ用）
   ============================================ */


/* ============================================
   HERO (参考: carekura.com, biophilia.co.jp)
   ============================================ */
.page-hero--company {
  position: relative;
  background: linear-gradient(135deg, #3a3226 0%, #5c4e3c 100%);
  padding: 160px 5% 100px;
  text-align: center;
  overflow: hidden;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
}

.page-hero__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant', serif;
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.page-hero__en {
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cmp-accent);
  margin-bottom: 12px;
}

.page-hero__ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.page-hero__breadcrumb ol {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-hero__breadcrumb li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.page-hero__breadcrumb li + li::before {
  content: '/';
  margin-right: 8px;
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-hero__breadcrumb a:hover {
  color: var(--cmp-accent);
}

/* ============================================
   WAVE
   ============================================ */
.section-wave {
  display: block;
  line-height: 0;
  margin-top: -1px;
}

.section-wave svg {
  width: 100%;
  height: 8rem;
  display: block;
}

.section-wave--hero-to-content {
  background: linear-gradient(135deg, #3a3226 0%, #5c4e3c 100%);
}

.section-wave--philosophy-to-msg {
  background: var(--cmp-bg-warm);
}

.section-wave--msg-to-info {
  background: var(--cmp-bg-white);
}

.section-wave--info-to-access {
  background: var(--cmp-bg-cream);
}

.section-wave--access-to-cta {
  background: var(--cmp-bg-white);
}

/* ============================================
   PHILOSOPHY (参考: carekura.com Vision/Mission, biophilia.co.jp Philosophy)
   ============================================ */
.cmp-philosophy {
  background: var(--cmp-bg-warm);
  padding: 80px 5% 100px;
}

.cmp-philosophy__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.cmp-philosophy__label {
  text-align: center;
  margin-bottom: 60px;
}

.cmp-philosophy__label-en {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cmp-accent-dark);
  margin-bottom: 8px;
}

.cmp-philosophy__label-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 700;
  color: var(--cmp-text);
  letter-spacing: 0.1em;
}

.cmp-philosophy__block {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.cmp-philosophy__item {
  background: var(--cmp-bg-white);
  border-radius: var(--cmp-radius);
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(160, 120, 80, 0.06);
  position: relative;
}

.cmp-philosophy__item-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cmp-bg-white);
  background: var(--cmp-accent);
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.cmp-philosophy__item-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--cmp-text);
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-bottom: 16px;
}

.cmp-philosophy__item-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cmp-text-light);
  line-height: 2.2;
  letter-spacing: 0.03em;
}

/* ============================================
   MESSAGE (参考: carekura.com 代表メッセージ, biophilia.co.jp 代表メッセージ)
   ============================================ */
.cmp-message {
  background: var(--cmp-bg-white);
  padding: 80px 5% 100px;
}

.cmp-message__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.cmp-message__label {
  text-align: center;
  margin-bottom: 60px;
}

.cmp-message__label-en {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cmp-accent-dark);
  margin-bottom: 8px;
}

.cmp-message__label-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 700;
  color: var(--cmp-text);
  letter-spacing: 0.1em;
}

.cmp-message__content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.cmp-message__photo-wrap {
  flex-shrink: 0;
  width: 280px;
  position: relative;
}

.cmp-message__photo-wrap img {
  width: 100%;
  height: auto;
  border-radius: var(--cmp-radius);
  display: block;
  box-shadow: 0 8px 32px rgba(160, 120, 80, 0.12);
}

.cmp-message__photo-deco {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--cmp-accent);
  border-radius: var(--cmp-radius);
  opacity: 0.3;
  pointer-events: none;
}

.cmp-message__body {
  flex: 1;
}

.cmp-message__role {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--cmp-accent-dark);
  margin-bottom: 4px;
}

.cmp-message__name-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: var(--cmp-text);
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.cmp-message__name-en {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--cmp-text-light);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cmp-border);
}

.cmp-message__text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cmp-text-light);
  line-height: 2.2;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.cmp-message__text p:last-child {
  margin-bottom: 0;
}

/* ============================================
   COMPANY INFO (参考: biophilia.co.jp Information, FEEL DESIGN, KOHIMOTO Corporate)
   ============================================ */
.cmp-info {
  background: var(--cmp-bg-cream);
  padding: 80px 5% 100px;
}

.cmp-info__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.cmp-info__label {
  text-align: center;
  margin-bottom: 60px;
}

.cmp-info__label-en {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cmp-accent-dark);
  margin-bottom: 8px;
}

.cmp-info__label-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 700;
  color: var(--cmp-text);
  letter-spacing: 0.1em;
}

.cmp-info__content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.cmp-info__table-wrap {
  flex: 1;
}

.cmp-info__table {
  width: 100%;
  border-collapse: collapse;
}

.cmp-info__table tr {
  border-bottom: 1px solid var(--cmp-border);
}

.cmp-info__table th {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cmp-text);
  letter-spacing: 0.08em;
  text-align: left;
  vertical-align: top;
  padding: 20px 24px 20px 0;
  width: 140px;
  white-space: nowrap;
}

.cmp-info__table td {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--cmp-text-light);
  line-height: 1.9;
  letter-spacing: 0.03em;
  padding: 20px 0;
}

.cmp-info__photo {
  flex-shrink: 0;
  width: 320px;
}

.cmp-info__photo img {
  width: 100%;
  height: auto;
  border-radius: var(--cmp-radius);
  display: block;
  box-shadow: 0 8px 32px rgba(160, 120, 80, 0.1);
}

/* ============================================
   ACCESS (参考: KLEE Design, biophilia.co.jp GoogleMap)
   ============================================ */
.cmp-access {
  background: var(--cmp-bg-white);
  padding: 80px 5% 100px;
}

.cmp-access__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.cmp-access__label {
  text-align: center;
  margin-bottom: 60px;
}

.cmp-access__label-en {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cmp-accent-dark);
  margin-bottom: 8px;
}

.cmp-access__label-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 700;
  color: var(--cmp-text);
  letter-spacing: 0.1em;
}

.cmp-access__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cmp-access__map {
  border-radius: var(--cmp-radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(160, 120, 80, 0.08);
}

.cmp-access__map iframe {
  display: block;
}

.cmp-access__detail {
  display: flex;
  gap: 32px;
}

.cmp-access__detail-item {
  flex: 1;
  display: flex;
  gap: 16px;
  background: var(--cmp-bg-warm);
  border-radius: var(--cmp-radius);
  padding: 28px 24px;
}

.cmp-access__detail-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}

.cmp-access__detail-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cmp-text);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.cmp-access__detail-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--cmp-text-light);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

/* ============================================
   CTA
   ============================================ */
.cmp-cta {
  background: linear-gradient(135deg, var(--cmp-accent) 0%, var(--cmp-accent-dark) 100%);
  padding: 80px 5%;
  text-align: center;
}

.cmp-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}

.cmp-cta__lead {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.cmp-cta__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-bottom: 20px;
}

.cmp-cta__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2;
  letter-spacing: 0.03em;
  margin-bottom: 36px;
}

.cmp-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--cmp-accent-dark);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 16px 48px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cmp-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.cmp-cta__btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cmp-cta__btn:hover .cmp-cta__btn-arrow {
  transform: translateX(4px);
}

/* ============================================
   ユーティリティ
   ============================================ */
.pc-only {
  display: inline;
}

/* ============================================
   レスポンシブ: タブレット (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .cmp-message__content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .cmp-message__photo-wrap {
    width: 260px;
  }

  .cmp-message__body {
    text-align: center;
  }

  .cmp-message__text p {
    text-align: left;
  }

  .cmp-info__content {
    flex-direction: column;
  }

  .cmp-info__photo {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .cmp-access__detail {
    flex-direction: column;
  }
}

/* ============================================
   レスポンシブ: スマホ (max-width: 767px)
   ============================================ */
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }

  /* Hero */
  .page-hero--company {
    padding: 120px 5% 70px;
  }

  .page-hero__bg-text {
    font-size: 3rem;
  }

  /* Wave */
  .section-wave svg {
    height: 6rem;
  }

  /* Philosophy */
  .cmp-philosophy {
    padding: 40px 5% 60px;
  }

  .cmp-philosophy__label {
    margin-bottom: 36px;
  }

  .cmp-philosophy__block {
    gap: 28px;
  }

  .cmp-philosophy__item {
    padding: 28px 24px;
  }

  .cmp-philosophy__item-heading {
    font-size: 1.1rem;
  }

  /* Message */
  .cmp-message {
    padding: 40px 5% 60px;
  }

  .cmp-message__label {
    margin-bottom: 36px;
  }

  .cmp-message__content {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .cmp-message__photo-wrap {
    width: 200px;
  }

  .cmp-message__photo-deco {
    bottom: -8px;
    right: -8px;
  }

  .cmp-message__body {
    text-align: center;
  }

  .cmp-message__text p {
    text-align: left;
    font-size: 0.85rem;
  }

  .cmp-message__name-ja {
    font-size: 1.2rem;
  }

  .cmp-message__name-en {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  /* Info */
  .cmp-info {
    padding: 40px 5% 60px;
  }

  .cmp-info__label {
    margin-bottom: 36px;
  }

  .cmp-info__content {
    flex-direction: column;
    gap: 32px;
  }

  .cmp-info__photo {
    width: 100%;
  }

  .cmp-info__table th {
    display: block;
    padding: 16px 0 0 0;
    width: 100%;
    font-weight: 700;
  }

  .cmp-info__table td {
    display: block;
    padding: 6px 0 16px 0;
  }

  /* Access */
  .cmp-access {
    padding: 40px 5% 60px;
  }

  .cmp-access__label {
    margin-bottom: 36px;
  }

  .cmp-access__map iframe {
    height: 280px;
  }

  .cmp-access__detail {
    flex-direction: column;
    gap: 16px;
  }

  .cmp-access__detail-item {
    padding: 20px 18px;
  }

  /* CTA */
  .cmp-cta {
    padding: 60px 5%;
  }

  .cmp-cta__heading {
    font-size: 1.3rem;
  }

  .cmp-cta__text {
    font-size: 0.82rem;
  }

  .cmp-cta__btn {
    padding: 14px 36px;
    font-size: 0.9rem;
  }
}

/* ============================================
   page-blog.css
   ============================================ */
/* ============================================
   page-blog.css
   ブログ・お知らせページ専用スタイル

   参考サイト:
   - feel-design.jp/blog/ (カテゴリタブ+カード型一覧)
   - kohimoto.com/labo/ (PICK UPバッジ+グリッド)
   - baigie.me/blog/ (Pick UP+新着+ランキング)
   - carekura.com (Newsリスト)
   - webdesigngarden.com (ニュースリスト/カードUI)
   - sankoudesign.com (ナチュラルトーン)
   - hitomidesign.com (ベージュ配色・丸角)
   - choooodoii.com/color/beige/ (カラーパレット)
   ============================================ */

:root {
  --blg-bg-warm: #faf6f1;
  --blg-bg-cream: #f5efe6;
  --blg-bg-white: #ffffff;
  --blg-accent: #c8a87e;
  --blg-accent-dark: #a68b5b;
  --blg-text: #3a3226;
  --blg-text-light: #6b5e50;
  --blg-border: #e8ddd0;
  --blg-radius: 16px;
}

/* ============================================
   ヘッダー背景（下層ページ用）
   ============================================ */


/* ============================================
   HERO
   ============================================ */
.page-hero--blog {
  position: relative;
  background: linear-gradient(135deg, #3a3226 0%, #5c4e3c 100%);
  padding: 160px 5% 100px;
  text-align: center;
  overflow: hidden;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
}

.page-hero__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant', serif;
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.page-hero__en {
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blg-accent);
  margin-bottom: 12px;
}

.page-hero__ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.page-hero__breadcrumb ol {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-hero__breadcrumb li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.page-hero__breadcrumb li + li::before {
  content: '/';
  margin-right: 8px;
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-hero__breadcrumb a:hover {
  color: var(--blg-accent);
}

/* ============================================
   WAVE
   ============================================ */
.section-wave {
  display: block;
  line-height: 0;
  margin-top: -1px;
}

.section-wave svg {
  width: 100%;
  height: 8rem;
  display: block;
}

.section-wave--hero-to-content {
  background: linear-gradient(135deg, #3a3226 0%, #5c4e3c 100%);
}

.section-wave--news-to-blog {
  background: var(--blg-bg-warm);
}

.section-wave--blog-to-cta {
  background: var(--blg-bg-white);
}

/* ============================================
   NEWS (お知らせリスト)
   参考: carekura.com, Web Design Garden ニュースリスト
   ============================================ */
/* ============================================
   blg-news: 2カラムレイアウト (参考: Marine Tower Wedding)
   左: タイトル・ボタン / 右: 記事カード縦並び
   ============================================ */
.blg-news {
  background: #EEF5FA;
  padding: 80px 5% 100px;
}

.blg-news__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* タイトル: 中央揃え */
.blg-news__head {
  text-align: center;
}

/* ページタイトル (News): 32px / lh 1.2 / ls 4px / #1A2A3A / bold */
.blg-news__label-en {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #1A2A3A;
  margin-bottom: 8px;
}

/* サブタイトル (お知らせ): 14px / lh 1.7 / ls 1px / #2D3A4A */
.blg-news__label-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #2D3A4A;
  letter-spacing: 1px;
}

/* 記事カードリスト */
.blg-news__list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
}

.blg-news__item {
  border: none;
}

.blg-news__item:first-child {
  border: none;
}

.blg-news__article {
  display: block;
}

/* カード: 白背景・角丸・ホバーで影 */
.blg-news__item-link {
  display: flex;
  align-items: stretch;
  gap: 0;
  text-decoration: none;
  background: #FFFFFF;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.blg-news__item-link:hover {
  box-shadow: 0 8px 32px rgba(26, 42, 58, 0.12);
  transform: translateY(-2px);
}

/* サムネイル */
.blg-news__thumb {
  flex-shrink: 0;
  width: 200px;
  min-height: 140px;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
}

.blg-news__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.blg-news__thumb img[src$=".svg"] {
  object-fit: contain;
  background: #f0f4f8;
}

.blg-news__item-link:hover .blg-news__thumb img {
  transform: scale(1.04);
}

/* カード本文エリア */
.blg-news__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
  padding: 20px 24px;
}

.blg-news__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 日付: 13px / lh 1.6 / ls 0.5px / #4A9EC4 */
.blg-news__date {
  flex-shrink: 0;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.5px;
  color: #4A9EC4;
}

/* カテゴリラベル: 11px / outline style */
.blg-news__tag {
  flex-shrink: 0;
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  background: transparent;
  color: #4A9EC4;
  border: 1px solid #4A9EC4;
}

.blg-news__tag--info,
.blg-news__tag--media,
.blg-news__tag--works {
  background: transparent;
  color: #4A9EC4;
  border: 1px solid #4A9EC4;
}

/* 記事タイトル: 15px / lh 1.8 / ls 0.5px / #1A2A3A */
.blg-news__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: #1A2A3A;
  letter-spacing: 0.5px;
  margin: 0;
}

/* 抜粋文: 13px / 2行クランプ / #8A9BAC */
.blg-news__excerpt {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: #8A9BAC;
  letter-spacing: 0.3px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
}

.blg-news__link {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #2D3A4A;
  text-decoration: none;
  line-height: 1.8;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.blg-news__link:hover {
  color: #4A9EC4;
}

/* ============================================
   BLOG 記事一覧
   参考: FEEL DESIGN, KOHIMOTO, baigie
   ============================================ */
.blg-articles {
  background: var(--blg-bg-white);
  padding: 80px 5% 100px;
}

.blg-articles__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.blg-articles__label {
  text-align: center;
  margin-bottom: 36px;
}

.blg-articles__label-en {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blg-accent-dark);
  margin-bottom: 8px;
}

.blg-articles__label-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 700;
  color: var(--blg-text);
  letter-spacing: 0.1em;
}

/* カテゴリフィルター (参考: FEEL DESIGN タブ) */
.blg-articles__filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.blg-filter-btn {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--blg-text-light);
  background: var(--blg-bg-warm);
  border: 1px solid var(--blg-border);
  border-radius: 100px;
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blg-filter-btn:hover {
  border-color: var(--blg-accent);
  color: var(--blg-accent-dark);
}

.blg-filter-btn.is-active {
  background: var(--blg-accent);
  border-color: var(--blg-accent);
  color: #fff;
}

/* 記事グリッド (参考: KOHIMOTO, baigie, FEEL DESIGN) */
.blg-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* PICK UPカード (参考: KOHIMOTO PICK UP, baigie Pick UP) */
.blg-card--pickup {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}

.blg-card--pickup .blg-card__thumb {
  border-radius: var(--blg-radius) 0 0 var(--blg-radius);
}

.blg-card--pickup .blg-card__thumb img {
  height: 100%;
}

.blg-card--pickup .blg-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 32px;
}

.blg-card--pickup .blg-card__title {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.blg-card--pickup .blg-card__excerpt {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--blg-text-light);
  line-height: 2;
  letter-spacing: 0.03em;
}

/* 通常カード */
.blg-card {
  display: flex;
  flex-direction: column;
  background: var(--blg-bg-white);
  border-radius: var(--blg-radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(160, 120, 80, 0.06);
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(160, 120, 80, 0.12);
}

.blg-card__thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--blg-radius) var(--blg-radius) 0 0;
}

.blg-card__thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blg-card:hover .blg-card__thumb img {
  transform: scale(1.05);
}

.blg-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--blg-accent) 0%, var(--blg-accent-dark) 100%);
  padding: 4px 14px;
  border-radius: 100px;
}

.blg-card__body {
  padding: 20px 20px 24px;
  flex: 1;
}

.blg-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.blg-card__date {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--blg-text-light);
}

.blg-card__cat {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--blg-accent-dark);
  background: var(--blg-bg-warm);
  border: 1px solid var(--blg-border);
  border-radius: 100px;
  padding: 2px 10px;
}

.blg-card__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--blg-text);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* ============================================
   ページネーション
   ============================================ */
.blg-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
}

.blg-pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--blg-text-light);
  text-decoration: none;
  border-radius: 50%;
  border: 1px solid var(--blg-border);
  transition: all 0.3s ease;
}

.blg-pagination__item:hover {
  border-color: var(--blg-accent);
  color: var(--blg-accent-dark);
}

.blg-pagination__item.is-current {
  background: var(--blg-accent);
  border-color: var(--blg-accent);
  color: #fff;
}

.blg-pagination__dots {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: var(--blg-text-light);
  padding: 0 4px;
}

.blg-pagination__next {
  width: auto;
  padding: 0 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

/* ============================================
   CTA
   ============================================ */
.blg-cta {
  background: linear-gradient(135deg, var(--blg-accent) 0%, var(--blg-accent-dark) 100%);
  padding: 80px 5%;
  text-align: center;
}

.blg-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}

.blg-cta__lead {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.blg-cta__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-bottom: 36px;
}

.blg-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--blg-accent-dark);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 16px 48px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blg-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.blg-cta__btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.blg-cta__btn:hover .blg-cta__btn-arrow {
  transform: translateX(4px);
}

/* ============================================
   ユーティリティ
   ============================================ */
.pc-only {
  display: inline;
}

/* ============================================
   レスポンシブ: タブレット (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .blg-articles__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .blg-card--pickup {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   レスポンシブ: スマホ (max-width: 767px)
   ============================================ */
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }

  /* Hero */
  .page-hero--blog {
    padding: 120px 5% 70px;
  }

  .page-hero__bg-text {
    font-size: 3rem;
  }

  /* Wave */
  .section-wave svg {
    height: 6rem;
  }

  /* News */
  .blg-news {
    padding: 48px 5% 64px;
  }

  .blg-news__inner {
    gap: 24px;
  }

  .blg-news__thumb {
    width: 120px;
    min-height: 90px;
  }

  .blg-news__body {
    padding: 14px 16px;
    gap: 6px;
  }

  .blg-news__date {
    width: auto;
  }

  .blg-news__link {
    flex-basis: 100%;
    font-size: 0.85rem;
  }

  /* Blog Articles */
  .blg-articles {
    padding: 40px 5% 60px;
  }

  .blg-articles__label {
    margin-bottom: 24px;
  }

  .blg-articles__filter {
    gap: 8px;
    margin-bottom: 32px;
  }

  .blg-filter-btn {
    font-size: 0.72rem;
    padding: 6px 14px;
  }

  .blg-articles__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blg-card--pickup {
    grid-template-columns: 1fr;
  }

  .blg-card--pickup .blg-card__thumb {
    border-radius: var(--blg-radius) var(--blg-radius) 0 0;
  }

  .blg-card--pickup .blg-card__thumb img {
    height: 220px;
  }

  .blg-card--pickup .blg-card__body {
    padding: 24px 20px;
  }

  .blg-card__thumb img {
    height: 180px;
  }

  /* Pagination */
  .blg-pagination {
    margin-top: 40px;
    gap: 6px;
  }

  .blg-pagination__item {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  /* CTA */
  .blg-cta {
    padding: 60px 5%;
  }

  .blg-cta__heading {
    font-size: 1.3rem;
  }

  .blg-cta__btn {
    padding: 14px 36px;
    font-size: 0.9rem;
  }
}



/* ============================================
   下層ページヒーロー v2（参考: yaizu-ortho.com）
   左テキスト＋右斜め写真レイアウト
   ============================================ */
.page-hero-v2 {
  position: relative;
  width: 100%;
  min-height: 36rem;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #fff;
}

/* 左テキストエリア */
.page-hero-v2__text {
  position: relative;
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12rem 4rem 4rem 6rem;
  z-index: 3;
}

.page-hero-v2__title {
  font-size: max(2.8rem, 24px);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-heading, #1a2a3a);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.page-hero-v2__en {
  font-family: 'Jost', sans-serif;
  font-size: max(1.2rem, 11px);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--color-primary, #4a9ec4);
  display: block;
  margin-bottom: 2.4rem;
}

  .page-hero-v2__wave-line {
    width: 10rem;
    margin-bottom: 1.6rem;
  }

/* パンくず */
.page-hero-v2__breadcrumb {
  font-size: max(1.2rem, 11px);
  color: var(--color-text-light, #5a6a7a);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 2rem;
}

.page-hero-v2__breadcrumb a {
  color: var(--color-text-light, #5a6a7a);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-hero-v2__breadcrumb a:hover {
  color: var(--color-primary, #4a9ec4);
}

.page-hero-v2__breadcrumb span {
  color: var(--color-text-light, #5a6a7a);
}

/* 右写真エリア */
.page-hero-v2__photo {
  position: relative;
  width: 55%;
  min-height: 36rem;
  padding: 3rem 3rem 3rem 0;
  display: flex;
  align-items: center;
}

.page-hero-v2__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 1.2rem;
}
.page-hero-v2__photo img[src$=".svg"] {
  object-fit: contain;
  background: #f0f4f8;
}

/* 角丸の四角写真 */
.page-hero-v2__photo::before {
  display: none;
}





/* ============================================
   レスポンシブ: タブレット
   ============================================ */
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .page-hero-v2 {
    min-height: 30rem;
  }

  .page-hero-v2__text {
    width: 48%;
    padding: 10rem 3rem 3rem 4rem;
  }

  .page-hero-v2__photo {
    width: 52%;
    min-height: 30rem;
    padding: 2.4rem 2.4rem 2.4rem 0;
  }

  .page-hero-v2__title {
    font-size: max(2.2rem, 20px);
  }


}

/* ============================================
   レスポンシブ: SP
   ============================================ */
@media screen and (max-width: 767px) {
  .page-hero-v2 {
    flex-direction: column;
    min-height: auto;
    position: relative;
  }

  .page-hero-v2__photo {
    position: relative;
    width: 100%;
    min-height: 50vw;
    order: -1;
    padding: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-hero-v2__photo img {
    border-radius: 0;
    aspect-ratio: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-hero-v2__photo::after {
    display: none;
  }

  .page-hero-v2__photo::before {
    display: none;
  }

  .page-hero-v2__text {
    position: relative;
    width: 100%;
    padding: 2.4rem 2rem 3rem;
    z-index: 2;
  }


  .page-hero-v2__en-large {
    position: absolute;
    top: auto;
    bottom: calc(100% + 1.5rem);
    left: 2rem;
    right: auto;
    transform: none;
    height: auto;
    display: block;
    width: auto;
    margin: 0;
    padding: 0;
    color: #fff;
    z-index: 3;
    font-size: clamp(4.5rem, 14vw, 7rem);
    pointer-events: none;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 0, 0, 0.2);
  }

  .page-hero-v2__title {
    font-size: max(2.2rem, 22px);
  }

  .page-hero-v2__wave-line {
    width: 10rem;
    margin-bottom: 1.6rem;
  }

  .page-hero-v2__breadcrumb {
    padding-top: 1.2rem;
  }
}


/* ============================================
   会社情報テーブル v2（参考: tcmc.jp）
   左ボーダー付きth + 広い余白
   ============================================ */
.abt-info-v2 {
  background: #fff;
  padding: 8rem 0 10rem;
}

.abt-info-v2__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 4rem;
  text-align: center;
}

.abt-info-v2__table-wrap {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.abt-info-v2__table {
  width: 100%;
  border-collapse: collapse;
}

.abt-info-v2__table tr {
  border-bottom: none;
}

.abt-info-v2__table tr:first-child {
  border-top: none;
}

.abt-info-v2__table th {
  font-size: max(1.4rem, 13px);
  font-weight: 700;
  color: var(--color-primary, #4a9ec4);
  letter-spacing: 0.08em;
  text-align: left;
  vertical-align: middle;
  padding: 2.4rem 3rem 2.4rem 0;
  width: 16rem;
  white-space: nowrap;
  border-left: none;
  border-bottom: 1px solid var(--color-primary, #4a9ec4);
  background: transparent;
}

.abt-info-v2__table td {
  font-size: max(1.4rem, 13px);
  font-weight: 400;
  color: #666;
  line-height: 1.9;
  letter-spacing: 0.03em;
  padding: 2.4rem 2rem;
  border-bottom: 1px solid #ddd;
  background: transparent;
}


/* ============================================
   レスポンシブ: タブレット
   ============================================ */
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .abt-info-v2__inner {
    padding: 0 3rem;
  }

  .abt-info-v2__table th {
    width: 14rem;
    padding: 2rem 2rem 2rem 1.6rem;
  }
}

/* ============================================
   レスポンシブ: SP
   ============================================ */
@media screen and (max-width: 767px) {
  .abt-info-v2 {
    padding: 6rem 0 8rem;
  }

  .abt-info-v2__inner {
    padding: 0 2rem;
  }

  .abt-info-v2__table th {
    display: block;
    width: 100%;
    padding: 1.6rem 0 0.6rem;
    border-left: none;
    border-bottom: 1px solid var(--color-primary, #4a9ec4);
    background: transparent;
    font-size: max(1.3rem, 13px);
  }

  .abt-info-v2__table td {
    display: block;
    padding: 0.6rem 0 1.6rem;
    border-bottom: none;
    background: transparent;
    font-size: max(1.3rem, 13px);
  }

  .abt-info-v2__table tr {
    border-bottom: none;
  }
}


/* ============================================
   ヒーローヘッダー 大きな英字タイトル
   ============================================ */
.page-hero-v2__en-large {
  font-family: 'Cormorant', serif;
  font-size: clamp(7rem, 10vw, 12rem);
  font-weight: 400;
  color: rgba(74, 158, 196, 0.15);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 1.6rem;
  pointer-events: none;
  user-select: none;
}

@media screen and (max-width: 767px) {
  .page-hero-v2__en-large {
    font-size: clamp(4.5rem, 14vw, 7rem);
    margin-bottom: 1rem;
    color: #fff !important;
  }
}

/* ============================================
   about.html 背景色交互切り替え
   ============================================ */
.abt-ceo--white {
  background: #fff;
}

.abt-voice--warm {
  background: var(--color-bg-warm);
}

.abt-info-v2--white {
  background: #fff;
}

.abt-access--warm {
  background: var(--color-bg-warm);
}


/* ============================================
   blog.html 新デザイン統一
   ============================================ */
.blg-news {
  background: var(--color-bg-warm, #eef5fa);
}

.blg-articles {
  background: #fff;
}

.blg-news__label-en,
.blg-articles__label-en {
  color: var(--color-primary, #4a9ec4);
}

.blg-news__label-ja,
.blg-articles__label-ja {
  color: var(--color-heading, #1a2a3a);
}

.blg-news__tag--info {
  background: var(--color-primary, #4a9ec4);
}

.blg-news__tag--media {
  background: var(--color-accent, #8bc6a0);
}

.blg-news__tag--works {
  background: #7ba0c4;
}

.blg-news__link,
.blg-news__title {
  color: #1A2A3A;
}

.blg-news__link:hover,
.blg-news__item-link:hover .blg-news__title {
  color: #4A9EC4;
}

.blg-news__tag--info,
.blg-news__tag--media,
.blg-news__tag--works {
  background: transparent;
  color: #4A9EC4;
  border: 1px solid #4A9EC4;
}

.blg-filter-btn {
  color: var(--color-text-light, #5a6a7a);
  background: var(--color-bg-warm, #eef5fa);
  border-color: rgba(74, 158, 196, 0.2);
}

.blg-filter-btn:hover {
  border-color: var(--color-primary, #4a9ec4);
  color: var(--color-primary, #4a9ec4);
}

.blg-filter-btn.is-active {
  background: var(--color-primary, #4a9ec4);
  border-color: var(--color-primary, #4a9ec4);
  color: #fff;
}

.blg-card {
  box-shadow: var(--shadow-soft);
}

.blg-card:hover {
  box-shadow: var(--shadow-hover);
}

.blg-card__badge {
  background: var(--gradient-accent);
}

.blg-card__cat {
  color: var(--color-primary, #4a9ec4);
  background: var(--color-bg-warm, #eef5fa);
  border-color: rgba(74, 158, 196, 0.2);
}

.blg-card__date {
  color: var(--color-text-light, #5a6a7a);
}

.blg-card__title {
  color: var(--color-heading, #1a2a3a);
}

.blg-card--pickup .blg-card__excerpt {
  color: var(--color-text-light, #5a6a7a);
}

.blg-pagination__item {
  color: var(--color-text-light, #5a6a7a);
  border-color: rgba(74, 158, 196, 0.2);
}

.blg-pagination__item:hover {
  border-color: var(--color-primary, #4a9ec4);
  color: var(--color-primary, #4a9ec4);
}

.blg-pagination__item.is-current {
  background: var(--color-primary, #4a9ec4);
  border-color: var(--color-primary, #4a9ec4);
  color: #fff;
}

.section-wave--news-to-blog {
  background: var(--color-bg-warm, #eef5fa);
}

.section-wave--news-to-blog svg path {
  fill: #fff;
}


/* ============================================
   page-works-detail.css
   制作実績 詳細ページ専用スタイル
   ============================================ */

/* ========== ページタイトル ========== */
.wd-hero {
  background: #f4f7f8;
  padding: 12rem 0 4rem;
  text-align: center;
}

.wd-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4rem;
}

.wd-hero__en-large {
  font-family: 'Cormorant', serif;
  font-size: clamp(7rem, 10vw, 12rem);
  font-weight: 400;
  color: rgba(0, 0, 0, 0.04);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: -3rem;
  pointer-events: none;
  user-select: none;
  position: relative;
  z-index: 0;
}

.wd-hero__title {
  font-size: max(2.8rem, 24px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-heading);
  line-height: 1.5;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.wd-hero__url a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: max(1.3rem, 12px);
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.wd-hero__url a:hover {
  color: var(--color-primary);
}

.wd-hero__url-icon {
  font-size: max(1.1rem, 10px);
}

/* ========== モックアップ ========== */
.wd-mockup {
  position: relative;
  padding: 0 0 4rem;
  background: #f4f7f8;
}

.wd-mockup__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 4rem;
}

.wd-mockup__images {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.wd-mockup__img {
  width: calc(33.33% - 1.4rem);
  max-width: 26rem;
}

.wd-mockup__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2rem;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.12);
}

/* ========== コンテンツ 2カラム ========== */
.wd-content {
  background: #fff;
  padding: 6rem 0 8rem;
}

.wd-content__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  gap: 6rem;
  align-items: flex-start;
}

.wd-main {
  flex: 1;
  min-width: 0;
}

/* ========== セクション共通 ========== */
.wd-section {
  padding: 4rem 0;
  border-top: 1px solid rgba(42, 90, 130, 0.08);
}

.wd-section:first-child {
  padding-top: 2rem;
  border-top: none;
}

.wd-section__head {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
}

.wd-section__en {
  font-family: 'Cormorant', serif;
  font-size: max(3.5rem, 28px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--color-heading);
  line-height: 1.1;
  position: relative;
}

.wd-section__en::after {
  display: none;
}

.wd-section__ja {
  font-size: max(1.3rem, 12px);
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: 0.06em;
}

.wd-section__lead {
  font-size: max(1.8rem, 16px);
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-bottom: 1.6rem;
}

.wd-section__text {
  font-size: max(1.4rem, 13px);
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 2.2;
  letter-spacing: 0.04em;
}

/* 要望ボックス */
.wd-section__box {
  margin-top: 3rem;
  padding: 2.8rem 3rem;
  border: 4px solid #f4f7f8;
}

.wd-section__box-title {
  font-size: max(1.5rem, 14px);
  font-weight: 700;
  color: var(--color-heading);
  text-align: center;
  margin-bottom: 2rem;
}

.wd-section__box-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wd-section__box-list li {
  position: relative;
  padding-left: 2.4rem;
  font-size: max(1.4rem, 13px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.8;
}

.wd-section__box-list li + li {
  margin-top: 0.8rem;
}

.wd-section__box-list li::before {
  content: '';
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%234a9ec4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* フル幅画像 */
.wd-section__fullimg {
  margin-top: 2rem;
}

.wd-section__fullimg img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== サイドバー ========== */
.wd-sidebar {
  width: 22rem;
  flex-shrink: 0;
  position: sticky;
  top: 10rem;
}

.wd-sidebar__title {
  font-size: max(1.5rem, 14px);
  font-weight: 700;
  color: var(--color-heading);
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--color-heading);
  margin-bottom: 2rem;
}

.wd-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* サイドバーカード */
.wd-sidebar-card {
  display: block;
  text-decoration: none;
  color: var(--color-text);
  transition: opacity 0.3s;
}

.wd-sidebar-card:hover {
  opacity: 0.7;
}

.wd-sidebar-card__img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.wd-sidebar-card__img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease-smooth);
}
.wd-sidebar-card__img img[src$=".svg"] {
  object-fit: contain;
  background: #f0f4f8;
}

.wd-sidebar-card:hover .wd-sidebar-card__img img {
  transform: scale(1.05);
}

.wd-sidebar-card__body {
  padding: 1rem 0 0;
}

.wd-sidebar-card__name {
  font-size: max(1.1rem, 10px);
  color: var(--color-text-light);
  opacity: 0.6;
  margin-bottom: 0.2rem;
}

.wd-sidebar-card__text {
  font-size: max(1.3rem, 12px);
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.6;
}

/* ========== 一覧へ戻る ========== */
.wd-back {
  max-width: 1100px;
  margin: 4rem auto 0;
  padding: 0 4rem;
}

.wd-back__btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  font-size: max(1.4rem, 13px);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--color-heading);
  padding: 1.2rem 2.4rem;
  border-radius: var(--radius-btn);
  border: 2px solid var(--color-heading);
  transition: background 0.3s, color 0.3s;
}

.wd-back__btn:hover {
  background: #fff;
  color: var(--color-heading);
}

.wd-back__arrow {
  font-size: max(1.2rem, 11px);
  transition: transform 0.3s;
}

.wd-back__btn:hover .wd-back__arrow {
  transform: translateX(-0.4rem);
}

/* ========== タブレット ========== */
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .wd-content__inner {
    gap: 4rem;
    padding: 0 3rem;
  }

  .wd-sidebar {
    width: 20rem;
  }

  .wd-section__en {
    font-size: max(2.6rem, 22px);
  }
}

/* ========== SP ========== */
@media screen and (max-width: 767px) {
  .wd-hero {
    padding: 10rem 0 3rem;
  }

  .wd-hero__inner {
    padding: 0 2rem;
    text-align: left;
  }

  .wd-hero__en-large {
    font-size: clamp(4.5rem, 14vw, 7rem);
    margin-bottom: -2rem;
  }

  .wd-hero__title {
    font-size: max(2.2rem, 20px);
  }

  .wd-mockup__inner {
    padding: 0 2rem;
  }

  .wd-mockup__images {
    gap: 1.2rem;
  }

  .wd-mockup__img img {
    border-radius: 1.2rem;
  }

  .wd-content {
    padding: 4rem 0 6rem;
  }
}

/* ============================================
   プライバシーポリシーページ
   ============================================ */
.page-hero-v2__photo-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74,158,196,0.12) 0%, rgba(139,198,160,0.10) 50%, rgba(196,224,240,0.08) 100%);
  border-radius: 2rem 0 0 2rem;
}

.privacy-section {
  padding: 8rem 2rem;
  background: #fff;
}

.privacy-section__inner {
  max-width: 88rem;
  margin: 0 auto;
}

.privacy-section__lead {
  font-size: max(1.5rem, 14px);
  line-height: 2;
  color: var(--color-heading, #1a2a3a);
  margin-bottom: 2.4rem;
  font-weight: 500;
}

.privacy-section__text {
  font-size: max(1.4rem, 13px);
  line-height: 2;
  color: var(--color-text, #3a4a5a);
  margin-bottom: 2rem;
}

.privacy-block {
  margin-top: 4.8rem;
  padding-top: 4.8rem;
  border-top: 1px solid rgba(74, 158, 196, 0.15);
}

.privacy-block__title {
  font-size: max(1.8rem, 16px);
  font-weight: 700;
  color: var(--color-heading, #1a2a3a);
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  padding-left: 1.6rem;
  position: relative;
}

.privacy-block__title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 4px;
  height: 1.2em;
  background: linear-gradient(180deg, var(--color-primary, #4a9ec4), var(--color-accent, #8bc6a0));
  border-radius: 2px;
}

.privacy-block__text {
  font-size: max(1.4rem, 13px);
  line-height: 2;
  color: var(--color-text, #3a4a5a);
  margin-bottom: 1.6rem;
}

.privacy-block__text:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .privacy-section {
    padding: 5rem 1.6rem;
  }

  .privacy-block {
    margin-top: 3.2rem;
    padding-top: 3.2rem;
  }

  .privacy-block__title {
    font-size: max(1.6rem, 15px);
  }
}

/* ============================================
   TOPへ戻るボタン
   ============================================ */
.pagetop {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 100;
  width: 4.8rem;
  height: 4.8rem;
  border: none;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  box-shadow: 0 0.4rem 1.2rem rgba(74, 158, 196, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, background 0.3s ease;
}

.pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pagetop:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 0.6rem 1.8rem rgba(74, 158, 196, 0.5);
}

.pagetop__label {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .pagetop {
    width: 4rem;
    height: 4rem;
    right: 1.4rem;
    bottom: 1.4rem;
  }
}

  .wd-content__inner {
    flex-direction: column;
    padding: 0 2rem;
    gap: 4rem;
  }

  .wd-sidebar {
    width: 100%;
    position: static;
  }

  .wd-sidebar__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }

  .wd-section__head {
    gap: 1.2rem;
    margin-bottom: 2rem;
  }

  .wd-section__en {
    font-size: max(2.4rem, 20px);
  }

  .wd-section__lead {
    font-size: max(1.6rem, 15px);
  }

  .wd-section__box {
    padding: 2rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .wd-back {
    padding: 0 2rem;
    text-align: center;
  }

  .wd-back__btn {
    width: auto;
    justify-content: center;
    padding: 1.2rem 2.4rem;
  }
}


/* ============================================
   ドロワーメニュー
   yu-kikensou.com 準拠
   ============================================ */

/* オーバーレイ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(2px);
}

.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* ドロワー本体 */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  height: 100dvh;
  background: #fff;
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer.is-open {
  transform: translateX(0);
}

/* ドロワー開放時：ハンバーガー以外のヘッダー要素を非表示 */
body.is-drawer-open .site-header__nav,
body.is-drawer-open .site-header__logo,
body.is-drawer-open .contact-fixed,
body.is-drawer-open .sp-contact-circle {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* ドロワー内部レイアウト */
.drawer__inner {
  display: flex;
  flex-direction: column;
  padding: 6rem 2.4rem 4rem;
  min-height: 100%;
  gap: 3.2rem;
}

/* ドロワーロゴ */
.drawer__logo {
  display: flex;
  align-items: center;
}

.drawer__logo img {
  width: 120px;
  height: auto;
}

/* ドロワーナビ */
.drawer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #e8e8e8;
}

.drawer__nav-item {
  border-bottom: 1px solid #e8e8e8;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.drawer.is-open .drawer__nav-item:nth-child(1) { transition-delay: 0.10s; }
.drawer.is-open .drawer__nav-item:nth-child(2) { transition-delay: 0.16s; }
.drawer.is-open .drawer__nav-item:nth-child(3) { transition-delay: 0.22s; }
.drawer.is-open .drawer__nav-item:nth-child(4) { transition-delay: 0.28s; }
.drawer.is-open .drawer__nav-item:nth-child(5) { transition-delay: 0.34s; }
.drawer.is-open .drawer__nav-item:nth-child(6) { transition-delay: 0.40s; }

.drawer.is-open .drawer__nav-item {
  opacity: 1;
  transform: translateX(0);
}

.drawer__nav-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 0.4rem 1.4rem 0;
  text-decoration: none;
  color: #333;
  position: relative;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.drawer__nav-link::after {
  content: '';
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--color-accent, #4a9ec4);
  border-right: 1.5px solid var(--color-accent, #4a9ec4);
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.25s ease;
}

.drawer__nav-link:hover,
.drawer__nav-link.is-active {
  color: var(--color-accent, #4a9ec4);
  padding-left: 0.6rem;
}

.drawer__nav-link:hover::after,
.drawer__nav-link.is-active::after {
  right: 0.2rem;
}

.drawer__nav-en {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.drawer__nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  color: var(--color-accent, #4a9ec4);
}

.drawer__nav-icon svg {
  width: 100%;
  height: 100%;
}

.drawer__nav-ja {
  font-size: 1.5rem;
  color: #333;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 500;
}

.drawer__nav-link:hover .drawer__nav-ja {
  color: var(--color-accent, #4a9ec4);
}

/* ドロワーお問い合わせボタン */
.drawer__contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--gradient-accent, linear-gradient(135deg, #4a9ec4, #7ec8a4));
  color: #fff;
  text-decoration: none;
  padding: 1.4rem 1.8rem;
  border-radius: 1rem;
  margin-top: auto;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease 0.42s, transform 0.35s ease 0.42s, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(74, 158, 196, 0.3);
}

.drawer.is-open .drawer__contact {
  opacity: 1;
  transform: translateY(0);
}

.drawer__contact:hover {
  box-shadow: 0 6px 20px rgba(74, 158, 196, 0.5);
  filter: brightness(1.05);
}

.drawer__contact-icon {
  display: flex;
  align-items: center;
  width: 2.8rem;
  height: 2.8rem;
  flex-shrink: 0;
}

.drawer__contact-icon svg {
  width: 100%;
  height: 100%;
}

.drawer__contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.drawer__contact-en {
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.drawer__contact-ja {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  opacity: 0.9;
}

/* ============================================
   ハンバーガーボタン アニメーション（開閉）
   ============================================ */
@media screen and (max-width: 767px) {
  /* is-open時のハンバーガー → ✕ 変形 */
  .site-header__hamburger.is-open .hamburger-lines span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .site-header__hamburger.is-open .hamburger-lines span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .site-header__hamburger.is-open .hamburger-lines span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .site-header__hamburger.is-open .hamburger-text {
    opacity: 1;
  }


  /* ドロワー開閉時にヘッダーのz-indexを引き上げる */
  body.is-drawer-open .site-header {
    z-index: 300;
  }

  .site-header__hamburger {
    z-index: 202 !important;
  }
  .sp-contact-circle {
    z-index: 202 !important;
  }


  /* ハンバーガーのz-indexをドロワーより上に */
  .site-header__hamburger {
    z-index: 202 !important;
  }
  .sp-contact-circle {
    z-index: 202 !important;
  }

  /* ボディスクロール禁止（is-drawer-open時） */
  body.is-drawer-open {
    overflow: hidden;
    touch-action: none;
  }
}


.srv-section__title[style*="border-bottom: none"]::after {
  display: none;
}

/* ============================================
   対応技術・ツール (#tools)
   ============================================ */
.tools-section {
  background-color: #0F0F0F;
  padding: 80px 0;
}

.tools-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.tools-section__head {
  text-align: center;
  margin-bottom: 40px;
}

.tools-section__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #5B5BF6;
  margin-bottom: 8px;
}

.tools-section__title {
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

/* グリッド */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* カード */
.tools-card {
  background-color: #fff;
  border: 1px solid #e0e8f0;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
  opacity: 0;
  transform: translateY(20px);
}

.tools-card.is-visible {
  animation: toolsFadeInUp 0.5s ease-out forwards;
}

.tools-card:hover {
  border-color: #5B5BF6;
  transform: translateY(-4px);
}

/* ホバー時はアニメーション完了後に適用されるため上書き */
.tools-card.is-visible:hover {
  transform: translateY(-4px);
}

.tools-card__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ロゴ画像は横長のため大きめに表示 */
.tools-card__icon--logo {
  width: 80px;
  height: 48px;
}

/* テキスト代替アイコン（STUDIO・UTAGEなど） */
.tools-card__icon--text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #f0f4f8;
  border: 1px solid #d0dce8;
  font-size: 13px;
  font-weight: 700;
  color: #1a2a3a;
  letter-spacing: 0.05em;
}

.tools-card__name {
  font-size: 14px;
  font-weight: 600;
  color: #1a2a3a;
  margin: 12px 0 0;
}

.tools-card__sub {
  font-size: 11px;
  font-weight: 400;
  color: #5a6a7a;
  margin: 4px 0 0;
}

@keyframes toolsFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 767px) {
  .tools-section {
    padding: 48px 0;
  }

  .tools-section__title {
    font-size: 24px;
  }

  .tools-section__head {
    margin-bottom: 24px;
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ============================================
   CTA ワイドバナー（参考: ユーキ建装風）
   左テキスト＋右写真グラデーション切り替え
   ============================================ */
.sec-cta-wide {
  position: relative;
  z-index: 1;
  padding: 8rem 0 10rem;
  background: var(--color-bg-warm);
}

.cta-wide {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-height: 28rem;
  overflow: hidden;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 0.4rem 2.4rem rgba(42, 90, 130, 0.06);
}


.cta-wide__body {
  position: relative;
  z-index: 2;
  width: 55%;
  padding: 5rem 5rem 5rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-wide__en {
  font-family: 'Cormorant', serif;
  font-size: max(1.4rem, 12px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  margin-bottom: 0.8rem;
  opacity: 0.6;
}

.cta-wide__title {
  font-size: max(2.6rem, 22px);
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.cta-wide__em {
  color: var(--color-primary);
}

.cta-wide__text {
  font-size: max(1.35rem, 13px);
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 2.1;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

.cta-wide__info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.cta-wide__info-item {
  font-size: max(1.15rem, 11px);
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.8;
  letter-spacing: 0.03em;
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.cta-wide__info-label {
  display: inline-block;
  font-size: max(1.05rem, 10px);
  font-weight: 700;
  color: var(--color-heading);
  background: rgba(74, 158, 196, 0.08);
  padding: 0.2rem 0.8rem;
  border-radius: 0.3rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-wide__btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  padding: 1.6rem 3.6rem;
  font-size: max(1.4rem, 13px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--gradient-accent);
  border: none;
  border-radius: 5rem;
  text-decoration: none;
  box-shadow: 0 0.4rem 1.6rem rgba(74, 158, 196, 0.35);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}


.cta-wide__btn:hover {
  box-shadow: 0 0.6rem 2.4rem rgba(74, 158, 196, 0.5);
  transform: translateY(-0.2rem);
}

.cta-wide__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}

.cta-wide__btn-icon svg {
  width: 100%;
  height: 100%;
}

.cta-wide__btn-text {
  white-space: nowrap;
}

.cta-wide__photo {
  position: relative;
  width: 45%;
  overflow: hidden;
}

.cta-wide__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-wide__photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.cta-wide__photo-text {
  position: absolute;
  bottom: 2rem;
  right: 2.4rem;
  font-family: 'Cormorant', serif;
  font-size: clamp(4rem, 5vw, 7rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.12em;
  color: #fff;
  opacity: 0.7;
  line-height: 1;
  z-index: 2;
  pointer-events: none;
  user-select: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
  .sec-cta-wide {
    padding: 6rem 0 8rem;
  }

  .cta-wide {
    margin: 0 3rem;
  }

  .cta-wide__body {
    width: 55%;
    padding: 4rem 3rem 4rem 4rem;
  }

  .cta-wide__title {
    font-size: max(2.2rem, 20px);
  }
}

@media screen and (max-width: 767px) {
  .sec-cta-wide {
    padding: 6rem 0 8rem;
  }

  .cta-wide {
    flex-direction: column;
    margin: 0 2rem;
    min-height: auto;
  }

  .cta-wide__photo {
    width: 100%;
    height: 50vw;
    order: -1;
  }

  .cta-wide__photo::before {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0) 100%);
  }

  .cta-wide__photo-text {
    bottom: 1.2rem;
    right: 1.6rem;
    font-size: clamp(3rem, 10vw, 4.5rem);
  }

  .cta-wide__body {
    width: 100%;
    padding: 3rem 2.4rem 3.6rem;
  }

  .cta-wide__title {
    font-size: max(2rem, 19px);
  }

  .cta-wide__text br {
    display: none;
  }

  .cta-wide__info-item {
    flex-direction: column;
    gap: 0.3rem;
  }

  .cta-wide__btn {
    width: 100%;
    justify-content: center;
    border-radius: 5rem;
    padding: 1.4rem 2.8rem;
  }
}

/* ============================================
   お問い合わせページ
   ============================================ */
.contact-page {
  background: #fff;
  padding: 8rem 0 12rem;
}

.contact-page__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* 導入エリア */
.contact-page__intro {
  text-align: center;
  margin-bottom: 6rem;
}

.contact-page__catch {
  font-size: max(2.4rem, 20px);
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-page__lead {
  font-size: max(1.4rem, 13px);
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 2.2;
  letter-spacing: 0.04em;
  margin-bottom: 3.6rem;
}

.contact-page__info {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.contact-page__info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--color-bg-warm);
  border-radius: 1.2rem;
  padding: 2.4rem 2.8rem;
  flex: 1;
  max-width: 36rem;
  text-align: left;
}

.contact-page__info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  color: var(--color-primary);
  background: rgba(74, 158, 196, 0.08);
  border-radius: 50%;
  padding: 0.8rem;
}

.contact-page__info-icon svg {
  width: 100%;
  height: 100%;
}

.contact-page__info-title {
  font-size: max(1.3rem, 12px);
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.contact-page__info-text {
  font-size: max(1.2rem, 11px);
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* フォームラッパー */
.contact-page__form-wrap {
  background: var(--color-bg-warm);
  border-radius: 1.6rem;
  padding: 5rem 5rem 4rem;
}

/* フォーム */
.contact-form__group {
  margin-bottom: 3rem;
}

.contact-form__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form__label-text {
  font-size: max(1.4rem, 13px);
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: 0.06em;
}

.contact-form__required {
  display: inline-block;
  font-size: max(1rem, 10px);
  font-weight: 700;
  color: #fff;
  background: var(--color-primary);
  padding: 0.2rem 0.8rem;
  border-radius: 0.3rem;
  letter-spacing: 0.06em;
}

.contact-form__optional {
  display: inline-block;
  font-size: max(1rem, 10px);
  font-weight: 500;
  color: var(--color-text-light);
  background: rgba(42, 90, 130, 0.08);
  padding: 0.2rem 0.8rem;
  border-radius: 0.3rem;
  letter-spacing: 0.06em;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: 1.4rem 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: max(1.4rem, 14px);
  font-weight: 400;
  color: var(--color-text);
  background: #fff;
  border: 1.5px solid rgba(42, 90, 130, 0.15);
  border-radius: 0.8rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.04em;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(74, 158, 196, 0.12);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #bbb;
}

.contact-form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%235a6a7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.4rem center;
  background-size: 2rem;
  padding-right: 4rem;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 16rem;
}

/* チェックボックス */
.contact-form__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.contact-form__check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: max(1.3rem, 13px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

.contact-form__check input[type="checkbox"] {
  width: 1.8rem;
  height: 1.8rem;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.contact-form__check a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* プライバシー同意 */
.contact-form__privacy {
  margin-bottom: 3.6rem;
  text-align: center;
}

/* 送信ボタン */
.contact-form__submit {
  text-align: center;
}

.contact-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.8rem 5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: max(1.6rem, 15px);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--gradient-accent);
  border: none;
  border-radius: 5rem;
  cursor: pointer;
  box-shadow: 0 0.4rem 1.6rem rgba(74, 158, 196, 0.35);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-form__btn:hover {
  box-shadow: 0 0.6rem 2.4rem rgba(74, 158, 196, 0.5);
  transform: translateY(-0.2rem);
}

.contact-form__btn-icon {
  display: flex;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}

.contact-form__btn-icon svg {
  width: 100%;
  height: 100%;
}

/* レスポンシブ: タブレット */
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .contact-page__inner {
    padding: 0 3rem;
  }

  .contact-page__form-wrap {
    padding: 4rem 3.6rem 3.6rem;
  }
}

/* レスポンシブ: SP */
@media screen and (max-width: 767px) {
  .contact-page {
    padding: 6rem 0 8rem;
  }

  .contact-page__inner {
    padding: 0 2rem;
  }

  .contact-page__catch {
    font-size: max(2rem, 19px);
  }

  .contact-page__lead br {
    display: none;
  }

  .contact-page__info {
    flex-direction: column;
    gap: 1.4rem;
    align-items: center;
  }

  .contact-page__info-card {
    max-width: none;
    padding: 2rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-page__form-wrap {
    padding: 3rem 2rem 2.8rem;
    border-radius: 1.2rem;
  }

  .contact-form__checks {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-form__btn {
    width: 100%;
    justify-content: center;
    padding: 1.6rem 3rem;
  }
}


/* 送信完了メッセージ */
.contact-form__success {
  text-align: center;
  padding: 6rem 2rem;
}
.contact-form__success-icon {
  margin: 0 auto 2rem;
  width: 64px;
  height: 64px;
}
.contact-form__success-icon svg {
  width: 100%;
  height: 100%;
}
.contact-form__success-title {
  font-size: max(2rem, 18px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.2rem;
}
.contact-form__success-text {
  font-size: max(1.4rem, 14px);
  color: #555;
  line-height: 2;
  margin-bottom: 3rem;
}
.contact-form__success-btn {
  display: inline-block;
  padding: 1.2rem 3.6rem;
  font-size: max(1.4rem, 14px);
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #4a9ec4, #8bc6a0);
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.contact-form__success-btn:hover {
  opacity: 0.85;
}

/* バリデーションエラー */
.contact-form__errors {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 0.8rem;
  padding: 1.6rem 2rem;
  margin-bottom: 2.4rem;
}
.contact-form__errors-title {
  font-size: max(1.4rem, 14px);
  font-weight: 700;
  color: #b91c1c;
  margin-bottom: 0.8rem;
}
.contact-form__errors ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-form__errors li {
  font-size: max(1.3rem, 13px);
  color: #dc2626;
  padding-left: 1.4em;
  position: relative;
  line-height: 1.8;
}
.contact-form__errors li::before {
  content: "•";
  position: absolute;
  left: 0;
}

/* ============================================
   Contact Form 7 スタイル上書き
   CF7 出力を既存デザインに合わせる
   ============================================ */

/* CF7 ラッパーリセット */
.wpcf7 {
  max-width: 100%;
}
.wpcf7-form {
  margin: 0;
  padding: 0;
}

/* input / textarea / select — CF7 が生成する要素 */
.wpcf7-form .contact-form__input,
.wpcf7-form input.wpcf7-form-control.wpcf7-text,
.wpcf7-form input.wpcf7-form-control.wpcf7-email,
.wpcf7-form input.wpcf7-form-control.wpcf7-tel {
  width: 100%;
  padding: 1.4rem 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: max(1.4rem, 14px);
  font-weight: 400;
  color: var(--color-text);
  background: #fff;
  border: 1.5px solid rgba(42, 90, 130, 0.15);
  border-radius: 0.8rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.04em;
  box-sizing: border-box;
}

.wpcf7-form .contact-form__textarea,
.wpcf7-form textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  padding: 1.4rem 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: max(1.4rem, 14px);
  font-weight: 400;
  color: var(--color-text);
  background: #fff;
  border: 1.5px solid rgba(42, 90, 130, 0.15);
  border-radius: 0.8rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.04em;
  resize: vertical;
  min-height: 16rem;
  box-sizing: border-box;
}

.wpcf7-form .contact-form__select,
.wpcf7-form select.wpcf7-form-control {
  width: 100%;
  padding: 1.4rem 1.6rem;
  padding-right: 4rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: max(1.4rem, 14px);
  font-weight: 400;
  color: var(--color-text);
  background: #fff;
  border: 1.5px solid rgba(42, 90, 130, 0.15);
  border-radius: 0.8rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%235a6a7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.4rem center;
  background-size: 2rem;
  box-sizing: border-box;
}

/* フォーカス */
.wpcf7-form input.wpcf7-form-control:focus,
.wpcf7-form textarea.wpcf7-form-control:focus,
.wpcf7-form select.wpcf7-form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(74, 158, 196, 0.12);
}

/* placeholder */
.wpcf7-form input.wpcf7-form-control::placeholder,
.wpcf7-form textarea.wpcf7-form-control::placeholder {
  color: #bbb;
}

/* チェックボックス（ご相談内容） */
.wpcf7-form .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: max(1.3rem, 13px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

.wpcf7-form .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"] {
  width: 1.8rem;
  height: 1.8rem;
  accent-color: var(--color-primary);
  cursor: pointer;
}

/* acceptance（プライバシー同意） */
.wpcf7-form .wpcf7-acceptance {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: max(1.3rem, 13px);
  color: var(--color-text);
}

.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
  width: 1.8rem;
  height: 1.8rem;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.wpcf7-form .wpcf7-acceptance a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* 送信ボタン */
.wpcf7-form input.wpcf7-submit,
.wpcf7-form .contact-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1.8rem 5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: max(1.6rem, 15px);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--gradient-accent);
  border: none;
  border-radius: 5rem;
  cursor: pointer;
  box-shadow: 0 0.4rem 1.6rem rgba(74, 158, 196, 0.35);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  width: auto;
}

.wpcf7-form input.wpcf7-submit:hover,
.wpcf7-form .contact-form__btn:hover {
  box-shadow: 0 0.6rem 2.4rem rgba(74, 158, 196, 0.5);
  transform: translateY(-0.2rem);
}

/* CF7 スピナー */
.wpcf7-spinner {
  display: inline-block;
  margin-left: 1rem;
}

/* バリデーションエラー */
.wpcf7-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.6rem;
  font-size: max(1.2rem, 11px);
  font-weight: 500;
  color: #e45757;
  letter-spacing: 0.04em;
}

.wpcf7-form .wpcf7-not-valid {
  border-color: #e45757 !important;
}

/* 送信完了・エラーメッセージ */
.wpcf7-form .wpcf7-response-output {
  margin: 2.4rem 0 0;
  padding: 1.6rem 2rem;
  border-radius: 0.8rem;
  font-size: max(1.3rem, 13px);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}

.wpcf7-form.sent .wpcf7-response-output {
  border: 1.5px solid var(--color-accent);
  background: rgba(139, 198, 160, 0.08);
  color: #2a7a4a;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output {
  border: 1.5px solid #e45757;
  background: rgba(228, 87, 87, 0.06);
  color: #c0392b;
}

.wpcf7-form.spam .wpcf7-response-output {
  border: 1.5px solid #e4a857;
  background: rgba(228, 168, 87, 0.06);
  color: #a67c00;
}

/* レスポンシブ: SP */
@media screen and (max-width: 767px) {
  .wpcf7-form .wpcf7-checkbox {
    flex-direction: column;
    gap: 1rem;
  }

  .wpcf7-form input.wpcf7-submit,
  .wpcf7-form .contact-form__btn {
    width: 100%;
    padding: 1.6rem 3rem;
  }
}


/* ============================================
   blog-detail.html
   ============================================ */

/* ヒーロー */
.bd-hero {
  background: var(--color-bg-warm, #eef5fa);
  padding: 120px 5% 60px;
  text-align: center;
}
.bd-hero__en {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--color-primary, #4a9ec4);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.bd-hero__title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-heading, #1a2a3a);
  line-height: 1.5;
  margin-bottom: 1.6rem;
}
.bd-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  color: var(--color-text-light, #5a6a7a);
}
.bd-hero__breadcrumb a {
  color: var(--color-primary, #4a9ec4);
  text-decoration: none;
}
.bd-hero__breadcrumb a:hover { text-decoration: underline; }

/* コンテンツ全体 */
.bd-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

/* メイン記事 */
.bd-main {}

.bd-article__meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(74,158,196,0.15);
}
.bd-article__date {
  font-family: 'Jost', sans-serif;
  font-size: 1.3rem;
  color: var(--color-text-light, #5a6a7a);
  letter-spacing: 0.05em;
}
.bd-article__tag {
  display: inline-block;
  font-size: 1.1rem;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-weight: 500;
}
.bd-article__tag--info { background: #e8f4fb; color: #4a9ec4; }
.bd-article__tag--media { background: #e8f6ef; color: #3a9a6a; }
.bd-article__tag--works { background: #fef3e2; color: #d48a00; }

.bd-article__body {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--color-text, #2d3a4a);
}
.bd-article__body h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-heading, #1a2a3a);
  margin: 4rem 0 1.6rem;
  padding-left: 1.2rem;
  border-left: 3px solid var(--color-primary, #4a9ec4);
  line-height: 1.5;
}
.bd-article__body h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-heading, #1a2a3a);
  margin: 3rem 0 1.2rem;
}
.bd-article__body p { margin-bottom: 2rem; }
.bd-article__body ul,
.bd-article__body ol {
  margin: 0 0 2rem 2rem;
}
.bd-article__body li { margin-bottom: 0.6rem; }
.bd-article__body .bd-article__img {
  width: 100%;
  border-radius: 8px;
  margin: 3rem 0;
  overflow: hidden;
}
.bd-article__body .bd-article__img img {
  width: 100%;
  height: auto;
  display: block;
}
.bd-article__body .bd-article__note {
  background: var(--color-bg-warm, #eef5fa);
  border-left: 3px solid var(--color-primary, #4a9ec4);
  border-radius: 0 8px 8px 0;
  padding: 1.6rem 2rem;
  margin: 2.4rem 0;
  font-size: 1.4rem;
  color: var(--color-text, #2d3a4a);
}

/* 一覧へ戻る */
.bd-back {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 80px;
}
.bd-back__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  color: var(--color-primary, #4a9ec4);
  text-decoration: none;
  border: 1px solid var(--color-primary, #4a9ec4);
  border-radius: 40px;
  padding: 0.9rem 2.4rem;
  transition: background 0.2s, color 0.2s;
}
.bd-back__btn:hover {
  background: var(--color-primary, #4a9ec4);
  color: #fff;
}
.bd-back__arrow { font-size: 1.2rem; }

/* サイドバー */
.bd-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}
.bd-sidebar__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-heading, #1a2a3a);
  padding-bottom: 1rem;
  margin-bottom: 1.6rem;
  border-bottom: 2px solid var(--color-primary, #4a9ec4);
}
.bd-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.bd-sidebar-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-decoration: none;
  padding: 1.2rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(74,158,196,0.12);
  transition: box-shadow 0.2s, transform 0.2s;
}
.bd-sidebar-card:hover {
  box-shadow: 0 4px 16px rgba(74,158,196,0.15);
  transform: translateY(-2px);
}
.bd-sidebar-card__date {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  color: var(--color-text-light, #5a6a7a);
}
.bd-sidebar-card__tag {
  display: inline-block;
  font-size: 1rem;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-weight: 500;
  width: fit-content;
}
.bd-sidebar-card__tag--info { background: #e8f4fb; color: #4a9ec4; }
.bd-sidebar-card__tag--media { background: #e8f6ef; color: #3a9a6a; }
.bd-sidebar-card__tag--works { background: #fef3e2; color: #d48a00; }
.bd-sidebar-card__text {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-heading, #1a2a3a);
  line-height: 1.5;
}

/* レスポンシブ */
@media screen and (max-width: 900px) {
  .bd-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bd-sidebar {
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .bd-hero {
    padding: 100px 5% 40px;
  }
  .bd-hero__title {
    font-size: 2rem;
  }
  .bd-article__body {
    font-size: 1.4rem;
  }
  .bd-article__body h2 {
    font-size: 1.7rem;
  }
}

/* ============================================
   ページ遷移オーバーレイ — White Fade
   ============================================ */
#pt-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #ffffff;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.65s ease;
  will-change: opacity;
}

#pt-overlay.pt-is-out {
  opacity: 0;
  pointer-events: none;
}

/* ============================================
   お知らせ ページネーション
   ============================================ */
.blg-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}

.blg-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2D3A4A;
  background: #fff;
  border: 1px solid #D6E4EE;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
}

.blg-pagination__btn:hover:not(:disabled) {
  background: #EEF5FA;
  border-color: #4A9EC4;
  color: #4A9EC4;
}

.blg-pagination__btn.is-active {
  background: #4A9EC4;
  border-color: #4A9EC4;
  color: #fff;
  pointer-events: none;
}

.blg-pagination__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.blg-pagination__btn--arrow {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .blg-pagination {
    gap: 4px;
    margin-top: 28px;
  }
  .blg-pagination__btn {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}


