/*
Theme Name: MEDITEX
Theme URI: https://meditex.jp
Author: MEDITEX Inc.
Description: MEDITEXコーポレートサイト用カスタムテーマ
Version: 1.0
*/
/* ============================================
   Breakpoints
   - PC: 768px 以上
   - SP: 767px 以下
============================================ */
:root {
  --c-white: #fff;
  --c-navy: #073d81;
  --c-navy-dark: #061929;
  --c-muted: #f5f7fa;
  --c-grad-a: #27a4e2;
  --c-grad-b: #6e59c1;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-padding-top: 120px; }
body { font-family: "Noto Sans JP", sans-serif; color: var(--c-navy-dark); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.sp-only { display: none; }
.nowrap { white-space: nowrap; }

/* Japanese line breaking optimization */
h1, h2, h3, h4, h5, h6,
p, .lead, .description {
  word-break: auto-phrase;
  line-break: strict;
  overflow-wrap: anywhere;
}

@supports not (word-break: auto-phrase) {
  h1, h2, h3, h4, h5, h6 {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}

.section-inner { width: 1200px; max-width: calc(100% - 48px); margin: 0 auto; }
.section { padding: 120px 0; }
.section-label { margin: 0 0 20px; font: 500 16px/1 "Montserrat", sans-serif; }
.section-label--white { color: #fff; }
.section-title { margin: 0 0 48px; font-size: 48px; line-height: 1.1; font-weight: 500; color: var(--c-navy-dark); }
.section-title--white { color: #fff; }
.section-title-en { margin: 0; font-family: "Montserrat", sans-serif; font-size: 56px; line-height: 1.3; color: var(--c-navy); }

.site-header {
  background: linear-gradient(61deg, rgb(7, 61, 129) 0%, rgb(0, 72, 178) 50.74%, rgb(36, 50, 114) 100%);
  color: rgb(255, 255, 255);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}

.site-header__inner { position: relative; z-index: 1; width: 1440px; max-width: 100%; margin: 0 auto; height: 120px; padding: 24px 120px; display: flex; align-items: center; justify-content: space-between; }
.site-header__logo img { width: 205px; height: 72px; object-fit: contain; }
.site-header__nav { flex: 1; display: flex; justify-content: center; }
.site-header__menu { list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; }
.site-header__menu a { font-size: 14px; font-weight: 700; display: inline-flex; gap: 8px; align-items: center; }
.site-header__menu-arrow { width: 14px; height: 14px; display: inline-flex; align-items: center; justify-content: center; }
.site-header__menu-arrow svg { width: 10px; height: 10px; stroke: currentColor; stroke-width: 1.6; fill: none; }

/* === PC版Gナビ プルダウン === */

/* ドロップダウンを持つメニューアイテムを relative に */
.site-header__menu-item--has-dropdown {
  position: relative;
}

/* ドロップダウン本体（初期は非表示） */
.site-header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(6, 25, 41, 0.12);
  padding: 12px 0;
  margin: 0;
  list-style: none;

  /* 初期は非表示 + フェード */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;

  /* z-indexはヘッダーより上 */
  z-index: 1000;

  /* ホバーから外れた時のロスを防ぐ余白 */
  pointer-events: auto;
}

/* ホバー時に表示 */
.site-header__menu-item--has-dropdown:hover .site-header__dropdown,
.site-header__menu-item--has-dropdown:focus-within .site-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* メニューアイテムとドロップダウンの間に隙間ができないようpadding調整 */
.site-header__menu-item--has-dropdown > a {
  /* 親aの下に余白があると、hover時にドロップダウンが消えてしまうため */
  padding-bottom: 16px;
  margin-bottom: -16px;
}

/* ドロップダウン内のリンク */
.site-header__dropdown li a {
  display: block;
  padding: 12px 24px;
  font-size: 14px;
  color: #061929;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.site-header__dropdown li a:hover {
  background: #f8f9fb;
  color: #1c4f8c;
}

/* SPでは PC版ドロップダウンを完全に非表示（ハンバーガーメニューを使うため） */
@media (max-width: 1024px) {
  .site-header__dropdown {
    display: none;
  }
}
.site-header__cta { display: flex; gap: 16px; }
.btn { height: 48px; padding: 12px 24px; border-radius: 8px; font-size: 14px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }
.btn--outline { border: 1px solid #fff; color: #fff; }
.btn--fill { background: #fff; color: #074c84; }
.btn--gradient { background: linear-gradient(90deg, var(--c-grad-a), var(--c-grad-b)); color: #fff; box-shadow: 5px 5px 5px rgba(0,0,0,.3); border-radius: 4px; width: 240px; justify-content: space-between; padding-inline: 32px 20px; }
.hamburger-btn { display: none; }

.ham-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.ham-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 300ms ease;
}
.ham-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(390px, 100vw);
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 300ms ease;
  overflow-y: auto;
}
.ham-menu.is-open { pointer-events: auto; }
.ham-menu.is-open .ham-menu__overlay { opacity: 1; }
.ham-menu.is-open .ham-menu__panel { transform: translateX(0); }

.ham-menu__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 10px 20px;
  background: linear-gradient(30.13deg, #073d81 20.8%, #0048b2 32.96%, #243272 85.16%);
}
.ham-menu__logo {
  width: 114.06px;
  height: 40px;
  object-fit: contain;
}
.ham-menu__cta {
  width: 160px;
  height: 28px;
  border-radius: 9999px;
  background: #fff;
  color: #074c84;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}
.ham-menu__close {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.ham-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ham-menu__item > a,
.ham-menu__toggle {
  width: 100%;
  min-height: 58px;
  padding: 13px 20px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  color: #fff;
  background: #1a3a8f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.ham-menu__toggle { cursor: pointer; }
.ham-menu__chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 240ms ease;
}
.ham-menu__toggle[aria-expanded="true"] .ham-menu__chevron {
  transform: rotate(-135deg) translateY(1px);
}
.ham-menu__sub {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
  background: #fff;
}
.ham-menu__sub.is-open {
  max-height: 420px;
}
.ham-menu__sub a {
  min-height: 52px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #222;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  border-bottom: 1px solid #e6e6e6;
}
.ham-menu__sub a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #1a3a8f;
  border-bottom: 2px solid #1a3a8f;
  transform: rotate(-45deg);
}

body.is-menu-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .sp-only { display: inline; }
  .site-header__inner {
    width: 100%;
    max-width: 390px;
    height: 60px;
    padding: 10px 20px;
    gap: 12px;
    justify-content: space-between;
  }
  .site-header__logo img {
    width: 114.06px;
    height: 40px;
  }
  .site-header__nav,
  .site-header__cta .btn--outline {
    display: none;
  }
  .site-header__cta {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 0;
  }
  .site-header__cta .btn--fill {
    width: 160px;
    height: 28px;
    padding: 8px 14px;
    border-radius: 9999px;
    font-size: 12px;
    line-height: 1.4;
  }
  .hamburger-btn {
    width: 30px;
    height: 18.75px;
    padding: 0;
    background: transparent;
    border: 0;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    cursor: pointer;
  }
  .hamburger-btn span {
    height: 2px;
    border-radius: 2px;
    background: #fff;
  }
}

@media (min-width: 768px) {
  .ham-menu {
    display: none;
  }
  .hamburger-btn {
    display: none;
  }
}

/* ===== TOPページ：ヘッダー〜MV 1枚絵化 ===== */

/* 共通：ヘッダー半透明＋ぼかし（MV内は控えめに帯として認識、CTAは浮く） */
.home .site-header {
  background: rgba(7, 61, 129, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

/* 共通：スクロール後ヘッダー復活 */
.home .site-header.is-scrolled {
  background: linear-gradient(61deg,
    #073D81 0%,
    #0048B2 50.74%,
    #243272 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* PC版（≧768px）：.hero に ::before を新設してヘッダー裏まで延ばす */
@media (min-width: 768px) {
  .home .hero {
    overflow: visible;
    background: none;
  }

  .home .hero::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 0;
    right: 0;
    height: calc(100% + 120px);
    background: linear-gradient(61deg,
      #073D81 0%,
      #0048B2 50.74%,
      #243272 100%);
    z-index: -1;
    pointer-events: none;
  }
}

.hero { position: relative; overflow: hidden; background: linear-gradient(61deg, #073d81 0%, #0048b2 50.74%, #243272 100%); color: #fff; padding-bottom: 56px; }
.hero__scroll-text {
  position: absolute;
  top: 347px;
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.hero__scroll-text-track {
  display: inline-block;
  font: 500 88px/1 "Montserrat", sans-serif;
  color: #08356e;
  animation: mv-text-scroll 60s linear infinite;
}
@keyframes mv-text-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hero__inner { position: relative; z-index: 2; width: 1440px; max-width: 100%; margin: 0 auto; padding: 0 120px; }
.hero__visual { width: 1200px; max-width: 100%; height: 560px; margin: 0 auto; }
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__visual-img-sp { display: none; }
.hero__content { width: 663px; margin: -560px auto 0; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero__badge { margin: 0; padding: 10px 40px; border-radius: 4px; background: #fff; color: var(--c-navy); font-size: 40px; line-height: 1.3; }
.hero__title-main { margin: 180px 0 8px; font-size: 48px; font-weight: 500; line-height: 1.1; text-shadow: 0 3px 6px rgba(0,0,0,.16); }
.hero__title-divider { width: 626.5px; max-width: 100%; border-top: 2px solid rgba(255,255,255,.95); margin: 0 0 8px; }
.hero__title-sub { margin: 0; font: 500 60px/1.3 "Montserrat", "Noto Sans JP", sans-serif; text-shadow: 0 3px 6px rgba(0,0,0,.16); }
.hero__ai-illust { width: 320px; height: auto; object-fit: contain; margin: 14px auto 0; margin-bottom: 0; display: block; padding-bottom: 0; }
.hero__cta { margin-top: 0; margin-right: auto; margin-bottom: 0; margin-left: auto; width: 440px; max-width: 440px; padding-top: 0; }
.hero__cta-label { position: relative; min-height: 82px; display: flex; align-items: center; justify-content: center; background: linear-gradient(90deg, var(--c-grad-a), var(--c-grad-b)); border-radius: 4px; box-shadow: 5px 5px 5px rgba(0,0,0,.3); font-size: 20px; font-weight: 700; }
.hero__cta-arrow { position: absolute; right: 40px; top: 50%; transform: translateY(-50%); }
.hero__banner { position: absolute; right: 0; bottom: 0; width: 271px; height: 194px; z-index: 30; }
.hero__banner-link {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__banner-link img {
  width: 100%;
  height: 100%;
  display: block;
}
.hero__banner img { width: 100%; height: 100%; object-fit: cover; }
.hero__doc-flow-sp { display: none; }

@keyframes mv-fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mv-fade-in-down {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mv-pop-in {
  0% { opacity: 0; transform: scale(0.7); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes mv-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(64, 119, 255, 0.5); }
  50% { box-shadow: 0 0 0 20px rgba(64, 119, 255, 0); }
}

.hero__badge,
.hero__ai-illust,
.hero__badge,
.hero__title-main,
.hero__title-sub,
.hero__cta {
  opacity: 0;
}

.hero__ai-illust {
  transform: translateY(30px);
}

.mv-loaded .hero__badge {
  animation: mv-pop-in 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 100ms;
}

.mv-loaded .hero__title-main {
  animation: mv-fade-in-up 700ms ease-out forwards;
  animation-delay: 350ms;
}

.mv-loaded .hero__title-sub {
  animation: mv-fade-in-up 800ms ease-out forwards;
  animation-delay: 600ms;
}

.mv-loaded .hero__ai-illust {
  animation: mv-fade-in-up 800ms ease-out forwards;
  animation-delay: 850ms;
}

.mv-loaded .hero__cta {
  animation:
    mv-fade-in-up 700ms ease-out forwards,
    mv-pulse 1200ms ease-out 1900ms 2;
  animation-delay: 1100ms, 1900ms;
}

.about {
  position: relative;
  overflow: hidden;
  background: #fff;
  min-height: 800px;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/bg_company.jpg") center/cover no-repeat;
  opacity: 0.08;
}

.about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
}

.about-bg-slider {
  position: absolute;
  top: -10%;
  right: 0;
  height: 130%;
  width: 58%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 20px 0 8px;
  transform: rotate(14deg);
  transform-origin: center center;
  z-index: 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 20%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%);
}

.slider-col {
  overflow: hidden;
  height: 100%;
}

.slider-col__track {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.slider-col__track img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
}

.slider-col-1 .slider-col__track {
  animation: about-scroll-up 30s linear infinite;
}

.slider-col-2 .slider-col__track {
  animation: about-scroll-down 35s linear infinite;
}

.slider-col-3 .slider-col__track {
  animation: about-scroll-up 40s linear infinite;
}

.slider-col-4 .slider-col__track {
  animation: about-scroll-down 32s linear infinite;
}

.about-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

@keyframes about-scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

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

.about__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 579px 1fr;
  gap: 21px;
  align-items: center;
  padding-top: 148px;
  padding-bottom: 148px;
}

.about__lead { font-size: 32px; line-height: 1.4; margin: 40px 0 60px; }
.about__button { width: 240px; justify-content: space-between; padding-inline: 40px 18px; }
.about__button-text {
  display: inline-block;
}
.about__button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.about__button-wrap { display: none; }
.about__button--sp { display: none; }
.about__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__illust {
  width: 620px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.why { background: var(--c-muted); padding-top: 0; }
.why__head { padding: 120px 0 224px; background: linear-gradient(to bottom, rgba(110,89,193,.9), rgba(7,61,129,.9)), url("assets/images/bg_whymeditex.jpg") center/cover; }
.why__cards { margin-top: -160px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px 30px; }
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 60px 40px 30px;
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
.why-card__tag {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: 40px;
  border-radius: 16px 0 4px 0;
  background: #1a3a8f;
  color: #fff;
  font: 500 12px/1 "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.why-card__num {
  position: absolute;
  right: 24px;
  top: 14px;
  font: 700 120px/1 "Montserrat";
  color: rgba(0, 0, 0, 0.08);
  z-index: 0;
  pointer-events: none;
}
.why-card h3,
.why-card img,
.why-card p {
  position: relative;
  z-index: 1;
}
.why-card img {
  border-radius: 8px;
}
.why-card h3 { margin: 0 0 20px; font-size: 24px; line-height: 1.5; color: var(--c-navy-dark); }
.why-card p { margin: 20px 0 0; font-size: 14px; line-height: 1.6; }

/* ===== TOP WHY 数式型リード ===== */
.why-formula {
  margin: 48px 0 0;
  color: var(--c-white);
  text-align: center;
}

.why-formula__terms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 20px;
}

.why-formula__term {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

.why-formula__op {
  font-size: 28px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
}

.why-formula__result {
  margin: 0;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.5;
}

.why-formula__equals {
  font-size: 36px;
  font-weight: 500;
  margin-right: 12px;
}

.why-formula__result-text {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

/* PC では SP用改行を消す */
.why-formula__br-sp {
  display: none;
}

.what { background: #fff; overflow-x: hidden; padding-bottom: 0; }
.what-row {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 60px 0;
}

.what-row:last-of-type {
  padding-bottom: 120px;
}
.what-row__inner {
  width: 1200px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 80px;
  align-items: center;
}
.what-row:nth-of-type(odd) { background: #f5f7fa; }
.what-row:nth-of-type(even) { background: #ffffff; }
.what-row--reverse .what-row__inner { grid-template-columns: 1fr 600px; }
.what-row--reverse img { order: 2; }
.what-row img { width: 600px; height: 360px; border-radius: 16px; object-fit: cover; box-shadow: 10px 10px 10px rgba(0,0,0,.16); }
.what-row__num { font: 700 56px/1.3 "Montserrat"; color: var(--c-navy); display: block; }
.what-row h3 { margin: 20px 0; font-size: 24px; color: var(--c-navy); }
.what-row p { margin: 0; font-size: 16px; line-height: 2; }

.solutions {
  background: #ffffff;
  padding-top: 0;
  padding-bottom: 122px;
}

.solutions__box {
  background: #0b2f87;
  border-radius: 56px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 120px 120px 16px;
}

.solutions__box > .solutions__header,
.solutions__box > .solutions__group,
.solutions__box > .solutions-03 {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.solutions__header {
  margin-bottom: 64px;
}

.solutions__header .section-label {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1;
}

.solutions__header .section-title {
  font-size: 48px;
  line-height: 1.1;
}

.solutions__group {
  margin-bottom: 64px;
}

.solutions__group:last-of-type {
  margin-bottom: 0;
}

.solutions__subhead {
  margin-bottom: 40px;
}

.solutions__subhead-en {
  margin: 0 0 12px;
  color: #27a4e2;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.solutions__subhead-line {
  display: block;
  width: 24px;
  height: 1px;
  margin-bottom: 10px;
  background: #ffffff;
}

.solutions__subhead h3 {
  margin: 0;
  color: #ffffff;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
}

.solutions__cards {
  display: grid;
  gap: 30px;
}

.solutions__cards--3col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solutions__cards--4col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solutions__cards--2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solution-card {
  min-height: 242px;
  padding: 28px 22px 26px;
  border-radius: 16px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.solution-card img {
  width: 220px;
  height: 116px;
  object-fit: contain;
  margin-bottom: 22px;
}

.solution-card h3 {
  margin: 0;
  color: #061929;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}

.solution-card--small h3 {
  font-size: 20px;
}

.solution-card--wide {
  padding-left: 20px;
  padding-right: 20px;
}

/* SOLUTIONカードのリンク化（display:flex はベース .solution-card を維持 — display:block で上書きしない） */
a.solution-card {
  text-decoration: none;
  color: inherit;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

/* PC：hover で浮く + 影が濃くなる */
@media (hover: hover) and (pointer: fine) {
  a.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  }

  a.solution-card:hover::after {
    opacity: 1;
    transform: translateX(4px);
  }
}

/* 右下に → アイコン（常時表示） */
a.solution-card::after {
  content: "\2192";
  position: absolute;
  right: 20px;
  bottom: 16px;
  font-size: 18px;
  font-weight: 500;
  color: #1c4f8c;
  opacity: 0.6;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* SP：常時やや濃く */
@media (max-width: 767px) {
  a.solution-card::after {
    opacity: 0.8;
    right: 16px;
    bottom: 12px;
    font-size: 16px;
  }
}

.solutions__cta {
  width: 804px;
  min-height: 243px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 16px;
  background: linear-gradient(90deg, #27a4e2 0%, #6e59c1 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.solutions__cta-wrap {
  position: relative;
  margin-top: -121px;
  margin-bottom: 0;
  z-index: 3;
}

/* ============================================
   SOLUTIONS 03 CTA 専用ブロック（PC版）
   汎用 .solutions__cta-wrap の値を SOLUTIONS 03 の文脈に合わせて上書きする
   SP用ルールは @media (max-width: 767px) 内に既に存在するため、
   ここでは PC版の挙動だけを定義する
   ============================================ */
.solutions-03 .solutions__cta-wrap {
  position: relative;
  margin-top: -120px;     /* Figma正解値（カードに120px食い込む）*/
  margin-bottom: 64px;    /* Figma space-64、次セクションとの余白 */
  z-index: 3;
}

/* SOLUTIONS 03 only: keep 32px gap before CTA overlap on PC */
.solutions-03 .solutions__group {
  margin-bottom: 32px;
}

/* Emergency fix: prevent PC overlap from SP-era adjustments */
@media (min-width: 768px) {
  .solutions-03 .solutions__cta-wrap {
    margin-top: 88px !important;
    margin-bottom: 24px;
  }
}

.solutions__cta-text {
  width: 484px;
  color: #ffffff;
}

.solutions__cta-text p {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.solutions__cta-text h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
}

.solutions__cta-side {
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.solutions__cta-side img {
  width: 136px;
  height: 106px;
  object-fit: contain;
}

.solutions__cta-image--sp {
  display: none;
}

.solutions__cta-btn {
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  padding: 18px 16px;
}

.case {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #061929;
}

.case__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 25, 41, 0.7);
}

.case__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.case__inner {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 120px;
}

.case__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.case__head-btn {
  width: 240px;
  max-width: 240px;
  flex-shrink: 0;
}

.case__head-btn,
.case__bottom-btn,
.column__button-wrap .btn--gradient {
  justify-content: center;
  gap: 8px;
  padding-inline: 24px;
}

.case__rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  margin-bottom: 40px;
  scrollbar-width: none;
}

.case__rail::-webkit-scrollbar {
  display: none;
}

.case-card {
  position: relative;
  flex: 0 0 300px;
  color: #222;
}

.case-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 16px 16px 0 0;
}

.case-card__tag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  min-width: 120px;
  max-width: calc(100% - 16px);
  height: 40px;
  padding: 0 16px;
  box-sizing: border-box;
  border-radius: 16px 0 4px 0;
  background: #074c84;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 40px;
  white-space: nowrap;
  text-align: center;
}

.case-card__body {
  position: relative;
  padding: 30px 20px 24px;
  border-radius: 0 0 16px 16px;
  background: #fff;
}

.case-card__lead {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #061929;
}

.case-card__name {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 400;
  color: #555;
}

.case-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
}

.case-card__service {
  color: #073d81;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.case-card__area {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  gap: 6px;
  padding-right: 28px;
  color: #222;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.case-card__area-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: #222;
  line-height: 0;
}

.case-card__area-icon svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: currentColor;
}

.case-card__link {
  position: absolute;
  right: 20px;
  bottom: 24px;
  color: #061929;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.case__divider-main,
.case__divider-accent {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.case__divider-main {
  width: 100%;
}

.case__divider-accent {
  width: 120px;
  margin-top: -1px;
  background: #ffffff;
}

.column { background: #fff; }
.column-grid { display: grid; grid-template-columns: repeat(3, 372px); gap: 42px; margin-bottom: 48px; }
.column-card { position: relative; background: #fff; border-radius: 16px; }
.column-card__image { width: 372px; height: 248px; object-fit: cover; border-radius: 16px 16px 0 0; }
.column-card__body {
  background: #fff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 3px 3px rgba(0,0,0,.16);
  padding: 16px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.column-card__title {
  margin: 0;
  color: #061929;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}
.column-card__meta {
  display: flex;
  gap: 16px;
  align-items: center;
}
.column-card__category {
  height: 32px;
  padding: 6px 8px;
  border: 1px solid #074c84;
  border-radius: 4px;
  color: #074c84;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
.column-card__date {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
}
.column-card__tags {
  margin: 0;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
.column-card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.column__button-wrap {
  display: flex;
  justify-content: center;
}

.message { background: var(--c-muted); }
.message__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.message__top {
  display: grid;
  grid-template-columns: 300px 780px;
  gap: 120px;
  align-items: start;
}

.message__profile {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.message__photo {
  width: 300px;
  height: 300px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  object-fit: cover;
}

.message__name {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
}

.message__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.message__headline {
  margin: 0;
  color: #074c84;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.message__text p {
  margin: 0 0 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

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

.message__career {
  display: flex;
  align-items: flex-start;
  gap: 107px;
  padding: 60px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
}

.message__career-label {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.message__career-cols {
  display: grid;
  grid-template-columns: 398px 397px;
  gap: 48px;
  padding-right: 16px;
}

.message__career-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.message__career-list li {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.message__career-list li::before {
  content: "・";
  margin-right: 2px;
}

.message__career-list li:last-child {
  margin-bottom: 0;
}

.company-section {
  position: relative;
  padding: 0;
  color: #fff;
  overflow: hidden;
}

.company-section__bg {
  position: absolute;
  inset: 0;
}

.company-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-section__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 25, 41, 0.8);
}

.company-section__inner {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 120px;
}

.company-section__label {
  margin: 0 0 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.company-section__title {
  margin: 0 0 48px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
}

.company-table {
  margin: 0;
}

.company-table__row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.company-table__key,
.company-table__value {
  margin: 0;
  font-size: 16px;
}

.company-table__key {
  padding: 15px 0;
  font-weight: 500;
  line-height: 1.6;
}

.company-table__value {
  padding: 15px 0;
  font-weight: 400;
  line-height: 2;
}

.company-table__row--multi .company-table__key,
.company-table__row--multi .company-table__value {
  padding-top: 6px;
  padding-bottom: 6px;
}

/* 関連会社/サービス：リンクリスト */
.company-table__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.company-table__link {
  color: var(--c-grad-a);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}
.company-table__link:hover,
.company-table__link:focus {
  opacity: 0.7;
}

.qa { background: #5f717f; color: #fff; }
.qa__title { margin: 0 0 32px; text-align: center; font: 700 32px/1.3 "Montserrat"; color: #fff; }
.qa-list { display: grid; gap: 20px; }

.qa-item {
  background: #fff;
  border: 1px solid #dfe8ef;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.qa-item__question {
  width: 100%;
  padding: 24px 24px 24px 48px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}

.qa-item__question-icon,
.qa-item__answer-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 30px;
}

.qa-item__question-icon {
  background: #074c84;
  color: #fff;
}

.qa-item__question-text {
  flex: 1;
  min-width: 0;
  color: #061929;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.qa-item__toggle {
  width: 24px;
  text-align: center;
  color: #074c84;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.qa-item__answer {
  display: none;
  padding: 0 24px 24px 48px;
}

.qa-item.is-open .qa-item__answer {
  display: block;
}

.qa-item__answer-inner {
  border-top: 1px solid #dfe8ef;
  padding-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.qa-item__answer-icon {
  background: #6e59c1;
  color: #fff;
}

.qa-item__answer-text {
  margin: 0;
  color: #5f6e7a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.cta { background: linear-gradient(111deg, #074c84 0.3%, #0f549a 50.34%, #073d81 97.96%); color: #fff; text-align: center; }
.cta__inner h2 { margin: 0 0 19px; font-size: 48px; font-weight: 500; line-height: 1.1; }
.cta__inner p { margin: 0 0 16px; font-size: 16px; line-height: 2; }
.cta__illust {
  width: 715px;
  max-width: 100%;
  margin: 0 auto -10px;
}

.cta__button {
  position: relative;
  z-index: 2;
  margin: 0 auto 0;
  width: 420px;
  max-width: 100%;
  min-height: 92px;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--c-grad-a), var(--c-grad-b));
  box-shadow: 0 3px 3px rgba(0,0,0,.16);
  color: #f5f7fa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cta__button small { font-size: 14px; font-weight: 700; line-height: 1.5; }
.cta__button strong { font-size: 20px; line-height: 1.4; }
.cta__button span { position: absolute; right: 32px; top: 50%; transform: translateY(-50%); }

.site-footer {
  background: #fff;
}

.site-footer__top {
  background: #fff;
  color: #061929;
  padding: 72px 0;
}

.site-footer__top-inner {
  display: grid;
  grid-template-columns: 331px 1fr;
  gap: 120px;
  align-items: end;
}

.site-footer__company img {
  width: 228px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 48px;
}

.site-footer__company p {
  margin: 0 0 32px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #061929;
}

.site-footer__company address {
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #061929;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.site-footer__top-link {
  color: #073d81;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.site-footer__links {
  display: grid;
  grid-template-columns: 194px 140px 223px;
  gap: 64px;
}

.site-footer__links h4 {
  margin: 0 0 16px;
  color: #073d81;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.site-footer__links a {
  display: block;
  margin: 0 0 12px;
  color: #061929;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.site-footer__links a.site-footer__section-link {
  color: #073d81;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.site-footer__bottom {
  background: #fff;
  padding: 120px 0;
}

.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 242px;
}

.site-footer__bottom-inner > p {
  margin: 0;
  color: #073d81;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.site-footer__bottom-inner div {
  width: 311px;
  text-align: right;
}

.site-footer__bottom-inner a {
  color: #061929;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.site-footer__bottom-inner small {
  display: block;
  margin-top: 24px;
  color: #061929;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .sp-only { display: block; }
  html,
  body {
    overflow-x: hidden;
  }

  /* MV */
  .hero {
    padding-top: 60px;
    padding-bottom: 64px;
    position: relative;
    background: none;
    overflow: visible;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(61deg, #073d81 0%, #0048b2 50.74%, #243272 100%);
    z-index: 0;
  }
  .home .hero::before {
    top: -60px;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .hero__inner {
    width: 100%;
    max-width: 390px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
  }
  .hero__visual {
    width: 100%;
    max-width: 350px;
    height: 272px;
  }
  .hero__content {
    width: 100%;
    max-width: 350px;
    margin-top: -296px;
  }
  .hero__badge {
    padding: 4px 20px;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
  }
  .hero__title-main {
    margin: 175px 0 4px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.4;
    text-align: center;
    text-shadow:
      0 3px 6px rgba(0, 0, 0, 0.16),
      0 1px 0 rgba(255, 255, 255, 0.25);
  }
  .hero__title-line {
    display: inline-block;
    border-bottom: 2px solid rgba(255, 255, 255, 0.95);
    background: rgba(129, 138, 151, 0.38);
    border-radius: 4px;
    padding: 0 6px 2px;
  }
  .hero__title-divider {
    display: none;
  }
  .hero__title-sub {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.1;
    text-align: center;
    text-shadow:
      0 3px 6px rgba(0, 0, 0, 0.16),
      0 1px 0 rgba(255, 255, 255, 0.22);
  }
  .hero__ai-illust {
    width: 100%;
    max-width: 348px;
    margin-top: 16px;
  }
  .hero__cta {
    width: 100%;
    max-width: 350px;
    margin-bottom: 0;
  }
  .hero__cta-label {
    min-height: 82px;
    font-size: 20px;
    line-height: 1.4;
    padding: 0 56px 0 40px;
  }
  .hero__cta-arrow {
    right: 40px;
  }
  .hero__scroll-text {
    top: auto;
    bottom: 86px;
    height: 84px;
    z-index: 1;
  }
  .hero__scroll-text-track {
    font-size: 88px;
    line-height: 1;
    animation-duration: 40s;
  }
  .hero__banner {
    display: none;
  }
  .hero__visual {
    position: relative;
    overflow: hidden;
  }
  .hero__visual-img-pc {
    display: none;
  }
  .hero__visual-img-sp {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .hero__doc-flow-sp {
    position: absolute;
    display: block;
    right: 0;
    bottom: -30px;
    width: 290px;
    height: 60px;
    margin: 0;
    z-index: 40;
    border-radius: 4px 0 0 0;
  }
  .hero__doc-flow-sp img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ABOUT（TOP）SP: 整列4列グリッドをコンテナで斜め／画像個別 rotate なし（テキスト可読優先） */
  .about {
    position: relative;
    overflow: hidden;
    min-height: auto;
    /* セクションの縦サイズは従来どおり増やさない（下のみ既存どおり軽い余白） */
    padding: 0 0 32px;
  }

  /* セクション矩形は変えず、グリッドの配置ボックスだけ上下にはみ出して「窓」の左下〜下側をタイルが満たすようパンさせる（clip は .about） */
  .about-bg-slider {
    position: absolute;
    top: clamp(-40px, -6vw, -16px);
    left: calc(-18% + clamp(240px, 58vw, 460px));
    right: auto;
    bottom: clamp(-280px, -40vw, -160px);
    width: min(136%, 520px);
    max-width: none;
    height: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 1fr;
    gap: clamp(10px, 2.8vw, 14px);
    padding: 0;
    box-sizing: border-box;
    transform: rotate(30deg);
    transform-origin: 55% 45%;
    opacity: 0.42;
    z-index: 0;
    pointer-events: none;
    mask-image: none;
    -webkit-mask-image: none;
    overflow: visible;
  }

  .slider-col {
    min-height: 0;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    align-self: stretch;
  }

  .slider-col__track {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(10px, 2.8vw, 14px);
  }

  .slider-col__track img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: none;
    margin: 0;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 8px;
    transform: none;
  }

  .about-bg-overlay {
    background: rgba(255, 255, 255, 0.5);
    pointer-events: none;
  }
  .about__inner {
    width: 390px;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 80px 20px;
  }
  .about .section-label {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .about .section-title-en {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
  }
  .about__lead {
    margin: 20px 0 24px;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 500;
  }
  .about__visual {
    order: 2;
    margin: 0 auto;
  }
  .about__illust {
    width: 300px;
  }
  .about__button--pc {
    display: none;
  }
  .about__button-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    order: 3;
  }
  .about__button--sp {
    display: inline-flex;
    width: 240px;
    height: 57px;
    font-size: 14px;
    line-height: 1.5;
    padding-inline: 40px 20px;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-right: 32px;
  }
  .about__button--sp .about__button-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8px;
    line-height: 1;
  }

  /* WHY MEDITEX */
  .why {
    padding: 0;
    background: #f5f7fa;
  }
  .why__head {
    padding: 120px 20px 224px;
    height: 817px;
    position: relative;
    background-position: left top;
  }
  .why__head .section-inner {
    width: 350px;
    max-width: 100%;
    margin: 0 auto;
  }
  .why__head .section-label {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .why__head .section-title {
    font-size: 32px;
    line-height: 1.4;
  }
  .why__cards {
    width: 350px;
    max-width: calc(100% - 40px);
    /* 元 -582px。why-formula 追加に伴い実機調整。2026/05/09 */
    margin: -260px auto 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 60px;
  }
  .why-card {
    width: 350px;
    max-width: 100%;
    min-height: 400px;
    padding: 60px 20px 30px;
  }
  .why-card__num {
    right: 20px;
    top: 10px;
    font-size: 120px;
    color: #f1f3f6;
  }
  .why-card h3 {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.5;
  }
  .why-card img {
    width: 310px;
    height: 102px;
    object-fit: cover;
  }
  .why-card p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
  }

  /* ===== SP ===== */
  .why-formula {
    margin: 32px 0 0;
  }
  .why-formula__terms {
    flex-direction: column;
    gap: 8px;
    margin: 0 0 16px;
  }
  .why-formula__term {
    font-size: 20px;
  }
  .why-formula__op {
    font-size: 20px;
  }
  .why-formula__result {
    font-size: 24px;
    line-height: 1.5;
  }
  .why-formula__equals {
    font-size: 26px;
    margin-right: 8px;
  }
  /* SP では SP用改行を有効化 */
  .why-formula__br-sp {
    display: inline;
  }

  /* WHAT YOU GET */
  .what {
    padding: 0;
    background: #fff;
  }
  .what .section-inner {
    width: 390px;
    max-width: 100%;
    padding: 60px 20px 30px;
  }
  .what .section-label {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .what .section-title {
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 1.4;
  }
  .what-row {
    width: auto;
    margin: 0 -20px;
    padding: 40px 20px;
  }
  .what-row:last-of-type {
    padding-bottom: 80px;
  }
  .what-row__inner,
  .what-row--reverse .what-row__inner {
    width: 350px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .what-row--reverse img {
    order: 0;
  }
  .what-row img {
    width: 350px;
    max-width: 100%;
    height: 210px;
  }
  .what-row__num {
    font-size: 56px;
    line-height: 1.3;
  }
  .what-row h3 {
    margin: 20px 0 30px;
    font-size: 24px;
    line-height: 1.5;
  }
  .what-row p {
    font-size: 16px;
    line-height: 2;
  }

  /* SOLUTIONS */
  .solutions {
    padding: 0 0 190px;
  }
  .solutions .section-inner {
    width: 390px;
    max-width: 100%;
    padding: 0;
  }
  .solutions__box {
    width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 64px 20px 0;
    overflow: visible;
  }
  .solutions__header {
    margin-bottom: 64px;
  }
  .solutions__header .section-label {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .solutions__header .section-title {
    font-size: 32px;
    line-height: 1.4;
  }
  .solutions__group {
    margin-bottom: 64px;
  }
  .solutions__subhead {
    margin-bottom: 40px;
  }
  .solutions__subhead h3 {
    font-size: 24px;
    line-height: 1.5;
  }
  .solutions__cards,
  .solutions__cards--3col,
  .solutions__cards--4col,
  .solutions__cards--2col {
    grid-template-columns: repeat(2, 170px);
    gap: 10px;
    justify-content: center;
  }
  .solution-card {
    min-height: 180px;
    border-radius: 16px;
    padding: 16px 12px 14px;
  }
  .solution-card img {
    width: 126px;
    height: 80px;
    margin-bottom: 12px;
  }
  .solution-card h3,
  .solution-card--small h3 {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
  }
  .solution-card--wide {
    padding-left: 12px;
    padding-right: 12px;
  }
  .solutions__cta-wrap {
    position: static;
    margin-top: 68px;
    margin-bottom: -253px;
    z-index: 2;
  }
  .solutions__cta {
    width: 350px;
    min-height: 337px;
    padding: 128px 25px 48px;
    position: relative;
    display: block;
  }
  .solutions__cta-text {
    width: 100%;
    text-align: center;
  }
  .solutions__cta-text p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .solutions__cta-text h3 {
    font-size: 20px;
    line-height: 1.4;
    white-space: nowrap;
  }
  .solutions__cta-side {
    width: 100%;
    display: block;
  }
  .solutions__cta-image--pc {
    display: none;
  }
  .solutions__cta-image--sp {
    display: block;
  }
  .solutions__cta-side img {
    width: 180px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
  }
  .solutions__cta-btn {
    width: 240px;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 18px 16px;
    font-size: 14px;
    line-height: 1.5;
  }
  .solutions__cta-btn-text {
    text-align: center;
  }
  .solutions__cta-btn-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8px;
    line-height: 1;
  }
  .solutions-03 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px 0 20px;
    gap: 64px;
    align-self: stretch;
  }
  .solutions-03 .solutions__group {
    margin-bottom: 0;
    width: 100%;
  }
  .solutions-03 .solutions__cta-wrap {
    width: 100%;
    margin: 0 0 -170px 0;
    position: static;
    z-index: 2;
  }
  .solutions-03 .solutions__cta {
    width: 350px;
    max-width: 100%;
    min-height: auto;
    height: 337px;
    margin: 24px auto 0;
    padding: 0 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    background: linear-gradient(90deg, #27a4e2 0%, #6e59c1 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
  }
  .solutions-03 .solutions__cta-text {
    order: 2;
    width: 100%;
    text-align: center;
  }
  .solutions-03 .solutions__cta-text p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #ffffff;
  }
  .solutions-03 .solutions__cta-text h3 {
    font-size: 18px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 700;
  }
  .solutions-03 .solutions__cta-side {
    display: contents;
  }
  .solutions-03 .solutions__cta-image--sp {
    order: 1;
    display: block;
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 140px;
    max-height: 120px;
    object-fit: contain;
    height: auto;
    margin: 8px auto 0;
  }
  .solutions-03 .solutions__cta-image--pc {
    display: none;
  }
  .solutions-03 .solutions__cta-btn {
    order: 3;
    width: 240px;
    margin: 0;
  }

  /* CASE / VOICE */
  .case {
    background: #061929;
    padding: 0;
  }
  .case__bg {
    background: rgba(0, 0, 0, 0.5);
  }
  .case__bg img {
    opacity: 0.55;
  }
  .case__inner {
    width: 390px;
    max-width: 100%;
    padding: 48px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .case__head {
    margin: 0;
  }
  .case__head .section-label {
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
  }
  .case__head .section-title {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 0;
    color: #fff;
  }
  .case__head-btn {
    display: none;
  }
  .case__rail {
    margin: 0;
    padding-bottom: 8px;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .case-card {
    flex-basis: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
  }
  .case-card__body {
    position: relative;
    padding: 30px 20px 44px;
    border-radius: 0;
    background: transparent;
  }
  .case-card__tag {
    background: #074c84;
    color: #ffffff;
    border: 0;
    line-height: 40px;
  }
  .case-card__service {
    color: #1a3a8f;
    background: transparent;
    border-radius: 0;
    padding: 0;
  }
  .case-card__area {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    gap: 6px;
  }
  .case-card__area-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    color: #222;
    line-height: 0;
  }
  .case-card__area-icon svg {
    width: 14px;
    height: 14px;
    display: block;
    fill: currentColor;
  }
  .case-card__link {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #061929;
  }
  .case-card__link svg {
    width: 16px;
    height: 16px;
    display: block;
    stroke: currentColor;
  }
  .case__divider {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .case__divider-main {
    width: 350px;
    max-width: 100%;
    margin: 0 auto;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
    position: relative;
    overflow: hidden;
  }
  .case__divider-accent {
    width: 120px;
    margin: 0;
    height: 1px;
    background: #ffffff;
    position: absolute;
    left: 0;
    top: 0;
    transition: left 120ms linear;
  }
  .case__bottom-btn-wrap {
    display: flex;
    justify-content: center;
  }
  .case__bottom-btn {
    width: 240px;
    max-width: 240px;
  }

  /* COLUMN */
  .column {
    padding: 60px 0;
  }
  .column .section-inner {
    width: 390px;
    max-width: 100%;
    padding: 0 20px;
  }
  .column .section-label {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .column .section-title {
    margin-bottom: 40px;
    font-size: 48px;
    line-height: 1.1;
  }
  .column-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  .column-card,
  .column-card__image {
    width: 350px;
    max-width: 100%;
  }
  .column-card__image {
    height: 233px;
  }
  .column-card__body {
    padding: 16px 24px 40px;
  }
  .column-card__title {
    font-size: 16px;
    line-height: 1.6;
  }
  .column__button-wrap .btn {
    width: 240px;
  }

  /* MESSAGE */
  .message {
    padding: 60px 0;
  }
  .message__inner {
    width: 390px;
    max-width: 100%;
    gap: 32px;
    padding: 0 20px;
  }
  .message .section-label {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .message .section-title {
    margin: 0;
    font-size: 32px;
    line-height: 1.4;
  }
  .message__top {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .message__content {
    order: 1;
    gap: 48px;
  }
  .message__headline {
    font-size: 32px;
    line-height: 1.4;
  }
  .message__text p {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.6;
  }
  .message__profile {
    order: 2;
    width: 300px;
    margin: 0 auto;
  }
  .message__career {
    width: 350px;
    max-width: 100%;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .message__career-cols {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-right: 0;
  }

  /* COMPANY */
  .company-section {
    padding: 0;
  }
  .company-section__inner {
    width: 390px;
    max-width: 100%;
    padding: 60px 20px;
  }
  .company-section__label {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .company-section__title {
    margin-bottom: 40px;
    font-size: 48px;
    line-height: 1.1;
  }
  .company-table__row {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    padding: 0 0 24px;
    margin-bottom: 24px;
  }
  .company-table__row:last-child {
    margin-bottom: 0;
  }
  .company-table__key {
    padding: 0;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
  }
  .company-table__value {
    padding: 0;
    font-size: 16px;
    line-height: 2;
  }
  .company-table__row--multi .company-table__key,
  .company-table__row--multi .company-table__value {
    padding: 0;
  }

  /* CTA */
  .cta {
    padding: 80px 0;
  }
  .cta__inner {
    width: 390px;
    max-width: 100%;
    padding: 0 20px;
  }
  .cta__inner h2 {
    margin: 0 0 19px;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
  }
  .cta__inner p {
    margin: 0 0 32px;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
  }
  .cta__illust {
    width: 350px;
    height: auto;
    margin: 0 auto 10px;
  }
  .cta__button {
    width: 350px;
    min-height: 85px;
    margin: 0 auto;
    border-radius: 16px;
  }
  .cta__button small {
    font-size: 14px;
    line-height: 1.5;
  }
  .cta__button strong {
    font-size: 20px;
    line-height: 1.4;
  }
  .cta__button span {
    right: 32px;
    font-size: 8px;
  }

  /* FOOTER */
  .site-footer {
    padding: 72px 20px 120px;
  }
  .site-footer__top,
  .site-footer__bottom {
    background: #fff;
    padding: 0;
  }
  .site-footer__top-inner,
  .site-footer__bottom-inner {
    width: 390px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    text-align: center;
  }
  .site-footer__company {
    text-align: center;
  }
  .site-footer__company img {
    width: 228.125px;
    height: 80px;
    margin: 0 auto;
  }
  .site-footer__company p {
    margin: 48px 0 0;
    font-size: 20px;
    line-height: 1.4;
  }
  .site-footer__company address {
    margin-top: 32px;
    font-size: 16px;
    line-height: 1.6;
    font-style: normal;
    text-align: center;
  }
  .site-footer__nav {
    display: none;
  }
  .site-footer__bottom-inner > p {
    margin: 0;
    color: #073d81;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
  }
  .site-footer__bottom-inner div {
    width: 311px;
    text-align: center;
  }
  .site-footer__bottom-inner a {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
  }
  .site-footer__bottom-inner small {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
  }
  .totop-btn {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 60px;
    height: 60px;
    border: 0;
    border-radius: 8px;
    background: #061929;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
  }
  .totop-btn__icon {
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
  }
}

/* ==========================================
   CASE DETAIL PAGE
========================================== */
.case-detail {
  background: var(--c-white);
  color: var(--c-navy-dark);
}

.case-detail__breadcrumb {
  padding: 20px 0 28px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-navy-dark);
}

.case-detail__breadcrumb a {
  color: var(--c-navy);
  text-decoration: none;
}

.case-detail__breadcrumb a:hover {
  text-decoration: underline;
}

.case-detail__mv {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.case-detail__mv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 25, 41, 0.65);
  z-index: 1;
}

.case-detail__mv-bg {
  position: absolute;
  inset: 0;
}

.case-detail__mv-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-detail__mv-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 72px;
}

.case-detail__case-number {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.case-detail__headline {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.3;
}

.case-detail__subtitle {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  line-height: 1.6;
}

.case-detail__client-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.8;
}

.case-detail__scroll-hint {
  margin-top: 26px;
  font-size: 18px;
  animation: caseDetailHintBounce 1s ease-in-out infinite;
}

@keyframes caseDetailHintBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.case-detail__highlights {
  background: var(--c-muted);
}

.case-detail__highlights-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.case-detail__highlight-card {
  border-radius: 16px;
  padding: 28px 24px;
  background: linear-gradient(90deg, var(--c-grad-a) 0%, var(--c-grad-b) 100%);
  color: #fff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
}

.case-detail__highlight-label {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.case-detail__highlight-metric {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.case-detail__profile-inner {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.case-detail__profile-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.case-detail__profile-clinic {
  margin: 0 0 8px;
  color: var(--c-navy);
  font-size: 16px;
  font-weight: 700;
}

.case-detail__profile-doctor {
  margin: 0 0 20px;
  font-size: 30px;
  line-height: 1.4;
}

.case-detail__profile-doctor span {
  margin-left: 8px;
  font-size: 16px;
  font-weight: 500;
}

.case-detail__profile-qualifications {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.9;
}

.case-detail__profile-meta {
  margin: 0;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  row-gap: 12px;
  column-gap: 16px;
}

.case-detail__profile-meta dt {
  margin: 0;
  color: var(--c-navy);
  font-weight: 700;
}

.case-detail__profile-meta dd {
  margin: 0;
}

.case-detail__profile-meta a {
  color: var(--c-navy);
  text-decoration: underline;
}

/* === CASE 2人目プロフィールカード === */
.case-detail__profile--secondary {
  /* 1人目との視覚的区切り */
  padding-top: 0;
}

/* 2人目カードでは所在地・URL等のmeta は元から非表示。
   特別なCSSは不要だが、margin調整のみ */
@media (min-width: 768px) {
  .case-detail__profile--secondary .case-detail__profile-inner {
    /* 必要に応じて間隔調整 */
  }
}

.case-detail__lead .section-inner {
  max-width: 920px;
}

.case-detail__lead p {
  margin: 0 0 1.2em;
  font-size: 18px;
  line-height: 2;
}

.case-detail__qa-block {
  padding: 32px;
  margin-top: 24px;
  border: 1px solid #dfe8ef;
  border-radius: 16px;
  background: #fff;
}

.case-detail__qa-question {
  margin: 0 0 16px;
  color: var(--c-navy);
  font-size: 24px;
  line-height: 1.5;
}

.case-detail__qa-answer p:last-child {
  margin-bottom: 0;
}

.case-detail__pull-quote {
  position: relative;
  margin: 40px auto 16px;
  max-width: 980px;
  padding: 40px 56px;
  text-align: center;
  color: var(--c-navy);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7;
}

.case-detail__pull-quote::before,
.case-detail__pull-quote::after {
  position: absolute;
  font-family: "Montserrat", sans-serif;
  font-size: 64px;
  color: rgba(7, 61, 129, 0.2);
  line-height: 1;
}

.case-detail__pull-quote::before {
  content: "“";
  top: 0;
  left: 8px;
}

.case-detail__pull-quote::after {
  content: "”";
  right: 8px;
  bottom: -8px;
}

.case-detail__services {
  background: var(--c-muted);
}

.case-detail__services-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.case-detail__services-list li {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 9999px;
  background: #fff;
  color: var(--c-navy);
  font-size: 14px;
  font-weight: 700;
}

.case-detail__services-meta {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.8;
}

.case-detail__services-meta span {
  color: rgba(6, 25, 41, 0.75);
  font-size: 14px;
}

.case-detail__cta .section-inner {
  text-align: center;
}

.case-detail__cta-headline {
  margin: 0 0 18px;
  font-size: 38px;
  line-height: 1.4;
}

.case-detail__cta-text {
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.9;
}

.case-detail__cta-btn {
  min-width: 320px;
}

.case-detail__related-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.case-detail__related-btn-wrap {
  margin-top: 32px;
  text-align: center;
}

@media (max-width: 767px) {
  .case-detail__breadcrumb {
    padding: 16px 0 22px;
    font-size: 12px;
  }

  .case-detail__mv {
    min-height: 70vh;
  }

  .case-detail__mv-inner {
    padding-bottom: 44px;
  }

  .case-detail__case-number {
    font-size: 14px;
  }

  .case-detail__headline {
    font-size: 30px;
  }

  .case-detail__subtitle {
    font-size: 16px;
    line-height: 1.7;
  }

  .case-detail__client-meta {
    font-size: 14px;
  }

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

  .case-detail__highlight-card {
    padding: 22px 18px;
  }

  .case-detail__highlight-label {
    font-size: 18px;
  }

  .case-detail__highlight-metric {
    font-size: 14px;
  }

  .case-detail__profile-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .case-detail__profile-doctor {
    font-size: 24px;
  }

  .case-detail__profile-doctor span {
    display: block;
    margin-left: 0;
    margin-top: 6px;
    font-size: 14px;
  }

  .case-detail__profile-meta {
    grid-template-columns: 68px minmax(0, 1fr);
    row-gap: 10px;
    column-gap: 10px;
    font-size: 14px;
  }

  .case-detail__lead p {
    font-size: 16px;
    line-height: 1.9;
  }

  .case-detail__qa-block {
    padding: 20px 16px;
    margin-top: 16px;
  }

  .case-detail__qa-question {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .case-detail__pull-quote {
    margin-top: 28px;
    padding: 28px 22px;
    font-size: 22px;
  }

  .case-detail__pull-quote::before,
  .case-detail__pull-quote::after {
    font-size: 46px;
  }

  .case-detail__services-meta {
    font-size: 14px;
  }

  .case-detail__cta-headline {
    font-size: 30px;
  }

  .case-detail__cta-text {
    font-size: 14px;
    line-height: 1.8;
  }

  .case-detail__cta-btn {
    min-width: 0;
    width: 100%;
  }

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

/* CASE DETAIL micro adjustments (PC CTA/spacing) */
@media (min-width: 768px) {
  .case-detail__lead.section {
    padding-bottom: 40px;
  }

  .case-detail__qa.section {
    padding-top: 40px;
  }
}

.case-detail__cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.case-detail__cta-btn,
.case-detail__cta-btn-secondary {
  width: 240px;
  min-width: 240px;
  justify-content: center;
}

.case-detail__cta-btn-secondary {
  background: var(--c-white);
  color: var(--c-navy-dark);
  border: 1px solid rgba(6, 25, 41, 0.12);
}

@media (max-width: 767px) {
  .case-detail__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* CASE DETAIL SP optimization */
@media (max-width: 767px) {
  .case-detail .section {
    padding: 60px 0;
  }

  .case-detail .section-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 32px;
  }

  .case-detail__headline {
    font-size: 28px;
    line-height: 1.4;
  }

  .case-detail__highlights .section-title,
  .case-detail__qa .section-title,
  .case-detail__services .section-title,
  .case-detail__related .section-title {
    font-size: 28px;
  }

  .case-detail__cta-headline {
    font-size: 24px;
  }

  .case-detail__lead {
    padding: 40px 20px;
  }

  .case-detail__lead .section-inner {
    width: 100%;
    max-width: 100%;
  }

  .case-detail__lead,
  .case-detail__lead p,
  .case-detail__lead li {
    font-size: 15px;
    line-height: 1.8;
    word-break: auto-phrase;
    overflow-wrap: anywhere;
  }

  .case-detail__mv {
    min-height: 62vh;
  }

  .case-detail__qa-block {
    padding: 18px 14px;
  }

  .case-detail__pull-quote {
    font-size: 22px;
    line-height: 1.6;
    padding: 24px 20px;
  }

  .case-detail__cta.section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* CASE DETAIL lead overflow fix (SP) */
@media (max-width: 767px) {
  .case-detail__lead {
    padding: 40px 20px;
    box-sizing: border-box;
  }

  .case-detail__lead .section-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .case-detail__lead p,
  .case-detail__lead .case-detail__lead-text {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .case-detail__lead.section {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 40px;
    padding-bottom: 40px;
    box-sizing: border-box;
  }
}

/* ==========================================
   CASE ARCHIVE PAGE
========================================== */
.case-archive {
  background: var(--c-white);
  color: var(--c-navy-dark);
}

.case-archive__breadcrumb {
  padding: 20px 0 12px;
  font-size: 14px;
  line-height: 1.6;
}

.case-archive__breadcrumb a {
  color: var(--c-navy);
  text-decoration: none;
}

.case-archive__breadcrumb a:hover {
  text-decoration: underline;
}

.case-archive__header {
  padding-top: 56px;
  padding-bottom: 48px;
}

.case-archive__lead {
  margin: 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.8;
}

.case-archive__filters {
  padding-top: 0;
  padding-bottom: 64px;
}

.case-archive__filter-group + .case-archive__filter-group {
  margin-top: 28px;
}

.case-archive__filter-label {
  margin: 0 0 14px;
  color: var(--c-navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.case-archive__filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-archive__filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 20px;
  border-radius: 9999px;
  background: var(--c-muted);
  color: var(--c-navy);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.case-archive__filter-btn:hover,
.case-archive__filter-btn.is-active {
  background: var(--c-navy);
  color: var(--c-white);
}

.case-archive__list {
  padding-top: 0;
}

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

.case-archive__pagination {
  margin-top: 48px;
}

.case-archive__pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.case-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 9999px;
  background: var(--c-muted);
  color: var(--c-navy);
  font-size: 14px;
  font-weight: 500;
}

.case-archive__pagination .page-numbers.current {
  background: var(--c-navy);
  color: var(--c-white);
}

.case-archive__empty {
  margin: 0;
  padding: 48px 24px;
  border-radius: 16px;
  background: var(--c-muted);
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .case-archive__breadcrumb {
    padding-top: 16px;
    font-size: 12px;
  }

  .case-archive__header {
    padding-top: 36px;
    padding-bottom: 28px;
  }

  .case-archive .section-title {
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 1.3;
  }

  .case-archive__lead {
    font-size: 15px;
    line-height: 1.8;
  }

  .case-archive__filters {
    padding-bottom: 60px;
  }

  .case-archive__filter-group + .case-archive__filter-group {
    margin-top: 22px;
  }

  .case-archive__filter-label {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .case-archive__filter-buttons {
    gap: 8px;
  }

  .case-archive__filter-btn {
    min-height: 34px;
    padding: 7px 14px;
    font-size: 13px;
  }

  .case-archive__list {
    padding-top: 0;
    padding-bottom: 60px;
  }

  .case-archive__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .case-archive__pagination {
    margin-top: 36px;
  }
}

/* CASE CARD clickable area enhancement */
.case-card__cover-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.case-card__link {
  z-index: 2;
}

.case-card:hover {
  cursor: pointer;
  transform: translateY(-2px);
  transition: transform 200ms ease;
}

/* CASE/VOICE：PC版では下のボタンを隠す（上のヘッダーボタンが代替） */
@media (min-width: 768px) {
  .case__bottom-btn-wrap {
    display: none;
  }
}

/* ==========================================
   PAGE DEFAULT (固定ページ用)
   全ての固定ページのデフォルトテンプレート page.php 用
========================================== */
.page-default {
  background: var(--c-white);
  color: var(--c-navy-dark);
}

.page-default__breadcrumb {
  padding: 20px 0 12px;
  font-size: 14px;
  line-height: 1.6;
}

/* 廃止予定: page.phpのMV刷新により未使用
.page-default__header {
  padding: 56px 0 40px;
  background: var(--c-muted);
}

.page-default__title {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-navy);
}
*/

.page-default__content {
  padding: 60px 0 120px;
}

/* Elementor のセクションが section-inner の幅制約を必要とする場合の補助 */
.page-default__content > .elementor {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .page-default__breadcrumb {
    padding: 16px 0 10px;
    font-size: 12px;
  }

  /* 廃止予定: page.phpのMV刷新により未使用
  .page-default__header {
    padding: 36px 0 24px;
  }

  .page-default__title {
    font-size: 28px;
    line-height: 1.4;
    padding-left: 20px;
    padding-right: 20px;
  }
  */

  .page-default__content {
    padding: 40px 0 80px;
  }
}

/* 下層ページ：ヒーロー領域の拡張 */
.page-default__hero-eyebrow {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-navy);
  text-transform: uppercase;
}

.page-default__hero-meta {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(6, 25, 41, 0.7);
}

/* 下層ページ：リード文セクション */
.page-default__lead {
  padding: 48px 0 24px;
  background: var(--c-white);
}

.page-default__lead-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 16px;
  line-height: 2;
  color: var(--c-navy-dark);
}

@media (max-width: 767px) {
  .page-default__lead {
    padding: 32px 0 16px;
  }
  .page-default__lead-inner {
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.9;
  }
}

/* 下層ページ：本文カードセクション */
.page-default__body {
  padding: 60px 0 100px;
  background: var(--c-muted);
}

.page-default__body-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-default__card {
  background: var(--c-white);
  border-radius: 16px;
  padding: 48px 56px;
  box-shadow: 0 3px 16px rgba(6, 25, 41, 0.06);
}

.page-default__card + .page-default__card {
  margin-top: 24px;
}

/* カード内の見出し・本文の標準スタイル */
.page-default__card h2 {
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--c-muted);
  color: var(--c-navy);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.page-default__card h3 {
  margin: 32px 0 12px;
  color: var(--c-navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.page-default__card p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--c-navy-dark);
}

.page-default__card p:last-child {
  margin-bottom: 0;
}

.page-default__card ul,
.page-default__card ol {
  margin: 12px 0 16px;
  padding-left: 24px;
}

.page-default__card li {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.9;
}

.page-default__card a {
  color: var(--c-navy);
  text-decoration: underline;
  word-break: break-all;
}

@media (max-width: 767px) {
  .page-default__body {
    padding: 40px 0 60px;
  }
  .page-default__body-inner {
    padding: 0 16px;
  }
  .page-default__card {
    padding: 28px 20px;
    border-radius: 12px;
  }
  .page-default__card h2 {
    font-size: 20px;
  }
  .page-default__card h3 {
    font-size: 16px;
  }
  .page-default__card p,
  .page-default__card li {
    font-size: 14px;
    line-height: 1.85;
  }
}

/* 下層ページ：お問い合わせ窓口セクション（ネイビー背景） */
.page-default__contact {
  padding: 80px 0;
  background: linear-gradient(111deg, #074c84 0.3%, #0f549a 50.34%, #073d81 97.96%);
  color: var(--c-white);
  text-align: center;
}

.page-default__contact-label {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.page-default__contact-title {
  margin: 0 0 32px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-white);
}

.page-default__contact-info {
  font-size: 16px;
  line-height: 2;
}

.page-default__contact-info strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

@media (max-width: 767px) {
  .page-default__contact {
    padding: 60px 20px;
  }
  .page-default__contact-title {
    font-size: 24px;
  }
  .page-default__contact-info {
    font-size: 14px;
    line-height: 1.9;
  }
}

/* 廃止予定: page.phpのMV刷新により未使用
.page-default__header .page-default__title {
  margin-top: 8px;
}
*/

/* ==========================================
   下層ページ共通CTAブロック（TOP下部CTAと同世界観）
   page-default__contact の代替として、下層ページ末尾に配置
========================================== */
.page-default__cta {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(111deg, #074c84 0.3%, #0f549a 50.34%, #073d81 97.96%);
  color: var(--c-white);
  text-align: center;
  overflow: hidden;
}

.page-default__cta-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-template-page-pillar .page-default__cta-inner {
  max-width: 1248px;
}

.page-default__cta-headline {
  margin: 0 0 19px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--c-white);
}

.page-default__cta-text {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

.page-default__cta-illust {
  display: block;
  width: 480px;
  max-width: 100%;
  margin: 0 auto -10px;
  height: auto;
}

.page-default__cta-button {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: 420px;
  max-width: 100%;
  min-height: 92px;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--c-grad-a), var(--c-grad-b));
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
  color: #f5f7fa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.page-default__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-default__cta-button small {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.page-default__cta-button strong {
  font-size: 20px;
  line-height: 1.4;
}

.page-default__cta-button .page-default__cta-button-arrow {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .page-default__cta {
    padding: 60px 20px;
  }

  .page-default__cta-headline {
    font-size: 28px;
    line-height: 1.4;
  }

  .page-default__cta-text {
    font-size: 14px;
    line-height: 1.9;
  }

  .page-default__cta-illust {
    width: 280px;
  }

  .page-default__cta-button {
    width: 100%;
    max-width: 350px;
    min-height: 85px;
  }

  .page-default__cta-button small {
    font-size: 13px;
  }

  .page-default__cta-button strong {
    font-size: 18px;
  }

  .page-default__cta-button .page-default__cta-button-arrow {
    right: 20px;
    font-size: 12px;
  }
}

/* ==========================================
   PAGE DEFAULT RICH（魅せる下層ページ用）
   ============================================ */

/* リッチMV：page.phpの.page-default__headerをページ単位で上書きする想定 */
.page-default--rich .page-default__header {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(111deg, #074c84 0.3%, #0f549a 50.34%, #073d81 97.96%);
  color: var(--c-white);
  overflow: hidden;
}

.page-default--rich .page-default__header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/bg_company.jpg") center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.page-default--rich .page-default__header .section-inner {
  position: relative;
  z-index: 1;
}

.page-default--rich .page-default__title {
  margin: 0;
  color: var(--c-white);
  font-size: 56px;
  line-height: 1.2;
  font-weight: 500;
}

.page-default--rich .page-default__subtitle {
  margin: 0 0 16px;
  color: var(--c-white);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.page-default--rich .page-default__lead-headline {
  margin: 32px 0 0;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--c-white);
  opacity: 0.95;
}

@media (max-width: 767px) {
  .page-default--rich .page-default__header {
    padding: 80px 20px 60px;
  }
  .page-default--rich .page-default__title {
    font-size: 36px;
    line-height: 1.3;
  }
  .page-default--rich .page-default__subtitle {
    font-size: 14px;
  }
  .page-default--rich .page-default__lead-headline {
    margin: 20px 0 0;
    font-size: 16px;
    line-height: 1.7;
  }
}

/* ストーリーセクション（代表挨拶等の写真付き大型レイアウト） */
.page-default__story {
  padding: 100px 0;
  background: var(--c-white);
}

.page-default__story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-default__story-eyebrow {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-navy);
  text-align: center;
}

.page-default__story-title {
  margin: 0 0 60px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--c-navy-dark);
  text-align: center;
}

.page-default__story-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.page-default__story-photo {
  width: 320px;
  height: 320px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.page-default__story-name {
  margin: 24px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
}

.page-default__story-name strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.page-default__story-content h3 {
  margin: 0 0 32px;
  color: var(--c-navy);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.page-default__story-content p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 2;
}

.page-default__story-content p:last-child {
  margin-bottom: 0;
}

.page-default__story-signature {
  margin-top: 40px;
  text-align: right;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-navy);
}

@media (max-width: 767px) {
  .page-default__story {
    padding: 60px 0;
  }
  .page-default__story-inner {
    padding: 0 20px;
  }
  .page-default__story-title {
    margin-bottom: 40px;
    font-size: 26px;
  }
  .page-default__story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .page-default__story-photo {
    width: 240px;
    height: 240px;
    margin: 0 auto;
  }
  .page-default__story-name {
    text-align: center;
    margin-top: 16px;
  }
  .page-default__story-content h3 {
    margin-bottom: 24px;
    font-size: 22px;
    line-height: 1.5;
  }
  .page-default__story-content p {
    font-size: 14px;
    line-height: 1.9;
  }
}

/* 数値カード：KPI/実績を大きく見せる */
.page-default__stats {
  padding: 100px 0;
  background: var(--c-muted);
}

.page-default__stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-default__stats-eyebrow {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-navy);
  text-align: center;
}

.page-default__stats-title {
  margin: 0 0 60px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

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

.page-default__stat-card {
  position: relative;
  padding: 48px 32px 36px;
  background: var(--c-white);
  border-radius: 16px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(6, 25, 41, 0.06);
}

.page-default__stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-grad-a), var(--c-grad-b));
}

.page-default__stat-number {
  display: block;
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, var(--c-grad-a), var(--c-grad-b));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-default__stat-unit {
  display: inline-block;
  margin-left: 4px;
  font-size: 24px;
  font-weight: 700;
  color: var(--c-navy);
  -webkit-text-fill-color: var(--c-navy);
}

.page-default__stat-label {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--c-navy-dark);
}

@media (max-width: 767px) {
  .page-default__stats {
    padding: 60px 0;
  }
  .page-default__stats-inner {
    padding: 0 20px;
  }
  .page-default__stats-title {
    margin-bottom: 36px;
    font-size: 26px;
  }
  .page-default__stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .page-default__stat-card {
    padding: 32px 20px 24px;
  }
  .page-default__stat-number {
    font-size: 48px;
  }
  .page-default__stat-unit {
    font-size: 20px;
  }
  .page-default__stat-label {
    font-size: 14px;
  }
}

/* 事業領域カード：アイコン + タイトル + 説明 */
.page-default__services {
  padding: 100px 0;
  background: var(--c-white);
}

.page-default__services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-default__services-eyebrow {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-navy);
  text-align: center;
}

.page-default__services-title {
  margin: 0 0 60px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

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

.page-default__service-card {
  padding: 40px 32px;
  background: var(--c-muted);
  border-radius: 16px;
  text-align: center;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.page-default__service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(6, 25, 41, 0.08);
}

.page-default__service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--c-grad-a), var(--c-grad-b));
  color: var(--c-white);
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.page-default__service-card h3 {
  margin: 0 0 16px;
  color: var(--c-navy);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.page-default__service-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--c-navy-dark);
}

@media (max-width: 767px) {
  .page-default__services {
    padding: 60px 0;
  }
  .page-default__services-inner {
    padding: 0 20px;
  }
  .page-default__services-title {
    margin-bottom: 36px;
    font-size: 26px;
  }
  .page-default__services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .page-default__service-card {
    padding: 32px 24px;
  }
  .page-default__service-icon {
    width: 64px;
    height: 64px;
    font-size: 22px;
    margin-bottom: 16px;
  }
  .page-default__service-card h3 {
    font-size: 18px;
  }
  .page-default__service-card p {
    font-size: 14px;
  }
}

/* 会社情報テーブル：洗練された表組 */
.page-default__info {
  padding: 100px 0;
  background: var(--c-muted);
}

.page-default__info-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-default__info-eyebrow {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-navy);
  text-align: center;
}

.page-default__info-title {
  margin: 0 0 60px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.page-default__info-table {
  width: 100%;
  background: var(--c-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(6, 25, 41, 0.06);
}

.page-default__info-table-row {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 32px;
  padding: 24px 40px;
  border-bottom: 1px solid #e6e9ee;
}

.page-default__info-table-row:last-child {
  border-bottom: 0;
}

.page-default__info-table-key {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--c-navy);
}

.page-default__info-table-value {
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-navy-dark);
}

.page-default__info-table-value strong {
  display: block;
  margin-bottom: 4px;
  color: var(--c-navy);
  font-size: 14px;
}

.page-default__info-table-value strong + br + * {
  margin-top: 4px;
}

.page-default__info-table-value a {
  color: var(--c-navy);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .page-default__info {
    padding: 60px 0;
  }
  .page-default__info-inner {
    padding: 0 20px;
  }
  .page-default__info-title {
    margin-bottom: 36px;
    font-size: 26px;
  }
  .page-default__info-table-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 24px;
  }
  .page-default__info-table-key {
    font-size: 14px;
  }
  .page-default__info-table-value {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* タイムライン：縦線+ドットの沿革表現 */
.page-default__timeline {
  padding: 100px 0;
  background: var(--c-white);
}

.page-default__timeline-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-default__timeline-eyebrow {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-navy);
  text-align: center;
}

.page-default__timeline-title {
  margin: 0 0 60px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.page-default__timeline-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-default__timeline-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100px;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-grad-a), var(--c-grad-b));
}

.page-default__timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

.page-default__timeline-item:last-child {
  padding-bottom: 0;
}

.page-default__timeline-item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 92px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-white);
  border: 4px solid var(--c-navy);
  z-index: 1;
}

.page-default__timeline-date {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.6;
}

.page-default__timeline-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-navy-dark);
}

.page-default__timeline-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--c-navy-dark);
}

@media (max-width: 767px) {
  .page-default__timeline {
    padding: 60px 0;
  }
  .page-default__timeline-inner {
    padding: 0 20px;
  }
  .page-default__timeline-title {
    margin-bottom: 36px;
    font-size: 26px;
  }
  .page-default__timeline-list::before {
    left: 8px;
  }
  .page-default__timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 32px;
    padding-bottom: 32px;
  }
  .page-default__timeline-item::before {
    top: 4px;
    left: 0;
    width: 16px;
    height: 16px;
    border-width: 3px;
  }
  .page-default__timeline-date {
    font-size: 14px;
  }
  .page-default__timeline-body h3 {
    font-size: 16px;
  }
  .page-default__timeline-body p {
    font-size: 14px;
  }
}

/* ==========================================
   PAGE DEFAULT MV（英日2段 + 透かし英字）
========================================== */
.page-default__mv {
  position: relative;
  overflow: hidden;
  background: linear-gradient(111deg, #074c84 0.3%, #0f549a 50.34%, #073d81 97.96%);
  color: var(--c-white);
  padding: 120px 0 100px;
}

.page-default__mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/bg_company.jpg") center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.page-default__mv-inner {
  position: relative;
  z-index: 1;
}

.page-default__mv-en {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-white);
  opacity: 0.92;
  text-transform: uppercase;
}

.page-default__mv-title {
  margin: 0;
  font-size: 56px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--c-white);
}

.page-default__mv-lead {
  margin: 32px 0 0;
  max-width: 920px;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--c-white);
  opacity: 0.95;
}

.page-default__mv-watermark {
  position: absolute;
  right: 0;
  top: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(56px, 9vw, 140px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.12);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .page-default__mv {
    padding: 80px 20px 60px;
  }

  .page-default__mv-en {
    font-size: 14px;
  }

  .page-default__mv-title {
    font-size: 36px;
    line-height: 1.3;
  }

  .page-default__mv-lead {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
  }

  .page-default__mv-watermark {
    top: auto;
    bottom: 8px;
    right: 20px;
    font-size: clamp(42px, 16vw, 72px);
  }
}

/* ==========================================
   お問い合わせページ（/contact/）
   ============================================ */

/* イントロ説明 */
.page-default__intro {
  padding: 60px 0 40px;
  background: var(--c-white);
}

.page-default__intro-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-default__intro-text {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: var(--c-navy-dark);
  text-align: center;
}

.page-default__intro-text + .page-default__intro-text--sub {
  margin-top: 16px;
  font-size: 14px;
  color: #6b7785;
}

@media (max-width: 767px) {
  .page-default__intro-text + .page-default__intro-text--sub {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .page-default__intro {
    padding: 48px 0 32px;
  }
  .page-default__intro-inner {
    padding: 0 20px;
  }
  .page-default__intro-text {
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }
}

/* フォーム本体エリア */
.page-default__contact-form {
  padding: 0 0 80px;
  background: var(--c-white);
}

.page-default__contact-form-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 注意書きボックス */
.page-default__contact-form-notice {
  margin: 0 0 40px;
  padding: 24px 28px;
  background: #f5f9ff;
  border-left: 4px solid var(--c-navy);
  border-radius: 4px;
}

.page-default__contact-form-notice p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-navy-dark);
}

.page-default__contact-form-notice p + p {
  margin-top: 8px;
}

.page-default__contact-form-notice strong {
  color: var(--c-navy);
  font-weight: 700;
}

/* CF7 フォームのカスタムスタイル */
.contact-form {
  background: var(--c-white);
}

.contact-form__group {
  margin: 0 0 28px;
}

.contact-form__label {
  display: block;
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-navy);
}

.contact-form__label--required::after {
  content: "必須";
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: linear-gradient(90deg, var(--c-grad-a), var(--c-grad-b));
  color: var(--c-white);
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

.contact-form__hint {
  display: block;
  margin: 0 0 12px;
  font-size: 12px;
  color: #888;
}

/* テキスト系インプット */
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #d8dee5;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-navy-dark);
  transition: border-color 200ms ease, box-shadow 200ms ease;
  box-sizing: border-box;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--c-navy);
  box-shadow: 0 0 0 3px rgba(7, 61, 129, 0.12);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #aab2bc;
}

.contact-form__textarea {
  min-height: 160px;
  resize: vertical;
}

/* チェックボックス */
.contact-form__checkboxes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__checkboxes .wpcf7-list-item {
  display: block;
  margin: 0;
}

.contact-form__checkboxes .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #f7f9fc;
  border: 1px solid #d8dee5;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  color: var(--c-navy-dark);
  transition: background 200ms ease, border-color 200ms ease;
}

.contact-form__checkboxes .wpcf7-list-item label:hover {
  background: #eef3f9;
  border-color: var(--c-navy);
}

.contact-form__checkboxes input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--c-navy);
  cursor: pointer;
}

.contact-form__checkboxes .wpcf7-list-item-label {
  flex: 1;
}

/* 同意チェック */
.contact-form__group--privacy {
  margin: 32px 0 24px;
  padding: 16px 20px;
  background: #f7f9fc;
  border-radius: 8px;
  text-align: center;
}

.contact-form__group--privacy .wpcf7-list-item {
  margin: 0;
}

.contact-form__group--privacy label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--c-navy-dark);
  cursor: pointer;
}

.contact-form__group--privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--c-navy);
}

.contact-form__group--privacy a {
  color: var(--c-navy);
  text-decoration: underline;
  font-weight: 700;
}

/* 送信ボタン */
.contact-form__submit-wrap {
  margin: 32px 0 0;
  text-align: center;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  max-width: 100%;
  min-height: 64px;
  padding: 0 32px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--c-grad-a), var(--c-grad-b));
  color: var(--c-white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.contact-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}

.contact-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* CF7 メッセージ */
.wpcf7-response-output {
  margin: 24px 0 0 !important;
  padding: 16px 20px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
}

.wpcf7-not-valid-tip {
  margin-top: 6px !important;
  font-size: 12px !important;
  color: #d63031 !important;
}

/* 送信中スピナー */
.wpcf7-spinner {
  margin: 0 0 0 12px !important;
}

@media (max-width: 767px) {
  .page-default__contact-form {
    padding: 0 0 60px;
  }
  .page-default__contact-form-inner {
    padding: 0 20px;
  }
  .page-default__contact-form-notice {
    padding: 18px 20px;
    margin-bottom: 32px;
  }
  .page-default__contact-form-notice p {
    font-size: 13px;
  }
  .contact-form__label {
    font-size: 14px;
  }
  .contact-form__input,
  .contact-form__textarea {
    padding: 12px 14px;
    font-size: 14px;
  }
  .contact-form__checkboxes .wpcf7-list-item label {
    padding: 12px 14px;
    font-size: 14px;
  }
  .contact-form__submit {
    width: 100%;
    min-height: 56px;
    font-size: 15px;
  }
}

/* ==========================================
   その他お問い合わせ方法（CONTACT INFO）
   ============================================ */
.page-default__contact-info {
  padding: 80px 0;
  background: var(--c-muted);
}

.page-default__contact-info-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-default__contact-info-eyebrow {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-navy);
  text-align: center;
}

.page-default__contact-info-title {
  margin: 0 0 48px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.page-default__contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.page-default__contact-info-card {
  padding: 32px 28px;
  background: var(--c-white);
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(6, 25, 41, 0.06);
}

.page-default__contact-info-label {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: 0.04em;
}

.page-default__contact-info-value {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-navy-dark);
  line-height: 1.5;
}

.page-default__contact-info-value a {
  color: var(--c-navy);
  text-decoration: none;
}

.page-default__contact-info-value a:hover {
  text-decoration: underline;
}

.page-default__contact-info-note {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: #666;
}

@media (max-width: 767px) {
  .page-default__contact-info {
    padding: 60px 0;
  }
  .page-default__contact-info-inner {
    padding: 0 20px;
  }
  .page-default__contact-info-title {
    margin-bottom: 32px;
    font-size: 24px;
  }
  .page-default__contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .page-default__contact-info-card {
    padding: 24px 20px;
  }
  .page-default__contact-info-value {
    font-size: 16px;
  }
  .page-default__contact-info-note {
    font-size: 12px;
  }
}

/* ==========================================
   サンクスページ（/contact/thanks/）
   ============================================ */
.page-default__thanks {
  padding: 100px 0;
  background: var(--c-white);
}

.page-default__thanks-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.page-default__thanks-icon {
  margin: 0 auto 32px;
  width: 100px;
  height: 100px;
}

.page-default__thanks-icon svg {
  width: 100%;
  height: 100%;
}

.page-default__thanks-title {
  margin: 0 0 24px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--c-navy-dark);
}

.page-default__thanks-lead {
  margin: 0 0 40px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-navy-dark);
}

.page-default__thanks-message {
  max-width: 560px;
  margin: 0 auto 48px;
  padding: 32px 28px;
  background: #f7f9fc;
  border-radius: 12px;
  text-align: left;
}

.page-default__thanks-message p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-navy-dark);
}

.page-default__thanks-message p:last-child {
  margin-bottom: 0;
}

.page-default__thanks-message strong {
  color: var(--c-navy);
  font-weight: 700;
}

.page-default__thanks-actions {
  margin: 0;
}

.page-default__thanks-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  max-width: 100%;
  min-height: 56px;
  padding: 0 24px;
  background: linear-gradient(90deg, var(--c-grad-a), var(--c-grad-b));
  color: var(--c-white);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.page-default__thanks-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}

@media (max-width: 767px) {
  .page-default__thanks {
    padding: 60px 0;
  }
  .page-default__thanks-inner {
    padding: 0 20px;
  }
  .page-default__thanks-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
  }
  .page-default__thanks-title {
    font-size: 24px;
  }
  .page-default__thanks-lead {
    font-size: 14px;
    margin-bottom: 32px;
  }
  .page-default__thanks-message {
    padding: 24px 20px;
    margin-bottom: 32px;
  }
  .page-default__thanks-message p {
    font-size: 13px;
  }
  .page-default__thanks-btn {
    width: 100%;
  }
}

/* ==========================================
   PILLAR PAGE（ピラーページ用）
   ============================================ */

.page-pillar__body {
  padding: 80px 0;
  background: var(--c-white);
}

.page-pillar__body-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Elementorのコンテンツとmargin二重を防ぐ */
.page-pillar__body-inner > .elementor {
  margin: 0;
}

.page-pillar__main {
  position: relative;
  z-index: 2;
}

.page-pillar__mv .page-default__mv-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* the_content() 内の先頭 Elementor セクションを課題訴求ヘッダー帯にめり込ませる */
.page-pillar__main > .elementor-section:first-child,
.page-pillar__main .elementor > .elementor-section:first-child,
.page-pillar__main .elementor-section.page-pillar-cards-overlap {
  margin-top: -150px;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .page-pillar__main > .elementor-section:first-child,
  .page-pillar__main .elementor > .elementor-section:first-child,
  .page-pillar__main .elementor-section.page-pillar-cards-overlap {
    margin-top: -130px;
  }

  .page-pillar__body {
    padding: 48px 0;
  }
  .page-pillar__body-inner {
    padding: 0;
  }
}

/* 関連事例セクション */
.page-pillar__cases {
  padding: 80px 0;
  background: var(--c-muted);
}

.page-pillar__cases-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-pillar__cases-eyebrow {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-navy);
  text-align: center;
}

.page-pillar__cases-title {
  margin: 0 0 48px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.page-pillar__cases-grid {
  /* wrapper only: .related-cases__grid handles columns */
}

/* === 関連事例セクション PC用グリッド === */
.related-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 767px) {
  .page-pillar__cases {
    width: 100%;
    max-width: 100%;
    padding: 48px 16px;
    box-sizing: border-box;
  }
  .page-pillar__cases-inner {
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  .page-pillar__cases-title {
    margin-bottom: 32px;
    font-size: 24px;
  }
  .page-pillar__cases-grid > .related-cases {
    width: 100%;
    max-width: 100%;
  }
  .page-pillar__cases-grid .related-cases__inner {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .page-pillar__cases-grid .related-cases__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
  }
  .page-pillar__cases-grid .case-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .page-pillar__cases-grid .case-card__tag {
    font-size: 12px;
    padding: 4px 10px;
    width: auto;
    max-width: max-content;
  }
  .case-card__lead {
    font-size: 16px;
  }
}

/* ==========================================
   CLUSTER PAGE（クラスタページ用）
   ============================================ */

.page-cluster__body {
  padding: 60px 0;
  background: var(--c-white);
}

.page-cluster__body-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-cluster__body-inner > .elementor {
  margin: 0;
}

@media (max-width: 767px) {
  .page-cluster__body {
    padding: 40px 0;
  }
  .page-cluster__body-inner {
    padding: 0 20px;
  }
}

/* 親ピラーへ戻るリンク */
.page-cluster__back {
  padding: 0 0 60px;
  background: var(--c-white);
}

.page-cluster__back-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.page-cluster__back-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--c-muted);
  color: var(--c-navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: background 200ms ease;
}

.page-cluster__back-link:hover {
  background: #e8edf4;
}

@media (max-width: 767px) {
  .page-cluster__back {
    padding: 0 0 40px;
  }
  .page-cluster__back-link {
    padding: 14px 24px;
    font-size: 13px;
  }
}

/* ==========================================
   PAGE SUPERVISOR（ページ監修者情報、E-E-A-T対応）
   ============================================ */

.page-supervisor {
  padding: 80px 0;
  background: var(--c-muted);
  border-top: 1px solid #e6e9ee;
}

.page-supervisor__inner {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-supervisor__eyebrow {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-navy);
  text-align: center;
}

.page-supervisor__title {
  margin: 0 0 48px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.page-supervisor__card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding: 40px;
  background: var(--c-white);
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(6, 25, 41, 0.06);
}

.page-supervisor__photo-wrap {
  width: 100%;
}

.page-supervisor__photo {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.page-supervisor__body {
  min-width: 0;
}

.page-supervisor__role {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: 0.04em;
}

.page-supervisor__name {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c-navy-dark);
}

.page-supervisor__name-kana {
  display: inline-block;
  margin-left: 12px;
  font-size: 13px;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.04em;
}

.page-supervisor__meta {
  margin: 0 0 24px;
  padding: 0 0 24px;
  border-bottom: 1px solid #e6e9ee;
}

.page-supervisor__meta-row {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 16px;
  padding: 8px 0;
}

.page-supervisor__meta-row dt {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-navy);
}

.page-supervisor__meta-row dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-navy-dark);
}

.page-supervisor__bio {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-navy-dark);
}

.page-supervisor__policy {
  margin: 0 0 20px;
  padding: 16px 20px;
  background: #f5f9ff;
  border-left: 3px solid var(--c-navy);
  border-radius: 4px;
}

.page-supervisor__policy-label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: 0.04em;
}

.page-supervisor__policy-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--c-navy-dark);
}

.page-supervisor__updated {
  margin: 0;
  font-size: 12px;
  color: #888;
  text-align: right;
}

.page-supervisor__updated time {
  color: var(--c-navy);
  font-weight: 700;
}

@media (max-width: 767px) {
  .page-supervisor {
    width: 100%;
    max-width: 100%;
    padding: 48px 16px;
    box-sizing: border-box;
  }
  .page-supervisor__inner {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  .page-supervisor__title {
    margin-bottom: 24px;
    font-size: 24px;
  }
  .page-supervisor__card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .page-supervisor__photo-wrap {
    max-width: 200px;
    margin: 0 auto 24px;
  }
  .page-supervisor__photo {
    width: 100%;
    max-width: 200px;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto 24px;
  }
  .page-supervisor__body {
    width: 100%;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .page-supervisor__name {
    font-size: 20px;
    text-align: center;
  }
  .page-supervisor__role,
  .page-supervisor__meta,
  .page-supervisor__bio,
  .page-supervisor__policy {
    margin-bottom: 16px;
  }
  .page-supervisor__name-kana {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }
  .page-supervisor__role {
    text-align: center;
  }
  .page-supervisor__meta-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px 0;
  }
  .page-supervisor__meta-row dt {
    font-size: 12px;
  }
  .page-supervisor__meta-row dd {
    font-size: 13px;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .page-supervisor__bio {
    margin-bottom: 20px;
    font-size: 13px;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .page-supervisor__policy {
    width: 100%;
    margin: 0 0 16px;
    padding: 16px;
    box-sizing: border-box;
  }
  .page-supervisor__policy-text {
    font-size: 12px;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .page-supervisor__updated {
    font-size: 12px;
    text-align: right;
    margin-top: 16px;
  }
}

/* ================================================
   ピラーページ：課題訴求セクション
   WHYセクションのデザインを踏襲（TOP統一感）
   ================================================ */

.page-pillar__issues {
  position: relative;
}

.page-pillar__issues-head {
  background-color: #061929;
  padding: 100px 0 240px;
}

.page-pillar__issues-head-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.page-pillar__issues-eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px 0;
}

.page-pillar__issues-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin: 0 0 40px 0;
}

.page-pillar__issues-lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  white-space: pre-line;
  margin: 0;
}

@media (max-width: 767px) {
  .page-pillar__issues-head {
    padding: 60px 20px 200px;
  }
  .page-pillar__issues-title {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 24px;
  }
  .page-pillar__issues-eyebrow {
    font-size: 12px;
  }
  .page-pillar__issues-lead {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* ================================================
   ピラーページ：訴求画像 / 要約 / 目次（Layer 1）
   ================================================ */

.page-pillar__catch {
  position: relative;
  width: 100%;
  min-height: 520px;
  background-color: #061929;
  background-image: linear-gradient(
    rgba(6, 25, 41, 0.55),
    rgba(6, 25, 41, 0.55)
  ), url('/wp-content/themes/meditex/assets/images/bg_works.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  box-sizing: border-box;
  color: var(--c-white);
}

.page-pillar__catch-inner {
  text-align: center;
  color: #ffffff;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.page-pillar__catch-text-top {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin: 0 0 24px 0;
  opacity: 0.95;
  position: relative;
  display: inline-block;
}

.page-pillar__catch-text-top::before,
.page-pillar__catch-text-top::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.page-pillar__catch-text-top::before {
  right: calc(100% + 24px);
}

.page-pillar__catch-text-top::after {
  left: calc(100% + 24px);
}

.page-pillar__catch-text-middle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0 0 32px 0;
}

.page-pillar__catch-text-bottom {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 96px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0;
}

.page-pillar__summary {
  background-color: #ffffff;
  padding: 80px 0;
}

.page-pillar__summary-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.page-pillar__summary-eyebrow {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-navy);
}

.page-pillar__summary-title {
  margin: 0 0 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--c-navy-dark);
}

.page-pillar__summary-body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-navy-dark);
  white-space: pre-line;
}

.page-pillar__toc {
  background-color: #ffffff;
  padding: 0 0 80px;
}

.page-pillar__toc-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.page-pillar__toc-eyebrow {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-navy);
}

.page-pillar__toc-title {
  margin: 0 0 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--c-navy-dark);
}

.page-pillar__toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-pillar__toc-item {
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dfe8ef;
}

.page-pillar__toc-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.page-pillar__toc-link {
  display: inline-flex;
  align-items: center;
  width: 100%;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-navy-dark);
  text-decoration: none;
}

.page-pillar__toc-link:hover {
  color: var(--c-navy);
  text-decoration: underline;
}

.page-pillar__toc-number {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a3a8f;
  margin-right: 16px;
  min-width: 24px;
  flex-shrink: 0;
}

.page-pillar__toc-text {
  flex: 1;
}

@media (max-width: 767px) {
  .page-pillar__catch {
    min-height: 360px;
    padding: 60px 20px;
  }
  .page-pillar__catch-text-top {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .page-pillar__catch-text-top::before,
  .page-pillar__catch-text-top::after {
    width: 24px;
  }
  .page-pillar__catch-text-top::before {
    right: calc(100% + 12px);
  }
  .page-pillar__catch-text-top::after {
    left: calc(100% + 12px);
  }

  .page-pillar__catch-text-middle {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .page-pillar__catch-text-bottom {
    font-size: 56px;
  }

  .page-pillar__summary {
    padding: 60px 20px 60px;
  }

  .page-pillar__summary-title {
    font-size: 24px;
  }

  .page-pillar__summary-body {
    font-size: 14px;
  }

  .page-pillar__toc {
    padding: 0 20px 60px;
  }

  .page-pillar__toc-title {
    font-size: 22px;
  }
}

/* ================================================
   ピラーページ：Elementor カード（課題訴求用）
   ================================================ */

/* ヘッダー帯にめり込む特殊クラス */
.page-pillar-cards-overlap {
  margin-top: -250px !important;
  position: relative;
  z-index: 2;
}

/* カード（コンテナ） */
.page-pillar__elementor-card {
  background-color: #ffffff !important;
  border-radius: 16px !important;
  padding: 60px 40px 30px !important;
  box-shadow: 0 8px 30px rgba(6, 25, 41, 0.08) !important;
}

/* カード内の番号 */
.page-pillar__elementor-card-num {
  font-family: "Montserrat", sans-serif !important;
  font-size: 80px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: rgba(0, 0, 0, 0.08) !important;
  margin: 0 0 8px 0 !important;
}

/* カード内のタイトル */
.page-pillar__elementor-card-title {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  color: #061929 !important;
  margin: 0 0 16px 0 !important;
}

/* カード内の本文 */
.page-pillar__elementor-card-text {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
  color: #222222 !important;
  margin: 0 !important;
}

@media (max-width: 767px) {
  .page-pillar-cards-overlap {
    margin-top: -200px !important;
  }
  .page-pillar__elementor-card {
    padding: 50px 24px 24px !important;
  }
  .page-pillar__elementor-card-num {
    font-size: 64px !important;
  }
  .page-pillar__elementor-card-title {
    font-size: 18px !important;
    margin-bottom: 12px !important;
  }
  .page-pillar__elementor-card-text {
    font-size: 14px !important;
  }
}

/* ================================================
   ピラーページ：カードエリアの背景・幅・めり込み制御
   ================================================ */

/* the_content() 領域全体（カードエリア）の背景 */
.page-pillar__main {
  background-color: transparent;
  padding: 0 0 120px;
  position: relative;
}

.page-pillar__main::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f5f7fa;
  z-index: 0;
}

/* the_content() 領域内のElementorコンテナを中央寄せ */
.page-pillar__main > .e-con,
.page-pillar__main > .elementor-section,
.page-pillar__main .elementor > .e-con,
.page-pillar__main .elementor > .elementor-section {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* 最初のグリッド/コンテナをヘッダー帯にめり込ませる */
.page-pillar__main > .e-con:first-child,
.page-pillar__main > .elementor-section:first-child,
.page-pillar__main .elementor > .e-con:first-child,
.page-pillar__main .elementor > .elementor-section:first-child {
  margin-top: -150px !important;
}

/* SP対応 */
@media (max-width: 767px) {
  .page-pillar__main {
    padding-bottom: 60px;
  }
  .page-pillar__main::before {
    top: 80px;
  }
  .page-pillar__main > .e-con,
  .page-pillar__main > .elementor-section,
  .page-pillar__main .elementor > .e-con,
  .page-pillar__main .elementor > .elementor-section {
    max-width: calc(100% - 40px);
    padding-left: 30px;
    padding-right: 30px;
  }
  .page-pillar__main > .e-con:first-child,
  .page-pillar__main > .elementor-section:first-child,
  .page-pillar__main .elementor > .e-con:first-child,
  .page-pillar__main .elementor > .elementor-section:first-child {
    margin-top: -130px !important;
  }
}

/* Elementor グリッドの内側パディング削除（めり込み確実化） */
.page-pillar-cards-overlap > .e-con-inner {
  padding-top: 0 !important;
}

/* Elementor 最外側ラッパーの上余白削除 */
.page-pillar__main > .elementor {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ================================================
   ピラーページ：提供価値セクション（Elementor用）
   ================================================ */

.page-pillar__value {
  background: transparent;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
}

.page-pillar__value > .e-con-inner {
  width: 100%;
}

.page-pillar__value-head {
  text-align: center;
  margin: 0 0 60px;
}

.page-pillar__value-eyebrow .elementor-heading-title {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--c-navy);
}

.page-pillar__value-title .elementor-heading-title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--c-navy-dark);
}

.page-pillar__value-cards,
.page-pillar__value-cards > .e-con-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.page-pillar__value-cards {
  --row-gap: 32px;
  --column-gap: 32px;
  --gap: 32px;
}

.page-pillar__value-card {
  background: var(--c-white);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(6, 25, 41, 0.08);
  padding: 48px 32px 40px;
}

.page-pillar__value-card > .e-con-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.page-pillar__value-card-number .elementor-heading-title {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(6, 25, 41, 0.4);
}

.page-pillar__value-card-eyebrow .elementor-heading-title {
  margin: 0 0 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--c-navy);
}

.page-pillar__value-card-title .elementor-heading-title {
  margin: 0 0 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--c-navy-dark);
}

.page-pillar__value-card-text .elementor-widget-container,
.page-pillar__value-card-text .elementor-widget-container p {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-navy-dark);
  word-break: break-word;
}

.page-pillar__value-formula {
  text-align: center;
}

.page-pillar__value-formula-eyebrow .elementor-heading-title {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
}

.page-pillar__value-formula-title .elementor-heading-title {
  margin: 0 0 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--c-white);
}

.page-pillar__value-formula-equation .elementor-heading-title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--c-white);
}

.page-pillar__value-formula-equation .elementor-heading-title small {
  font-size: 16px;
}

@media (max-width: 767px) {
  .page-pillar__value {
    padding: 60px 20px;
  }

  .page-pillar__value-eyebrow,
  .page-pillar__value-title {
    padding-inline: 24px;
  }

  .page-pillar__value-head {
    margin-bottom: 40px;
  }

  .page-pillar__value-eyebrow .elementor-heading-title {
    font-size: 12px;
  }

  .page-pillar__value-title .elementor-heading-title {
    font-size: 22px;
    line-height: 1.5;
  }

  .page-pillar__value-cards,
  .page-pillar__value-cards > .e-con-inner {
    grid-template-columns: 1fr;
  }

  .page-pillar__value-cards {
    --row-gap: 20px;
    --column-gap: 20px;
    --gap: 20px;
  }

  .page-pillar__value-card {
    padding: 40px 24px 32px;
  }

  .page-pillar__value-card-number .elementor-heading-title {
    font-size: 12px;
  }

  .page-pillar__value-card-eyebrow .elementor-heading-title {
    font-size: 22px;
  }

  .page-pillar__value-card-title .elementor-heading-title {
    font-size: 16px;
  }

  .page-pillar__value-card-text .elementor-widget-container,
  .page-pillar__value-card-text .elementor-widget-container p {
    font-size: 14px;
    line-height: 1.8;
  }

  .page-pillar__value-formula-eyebrow .elementor-heading-title {
    font-size: 12px;
  }

  .page-pillar__value-formula-title .elementor-heading-title {
    font-size: 18px;
  }

  .page-pillar__value-formula-equation .elementor-heading-title {
    font-size: 16px;
    line-height: 1.7;
  }

  .page-pillar__value-formula-equation .elementor-heading-title small {
    font-size: 13px;
  }
}

/* ================================================
   ピラーページ：メソッドセクション（Elementor主体）
   ================================================ */

.page-pillar__method {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.page-pillar__method > .e-con-inner {
  width: 100%;
}

.page-pillar__method-steps {
  /* gap / direction は Elementor 側で制御 */
}

.page-pillar__method-step {
  /* 背景・余白・角丸・影は Elementor 側で制御 */
}

.page-pillar__method-step > .e-con-inner {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 40px;
}

.page-pillar__method-step-left {
  flex: 0 0 30%;
}

.page-pillar__method-step-right {
  flex: 1;
  min-width: 0;
}

/* 見出し/本文の色・サイズは Elementor 側で設定（教訓5.32） */
.page-pillar__method-eyebrow .elementor-heading-title {
  /* Elementorで設定 */
}

.page-pillar__main .page-pillar__method-title .elementor-heading-title {
  /* Elementorで設定 */
}

.page-pillar__method-step-number .elementor-heading-title {
  /* Elementorで設定 */
}

.page-pillar__method-step-title .elementor-heading-title {
  /* Elementorで設定 */
}

.page-pillar__method-step-lead .elementor-widget-container,
.page-pillar__method-step-lead .elementor-widget-container p {
  /* Elementorで設定 */
}

.page-pillar__method-step-actions,
.page-pillar__method-step-actions .elementor-widget-container {
  text-align: left;
}

.page-pillar__method-step-actions ul,
.page-pillar__method-step-actions .elementor-widget-container ul {
  text-align: left;
  padding-left: 1.5em;
  margin: 0;
  margin-left: 0;
  list-style-position: outside;
}

.page-pillar__method-step-actions li,
.page-pillar__method-step-actions .elementor-widget-container li {
  text-align: left;
  list-style: disc;
  margin-bottom: 8px;
}

.page-pillar__method-step-output-label .elementor-heading-title {
  /* Elementorで設定 */
}

.page-pillar__method-step-output .elementor-widget-container,
.page-pillar__method-step-output .elementor-widget-container p {
  /* Elementorで設定 */
}

@media (max-width: 767px) {
  .page-pillar__main .page-pillar__method,
  .page-pillar__method {
    padding-bottom: 60px;
  }

  .page-pillar__main .page-pillar__method-title .elementor-heading-title {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }

  .page-pillar__method-step > .e-con-inner {
    flex-direction: column;
    gap: 20px;
  }

  .page-pillar__method-step-left {
    flex: 1 1 100%;
  }
}

/* ===== PAGE PILLAR FAQ ===== */
.page-pillar__faq {
  padding: 80px 0;
  background: transparent;
}

.page-pillar__faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.page-pillar__faq-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--c-navy);
  text-align: center;
  margin: 0 0 12px;
}

.page-pillar__faq .qa__title {
  text-align: center;
  margin: 0 0 60px;
  color: #061929;
  font-family: 'Noto Sans JP', sans-serif;
}

@media (max-width: 767px) {
  .page-pillar__faq {
    padding: 40px 20px 60px;
  }

  .page-pillar__faq .qa__title {
    margin-bottom: 40px;
  }
}

/* === PAGE PILLAR SOLUTIONS（タイプB統合ピラー用） === */
.page-pillar__main .page-pillar__solutions > .e-con-inner {
  max-width: 1200px;
}

.page-pillar__solutions-card {
  scroll-margin-top: 80px;
}

@media (max-width: 767px) {
  .page-pillar__main .page-pillar__solutions > .e-con-inner {
    padding-inline: 24px;
  }
}

/* === PAGE PILLAR RELATED SERVICES === */
.page-pillar__related-services {
  padding: 100px 0;
  background: #f8f9fb;
}

.page-pillar__related-services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-pillar__related-services-head {
  text-align: center;
  margin: 0 0 60px;
}

.page-pillar__related-services-eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #1c4f8c;
  margin: 0 0 12px;
}

.page-pillar__related-services-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #061929;
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}

.page-pillar__related-services-lead {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.page-pillar__related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.page-pillar__related-services-card {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(6, 25, 41, 0.08);
  padding: 40px 32px 56px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-pillar__related-services-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(6, 25, 41, 0.12);
}

.page-pillar__related-services-card-eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #1c4f8c;
  margin: 0 0 12px;
}

.page-pillar__related-services-card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #061929;
  margin: 0 0 12px;
  line-height: 1.5;
}

.page-pillar__related-services-card-lead {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.page-pillar__related-services-card-arrow {
  position: absolute;
  right: 32px;
  bottom: 24px;
  font-size: 18px;
  color: #1c4f8c;
  font-weight: 700;
}

/* SP対応 */
@media (max-width: 767px) {
  .page-pillar__related-services {
    padding: 60px 0;
  }
  .page-pillar__related-services-inner {
    padding: 0 24px;
  }
  .page-pillar__related-services-head {
    margin: 0 0 40px;
  }
  .page-pillar__related-services-title {
    font-size: 24px;
  }
  .page-pillar__related-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .page-pillar__related-services-card {
    padding: 32px 24px 48px;
  }
  .page-pillar__related-services-card-arrow {
    right: 24px;
    bottom: 20px;
  }
}

/* ===== 知覚速度改善：タップフィードバック ===== */

/* 全インタラクティブ要素にタップ即時反応 */
a, button,
.solution-card,
.case-card,
.cta-button,
.header__cta-button,
.site-header__cta-button,
.hero__cta {
  -webkit-tap-highlight-color: rgba(28, 79, 140, 0.3);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

/* スマホでのタップ時視覚効果 */
@media (max-width: 767px) {
  a:active,
  .solution-card:active,
  .case-card:active {
    opacity: 0.7;
    transform: scale(0.98);
  }

  button:active,
  .cta-button:active,
  .header__cta-button:active,
  .site-header__cta-button:active,
  .hero__cta:active {
    transform: scale(0.96);
    opacity: 0.85;
  }
}

/* ===== 知覚速度改善：目立つローディングバー（高速インパクト + 完了演出）===== */
.page-loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg,
    #1c4f8c 0%,
    #4a90e2 30%,
    #ffa500 60%,
    #4a90e2 90%,
    #1c4f8c 100%);
  background-size: 300% 100%;
  width: 0%;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 0 12px rgba(74, 144, 226, 0.7);
}

.page-loading-bar.active {
  opacity: 1;
  animation:
    pageLoadingProgress 2s cubic-bezier(0.1, 0.9, 0.3, 1) forwards,
    pageLoadingShimmer 0.6s linear infinite;
}

@keyframes pageLoadingProgress {
  0%   { width: 0%; }
  5%   { width: 30%; }
  15%  { width: 55%; }
  35%  { width: 75%; }
  60%  { width: 88%; }
  100% { width: 95%; }
}

@keyframes pageLoadingShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.page-loading-bar.complete {
  width: 100% !important;
  opacity: 0 !important;
  transition:
    width 0.15s ease-out,
    opacity 0.3s ease 0.15s;
  animation: none !important;
}

body.admin-bar .page-loading-bar {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .page-loading-bar {
    top: 46px;
  }
}

/* ============================================================
 * COLUMN: single-column（個別記事）
 * ============================================================ */

.single-column { padding-bottom: 80px; }

.single-column__breadcrumb { padding: 16px 0; background: #f8f9fa; }

.single-column__header { padding: 40px 0 32px; }
.single-column__header-inner { max-width: 800px; }
.single-column__meta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 16px; font-size: 14px; color: #666; }
.single-column__category { padding: 4px 12px; border-radius: 4px; background: #1c4f8c; color: #fff; font-size: 13px; font-weight: 500; }
.single-column__category--marketing { background: #1c4f8c; }
.single-column__category--recruit { background: #c0392b; }
.single-column__category--dx { background: #8e44ad; }
.single-column__date { color: #666; }
.single-column__date--modified { color: #999; }
.single-column__title { font-size: 32px; line-height: 1.4; font-weight: 700; color: #222; }

@media (max-width: 767px) {
  .single-column__title { font-size: 24px; }
}

.single-column__thumbnail { padding: 0 0 32px; }
.single-column__thumbnail .section-inner { max-width: 800px; }
.single-column__thumbnail-img { width: 100%; height: auto; border-radius: 8px; aspect-ratio: 3 / 2; object-fit: cover; }

.single-column__lead { padding: 0 0 32px; }
.single-column__lead .section-inner { max-width: 800px; }
.single-column__lead p { font-size: 16px; line-height: 1.8; color: #444; padding: 24px; background: #f8f9fa; border-left: 4px solid #1c4f8c; border-radius: 4px; }

.single-column__authors { padding: 0 0 32px; }
.single-column__authors-inner { max-width: 800px; padding: 24px; border: 1px solid #e0e0e0; border-radius: 8px; }
.single-column__authors-label { font-size: 13px; color: #666; margin-bottom: 12px; }
.single-column__authors-list { display: flex; flex-wrap: wrap; gap: 24px; }
.single-column__author { display: flex; flex-direction: column; gap: 4px; }
.single-column__author-role { display: inline-block; padding: 2px 8px; background: #1c4f8c; color: #fff; font-size: 11px; border-radius: 3px; width: fit-content; }
.single-column__author-name { font-size: 16px; font-weight: 700; color: #222; }
.single-column__author-title { font-size: 13px; color: #666; }

.single-column__toc { padding: 0 0 32px; }
.single-column__toc .section-inner { max-width: 800px; }
.single-column__toc-title { font-size: 18px; font-weight: 700; margin-bottom: 16px; padding: 16px 24px; background: #f8f9fa; border-left: 4px solid #1c4f8c; }
.single-column__toc-list { padding: 16px 24px 16px 48px; background: #fafafa; }
.single-column__toc-item { margin-bottom: 8px; }
.single-column__toc-item--h3 { padding-left: 20px; font-size: 14px; }
.single-column__toc-item a { color: #1c4f8c; text-decoration: none; transition: color 0.2s; }
.single-column__toc-item a:hover { color: #4a90e2; text-decoration: underline; }

.single-column__content { padding: 0 0 48px; }
.single-column__content-inner { max-width: 800px; }
.single-column__content h2 { font-size: 24px; font-weight: 700; margin: 48px 0 24px; padding-bottom: 12px; border-bottom: 3px solid #1c4f8c; }
.single-column__content h3 { font-size: 20px; font-weight: 700; margin: 32px 0 16px; padding-left: 12px; border-left: 4px solid #1c4f8c; }
.single-column__content p { margin-bottom: 24px; line-height: 1.8; color: #333; }
.single-column__content ul, .single-column__content ol { margin: 16px 0 24px 32px; }
.single-column__content li { margin-bottom: 8px; line-height: 1.8; }
.single-column__content img { max-width: 100%; height: auto; margin: 24px 0; border-radius: 8px; }
.single-column__content a { color: #1c4f8c; text-decoration: underline; }
.single-column__content a:hover { color: #4a90e2; }
.single-column__content blockquote { padding: 16px 24px; margin: 24px 0; background: #f8f9fa; border-left: 4px solid #1c4f8c; }
.single-column__content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.single-column__content table th, .single-column__content table td { padding: 12px; border: 1px solid #ddd; }
.single-column__content table th { background: #f8f9fa; font-weight: 700; }

.single-column__faq { padding: 48px 0; background: #f8f9fa; }

.single-column__related { padding: 48px 0; }
.single-column__related-title { font-size: 24px; font-weight: 700; margin-bottom: 24px; }
.single-column__related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.single-column__related-card { display: flex; flex-direction: column; background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; }
.single-column__related-card:hover { transform: translateY(-4px); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.single-column__related-card-thumbnail { aspect-ratio: 3 / 2; overflow: hidden; }
.single-column__related-card-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.single-column__related-card-body { padding: 16px; }
.single-column__related-card-category { display: inline-block; padding: 2px 8px; background: #1c4f8c; color: #fff; font-size: 12px; border-radius: 3px; margin-bottom: 8px; }
.single-column__related-card-title { font-size: 16px; font-weight: 700; line-height: 1.4; color: #222; margin-bottom: 8px; }
.single-column__related-card-date { font-size: 13px; color: #999; }

@media (max-width: 767px) {
  .single-column__related-grid { grid-template-columns: 1fr; }
}

/* ============================================================
 * COLUMN: archive-column（一覧）
 * ============================================================ */

.archive-column { padding-bottom: 80px; }
.archive-column__breadcrumb { padding: 16px 0; background: #f8f9fa; }
.archive-column__header { padding: 48px 0 32px; text-align: center; }
.archive-column__eyebrow { font-size: 14px; letter-spacing: 0.2em; color: #1c4f8c; font-weight: 500; margin-bottom: 12px; }
.archive-column__title { font-size: 36px; font-weight: 700; color: #222; margin-bottom: 16px; }
.archive-column__lead { font-size: 16px; color: #666; line-height: 1.8; }

.archive-column__filter { padding: 16px 0 32px; border-bottom: 1px solid #e0e0e0; margin-bottom: 32px; }
.archive-column__filter-list { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; list-style: none; }
.archive-column__filter-item a { display: inline-block; padding: 8px 20px; border-radius: 24px; background: #f0f0f0; color: #333; text-decoration: none; transition: all 0.2s; font-size: 14px; }
.archive-column__filter-item.is-active a, .archive-column__filter-item a:hover { background: #1c4f8c; color: #fff; }

.archive-column__list { padding: 32px 0; }
.archive-column__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

@media (max-width: 1023px) {
  .archive-column__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .archive-column__grid { grid-template-columns: 1fr; }
}

.archive-column__card { display: flex; flex-direction: column; background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; }
.archive-column__card:hover { transform: translateY(-4px); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.archive-column__card-thumbnail { aspect-ratio: 3 / 2; overflow: hidden; background: #f0f0f0; }
.archive-column__card-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.archive-column__card-thumbnail--placeholder { background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%); }
.archive-column__card-body { padding: 20px; }
.archive-column__card-category { display: inline-block; padding: 4px 10px; color: #fff; font-size: 12px; border-radius: 3px; margin-bottom: 12px; }
.archive-column__card-category--marketing { background: #1c4f8c; }
.archive-column__card-category--recruit { background: #c0392b; }
.archive-column__card-category--dx { background: #8e44ad; }
.archive-column__card-title { font-size: 18px; font-weight: 700; line-height: 1.4; color: #222; margin-bottom: 12px; }
.archive-column__card-lead { font-size: 14px; line-height: 1.6; color: #666; margin-bottom: 12px; }
.archive-column__card-date { font-size: 13px; color: #999; }

.archive-column__pagination { display: flex; justify-content: center; padding: 32px 0 0; }
.archive-column__pagination .nav-links { display: flex; gap: 8px; }
.archive-column__pagination a, .archive-column__pagination .current { padding: 8px 16px; border-radius: 4px; background: #f0f0f0; color: #333; text-decoration: none; transition: all 0.2s; }
.archive-column__pagination a:hover, .archive-column__pagination .current { background: #1c4f8c; color: #fff; }

.archive-column__empty { text-align: center; padding: 80px 0; color: #999; }

/* ============================================================
 * COLUMN: コンテンツ幅レイアウト修正
 *
 * .single-column ラッパー内のセクションが、ピラーと同じ
 * コンテンツ幅で表示されるよう調整。
 * ============================================================ */

/* メインラッパー：左右パディングのみ確保 */
.single-column {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 767px) {
  .single-column {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* 全セクションの内側 .section-inner を中央寄せ */
.single-column .section-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* 本文・著者・目次・リード文は読みやすさ重視で 800px */
.single-column__header-inner,
.single-column__lead .section-inner,
.single-column__authors-inner,
.single-column__toc .section-inner,
.single-column__content-inner,
.single-column__thumbnail .section-inner,
.single-column__faq .section-inner {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* 関連事例セクションの内側調整 */
.single-column .related-cases {
  padding: 48px 0;
}
.single-column .related-cases__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

/* 関連サービスセクションの内側調整 */
.single-column .page-pillar__related-services {
  padding: 48px 0;
}
.single-column .page-pillar__related-services-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* 監修者セクションの内側調整 */
.single-column .page-supervisor__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA の内側調整（既に効いていれば不要だが念のため） */
.single-column .page-default__cta-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* 関連記事セクション */
.single-column__related .section-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* パンくず */
.single-column__breadcrumb .section-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
 * COLUMN: 関連事例セクションのスマホ対応
 *
 * .single-column ラッパー配下では、ピラー用のメディアクエリが
 * 詳細度負けしているため、コラム配下に限定して上書き。
 * ============================================================ */

/* タブレット：2列 */
@media (max-width: 1023px) {
  .single-column .related-cases__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* スマホ：1列 */
@media (max-width: 767px) {
  .single-column .related-cases__grid {
    grid-template-columns: 1fr;
  }

  .single-column .related-cases__grid .case-card {
    width: 100%;
    max-width: 100%;
  }
}

/* ============================================================
 * スマホ表示崩れ修正
 *
 * 1. コラム個別記事の関連事例グリッド
 * 2. ピラーページの関連サービスグリッド
 * ============================================================ */

/* COLUMN: 関連事例グリッドのレスポンシブ */
@media (max-width: 1023px) {
  .single-column .related-cases__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .single-column .related-cases__grid {
    grid-template-columns: 1fr;
  }
  .single-column .related-cases__grid .case-card {
    width: 100%;
    max-width: 100%;
  }
}

/* PILLAR: 関連サービスグリッドのレスポンシブ */
@media (max-width: 1023px) {
  .page-pillar__related-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .page-pillar__related-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .page-pillar__related-services-card {
    padding: 20px;
  }
  .page-pillar__related-services-card-title {
    font-size: 18px;
  }
}

/* ============================================================
 * フッター余白調整（スマホ）
 *
 * 「info@meditex.jp」→ キャッチ → 個人情報保護方針 の間に
 * 適切な余白を確保し、読みやすくする。
 * ============================================================ */

@media (max-width: 767px) {
  /* メール（footer__top の最後）→ キャッチ（footer__bottom）の間 */
  .site-footer__top {
    padding-bottom: 60px;
  }

  /* footer__bottom 全体の上下余白 */
  .site-footer__bottom {
    padding-top: 0;
    padding-bottom: 24px;
  }

  /* footer__bottom-inner 内の縦並びの調整 */
  .site-footer__bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
}

/* ============================================================
 * 公開前緊急対処：ピラー関連サービスのスマホ表示崩れ
 *
 * 別の高優先度ルールが上書きしているため、
 * !important で強制適用。
 * ============================================================ */

/* タブレット：2列 */
@media (max-width: 1023px) {
  main.page-pillar .page-pillar__related-services-grid,
  .page-pillar .page-pillar__related-services-grid,
  .page-pillar__related-services .page-pillar__related-services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* スマホ：1列 */
@media (max-width: 767px) {
  main.page-pillar .page-pillar__related-services-grid,
  .page-pillar .page-pillar__related-services-grid,
  .page-pillar__related-services .page-pillar__related-services-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  main.page-pillar .page-pillar__related-services-card,
  .page-pillar .page-pillar__related-services-card {
    padding: 20px !important;
  }
}

/* ============================================================
 * 公開前緊急対処：ピラー関連サービスの親要素 inner のスマホ対応
 *
 * 真因：.section-inner.page-pillar__related-services-inner が
 * スマホで width: 1200px のまま固定
 * → grid が 1fr でも結果として 1152px になり画面はみ出し
 * ============================================================ */

@media (max-width: 1240px) {
  .page-pillar__related-services-inner {
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 1023px) {
  .page-pillar__related-services-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
  .page-pillar__related-services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .page-pillar__related-services-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .page-pillar__related-services-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .page-pillar__related-services-card {
    padding: 20px;
  }
}

/* ==========================================
   LP共通テンプレート（page-cluster-lp.php）
   .lp__* で共通、body.lp--{slug} でバリアント上書き
   ========================================== */

.lp__sp-only {
  display: none;
}

@media (max-width: 767px) {
  .lp__sp-only {
    display: inline;
  }
}

.lp__section-eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c-navy);
  text-align: center;
  margin: 0 0 16px;
}

.lp__section-eyebrow--white {
  color: rgba(255, 255, 255, 0.85);
}

.lp__section-title {
  margin: 0 0 24px;
  font-size: 2.5rem;
  line-height: 1.35;
  font-weight: 800;
  text-align: center;
  color: var(--c-navy-dark);
}

.lp__section-title--white {
  color: var(--c-white);
}

.lp__section-lead {
  text-align: center;
  color: #555;
  margin: 0 0 48px;
  font-size: 1.0625rem;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .lp__section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.4;
    padding: 0 8px;
    box-sizing: border-box;
  }
  .lp__section-lead {
    font-size: 0.9375rem;
    margin-bottom: 32px;
  }
}

/* Section 1: MV */
.lp__mv {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height, 80px);
  padding-bottom: 48px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #061929 0%, #073d81 42%, #0048b2 72%, #243272 100%);
}

.lp__mv-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
}

.lp__mv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 25, 41, 0.15) 0%,
    rgba(6, 25, 41, 0.45) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.lp__mv-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--c-white);
  padding: 96px 24px 72px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.lp__mv-badge {
  position: absolute;
  top: calc(var(--header-height, 80px) + 16px);
  right: clamp(16px, 4vw, 40px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--c-white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  animation: lp-bounce 2s ease-in-out infinite;
  transform-origin: center;
}

.lp__mv-badge-mark {
  letter-spacing: 0.06em;
}

@keyframes lp-bounce {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-8px) rotate(-3deg);
  }
}

.lp__mv-title {
  margin: 0 0 32px;
}

.lp__mv-title-sub {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 16px;
  font-weight: 500;
  opacity: 0;
  animation: lp-fade-up 0.6s ease-out 0.55s forwards;
}

.lp__mv-title-main {
  display: block;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  color: var(--c-white);
}

.lp__mv-title-main .lp__mv-title-row {
  display: block;
  white-space: nowrap;
}

.lp__mv-title-main .lp__mv-title-row + .lp__mv-title-row {
  margin-top: 0.12em;
}

.js-char-anim {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: lp-char-in 0.55s ease-out forwards;
}

.lp__mv-title-main .lp__mv-title-row:first-of-type .js-char-anim:nth-child(1) {
  animation-delay: 0.05s;
}
.lp__mv-title-main .lp__mv-title-row:first-of-type .js-char-anim:nth-child(2) {
  animation-delay: 0.1s;
}
.lp__mv-title-main .lp__mv-title-row:first-of-type .js-char-anim:nth-child(3) {
  animation-delay: 0.15s;
}
.lp__mv-title-main .lp__mv-title-row:first-of-type .js-char-anim:nth-child(4) {
  animation-delay: 0.2s;
}
.lp__mv-title-main .lp__mv-title-row:first-of-type .js-char-anim:nth-child(5) {
  animation-delay: 0.25s;
}
.lp__mv-title-main .lp__mv-title-row:first-of-type .js-char-anim:nth-child(6) {
  animation-delay: 0.3s;
}
.lp__mv-title-main .lp__mv-title-row:first-of-type .js-char-anim:nth-child(7) {
  animation-delay: 0.35s;
}
.lp__mv-title-main .lp__mv-title-row:last-of-type .js-char-anim:nth-child(1) {
  animation-delay: 0.4s;
}
.lp__mv-title-main .lp__mv-title-row:last-of-type .js-char-anim:nth-child(2) {
  animation-delay: 0.45s;
}
.lp__mv-title-main .lp__mv-title-row:last-of-type .js-char-anim:nth-child(3) {
  animation-delay: 0.5s;
}
.lp__mv-title-main .lp__mv-title-row:last-of-type .js-char-anim:nth-child(4) {
  animation-delay: 0.55s;
}

@keyframes lp-char-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lp-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lp__mv-lead {
  font-size: 1.125rem;
  margin: 0 0 40px;
  line-height: 1.85;
  opacity: 0;
  animation: lp-fade-up 0.65s ease-out 0.65s forwards;
}

.lp__mv-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 40px;
  background: var(--c-white);
  color: var(--c-navy);
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  opacity: 0;
  animation:
    lp-fade-up 0.6s ease-out 0.85s forwards,
    lp-cta-glow 2.2s ease-in-out 1.75s infinite;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.lp__mv-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}

.lp__mv-cta svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.lp__mv-cta:hover svg {
  transform: translateX(4px);
}

@keyframes lp-cta-glow {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  }
  50% {
    box-shadow:
      0 12px 36px rgba(39, 164, 226, 0.35),
      0 10px 28px rgba(0, 0, 0, 0.22);
  }
}

.lp__mv-scroll {
  position: absolute;
  bottom: clamp(24px, 6vh, 40px);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.lp__mv-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.45);
  margin: 10px auto 0;
  transform-origin: top center;
  animation: lp-scroll-bounce 2s ease-in-out infinite;
}

@keyframes lp-scroll-bounce {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.45);
  }
}

@media (max-width: 1023px) {
  .lp__mv-title-main {
    font-size: 3.25rem;
  }
}

@media (max-width: 767px) {
  /* MV：縦幅は内容ヒット／キャッチは大きく（スマホ方針） */

  /* MVセクション本体：縦幅を必要最小限に */
  .lp__mv {
    min-height: 0;
    height: auto;
    padding-top: 80px;
    padding-bottom: 32px;
    display: block;
  }

  .lp__mv-inner {
    padding: 0 16px;
    text-align: center;
  }

  /* 限定バッジ（block配置時は重なり防止のため static + 中央） */
  .lp__mv-badge {
    position: static;
    margin: 0 auto 16px;
    padding: 6px 14px;
    font-size: 0.75rem;
    transform: rotate(-3deg);
    animation: lp-bounce 2s ease-in-out infinite;
  }

  /* メインタイトル全体の余白 */
  .lp__mv-title {
    margin-bottom: 20px;
  }

  /* サブコピー */
  .lp__mv-title-sub {
    font-size: 0.875rem;
    margin-bottom: 12px;
  }

  /* メインコピー：ドカンと大きく */
  .lp__mv-title-main {
    font-size: 2.5rem;
    line-height: 1.25;
    word-break: keep-all;
    overflow-wrap: break-word;
    letter-spacing: 0.01em;
  }

  .lp__mv-title-main .js-char-anim {
    white-space: nowrap;
  }

  /* リード文 */
  .lp__mv-lead {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .lp__mv-lead br {
    display: none;
  }

  /* CTAボタン */
  .lp__mv-cta {
    padding: 16px 28px;
    font-size: 1rem;
    width: 100%;
    max-width: 340px;
    box-sizing: border-box;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  }

  /* スクロールヒント：スマホでは非表示（縦幅圧迫の主犯） */
  .lp__mv-scroll {
    display: none;
  }
}

/* Section 2: PROBLEM */
.lp__problem {
  padding: clamp(72px, 10vw, 120px) 24px;
  background: var(--c-muted);
}

.lp__problem-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.lp__problem-title {
  margin: 0 0 28px;
  font-size: 2.5rem;
  line-height: 1.35;
  font-weight: 800;
  color: var(--c-navy-dark);
}

.lp__problem-lead {
  margin: 0 0 48px;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: #333;
}

.lp__problem-stat {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 32px;
  padding: 40px;
  margin: 0 auto 48px;
  max-width: 820px;
  background: var(--c-white);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(6, 25, 41, 0.08);
}

.lp__problem-stat-num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  flex: 0 0 auto;
  min-width: 200px;
}

.lp__problem-stat-num-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--c-navy);
}

.lp__problem-stat-num-unit {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-navy);
}

.lp__problem-stat-text {
  flex: 1 1 280px;
  text-align: left;
}

.lp__problem-stat-text p {
  margin: 0 0 12px;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--c-navy-dark);
}

.lp__problem-stat-source {
  margin: 0 !important;
  font-size: 0.8125rem;
  color: #64748b;
}

.lp__problem-conclusion {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 2;
  color: #333;
}

@media (max-width: 767px) {
  .lp__problem-title {
    font-size: 1.5rem;
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.5;
    padding: 0 8px;
    box-sizing: border-box;
  }
  .lp__problem-stat {
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    gap: 20px;
    margin: 0 auto 32px;
  }
  .lp__problem-stat-num-value {
    font-size: 4rem;
  }
  .lp__problem-stat-text {
    text-align: center;
    flex: none;
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .lp__problem-stat-text > p {
    margin-bottom: 8px;
  }
  .lp__problem-stat-text > p:last-of-type,
  .lp__problem-stat-source {
    margin-bottom: 0 !important;
  }
  .lp__problem-conclusion {
    margin-top: 24px;
  }
}

/* Section 3: TARGET */
.lp__target {
  padding: clamp(72px, 10vw, 120px) 24px;
  background: var(--c-white);
}

.lp__target-inner {
  max-width: 840px;
  margin: 0 auto;
}

.lp__target-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp__target-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--c-white);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(6, 25, 41, 0.04);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    box-shadow 0.35s ease;
}

.lp__target-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .lp__target-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(6, 25, 41, 0.1);
  }
}

.lp__target-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #fb7185);
  color: var(--c-white);
  font-weight: 900;
  font-size: 1rem;
  line-height: 32px;
  text-align: center;
  margin-top: 2px;
}

.lp__target-text {
  flex: 1;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.65;
  color: var(--c-navy-dark);
  text-align: left;
}

/* Section 4: CONTENTS */
.lp__contents {
  padding: clamp(72px, 10vw, 120px) 24px;
  background: linear-gradient(180deg, #f8fafc 0%, #e8f4fc 50%, #f1f5f9 100%);
}

.lp__contents-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.lp__contents-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lp__contents-item {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 8px 28px rgba(6, 25, 41, 0.08);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    box-shadow 0.35s ease;
}

.lp__contents-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .lp__contents-item.is-visible:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(6, 25, 41, 0.12);
  }
}

.lp__contents-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
  background: rgba(39, 164, 226, 0.12);
  color: var(--c-navy);
}

.lp__contents-icon svg {
  width: 28px;
  height: 28px;
}

.lp__contents-item-title {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--c-navy-dark);
}

.lp__contents-item-desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: #475569;
  flex-grow: 1;
}

.lp__contents-note {
  margin: 48px auto 0;
  max-width: 720px;
  padding: 28px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #dfe8ef;
  text-align: center;
}

.lp__contents-note p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--c-navy-dark);
}

@media (max-width: 1023px) {
  .lp__contents-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .lp__contents-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .lp__contents-item {
    padding: 24px;
  }
  .lp__contents-item-title {
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.4;
  }
}

/* ============================================
   Section 5: ANALYST
   ============================================ */
.lp__analyst {
  padding: clamp(72px, 10vw, 100px) 24px;
  background: var(--c-white);
}

.lp__analyst-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.lp__analyst-card {
  margin-top: 48px;
  padding: 64px 56px;
  background: var(--c-white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.lp__analyst-photo {
  width: 240px;
  height: 240px;
  margin: 0 auto 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--c-navy);
  box-shadow: 0 8px 24px rgba(7, 61, 129, 0.2);
}

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

.lp__analyst-meta {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e5e7eb;
}

.lp__analyst-name-en {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: #94a3b8;
  margin: 0 0 8px;
  font-weight: 500;
}

.lp__analyst-name {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--c-navy-dark);
  letter-spacing: 0.05em;
}

.lp__analyst-role {
  font-size: 1rem;
  color: #475569;
  margin: 0 0 4px;
  font-weight: 600;
}

.lp__analyst-cert {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.lp__analyst-block {
  margin-bottom: 32px;
}

.lp__analyst-block:last-child {
  margin-bottom: 0;
}

.lp__analyst-block-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--c-navy);
  color: var(--c-navy-dark);
  line-height: 1.4;
}

.lp__analyst-block-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp__analyst-block-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #334155;
  font-size: 1rem;
  line-height: 1.6;
}

.lp__analyst-block-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 2px;
  background: var(--c-navy);
}

.lp__analyst-bio {
  font-size: 1rem;
  line-height: 1.8;
  color: #334155;
  margin: 0 0 16px;
}

.lp__analyst-bio:last-child {
  margin-bottom: 0;
}

.lp__analyst-achievements {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp__analyst-achievements li {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #334155;
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px dashed #e5e7eb;
}

.lp__analyst-achievements li:last-child {
  border-bottom: none;
}

.lp__analyst-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10b981, #059669);
  color: var(--c-white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 1023px) {
  .lp__analyst-card {
    padding: 48px 32px;
  }
}

@media (max-width: 767px) {
  .lp__analyst {
    padding: 64px 20px;
  }
  .lp__analyst-card {
    padding: 32px 20px;
    border-radius: 12px;
    margin-top: 32px;
  }
  .lp__analyst-photo {
    width: 160px;
    height: 160px;
    margin-bottom: 24px;
  }
  .lp__analyst-name {
    font-size: 1.5rem;
    word-break: keep-all;
  }
  .lp__analyst-meta {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }
  .lp__analyst-block {
    margin-bottom: 24px;
  }
  .lp__analyst-block-title {
    font-size: 1rem;
  }
  .lp__analyst-bio,
  .lp__analyst-block-list li,
  .lp__analyst-achievements li {
    font-size: 0.9375rem;
  }
}

/* Section 6: WHY LIMITED */
.lp__limited {
  padding: clamp(72px, 10vw, 112px) 24px;
  background: linear-gradient(135deg, #061929 0%, #073d81 48%, #0b2f87 100%);
}

.lp__limited-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.lp__limited-content {
  margin-top: 8px;
}

.lp__limited-text {
  margin: 0 0 24px;
  font-size: 1.125rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.92);
}

.lp__limited-emphasis {
  margin-top: 36px !important;
  margin-bottom: 0 !important;
  font-weight: 600;
}

.lp__limited-emphasis strong {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #fcd34d;
  display: inline-block;
  margin-top: 8px;
}

@media (max-width: 767px) {
  .lp__limited-text br {
    display: none;
  }
}

/* Section 7: CTA */
.lp__cta {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 24px;
  overflow: hidden;
  background: linear-gradient(165deg, #0048b2 0%, #073d81 42%, #243272 100%);
}

.lp__cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  color: var(--c-white);
}

.lp__cta-badge {
  display: inline-block;
  padding: 10px 24px;
  margin-bottom: 28px;
  background: var(--c-white);
  color: var(--c-navy);
  font-weight: 800;
  font-size: 0.9375rem;
  border-radius: 999px;
}

.lp__cta-title {
  margin: 0 0 24px;
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 800;
  color: var(--c-white);
}

.lp__cta-lead {
  margin: 0 0 36px;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
}

.lp__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 80px;
  width: min(480px, 100%);
  padding: 0 36px;
  box-sizing: border-box;
  background: var(--c-white);
  color: var(--c-navy);
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  animation: lp-final-cta-pulse 2s ease-in-out infinite;
}

.lp__cta-button svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.lp__cta-button:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.lp__cta-button:hover svg {
  transform: translateX(6px);
}

@keyframes lp-final-cta-pulse {
  0%,
  100% {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  }
  50% {
    box-shadow:
      0 18px 48px rgba(39, 164, 226, 0.45),
      0 14px 36px rgba(0, 0, 0, 0.2);
  }
}

.lp__cta-note {
  margin: 32px 0 0;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 767px) {
  .lp__cta-title {
    font-size: 1.5rem;
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.5;
    padding: 0 8px;
    box-sizing: border-box;
  }
  .lp__cta-button {
    font-size: 1.0625rem;
    min-height: 72px;
    width: 100%;
    max-width: 360px;
    padding: 0 24px;
  }
}

/* ============================================
   MV直下バナー：診断LPへの誘導
   ============================================ */
.mv-banner {
  padding: 48px 24px;
  background: #fff;
}

.mv-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mv-banner__link {
  display: block;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (hover: hover) and (pointer: fine) {
  .mv-banner__link:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  }
}

.mv-banner__picture {
  display: block;
}

.mv-banner__picture img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .mv-banner {
    padding: 24px 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .mv-banner__inner {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .mv-banner__inner.section-inner {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .mv-banner__link {
    display: block;
    width: 100%;
    border-radius: 12px;
  }

  .mv-banner__picture {
    display: block;
    width: 100%;
  }

  .mv-banner__picture img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }

  .mv-banner__link:active {
    transform: scale(0.98);
  }
}

/* =========================================
   ピラーページ：ABOUTセクション
   ========================================= */
.page-pillar__about {
    padding: 80px 0;
    background: #fff;
}
.page-pillar__about-inner {
}
.page-pillar__about-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 1.12px;
    color: #073D81;
    margin-bottom: 12px;
    font-weight: 500;
}
.page-pillar__about-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 500;
    color: #061929;
    margin-bottom: 24px;
}
.page-pillar__about-definition {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
    color: #061929;
    margin-bottom: 48px;
}
.page-pillar__about-compare {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.page-pillar__about-compare-head {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    background: #f5f7fa;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
}
.page-pillar__about-compare-head > span {
    padding: 16px 20px;
    border-right: 1px solid #e0e0e0;
}
.page-pillar__about-compare-head > span:last-child {
    border-right: none;
}
.page-pillar__about-compare-label-a {
    color: #666;
}
.page-pillar__about-compare-label-b {
    color: #073D81;
}
.page-pillar__about-compare-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
    line-height: 1.7;
}
.page-pillar__about-compare-row:last-child {
    border-bottom: none;
}
.page-pillar__about-compare-row > span {
    padding: 16px 20px;
    border-right: 1px solid #e0e0e0;
}
.page-pillar__about-compare-row > span:last-child {
    border-right: none;
}
.page-pillar__about-compare-axis {
    font-weight: 700;
    background: #fafbfc;
}
.page-pillar__about-compare-b {
    color: #073D81;
    font-weight: 500;
}

/* =========================================
   ピラーページ：REASONSセクション
   ========================================= */
.page-pillar__reasons {
    padding: 80px 0;
    background: #f8fafc;
}
.page-pillar__reasons-inner {
}
.page-pillar__reasons-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 1.12px;
    color: #073D81;
    margin-bottom: 12px;
    font-weight: 500;
}
.page-pillar__reasons-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 500;
    color: #061929;
    margin-bottom: 24px;
}
.page-pillar__reasons-lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
    color: #061929;
    margin-bottom: 48px;
}
.page-pillar__reasons-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.page-pillar__reasons-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 32px 32px 32px 88px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.page-pillar__reasons-item-num {
    position: absolute;
    top: 32px;
    left: 32px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #073D81;
    line-height: 1;
}
.page-pillar__reasons-item-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    color: #061929;
    margin-bottom: 12px;
}
.page-pillar__reasons-item-body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #061929;
    margin: 0;
}

/* =========================================
   ピラーページ：CHECKLISTセクション
   ========================================= */
.page-pillar__checklist {
    padding: 80px 0;
    background: #fff;
}
.page-pillar__checklist-inner {
}
.page-pillar__checklist-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 1.12px;
    color: #073D81;
    margin-bottom: 12px;
    font-weight: 500;
}
.page-pillar__checklist-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 500;
    color: #061929;
    margin-bottom: 24px;
}
.page-pillar__checklist-lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
    color: #061929;
    margin-bottom: 48px;
}
.page-pillar__checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.page-pillar__checklist-item {
    background: #fafbfc;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 28px 28px 28px 28px;
    position: relative;
}
.page-pillar__checklist-item-num {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #073D81;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}
.page-pillar__checklist-item-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 600;
    color: #061929;
    margin-bottom: 12px;
}
.page-pillar__checklist-item-body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 1.85;
    color: #061929;
    margin: 0;
}

/* =========================================
   SP対応（PC・SP両対応、教訓5.16/5.56準拠）
   ========================================= */
@media (max-width: 767px) {
    .page-pillar__about,
    .page-pillar__reasons,
    .page-pillar__checklist {
        padding: 56px 0;
    }
    .page-pillar__about-title,
    .page-pillar__reasons-title,
    .page-pillar__checklist-title {
        font-size: 24px;
    }
    /* 対比表：SP は縦積み */
    .page-pillar__about-compare-head {
        display: none;
    }
    .page-pillar__about-compare-row {
        grid-template-columns: 1fr;
        padding: 16px 20px;
    }
    .page-pillar__about-compare-row > span {
        padding: 8px 0;
        border-right: none;
        border-bottom: 1px dashed #e0e0e0;
    }
    .page-pillar__about-compare-row > span:last-child {
        border-bottom: none;
    }
    .page-pillar__about-compare-axis::after {
        content: '';
    }
    .page-pillar__about-compare-a::before {
        content: attr(data-mobile-heading);
        color: #999;
        font-weight: 600;
    }
    .page-pillar__about-compare-b::before {
        content: attr(data-mobile-heading);
        color: #1a4480;
        font-weight: 600;
    }
    /* 理由カード */
    .page-pillar__reasons-item {
        padding: 28px 20px 24px 20px;
    }
    .page-pillar__reasons-item-num {
        position: static;
        display: block;
        margin-bottom: 8px;
    }
    .page-pillar__reasons-item-title {
        font-size: 18px;
    }
    /* チェックリスト：1カラム */
    .page-pillar__checklist-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

