/* =================================================
   ページ別スタイル
   ================================================= */

/* ===================================
   共通ヒーローセクションスタイル
   =================================== */

/* 基本ヒーローセクション（画像なし） */
.page-hero-simple {
  position: relative;
  padding: 0px 0 80px;
  overflow: hidden;
}

.page-hero-simple::before {
  content: "";
  position: absolute;
  top: 8%;
  right: 0;
  bottom: 0;
  background-image: url(../images/page-background.svg);
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  width: 80%;
  /* 左端をグラデーションでフェードアウト */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 25%,
    #000 100%
  );
  mask-image: linear-gradient(to right, transparent 0%, #000 25%, #000 100%);
}

.page-hero-simple .hero-content-wrapper {
  text-align: left;
  position: relative;
  z-index: 10;
  padding-bottom: 6vh;
  border-bottom: 1px solid var(--border-light);
}

/* パンくず：ヒーロー内コンテナ先頭（.hero-content-wrapper の直上） */
.page-hero-simple .container > .breadcrumb-nav {
  position: relative;
  z-index: 10;
  padding: 8vh 0 0 0;
  margin-bottom: 8vh;
}

/* 共通ヒーロータイトルスタイル */
.page-hero-title {
  margin: 0;
  margin-bottom: 6vh;
}

.page-hero-title .title-en {
  display: block;
  font-size: clamp(2.5rem, 1.6923rem + 3.5897vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-en);
  /* テーマカラーに依存せず、常にprimaryグラデーションを使用 */
  background: var(--gradient-diagonal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: font-size 0.1s ease-out; /* スムーズな変化 */
  width: fit-content;
  word-break: break-word;
}

.page-hero-title .title-ja {
  display: block;
  font-family: var(--font-ja);
  font-size: clamp(1rem, 0.9077rem + 0.4103vw, 1.4rem);
  font-weight: bold;
  letter-spacing: 0.02em;
  /* テーマカラーに依存せず、常にprimaryグラデーションを使用 */
  background: linear-gradient(
    to right,
    var(--primary-color) 30%,
    var(--secondary-color) 99%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  background-clip: text;
  line-height: 1.5;
  padding-left: 2px;
}

/* スクロールアニメーション効果（共通） */
.js-scroll-trigger {
  opacity: 0;
  transform: translateY(var(--animation-distance));
  transition:
    opacity var(--animation-duration-slow) var(--animation-easing),
    transform var(--animation-duration-slow) var(--animation-easing);
  will-change: opacity, transform;
}

.js-scroll-trigger.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fade-left {
  display: inline-block;
  transform: translateX(calc(var(--animation-distance) * -1));
  opacity: 0;
  transition:
    opacity var(--animation-duration) var(--animation-easing) calc(var(--animation-delay-step) * 2),
    transform var(--animation-duration) var(--animation-easing) calc(var(--animation-delay-step) * 2);
  will-change: opacity, transform;
}

.js-scroll-trigger.is-visible .scroll-fade-left {
  transform: translateX(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .js-scroll-trigger,
  .scroll-fade-left {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

/* レスポンシブ対応（共通） */
@media screen and (max-width: 767.98px) {
  .page-hero-simple::before {
    width: 100%;
    background-position: center;
    background-size: auto;
    top: 10%;
    /* SP: フェード幅を狭めに */
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      #000 15%,
      #000 100%
    );
    mask-image: linear-gradient(to right, transparent 0%, #000 15%, #000 100%);
  }
  .page-hero-simple .container > .breadcrumb-nav {
    margin-bottom: 4vh;
    padding: 2vh 0 0 0;
  }
  .page-hero-simple {
    padding: 0 0 30px 0;
  }

  .page-hero-title .title-en {
    margin-bottom: 0.8rem;
  }

  .page-hero-title .title-ja {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 479.98px) {
  .page-hero-title .title-en {
    margin-bottom: 0.6rem;
  }

  .page-hero-title .title-ja {
    font-size: 1rem;
  }
}

/* ===================================
   無限スクロールテキスト（ヒーロー最上部）
   =================================== */

.hero-scroll-text {
  position: relative;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  margin-top: -40px;
}

.hero-scroll-text-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: heroScrollText 120s linear infinite;
}

.hero-scroll-text-item {
  flex-shrink: 0;
  padding-right: 0.5em;
  font-family: var(--font-en, "Montserrat", sans-serif);
  font-size: clamp(10rem, 8.1538rem + 8.2051vw, 18rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.9;
  background: var(--gradient-subtle);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
  white-space: nowrap;
  text-transform: uppercase;
}

@keyframes heroScrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 767.98px) {
  .hero-scroll-text {
    margin-top: -10px;
  }
}

/* ===================================
   事業ページ
   =================================== */

.business-department-page .hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--white);
  text-align: center;
}

.business-department-page .hero-title {
  margin-bottom: 6vh;
}

/* 事業詳細：ページタイトル直下のキャッチ・サブ（全事業共通） */
.business-department-page .page-hero-simple .page-hero-dept-catch,
.service-detail-page #service-hero .page-hero-dept-catch,
.progress-habit-page #prohabi-hero .page-hero-dept-catch {
  font-size: clamp(1.375rem, 1.3462rem + 0.1282vw, 1.5rem);
  color: var(--text-color);
  margin: 0 0 1rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.business-department-page .page-hero-simple .page-hero-dept-sub,
.service-detail-page #service-hero .page-hero-dept-sub,
.progress-habit-page #prohabi-hero .page-hero-dept-sub {
  font-size: clamp(0.9375rem, 0.9231rem + 0.0641vw, 1rem);
  color: var(--text-light);
  margin: 0;
  line-height: 1.8;
}

.business-department-page .hero-lead {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  max-width: 800px;
  margin: 0 auto;
}

/* 事業概要 */
.business-department-page .department-overview {
  padding: 2rem 0;
}

.business-department-page .overview-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2vw;
}

.business-department-page .department-catchphrase {
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.625rem);
  font-weight: 900;
  color: var(--primary-color, #1d2089);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: center;
}

.business-department-page .department-description {
  font-size: clamp(0.9375rem, 0.9rem + 0.15vw, 1.0625rem);
  line-height: 2;
  color: var(--text-color);
}

.business-department-page .overview-text {
  font-size: clamp(1rem, 0.9722rem + 0.1235vw, 1.125rem);
  line-height: 1.8;
  color: var(--text-color);
  padding: 0 2vw;
  font-weight: bold;
}

/* サービス一覧 */
.business-department-page .department-services {
  padding: 100px 0;
}

.business-department-page .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.business-department-page .service-card {
  background-color: var(--background-light);
  border-radius: 10px;
  padding: 40px;
  position: relative;
  transition: var(--transition-default);
}

.business-department-page .service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-dark);
}

.business-department-page .service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(29, 32, 137, 0.1);
  font-family: var(--font-en);
}

.business-department-page .service-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.business-department-page .service-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 30px;
}

.business-department-page .service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.business-department-page .service-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 15px;
  color: var(--text-color);
}

.business-department-page .service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.business-department-page .service-action {
  text-align: center;
}

/* 実績・事例 */
.business-department-page .department-cases {
  padding: 100px 0;
}

.business-department-page .cases-wrapper {
  text-align: center;
  padding: 80px 0;
}

.business-department-page .coming-soon {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-lighter);
  margin-bottom: 20px;
}

.business-department-page .coming-soon-text {
  font-size: 18px;
  color: var(--text-lighter);
}

/* ===================================
   事業詳細ページ（ビジネスサポート新構成）
   =================================== */

/* Intro */
.business-department-page .department-intro {
  padding: 2rem 0 3rem;
}

.business-department-page .department-intro__main-copy {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--primary-color);
  margin: 0 0 1rem;
}

.business-department-page .department-intro__lead {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-color);
  margin: 0;
}

/* Mission */
.business-department-page .department-mission {
  padding: 80px 0;
  background: var(--background-light);
  border-radius: var(--border-radius-md);
}

.business-department-page .mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  margin-top: 24px;
}

.business-department-page .mission-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
}

.business-department-page .mission-keyword {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(29, 32, 137, 0.08);
  box-shadow: var(--shadow-light);
  font-weight: 700;
  color: var(--text-color);
}

.business-department-page .mission-keyword i {
  color: var(--theme-accent);
  font-size: 18px;
}

.business-department-page .mission-message__text {
  margin: 0 0 18px;
  line-height: 1.9;
  color: var(--text-color);
  font-weight: 600;
}

.business-department-page .mission-diagram {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.business-department-page .mission-diagram__item {
  background: var(--white);
  border: 1px solid rgba(29, 32, 137, 0.08);
  border-radius: var(--border-radius-md);
  padding: 14px 16px;
  min-width: 160px;
  box-shadow: var(--shadow-light);
}

.business-department-page .mission-diagram__item .badge {
  background: rgba(29, 32, 137, 0.08);
  color: var(--primary-color);
  font-weight: 700;
  margin-right: 10px;
}

.business-department-page .mission-diagram__item.is-accent .badge {
  background: rgba(255, 90, 60, 0.14);
  color: var(--theme-accent);
}

.business-department-page .mission-diagram__label {
  font-weight: 700;
  color: var(--text-color);
}

.business-department-page .mission-diagram__arrow i {
  color: var(--primary-color);
  font-size: 20px;
}

/* Services (Pillars) */
.business-department-page .department-services--pillars {
  padding: 80px 0;
}

.business-department-page .pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.business-department-page .pillar-card {
  background: var(--background-light);
  border-radius: 14px;
  padding: 26px 26px 22px;
  border: 1px solid rgba(29, 32, 137, 0.08);
  box-shadow: var(--shadow-light);
  transition: var(--transition-default);
  position: relative;
  overflow: hidden;
}

.business-department-page .pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.business-department-page .pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-dark);
}

.business-department-page .pillar-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.business-department-page .pillar-card__no {
  font-family: var(--font-en);
  font-size: 44px;
  font-weight: 800;
  color: rgba(29, 32, 137, 0.12);
}

.business-department-page .pillar-card__icon i {
  font-size: 26px;
  color: var(--theme-accent);
}

.business-department-page .pillar-card__title {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.4;
}

.business-department-page .pillar-card__sub {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
}

.business-department-page .pillar-card__slogan {
  margin: 0 0 10px;
  font-weight: 800;
  color: var(--theme-accent);
}

.business-department-page .pillar-card__text {
  margin: 0 0 14px;
  line-height: 1.8;
  color: var(--text-color);
}

.business-department-page .pillar-card__meta {
  margin: 0;
}

.business-department-page .pillar-card__meta-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px dashed rgba(29, 32, 137, 0.14);
}

.business-department-page .pillar-card__meta-row dt {
  font-weight: 800;
  color: var(--primary-color);
}

.business-department-page .pillar-card__meta-row dd {
  margin: 0;
  color: var(--text-color);
  line-height: 1.7;
}

/* Sherpa */
.business-department-page .department-sherpa {
  padding: 80px 0;
}

.business-department-page .sherpa-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 26px;
  align-items: start;
  margin-top: 24px;
}

.business-department-page .sherpa-visual {
  background: linear-gradient(
    135deg,
    rgba(29, 32, 137, 0.06),
    rgba(255, 90, 60, 0.07)
  );
  border-radius: 14px;
  padding: 26px;
  display: flex;
  gap: 14px;
  justify-content: center;
  border: 1px solid rgba(29, 32, 137, 0.08);
}

.business-department-page .sherpa-visual__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-md);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-light);
}

.business-department-page .sherpa-visual__icon i {
  font-size: 26px;
  color: var(--theme-accent);
}

.business-department-page .sherpa-lead {
  margin: 0 0 18px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.8;
}

.business-department-page .sherpa-points {
  display: grid;
  gap: 14px;
}

.business-department-page .sherpa-point {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: var(--border-radius-md);
  background: var(--background-light);
  border: 1px solid rgba(29, 32, 137, 0.08);
}

.business-department-page .sherpa-point__icon i {
  font-size: 20px;
  color: var(--theme-accent);
}

.business-department-page .sherpa-point__title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-color);
}

.business-department-page .sherpa-point__text {
  margin: 0;
  color: var(--text-light);
  line-height: 1.8;
}

/* CTA */
.business-department-page .department-cta {
  padding: 80px 0 40px;
}

.business-department-page .department-cta__inner {
  background: var(--gradient-subtle);
  border-radius: 18px;
  padding: 34px 26px;
  border: 1px solid rgba(29, 32, 137, 0.08);
  text-align: center;
}

.business-department-page .department-cta__title {
  margin: 0 0 12px;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary-color);
}

.business-department-page .department-cta__text {
  margin: 0 auto 18px;
  max-width: 820px;
  line-height: 1.9;
  color: var(--text-color);
}

.business-department-page .department-cta__actions .btn {
  min-width: min(360px, 100%);
}

@media screen and (max-width: 991.98px) {
  .business-department-page .mission-grid,
  .business-department-page .sherpa-wrapper {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767.98px) {
  .business-department-page .pillars-grid {
    grid-template-columns: 1fr;
  }
  .business-department-page .department-mission,
  .business-department-page .department-services--pillars,
  .business-department-page .department-sherpa,
  .business-department-page .department-cta {
    padding: 60px 0;
  }
  .business-department-page .department-cta {
    padding-bottom: 30px;
  }
}

/* ===================================
   事業案内ページ（一覧ページ）- 2カラム交互レイアウト
   =================================== */

.business-overview-page .business-departments-section {
  padding: 0;
}

/* 事業リスト */
.business-overview-page .departments-list {
  display: flex;
  flex-direction: column;
}

/* 事業セクション - 2カラムレイアウト */
.business-overview-page .department-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: flex-start;
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 1px solid rgba(29, 32, 137, 0.08);
}

.business-overview-page .department-section:first-child {
  padding-top: 0;
}

.business-overview-page .department-section:last-child {
  border-bottom: none;
}

/* 逆配置（偶数番目） */
.business-overview-page .department-section--reverse {
  grid-template-columns: 1fr 1fr;
}

.business-overview-page
  .department-section--reverse
  .department-section__content {
  order: 2;
}

.business-overview-page
  .department-section--reverse
  .department-section__visual {
  order: 1;
}

/* コンテンツエリア */
.business-overview-page .department-section__content {
  display: flex;
  flex-direction: column;
}

/* ヘッダー部分 */
.business-overview-page .department-section__header {
  margin-bottom: 20px;
}

/* 英語ラベル（小さく・薄く・字間広め） */
.business-overview-page .department-section__label {
  display: block;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  background: var(--gradient-diagonal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
  padding-left: 2px;
}

/* 事業名タイトル（大きく・太め） */
.business-overview-page .department-section__title {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text-color);
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin: 0;
}

/* 強みコピー（2〜3行で強め） */
.business-overview-page .department-section__strength {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0 0 16px 0;
}

/* 区切り線 */
.business-overview-page .department-section__divider {
  width: 30px;
  height: 2px;
  background: var(--gradient-diagonal);
  margin-bottom: 20px;
}

/* 説明文（薄め・行間広め） */
.business-overview-page .department-section__description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0 0 30px 0;
  letter-spacing: 0.02em;
}

/* ビジュアルエリア */
.business-overview-page .department-section__visual {
  position: relative;
}

.business-overview-page .department-section__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
}

.business-overview-page .department-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* 省アニメーション */
@media (prefers-reduced-motion: reduce) {
  .business-overview-page .department-section__image img {
    transition: none !important;
  }
}

/* タブレット対応 */
@media screen and (max-width: 991.98px) {
  .business-overview-page .department-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 60px 0;
  }

  .business-overview-page .department-section--reverse {
    grid-template-columns: 1fr;
  }

  .business-overview-page
    .department-section--reverse
    .department-section__content {
    order: unset;
  }

  /* すべての事業で画像を上に配置 */
  .business-overview-page .department-section__visual,
  .business-overview-page
    .department-section--reverse
    .department-section__visual {
    order: -1;
  }

  .business-overview-page .department-section__image {
    aspect-ratio: 16 / 9;
  }
}

/* スマホ対応 */
@media screen and (max-width: 767.98px) {
  .business-overview-page .department-section {
    padding: 40px 0;
  }

  .business-overview-page .department-section__title {
    font-size: 1.4rem;
  }

  .business-overview-page .department-section__strength {
    font-size: 1rem;
  }

  .business-overview-page .department-section__description {
    font-size: 0.85rem;
  }

  .business-overview-page .department-section__image {
    aspect-ratio: 3 / 2;
  }
}

.business-overview-page .department-services {
  background-color: var(--background-light);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.business-overview-page .services-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.business-overview-page .services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.business-overview-page .services-list li {
  font-size: 15px;
  color: var(--text-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.business-overview-page .services-list li:last-child {
  margin-bottom: 0;
}

.business-overview-page .services-list i {
  color: var(--primary-color);
  font-size: 18px;
  flex-shrink: 0;
}

/* ===================================
   代表メッセージページ
   =================================== */

.greeting-page .hero-content-wrapper {
  text-align: left;
  position: relative;
  z-index: 10;
  margin-top: 3rem;
}

.greeting-page .hero-title {
  margin: 0;
}

.ceo-signature {
  padding-bottom: 60px;
}

.greeting-content {
  padding-top: 0;
  padding-bottom: 20px;
  line-height: 2;
}

.greeting-section p {
  font-size: clamp(1rem, 0.9778rem + 0.0988vw, 1.1rem);
  text-align: justify;
  letter-spacing: 0.08em;
  line-height: 2.175;
}

.greeting-section .section-content .row {
  margin-left: -15px;
  margin-right: -15px;
}

.greeting-section .left-column,
.greeting-section .right-column {
  padding-left: 15px;
  padding-right: 15px;
}

.signature-wrapper p {
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  letter-spacing: 0.08em;
}

.signature-name .name {
  font-size: clamp(1rem, 0.9538rem + 0.2051vw, 1.2rem);
  font-weight: 600;
}

/* ===================================
   グランプログレスについてページ（企業理念）
   =================================== */

.about-page .philosophy-item {
  margin-bottom: 12%;
  text-align: center;
}

.about-page .philosophy-item.vision {
  margin-bottom: 16%;
}

.about-page .philosophy-title {
  position: relative;
  margin-bottom: 4%;
}

.about-page .philosophy-title .title-en {
  display: block;
  font-size: clamp(4rem, 3.1111rem + 3.9506vw, 8rem);
  color: var(--border-light);
  text-transform: uppercase;
  font-weight: bold;
  font-family: var(--font-en);
  background: var(--gradient-subtle);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-inline: auto;
}

.about-page .philosophy-title .title-ja {
  position: absolute;
  top: 46%;
  left: 0;
  right: 0;
  display: block;
  font-size: clamp(2rem, 1.5556rem + 1.9753vw, 4rem);
  font-weight: 800;
}

.about-page .philosophy-content {
  font-size: clamp(1rem, 0.9111rem + 0.3951vw, 1.4rem);
  line-height: 2.175;
  color: var(--text-color);
  font-weight: bold;
}

.about-page .credo-cards-block {
  background: var(--gradient-subtle);
  padding: 8%;
}

.about-page .credo-cards__subtitle {
  text-align: center;
  font-weight: bold;
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.75rem);
  color: var(--text-color);
  margin: 0 0 4%;
}

.about-page .credo-cards-rows {
  display: grid;
  gap: 8px;
  max-width: 800px;
  margin-inline: auto;
}

.about-page .credo-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.about-page .credo-cards__item img {
  width: 100%;
  height: auto;
  display: block;
}

.about-page .credo-cards__caption {
  text-align: center;
  font-size: clamp(0.875rem, 0.82rem + 0.25vw, 1rem);
  line-height: 1.8;
  color: var(--text-light);
  margin: 4% 0 0;
}

/* バリューグリッド */
.about-page .values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.about-page .value-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.about-page .value-number {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(29, 32, 137, 0.1);
}

.about-page .value-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.about-page .value-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}

/* 4つの約束セクション */
.about-page .company-promises {
  padding: 7% 0;
}

.about-page .promises-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 5%;
  max-width: 900px;
  margin-inline: auto;
}

.about-page .promise-item {
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.about-page .promise-number {
  font-size: clamp(3rem, 2.5556rem + 1.9753vw, 5rem);
  font-weight: bold;
  font-family: var(--font-en);
  margin-bottom: 5px;
  margin: 0;
  line-height: 1;
  background: var(--gradient-subtle);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
}

.about-page .promise-title {
  font-size: clamp(2rem, 1.7778rem + 0.9877vw, 3rem);
  font-weight: bold;
  color: var(--text-color);
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

.about-page .promise-content {
  font-size: clamp(1rem, 0.9111rem + 0.3951vw, 1.4rem);
  font-weight: bold;
  line-height: 2.175;
  color: var(--text-color);
  margin: 0;
  text-align: left;
}

/* コンセプト セクション */
#about-concept .concept-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5%;
  margin-bottom: 10%;
  text-align: center;
}

#about-concept .concept-main-heading {
  font-size: clamp(1.5rem, 1.2222rem + 1.2346vw, 2.5rem);
  font-weight: bold;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
  text-align: center;
  margin-bottom: 4%;
}

#about-concept .concept-description {
  font-size: clamp(1rem, 0.9712rem + 0.1282vw, 1.125rem);
  font-weight: 600;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
  text-align: center;
}

#about-concept .pro-three-wrapper .pro-three-circle-list__item {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

/* レスポンシブ対応 */
@media screen and (max-width: 767.98px) {
  /* 事業ページ */
  .business-department-page .department-hero {
    height: 60vh;
    min-height: 400px;
  }

  .business-department-page .title-ja {
    font-size: 18px;
  }

  .business-department-page .hero-lead {
    font-size: 16px;
    padding: 0 20px;
  }
  .business-department-page .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .business-department-page .service-card {
    padding: 30px 20px;
  }

  /* 事業案内ページ - レスポンシブは新スタイルのメディアクエリで対応済み */

  /* 代表メッセージページ */
  .greeting-page .sec-hero {
    padding: 0 0 60px 0;
  }

  .greeting-page .sec-hero .container-lg {
    padding: 0 15px;
  }

  .greeting-page .hero-title .title-en {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
  }

  .greeting-page .hero-title .title-ja {
    font-size: 1.1rem;
  }

  .greeting-section .left-column,
  .greeting-section .right-column {
    margin-bottom: 1rem;
    padding-left: 10px;
    padding-right: 10px;
  }

  .greeting-section .right-column {
    margin-bottom: 0;
  }

  /* 会社概要ページ */

  .about-page .company-philosophy {
    padding-top: 0;
  }

  .about-page .philosophy-title {
    margin-bottom: 7%;
  }

  .about-page .philosophy-content {
    text-align: left;
    padding-left: 3%;
    padding-right: 3%;
  }

  /* スマホでは改行を無効化 */
  .about-page .philosophy-content br {
    display: none;
  }

  .about-page .credo-cards__subtitle {
    margin-bottom: 5%;
    padding-left: 3%;
    padding-right: 3%;
  }

  .about-page .credo-cards-rows {
    gap: 8px;
  }

  .about-page .credo-cards {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .about-page .credo-cards__item {
    flex: 0 0 28vw;
    min-width: 120px;
  }

  .about-page .credo-cards__caption {
    margin-top: 5%;
    padding-left: 3%;
    padding-right: 3%;
    text-align: left;
  }

  #about-concept .concept-intro {
    margin-bottom: 12%;
    padding-left: 3%;
    padding-right: 3%;
  }

  /* 4つの約束セクション - モバイル対応 */
  .about-page .company-promises {
    padding: 12% 0;
  }

  .about-page .promises-grid {
    gap: 20px;
    margin-top: 8%;
  }

  .about-page .promise-item {
    padding: 3%;
    gap: 15px;
  }
}

@media screen and (max-width: 479.98px) {
  .greeting-page .hero-title .title-en {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }

  .greeting-page .hero-title .title-ja {
    font-size: 1rem;
  }

  .ceo-signature {
    padding-top: 30px;
  }
}

/* ===================================
   会社情報ページ
   =================================== */

/* 会社情報テーブル */
.company-information {
  padding: 0 0 120px 0;
}

.company-page .company-info-table {
  width: 100%;
  border-collapse: collapse;
}

.company-page .company-info-table th,
.company-page .company-info-table td {
  padding: 20px 30px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.company-page .company-info-table th {
  width: 30%;
  font-weight: 600;
  color: var(--text-color);
}

.company-page .company-info-table td {
  color: var(--text-color);
}

.company-page .company-name-en {
  font-size: 14px;
  color: var(--text-lighter);
}

/* Google Mapリンクボタン */
.company-page .map-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 1em;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.company-page .map-link-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 0;
}

.company-page .map-link-btn:hover {
  color: var(--white);
  text-decoration: none;
}

.company-page .map-link-btn:hover::before {
  transform: translateX(0);
}

.company-page .map-link-btn svg,
.company-page .map-link-btn span {
  position: relative;
  z-index: 1;
}

.company-page .map-link-btn svg {
  flex-shrink: 0;
}

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

.company-page .business-list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 5px;
}

.company-page .business-list li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* アクセスセクション */
.company-page .company-access {
  padding: 80px 0;
}

.company-page .access-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.company-page .office-name {
  font-size: 1.25rem;
  font-weight: bold;
  padding: 16px 24px 16px 0;
  margin: 0;
}

.company-page .office-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.company-page .office-map {
  min-height: 300px;
}

.company-page .office-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
}

.company-page .office-info {
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.company-page .office-info .info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.company-page .office-info .info-label {
  flex-shrink: 0;
  width: 80px;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
  padding-top: 2px;
}

.company-page .office-info .info-value {
  flex: 1;
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.7;
}

.company-page .office-info .access-method {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-color);
}

.company-page .office-info .access-detail {
  color: var(--text-light);
  margin-bottom: 2px;
}

.company-page .office-info .access-detail:last-child {
  margin-bottom: 0;
}

/* アクセスセクション レスポンシブ */
@media screen and (max-width: 767.98px) {
  .company-page .company-access {
    padding: 60px 0;
  }

  .company-page .access-wrapper {
    gap: 40px;
    padding: 30px 0;
  }

  .company-page .office-content {
    grid-template-columns: 1fr;
  }

  .company-page .office-map {
    min-height: 250px;
  }

  .company-page .office-map iframe {
    min-height: 250px;
  }

  .company-page .office-info {
    padding: 20px 0;
    gap: 16px;
  }

  .company-page .office-info .info-item {
    flex-direction: column;
    gap: 6px;
  }

  .company-page .office-info .info-label {
    width: auto;
    font-size: 0.85rem;
  }

  .company-page .office-info .info-value {
    font-size: 0.9rem;
  }
}

/* 沿革セクション */
.company-page .company-history {
  padding: 80px 0;
}

.company-page .history-wrapper {
  padding: 40px 2vw;
}

.company-page .history-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* タイムライン項目 */
.company-page .timeline-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
}

/* 縦線 - timeline-item全体に適用 */
.company-page .timeline-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: -7px;
  width: 1px;
  border-right: 1px solid #dcd8cf;
  transform: translateX(-50%);
}

.company-page .timeline-item:last-child::after {
  display: none;
}

/* タイムラインボーダー */
.company-page .timeline-border {
  position: relative;
  width: 100%;
}

/* 外側の丸（薄い色） */
.company-page .timeline-border::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(29, 32, 137, 0.1);
  transform: translate(-50%, -50%);
  z-index: 10;
}

/* 内側の丸（濃い色） */
.company-page .timeline-border::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--primary-color);
  transform: translate(-50%, -50%);
  z-index: 10;
}

/* タイムライン行 */
.company-page .timeline-row {
  display: block;
  width: 100%;
  padding-left: 26px;
}

/* 左カラム（日付） */
.company-page .timeline-left {
  margin-bottom: 10px;
}

.company-page .timeline-date {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.6;
}

/* 右カラム（内容） */
.company-page .timeline-right {
  padding-bottom: 30px;
}

.company-page .timeline-item:last-child .timeline-right {
  padding-bottom: 0;
}

.company-page .timeline-text {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.8;
}

.company-page .timeline-text br {
  margin-bottom: 5px;
}

/* デスクトップレイアウト */
@media (min-width: 992px) {
  .company-page .timeline-row {
    display: flex;
    flex-flow: row wrap;
  }

  .company-page .timeline-left {
    width: 30%;
    padding-left: 1.66667vw;
    padding-right: 1.66667vw;
    margin-bottom: 0;
  }

  .company-page .timeline-right {
    width: 70%;
    padding-left: 1.66667vw;
    padding-right: 1.66667vw;
    padding-bottom: 40px;
  }

  .company-page .timeline-border::after {
    width: 18px;
    height: 18px;
    top: 12px;
  }

  .company-page .timeline-border::before {
    width: 7px;
    height: 7px;
    top: 12px;
  }
}

.company-page .coming-soon {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-lighter);
  margin-bottom: 20px;
}

.company-page .coming-soon-text {
  font-size: 16px;
  color: var(--text-light);
}

/* レスポンシブ対応 - 会社情報ページ */
@media screen and (max-width: 767.98px) {
  .company-page .company-information {
    padding: 60px 0;
  }

  .company-page .company-info-table th,
  .company-page .company-info-table td {
    display: block;
    width: 100%;
    padding: 15px 20px 0 20px;
  }

  .company-page .company-info-table th {
    border-bottom: none;
  }

  .company-page .company-info-table td {
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .company-page .map-link-btn {
    margin-left: 0;
    margin-top: 1rem;
  }

  /* 沿革タイムライン - モバイル */
  .company-page .timeline-border::after {
    width: 10px;
    height: 10px;
  }

  .company-page .timeline-border::before {
    width: 3px;
    height: 3px;
  }

  .company-page .timeline-date {
    font-size: 14px;
  }

  .company-page .timeline-text {
    font-size: 14px;
  }

  .company-page .timeline-right {
    padding-bottom: 25px;
  }
}

/* =================================================
   リード文（page-sec-title 内・.hero-content-wrapper 直下）
   ================================================= */

.page-hero-simple
  .hero-content-wrapper
  .page-lead-section--in-hero
  .lead-content {
  text-align: left;
  border-bottom: none;
  padding-bottom: 0;
}

.page-hero-simple .hero-content-wrapper .page-lead-section--in-hero .lead-text {
  font-size: clamp(1.375rem, 1.3462rem + 0.1282vw, 1.5rem);
  color: var(--text-color);
  margin: 0 0 1rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.page-hero-simple
  .hero-content-wrapper
  .page-lead-section--in-hero
  .lead-subtext {
  font-size: clamp(0.9375rem, 0.9231rem + 0.0641vw, 1rem);
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
  letter-spacing: 0.04em;
}

@media (max-width: 767.98px) {
  .page-hero-simple .hero-content-wrapper .page-lead-section--in-hero {
    margin-top: clamp(1.5rem, 4vw, 2.5rem);
  }
}

/* =================================================
   CSR活動ページ
   ================================================ */

/* ページラッパー */
.page-csr {
  overflow-x: hidden;
  padding-top: 80px;
}

.page-csr .heading.section-title {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 60px;
  color: var(--text-color);
  font-weight: bold;
}

.page-csr .heading.section-title .bar {
  position: relative;
  display: block;
  width: 50px;
  height: 1px;
  margin-bottom: 0;
  background: var(--border-color);
}

.page-csr .heading.section-title .bar::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 20px;
  height: 3px;
  background: var(--gradient-diagonal);
}

.page-csr .heading.section-title .title-wrapper {
  display: grid;
  align-items: baseline;
  gap: 0;
}

.page-csr .heading.section-title .title-en {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.4;
  color: var(--text-color);
  font-family: var(--font-en);
  letter-spacing: -0.025em;
  padding-left: 1%;
  text-align: left;
}

.page-csr .heading.section-title .title-ja {
  font-size: clamp(1.875rem, 1.7885rem + 0.3846vw, 2.25rem);
  font-weight: bold;
  line-height: 1.4;
}

/* ----------------------------------------
   イントロセクション
---------------------------------------- */
.csr-intro-section {
  padding: 80px 0 80px 0;
  position: relative;
  overflow: hidden;
}

/* SDGsメインロゴ（背景装飾） */
.csr-intro__main-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.csr-intro__main-logo img {
  width: auto;
  height: 320px;
  max-width: none;
  object-fit: contain;
}

.csr-intro-section > .container {
  position: relative;
  z-index: 1;
}

.csr-intro-content {
  text-align: center;
}

.csr-intro-lead {
  font-size: clamp(1rem, 0.9111rem + 0.3951vw, 1.4rem);
  line-height: 2;
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.csr-anchor-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.csr-anchor-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: var(--transition-smooth);
}

.csr-anchor-link:hover {
  background: var(--primary-color);
  color: var(--white);
}

.csr-anchor-icon {
  font-size: 1.125rem;
  line-height: 1;
}

/* ----------------------------------------
   3つの柱セクション
---------------------------------------- */
.csr-pillars-section {
  padding: 80px 0;
}

.csr-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.csr-pillar-card {
  background: var(--white);
  border-radius: var(--card-border-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--card-transition);
  position: relative;
  overflow: hidden;
}

.csr-pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.csr-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.csr-pillar-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.csr-pillar-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.csr-pillar-title-en {
  display: block;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
}

.csr-pillar-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 1rem 0;
}

.csr-pillar-description {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
}

/* ----------------------------------------
   カテゴリセクション
---------------------------------------- */
.csr-categories-section {
  padding: 80px 0;
}

.csr-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.csr-category-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--background-light);
  border-radius: var(--card-border-radius);
  text-decoration: none;
  color: inherit;
  transition: var(--card-transition);
  position: relative;
}

.csr-category-card:hover {
  background: var(--white);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
}

.csr-category-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(29, 32, 137, 0.08);
}

.csr-category-card:hover .csr-category-icon {
  background: var(--primary-color);
}

.csr-category-icon i {
  font-size: 1.375rem;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.csr-category-card:hover .csr-category-icon i {
  color: var(--white);
}

.csr-category-content {
  flex: 1;
}

.csr-category-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 0.25rem 0;
  transition: color 0.3s ease;
}

.csr-category-card:hover .csr-category-title {
  color: var(--primary-color);
}

.csr-category-description {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

.csr-category-arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.csr-category-card:hover .csr-category-arrow {
  background: var(--primary-color);
}

.csr-category-arrow i {
  font-size: 0.875rem;
  color: var(--primary-color);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.csr-category-card:hover .csr-category-arrow i {
  color: var(--white);
  transform: translateX(3px);
}

.csr-no-categories {
  grid-column: 1 / -1;
}

/* ----------------------------------------
   最新の取り組みセクション
---------------------------------------- */
.csr-latest-section {
  padding: 80px 0;
}

.csr-posts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.csr-post-card {
  background: var(--white);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--card-transition);
}

.csr-post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.csr-post-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.csr-post-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--background-light);
}

.csr-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--animation-easing);
}

.csr-post-card:hover .csr-post-thumb img {
  transform: scale(1.05);
}

.csr-post-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--background-light) 100%
  );
}

.csr-post-thumb-placeholder i {
  font-size: 3rem;
  color: var(--border-light);
}

.csr-post-body {
  padding: 1.5rem;
}

.csr-post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.csr-post-meta time {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-family: var(--font-en);
}

.csr-post-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.csr-post-badge {
  display: inline-block;
  padding: 0.1875rem 0.625rem;
  background: var(--primary-light);
  color: var(--primary-color);
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.csr-post-title {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-color);
  margin: 0 0 0.75rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.csr-post-card:hover .csr-post-title {
  color: var(--primary-color);
}

.csr-post-excerpt {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0 0 1rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.csr-post-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
}

.csr-post-readmore-icon {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.csr-post-card:hover .csr-post-readmore-icon {
  transform: translateX(4px);
}

.csr-no-posts {
  grid-column: 1 / -1;
}

/* View Allボタン */
.csr-view-all {
  margin-top: 3rem;
  text-align: center;
}

.csr-view-all-btn {
  display: inline-block;
}

/* ----------------------------------------
   CSR最下部バナーセクション
---------------------------------------- */
.csr-bottom-banners {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--gradient-subtle);
}

.csr-bottom-banners__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.csr-bottom-banners__item {
  line-height: 0;
}

.csr-bottom-banners__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}

.csr-bottom-banners__link img {
  width: auto;
  max-width: min(100%, 228px);
  height: auto;
  vertical-align: top;
}

/* ----------------------------------------
   SDGs宣言書（SDGs）セクション
---------------------------------------- */
.csr-declaration {
  padding: 80px 0;
}

.csr-declaration__summary {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.csr-declaration__summary-text {
  font-size: clamp(1rem, 0.9111rem + 0.3951vw, 1.4rem);
  line-height: 2;
  color: var(--text-color);
  font-weight: 500;
  margin: 0;
}

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

/* カード */
.csr-declaration__card {
  background: var(--background-light);
  border-radius: var(--card-border-radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--card-transition);
  display: flex;
  flex-direction: column;
}

.csr-declaration__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.csr-declaration__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

/* カードヘッダー */
.csr-declaration__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.csr-declaration__card-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--gradient-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.csr-declaration__card-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.csr-declaration__card-titles {
  flex: 1;
}

.csr-declaration__card-title-en {
  display: block;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 0.125rem;
}

.csr-declaration__card-title-ja {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.4;
}

/* 約束リスト */
.csr-declaration__card-points {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}

.csr-declaration__card-point {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-color);
}

.csr-declaration__card-point:last-child {
  margin-bottom: 0;
}

.csr-declaration__card-point i {
  color: var(--primary-color);
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* SDGsバッジエリア */
.csr-declaration__sdgs {
  background: var(--white);
  border-radius: 10px;
  padding: 1rem;
  margin-top: auto;
  border: 1px solid rgba(29, 32, 137, 0.08);
}

.csr-declaration__sdgs-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.625rem;
  letter-spacing: 0.04em;
}

.csr-declaration__sdgs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.csr-declaration__sdgs-item {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.csr-declaration__sdgs-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* フォールバック（画像読込失敗時の番号表示） */
.csr-declaration__sdgs-fallback {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-en);
}

/* PDFボタン */
.csr-declaration__pdf {
  text-align: center;
  margin-top: 2rem;
}

.csr-declaration__pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 50px;
  transition: var(--transition-default);
  box-shadow: 0 4px 15px rgba(29, 32, 137, 0.2);
}

.csr-declaration__pdf-btn:hover {
  opacity: 0.9;
  color: var(--white);
}

.csr-declaration__pdf-btn i {
  font-size: 1.125rem;
}

.csr-declaration__pdf-btn i:last-child {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* ガイドライン注記 */
.csr-declaration__guideline {
  margin-top: 2.5rem;
  text-align: center;
}

.csr-declaration__guideline-text {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

.csr-declaration__guideline-text a {
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: var(--transition-default);
}

.csr-declaration__guideline-text a:hover {
  color: var(--primary-color);
}

.csr-declaration__guideline-text a i {
  font-size: 0.6875rem;
  margin-left: 0.25rem;
  opacity: 0.7;
}

/* ----------------------------------------
   レスポンシブ対応
---------------------------------------- */
@media screen and (max-width: 1399.98px) {
  .csr-posts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media screen and (max-width: 991.98px) {
  .csr-declaration__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .csr-declaration__card {
    padding: 1.75rem;
  }

  .csr-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .csr-pillar-card {
    padding: 2rem 1.5rem;
  }

  .csr-bottom-banners {
    padding: 2.25rem 0;
  }
}

@media screen and (max-width: 767.98px) {
  .page-csr .heading.section-title .title-wrapper {
    display: grid;
    gap: 0;
  }

  /* CSR宣言書セクション - モバイル */
  .csr-declaration {
    padding: 60px 0;
  }

  .csr-intro__main-logo {
    display: none;
  }

  .csr-declaration__summary {
    margin-bottom: 2rem;
  }

  .csr-declaration__summary-text br {
    display: none;
  }

  .csr-declaration__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .csr-declaration__card {
    padding: 1.5rem;
  }

  .csr-declaration__card-header {
    margin-bottom: 1.25rem;
  }

  .csr-declaration__card-icon {
    width: 48px;
    height: 48px;
  }

  .csr-declaration__card-icon i {
    font-size: 1.25rem;
  }

  .csr-declaration__card-title-ja {
    font-size: 1.125rem;
  }

  .csr-declaration__card-points {
    margin-bottom: 1.25rem;
  }

  .csr-declaration__card-point {
    font-size: 0.8125rem;
  }

  .csr-declaration__sdgs {
    padding: 0.875rem;
  }

  .csr-declaration__sdgs-item {
    width: 28px;
    height: 28px;
  }

  .csr-declaration__sdgs-fallback {
    width: 28px;
    height: 28px;
    font-size: 0.6875rem;
  }

  .csr-declaration__pdf-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .csr-declaration__guideline {
    margin-top: 2rem;
  }

  .csr-declaration__guideline-text {
    font-size: 0.75rem;
  }

  .csr-declaration__guideline-text br {
    display: none;
  }

  .csr-intro-section {
    padding: 0 0 60px 0;
  }

  .csr-intro-lead br {
    display: none;
  }

  .csr-anchor-nav {
    gap: 1rem;
  }

  .csr-anchor-link {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  .csr-pillars-section,
  .csr-categories-section,
  .csr-latest-section {
    padding: 60px 0;
  }

  .csr-pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .csr-pillar-card {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .csr-pillar-icon {
    width: 64px;
    height: 64px;
    margin: 0;
    flex-shrink: 0;
  }

  .csr-pillar-icon i {
    font-size: 1.5rem;
  }

  .csr-pillar-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .csr-pillar-description {
    font-size: 0.875rem;
  }

  .csr-categories-grid {
    grid-template-columns: 1fr;
  }

  .csr-posts-grid {
    grid-template-columns: 1fr;
  }

  .csr-post-body {
    padding: 1.25rem;
  }

  .csr-bottom-banners {
    padding: 2rem 0;
  }

  .csr-bottom-banners__list {
    gap: 1rem 1.25rem;
  }

  .csr-bottom-banners__link img {
    max-width: min(100%, 200px);
  }
}

@media screen and (max-width: 479.98px) {
  .csr-anchor-nav {
    flex-direction: column;
    align-items: center;
  }

  .csr-anchor-link {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .csr-pillar-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .csr-category-card {
    padding: 1.25rem;
  }

  .csr-category-icon {
    width: 48px;
    height: 48px;
  }

  .csr-category-icon i {
    font-size: 1.125rem;
  }

  .csr-bottom-banners {
    padding: 1.75rem 0;
  }

  .csr-bottom-banners__link img {
    max-width: min(100%, 180px);
  }
}

@media screen and (min-width: 768px) {
  .page-csr .heading.section-title .bar {
    width: 80px;
  }

  .page-csr .heading.section-title .bar::before {
    width: 30px;
  }
}

@media screen and (min-width: 1200px) {
  .page-csr .heading.section-title {
    flex-direction: row;
    align-items: center;
    gap: 0;
    margin-bottom: 120px;
  }

  .page-csr .heading.section-title .bar {
    width: 110px;
    margin-right: 10px;
  }

  .page-csr .heading.section-title .bar::before {
    width: 40px;
  }
}

/* =================================================
   ビジネスサポート事業 詳細ページ（新構成）
   ================================================= */

/* A. About（ビジネスサポート事業について） */
.bs-about {
  padding: 0 0 80px 0;
}

.bs-about__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8rem;
  align-items: flex-start;
}

.bs-about__lead {
  font-size: clamp(1.5rem, 1.3269rem + 0.7692vw, 2.25rem);
  font-weight: 800;
  line-height: 1.8;
  margin: 0 0 2rem;
}

.bs-about__description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
}

.bs-about__image {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  padding: 2rem;
  background: var(--gradient-subtle);
  border-radius: var(--border-radius-sm);
}

.bs-about__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
}

.bs-about__placeholder {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--gradient-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bs-about__placeholder i {
  font-size: 4rem;
  color: var(--border-light);
}

/* B. 選ばれる理由（強み3つ） */
.common-strengths {
  padding: 80px 0;
  margin-bottom: 40px;
}

.common-strengths__list {
  margin-top: 3rem;
}

.common-strength-item {
  display: grid;
  grid-template-columns: minmax(150px, 190px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid var(--border-light);
}

.common-strength-item:last-child {
  border-bottom: 1px solid var(--border-light);
}

.common-strength-item__visual {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--gradient-subtle);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.common-strength-item__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.8rem;
}

.common-strength-item__visual i {
  font-size: clamp(3rem, 2.8615rem + 0.6154vw, 3.6rem);
  line-height: 1;
  background: var(--gradient-diagonal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
}

.common-strength-item__content {
  min-width: 0;
}

.common-strength-item__point {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 22px;
  padding: 0.2rem 0.9rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.common-strength-item__title {
  margin: 0 0 1.25rem;
  color: var(--text-color);
  font-size: clamp(1.35rem, 1.05rem + 1.15vw, 2rem);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.common-strength-item__subtitle {
  margin: -0.7rem 0 1rem;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.common-strength-item__description {
  margin: 0;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.8;
}

/* B. サービス一覧（見出しのみ） */
.bs-service-overview {
  padding: 80px 0;
}

/* C. サービス詳細（4セクション） */

.bs-service-detail:last-of-type {
  border-bottom: none;
}

.bs-service-detail__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8rem;
  align-items: start;
}

/* h2 の次から数えて 2・4…番目のブロックで画像左右反転（旧 nth-child(even) と同等） */
.bs-service-overview
  > .bs-service-detail:nth-child(odd)
  .bs-service-detail__wrapper {
  direction: rtl;
}

.bs-service-overview
  > .bs-service-detail:nth-child(odd)
  .bs-service-detail__wrapper
  > * {
  direction: ltr;
}

.bs-service-detail__heading {
  margin: 0 0 1rem;
}

.bs-service-detail__title {
  font-size: clamp(1.35rem, 1.05rem + 1.15vw, 2rem);
  font-weight: 900;
  margin: 0;
}

.bs-service-detail__lead {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0 0 1.5rem;
  font-weight: 600;
}

.bs-service-detail__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.5rem;
  row-gap: 0.5rem;
}

.bs-service-detail__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.75rem, 0.7212rem + 0.1282vw, 0.875rem);
  color: var(--text-color);
  line-height: 1.6;
}

.bs-service-detail__features li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 1px;
  background-color: currentColor;
  flex-shrink: 0;
}

.bs-service-detail__image {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.bs-service-detail__image img {
  max-width: 660px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.bs-service-detail__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(
    135deg,
    var(--background-light),
    rgba(29, 32, 137, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.bs-service-detail__placeholder i {
  font-size: 4rem;
  color: var(--border-light);
}

/* レスポンシブ対応 - ビジネスサポート */
@media screen and (max-width: 1199.98px) {
  .bs-about__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bs-about__image {
    order: -1;
  }

  .bs-service-detail__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bs-service-overview
    > .bs-service-detail:nth-child(odd)
    .bs-service-detail__wrapper {
    direction: ltr;
  }

  .bs-service-detail__image {
    order: -1;
  }

  .cmn--btn-wrap {
    justify-content: flex-end;
  }
}

@media screen and (max-width: 991.98px) {
  .common-strength-item {
    grid-template-columns: minmax(120px, 160px) 1fr;
    gap: 2rem;
  }
}

@media screen and (max-width: 767.98px) {
  .bs-about {
    padding: 60px 0;
  }

  .bs-about__wrapper {
    margin-top: 2rem;
  }

  .common-strengths {
    padding: 60px 0;
  }

  .common-strength-item {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 2rem 0;
  }

  .common-strength-item__visual {
    max-width: 190px;
  }

  .bs-service-overview {
    padding: 60px 0;
  }

  .bs-service-detail {
    padding: 40px 0;
  }
}

@media screen and (max-width: 479.98px) {
  .common-strength-item__description {
    font-size: 0.9375rem;
  }

  .bs-service-detail__placeholder i {
    font-size: 3rem;
  }
}

/* =================================================
   住宅サポート事業（Residential Solutions）
   ================================================= */

/* B. About（住宅サポート事業とは） */
.rs-about {
  padding: 80px 0;
}

.rs-about__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8rem;
  align-items: flex-start;
  margin-top: 2.5rem;
}

.rs-about__lead {
  font-size: clamp(1.5rem, 1.3269rem + 0.7692vw, 2.25rem);
  font-weight: 800;
  line-height: 1.8;
  margin: 0 0 2rem;
}

.rs-about__description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
}

.rs-about__image {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  padding: 2rem;
  background: var(--gradient-subtle);
  border-radius: var(--border-radius-sm);
}

.rs-about__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
}

.rs-about__placeholder {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--gradient-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-about__placeholder i {
  font-size: 4rem;
  color: var(--border-light);
}

/* C. Main Services（4本柱）概要 */
.rs-main-services {
  padding: 80px 0;
  border-radius: 20px;
  margin-bottom: 40px;
}

/* D. サービス詳細（4セクション） */
.rs-service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.rs-service-detail:first-of-type {
  padding: 0 0 80px 0;
}

.rs-service-detail:last-of-type {
  border-bottom: none;
}

.rs-service-detail__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8rem;
  align-items: start;
}

.rs-service-detail--reverse .rs-service-detail__wrapper {
  grid-template-columns: 1fr 1.2fr;
}

.rs-service-detail--reverse .rs-service-detail__text {
  order: 2;
}

.rs-service-detail--reverse .rs-service-detail__image {
  order: 1;
}

.rs-service-detail__number {
  display: block;
  font-family: var(--font-en);
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-subtle);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.rs-service-detail__title {
  font-size: clamp(1.35rem, 1.05rem + 1.15vw, 2rem);
  font-weight: 900;
  margin: 0 0 1rem 0;
}

.rs-service-detail__catch {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0 0 1.5rem;
  font-weight: 600;
}

.rs-service-detail__lead {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0 0 1.5rem;
}

.rs-service-detail__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
}

.rs-service-detail__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-color);
  line-height: 1.5;
}

.rs-service-detail__features li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 1px;
  background-color: currentColor;
  flex-shrink: 0;
}

.rs-service-detail__action {
  margin-top: 1.5rem;
}

.rs-service-detail__image {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.rs-service-detail__image img {
  max-width: 660px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.rs-service-detail__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(
    135deg,
    var(--background-light),
    var(--theme-accent-light)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-service-detail__placeholder i {
  font-size: 4rem;
  color: var(--theme-accent);
  opacity: 0.5;
}

/* E. Gran Support（内包サービス） */
.rs-gran-support {
  padding: 80px 0;
  border-radius: 20px;
  margin: 40px 0;
}

/* キャッチ画像 */
.rs-gran-support__hero-image {
  margin: 2rem 0 3rem;
  overflow: hidden;
}

.rs-gran-support__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-width: 600px;
  max-height: 400px;
  margin-inline: auto;
}

.rs-gran-support__hero-caption {
  margin: 0.5rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #666;
}

.rs-gran-support__intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.rs-gran-support__lead {
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.rs-gran-support__description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
}

.rs-gran-support__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.rs-gran-support__badge {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-color);
  background: var(--background-surface);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  line-height: 1.4;
}

.rs-gran-support__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-top: 2rem;
  text-align: center;
}

.rs-gran-support__note i {
  color: var(--theme-accent);
}

.rs-gran-support__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.rs-gran-support__action {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.rs-gran-support__action .cmn--btn {
  justify-content: space-between;
  width: min(100%, 360px);
  min-height: 56px;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--primary-color);
  border-radius: 999px;
  background: var(--white);
  box-sizing: border-box;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.rs-gran-support__action .cmn--btn-text {
  font-weight: 700;
}

.rs-gran-support__action .cmn--btn-icon {
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
}

.rs-gran-support__action .cmn--btn-icon::after {
  content: none;
}

.rs-gran-support__action .cmn--btn:hover,
.rs-gran-support__action .cmn--btn:focus-visible {
  background: var(--primary-color);
  color: var(--white);
}

/* アクセシビリティ：視覚的に非表示 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =================================================
   住宅サポート事業 レスポンシブ対応
   ================================================= */

/* タブレット（lg未満 / 1399.98px以下） */
@media screen and (max-width: 1399.98px) {
  .rs-hero__pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .rs-about__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .rs-about__image {
    order: -1;
    padding: 1rem;
  }

  .rs-service-detail__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .rs-service-detail--reverse .rs-service-detail__wrapper {
    grid-template-columns: 1fr;
  }

  .rs-service-detail--reverse .rs-service-detail__text {
    order: unset;
  }

  .rs-service-detail__image,
  .rs-service-detail--reverse .rs-service-detail__image {
    order: -1;
  }

  .rs-gran-support__actions {
    gap: 0.875rem;
  }
}

/* スマホ（md未満 / 767.98px以下） */
@media screen and (max-width: 767.98px) {
  .rs-hero {
    padding: 0 0 40px 0;
  }

  .rs-hero__pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .rs-hero__pillar-card {
    padding: 1rem 0.75rem;
  }

  .rs-hero__pillar-icon {
    width: 40px;
    height: 40px;
  }

  .rs-hero__pillar-icon i {
    font-size: 1rem;
  }

  .rs-hero__pillar-title {
    font-size: 0.75rem;
  }

  .rs-about {
    padding: 60px 0;
  }

  .rs-about__wrapper {
    margin-top: 2rem;
  }

  .rs-service-detail {
    padding: 50px 0;
  }

  .rs-service-detail__number {
    font-size: 2.5rem;
  }

  .rs-gran-support__badges {
    gap: 0.625rem;
  }

  .rs-gran-support__badge {
    width: calc(50% - 0.3125rem);
    text-align: center;
  }

  .rs-gran-support__actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .rs-gran-support__action {
    width: 100%;
  }

  .rs-gran-support__action .cmn--btn {
    width: 100%;
    max-width: 100%;
  }
}

/* 小さいスマホ（480px以下） */
@media screen and (max-width: 479.98px) {
  .rs-hero__pillars {
    grid-template-columns: 1fr 1fr;
  }

  .rs-service-detail__placeholder i {
    font-size: 3rem;
  }

  .rs-gran-support__badge {
    width: 100%;
  }
}

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

/* ページ背景グラデーション */
.contact-page {
  position: relative;
  min-height: 100vh;
}

.contact-page__background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--accent-gold-light) 0%,
    var(--background-light) 35%,
    var(--primary-light) 65%,
    var(--accent-gold-light) 100%
  );
  z-index: -1;
}

/* ヒーローセクション（タイトル非表示・グラデーション背景用） */
.contact-page .contact-hero {
  display: none;
}

/* フォームセクション */
.contact-form-section {
  padding: 100px 0 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* フォームカード */
.contact-form-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

/* カードヘッダー */
.contact-form-card__header {
  padding: 50px 50px 30px;
  text-align: left;
}

.contact-form-card__title-ja {
  font-size: 0.9375rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
  margin: 0 0 32px;
  letter-spacing: 0.04em;
}

.contact-form-card__title-en {
  font-family: var(--font-en);
  font-size: clamp(2rem, 1.6rem + 1.8vw, 3rem);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0;
}

.contact-form-card__description {
  font-size: 1rem;
  color: var(--text-color);
  margin: 0 0 1.5rem;
  line-height: 1.8;
}

.contact-form-card__notices {
  margin: 0;
}

.contact-form-card__notice {
  font-size: 0.875rem;
  color: var(--text-color);
  margin: 0 0 0.5rem;
  line-height: 1.4;
  text-indent: -1em;
  padding-left: 1em;
}

.contact-form-card__notice:last-child {
  margin-bottom: 0;
}

.contact-form-card__notice a {
  color: var(--secondary-color);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-card__notice a:hover {
  text-decoration: none;
}

/* カードボディ（フォーム） */
.contact-form-card__body {
  padding: 0 50px 30px;
}

/* カードフッター */
.contact-form-card__footer {
  padding: 20px 50px 50px;
}

.contact-form-card__footer-note {
  font-size: 0.875rem;
  color: var(--text-color);
  margin: 0 0 0.5rem;
  line-height: 1.7;
}

.contact-form-card__footer-note:last-child {
  margin-bottom: 0;
}

.contact-form-card__footer-note .privacy-link {
  color: var(--secondary-color);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-card__footer-note .privacy-link:hover {
  text-decoration: none;
}

/* プレースホルダー（フォームがない場合） */
.contact-form-placeholder {
  text-align: center;
  padding: 60px 20px;
  background: var(--background-light);
  border-radius: 10px;
}

.contact-form-placeholder p {
  margin: 0 0 0.5rem;
  color: var(--text-light);
}

/* =================================================
   Contact Form 7 カスタムスタイル
   ================================================= */

/* フォームグループ */
.contact-page .wpcf7-form .form-group {
  margin-bottom: 1.75rem;
}

.contact-page .wpcf7-form .form-group:last-of-type {
  margin-bottom: 0;
}

/* フォームラベル */
.contact-page .wpcf7-form label {
  display: block;
  margin-bottom: 1.5rem;
}

.contact-page .wpcf7-form .form-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-color);
  font-size: 0.9375rem;
}

.contact-page .wpcf7-form .form-label p {
  margin-bottom: 0;
}

/* 必須バッジ */
.contact-page .wpcf7-form .required-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-warm);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

/* 任意バッジ */
.contact-page .wpcf7-form .optional-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text-light);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

/* フォームセクションタイトル */
.contact-page .wpcf7-form .form-section-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-light);
}

.contact-page .wpcf7-form .form-section-title:not(:first-child) {
  margin-top: 2.5rem;
}

/* フォーム注釈 */
.contact-page .wpcf7-form .form-note {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin: 0.5rem 0 0;
  line-height: 1.6;
}

.contact-page .wpcf7-form .form-note--top {
  margin: 0 0 0.75rem;
}

/* 2カラムレイアウト */
.contact-page .wpcf7-form .form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.contact-page .wpcf7-form .form-group--half {
  flex: 1;
  margin-bottom: 0;
}

/* チェックボックスグループ */
.contact-page .wpcf7-form .checkbox-group {
  background: var(--background-light);
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
}

.contact-page .wpcf7-form .checkbox-group .wpcf7-list-item {
  display: block;
  margin: 0 0 0.75rem;
}

.contact-page .wpcf7-form .checkbox-group .wpcf7-list-item:last-child {
  margin-bottom: 0;
}

.contact-page .wpcf7-form .checkbox-group .wpcf7-list-item-label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-color);
  cursor: pointer;
  line-height: 1.5;
}

.contact-page .wpcf7-form .checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--primary-color);
  cursor: pointer;
  flex-shrink: 0;
}

/* テキスト入力・セレクト共通 */
.contact-page .wpcf7-form input[type="text"],
.contact-page .wpcf7-form input[type="email"],
.contact-page .wpcf7-form input[type="tel"],
.contact-page .wpcf7-form input[type="url"],
.contact-page .wpcf7-form select,
.contact-page .wpcf7-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  font-family: var(--font-ja);
  color: var(--text-color);
  background: var(--white);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contact-page .wpcf7-form input[type="text"]:focus,
.contact-page .wpcf7-form input[type="email"]:focus,
.contact-page .wpcf7-form input[type="tel"]:focus,
.contact-page .wpcf7-form input[type="url"]:focus,
.contact-page .wpcf7-form select:focus,
.contact-page .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(253, 205, 114, 0.2);
}

/* プレースホルダー */
.contact-page .wpcf7-form input::placeholder,
.contact-page .wpcf7-form textarea::placeholder {
  color: var(--text-lighter);
}

/* セレクトボックス（ドロップダウン） */
.contact-page .wpcf7-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
  padding-right: 48px;
  cursor: pointer;
}

/* テキストエリア */
.contact-page .wpcf7-form textarea {
  min-height: 180px;
  resize: vertical;
  line-height: 1.8;
}

/* 送信ボタン */
.contact-page .wpcf7-form input[type="submit"],
.contact-page .wpcf7-form button[type="submit"] {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 2rem auto 0;
  padding: 18px 40px;
  background: #333;
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-ja);
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-page .wpcf7-form input[type="submit"]:hover,
.contact-page .wpcf7-form button[type="submit"]:hover {
  background: #1a1a1a;
  /* transform: translateY(-2px); */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-page .wpcf7-form input[type="submit"]:active,
.contact-page .wpcf7-form button[type="submit"]:active {
  transform: translateY(0);
}

/* バリデーションエラー */
.contact-page .wpcf7-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #e74c3c;
}

.contact-page .wpcf7-form .wpcf7-not-valid {
  border-color: #e74c3c !important;
}

/* レスポンスメッセージ */
.contact-page .wpcf7-form .wpcf7-response-output {
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  text-align: center;
}

.contact-page .wpcf7-form .wpcf7-mail-sent-ok {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.contact-page .wpcf7-form .wpcf7-validation-errors,
.contact-page .wpcf7-form .wpcf7-spam-blocked {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

/* スピナー（送信中） */
.contact-page .wpcf7-form .wpcf7-spinner {
  margin: 1rem auto 0;
  display: block;
}

/* =================================================
   お問い合わせページ レスポンシブ対応
   ================================================= */

@media screen and (max-width: 767.98px) {
  .contact-form-card {
    border-radius: var(--border-radius-md);
  }

  .contact-form-card__header {
    padding: 35px 25px 20px;
  }

  .contact-form-card__body {
    padding: 0 25px 20px;
  }

  .contact-form-card__footer {
    padding: 15px 25px 35px;
  }

  /* 2カラム → 1カラム */
  .contact-page .wpcf7-form .form-row {
    flex-direction: column;
    gap: 1.25rem;
  }

  .contact-page .wpcf7-form .form-group--half {
    margin-bottom: 0;
  }

  .contact-page .wpcf7-form .form-section-title {
    font-size: 1rem;
    margin-top: 2rem;
  }

  .contact-page .wpcf7-form .checkbox-group {
    padding: 1rem 1.25rem;
  }

  .contact-page .wpcf7-form .checkbox-group .wpcf7-list-item-label {
    font-size: 0.875rem;
  }

  .contact-page .wpcf7-form input[type="text"],
  .contact-page .wpcf7-form input[type="email"],
  .contact-page .wpcf7-form input[type="tel"],
  .contact-page .wpcf7-form input[type="url"],
  .contact-page .wpcf7-form select,
  .contact-page .wpcf7-form textarea {
    padding: 12px 14px;
    font-size: 16px; /* iOSのズーム防止 */
  }

  .contact-page .wpcf7-form textarea {
    min-height: 150px;
  }

  .contact-page .wpcf7-form input[type="submit"],
  .contact-page .wpcf7-form button[type="submit"] {
    max-width: 100%;
    padding: 16px 30px;
  }
}

@media screen and (max-width: 479.98px) {
  .contact-form-card__header {
    padding: 30px 20px 15px;
  }

  .contact-form-card__body {
    padding: 0 20px 15px;
  }

  .contact-form-card__footer {
    padding: 10px 20px 30px;
  }

  .contact-form-card__title-en {
    font-size: 2rem;
  }

  .contact-form-card__description {
    font-size: 0.9375rem;
  }

  .contact-form-card__notice,
  .contact-form-card__footer-note {
    font-size: 0.8125rem;
  }

  .contact-page .wpcf7-form .form-label {
    font-size: 0.875rem;
  }
}

/* =================================================
   プライバシーポリシーページ
   ================================================= */

/* リード文セクション */
.privacy-header {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color);
}

.privacy-lead {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-color);
  margin: 0;
}

/* 各セクション */
.privacy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color);
}

.privacy-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* セクションタイトル */
.privacy-section__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 1.25rem;
  padding-left: 1rem;
  border-left: 4px solid var(--secondary-color);
  line-height: 1.4;
}

/* セクション本文 */
.privacy-section__text {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--text-color);
  margin: 0 0 1rem;
}

.privacy-section__text:last-child {
  margin-bottom: 0;
}

/* セクションリスト */
.privacy-section__list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.privacy-section__list li {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-color);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.privacy-section__list li:last-child {
  margin-bottom: 0;
}

.privacy-section__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--secondary-color);
  border-radius: 50%;
}

/* お問い合わせ窓口 */
.privacy-contact__address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 2;
  color: var(--text-color);
  margin-top: 1.5rem;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--secondary-color);
}

/* =================================================
   プライバシーポリシーページ レスポンシブ対応
   ================================================= */

@media screen and (max-width: 767.98px) {
  .privacy-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    padding-top: 40px;
  }

  .privacy-lead {
    font-size: 0.9375rem;
    line-height: 1.9;
  }

  .privacy-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .privacy-section__title {
    font-size: 1.125rem;
    padding-left: 0.875rem;
  }

  .privacy-section__text,
  .privacy-section__list li {
    font-size: 0.875rem;
  }

  .privacy-contact__address {
    padding: 1.25rem 1.5rem;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 479.98px) {
  .privacy-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .privacy-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .privacy-section__title {
    font-size: 1rem;
    padding-left: 0.75rem;
    border-left-width: 3px;
  }

  .privacy-section__text,
  .privacy-section__list li {
    font-size: 0.8125rem;
  }

  .privacy-section__list li {
    padding-left: 1.25rem;
  }

  .privacy-section__list li::before {
    width: 5px;
    height: 5px;
    top: 0.55em;
  }

  .privacy-contact__address {
    padding: 1rem 1.25rem;
    font-size: 0.8125rem;
    border-left-width: 3px;
  }
}

/* =================================================
   パートナー企業ページ
   ================================================= */

/* リードセクション */
.partner-lead-section {
  padding: 80px 0 80px 0;
}

.partner-lead-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.partner-lead-text {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.75rem);
  font-weight: 700;
  line-height: 1.8;
  color: var(--primary-color);
  margin: 0 0 1.5rem;
}

.partner-lead-description {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-color);
  margin: 0;
}

/* パートナー一覧セクション */
.partner-list-section {
  padding: 80px 0;
  background: var(--gradient-subtle-light);
}

/* グリッドレイアウト */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* パートナーカード */
.partner-card {
  background: var(--white);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-default);
  display: flex;
  flex-direction: column;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-dark);
}

/* カードビジュアル部分 */
.partner-card__visual {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--background-light) 0%,
    rgba(29, 32, 137, 0.05) 100%
  );
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.partner-card__logo {
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-card__logo-placeholder {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-light);
}

.partner-card__logo-placeholder i {
  font-size: 2.5rem;
  color: var(--border-light);
}

.partner-card__category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

/* カードボディ部分 */
.partner-card__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.partner-card__header {
  margin-bottom: 1rem;
}

.partner-card__name {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-color);
  margin: 0 0 0.25rem;
  line-height: 1.4;
}

.partner-card__name-en {
  display: block;
  font-family: var(--font-en);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.partner-card__description {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0 0 1.5rem;
}

/* サービスリスト */
.partner-card__services {
  background: var(--gradient-subtle-light);
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.partner-card__services-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.partner-card__services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.partner-card__services-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--text-color);
  background: var(--white);
  padding: 0.375rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(29, 32, 137, 0.08);
}

.partner-card__services-list li i {
  color: var(--primary-color);
  font-size: 0.875rem;
}

/* カードフッター */
.partner-card__footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.partner-card__since {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-light);
}

.partner-card__since i {
  color: var(--primary-color);
}

.partner-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  transition: var(--transition-default);
}

.partner-card__link:hover {
  background: var(--primary-color);
  color: var(--white);
}

.partner-card__link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.partner-card__link:hover i {
  transform: translate(2px, -2px);
}

/* 空状態 */
.partner-empty {
  text-align: center;
  padding: 80px 20px;
  background: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
  margin-top: 3rem;
}

.partner-empty__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: var(--background-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-empty__icon i {
  font-size: 2.5rem;
  color: var(--border-light);
}

.partner-empty__text {
  font-size: 1.125rem;
  color: var(--text-light);
  margin: 0;
}

/* パートナーシップについてセクション */
.partner-about-section {
  padding: 80px 0 120px;
}

.partner-about-inner {
  background: linear-gradient(
    135deg,
    rgba(29, 32, 137, 0.04) 0%,
    rgba(255, 90, 60, 0.04) 100%
  );
  border-radius: var(--border-radius-md);
  padding: 60px;
  text-align: center;
  border: 1px solid rgba(29, 32, 137, 0.08);
}

.partner-about-title {
  margin: 0 0 2rem;
}

.partner-about-title__en {
  display: block;
  font-family: var(--font-en);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.partner-about-title__ja {
  display: block;
  font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  font-weight: 800;
  color: var(--primary-color);
}

.partner-about-content {
  margin: 0 auto 2rem;
}

.partner-about-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-color);
  margin: 0 0 0.75rem;
}

.partner-about-content p:last-child {
  margin-bottom: 0;
}

.partner-about-cta {
  margin-top: 2.5rem;
}

/* =================================================
   パートナー企業ページ レスポンシブ対応
   ================================================= */

@media screen and (max-width: 991.98px) {
  .partner-grid {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
  }
}

@media screen and (max-width: 767.98px) {
  .partner-lead-section {
    padding: 60px 0 60px 0;
  }

  .partner-lead-text br {
    display: none;
  }

  .partner-list-section {
    padding: 60px 0;
  }

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

  .partner-card__visual {
    padding: 2rem;
    min-height: 140px;
  }

  .partner-card__body {
    padding: 1.5rem;
  }

  .partner-card__name {
    font-size: 1.25rem;
  }

  .partner-about-section {
    padding: 60px 0 80px;
  }

  .partner-about-inner {
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
  }

  .partner-about-content p {
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 479.98px) {
  .partner-lead-text {
    font-size: 1.125rem;
  }

  .partner-lead-description {
    font-size: 0.9375rem;
  }

  .partner-card__visual {
    padding: 1.5rem;
    min-height: 120px;
  }

  .partner-card__logo {
    max-width: 160px;
    max-height: 60px;
  }

  .partner-card__logo-placeholder {
    width: 80px;
    height: 80px;
  }

  .partner-card__logo-placeholder i {
    font-size: 2rem;
  }

  .partner-card__category {
    font-size: 0.6875rem;
    padding: 0.25rem 0.625rem;
  }

  .partner-card__body {
    padding: 1.25rem;
  }

  .partner-card__name {
    font-size: 1.125rem;
  }

  .partner-card__description {
    font-size: 0.875rem;
  }

  .partner-card__services {
    padding: 1rem;
  }

  .partner-card__services-list li {
    font-size: 0.8125rem;
    padding: 0.25rem 0.625rem;
  }

  .partner-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .partner-about-inner {
    padding: 30px 20px;
  }

  .partner-empty {
    padding: 60px 20px;
  }

  .partner-empty__icon {
    width: 80px;
    height: 80px;
  }

  .partner-empty__icon i {
    font-size: 2rem;
  }

  .partner-empty__text {
    font-size: 1rem;
  }
}

/* ====================================================
   グループ企業ページ - 新デザイン
   シンプル・横並びレイアウト
   ==================================================== */

/* リードセクション */
.group-lead-section {
  padding: 60px 0 40px;
}

.group-lead-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.group-lead-text {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.75rem);
  font-weight: 700;
  line-height: 1.8;
  color: var(--primary-color);
  margin: 0;
}

/* 企業一覧セクション */
.group-list-section {
  padding: 80px 0;
}

/* 企業リスト */
.group-company-list {
  margin-top: 3rem;
  border-top: 1px solid var(--border-color, #ddd);
}

/* 企業アイテム */
.group-company-item {
  border-bottom: 1px solid var(--border-color, #ddd);
  padding: 40px 0;
}

.group-company-item__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* 企業情報（左側） */
.group-company-item__info {
  flex: 1;
  width: 100%;
}

.group-company-item__name {
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  font-weight: 800;
  color: var(--text-color);
  margin: 0 0 0.5rem;
  line-height: 1.4;
}

.group-company-item__description {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-light, #666);
  margin: 0 0 1.25rem;
}

/* リンクボタン */
.group-company-item__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.group-company-item__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-color);
  background: transparent;
  border: 1px solid var(--border-color, #ddd);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.group-company-item__link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.group-company-item__link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.group-company-item__link:hover i {
  transform: translate(2px, -2px);
}

/* 企業ロゴ（右側） */
.group-company-item__logo {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.group-company-item__logo img {
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.group-company-item__logo-placeholder {
  width: 80px;
  height: 80px;
  background: var(--background-light, #f5f5f5);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.group-company-item__logo-placeholder i {
  font-size: 2rem;
  color: var(--border-light, #ccc);
}

/* 空状態 */
.group-company-empty {
  text-align: center;
  padding: 80px 20px;
  margin-top: 3rem;
  background: var(--background-light, #f9f9f9);
  border-radius: var(--border-radius-md, 12px);
}

.group-company-empty__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.group-company-empty__icon i {
  font-size: 2.5rem;
  color: var(--border-light, #ccc);
}

.group-company-empty__text {
  font-size: 1.125rem;
  color: var(--text-light, #666);
  margin: 0;
}

/* =================================================
   グループ企業ページ レスポンシブ対応
   ================================================= */

@media screen and (max-width: 767.98px) {
  .group-lead-section {
    padding: 40px 0 20px;
  }

  .group-lead-text br {
    display: none;
  }

  .group-list-section {
    padding: 30px 0 80px;
  }

  .group-company-item {
    padding: 30px 0;
  }

  .group-company-item__content {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
  }

  .group-company-item__logo {
    width: auto;
    justify-content: flex-start;
  }

  .group-company-item__logo img {
    max-height: none;
  }

  .group-company-item__name {
    font-size: 1.125rem;
  }

  .group-company-item__description {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .group-company-item__links {
    gap: 0.5rem;
  }

  .group-company-item__link {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
}

@media screen and (max-width: 479.98px) {
  .group-lead-text {
    font-size: 1.125rem;
  }

  .group-company-item {
    padding: 24px 0;
  }

  .group-company-item__links {
    flex-direction: column;
    width: 100%;
  }

  .group-company-item__link {
    justify-content: center;
    width: 100%;
  }

  .group-company-empty {
    padding: 60px 20px;
  }

  .group-company-empty__icon {
    width: 80px;
    height: 80px;
  }

  .group-company-empty__icon i {
    font-size: 2rem;
  }

  .group-company-empty__text {
    font-size: 1rem;
  }
}

/* ====================================================
   Service Accordion - サービス詳細アコーディオン
   シンプル・ミニマルデザイン
   ==================================================== */

.service-accordion-group {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-light, #e5e7eb);
}

.service-accordion {
  border-bottom: 1px solid var(--border-light, #e5e7eb);
  background: transparent;
}

.service-accordion__summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}

.service-accordion__summary::-webkit-details-marker {
  display: none;
}

.service-accordion__summary::marker {
  display: none;
  content: "";
}

.service-accordion__summary:hover {
  color: var(--primary-color, #1d2089);
}

.service-accordion__summary:hover .service-accordion__title {
  color: var(--primary-color, #1d2089);
}

.service-accordion__summary:focus {
  outline: none;
}

.service-accordion__summary:focus-visible {
  outline: 2px solid var(--primary-color, #1d2089);
  outline-offset: 2px;
  border-radius: 4px;
}

.service-accordion__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-light, #6b7280);
  font-size: 1rem;
  transition: color 0.2s ease;
}

.service-accordion__summary:hover .service-accordion__icon,
.service-accordion[open] .service-accordion__icon {
  color: var(--primary-color, #1d2089);
}

.service-accordion__title {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-color);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.service-accordion[open] .service-accordion__title {
  color: var(--primary-color, #1d2089);
}

.service-accordion__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-light, #6b7280);
  font-size: 0.75rem;
  transition:
    transform 0.25s ease,
    color 0.2s ease;
}

.service-accordion[open] .service-accordion__toggle {
  transform: rotate(180deg);
  color: var(--primary-color, #1d2089);
}

.service-accordion__content {
  padding: 0 0 1rem 1.75rem;
  animation: accordionFadeIn 0.2s ease;
}

@keyframes accordionFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.service-accordion__list {
  margin: 0;
  padding: 0 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.service-accordion__list li {
  font-size: 0.8125rem;
  color: var(--text-color);
  line-height: 1.7;
  position: relative;
}

.service-accordion__list li::marker {
  color: var(--text-light, #6b7280);
}

.service-accordion__list--numbered {
  padding-left: 1.25rem;
}

.service-accordion__list--numbered li::marker {
  color: var(--primary-color, #1d2089);
  font-weight: 500;
  font-size: 0.75rem;
}

.service-accordion__list--faq {
  list-style: none;
  padding-left: 0;
  gap: 0.5rem;
}

.service-accordion__list--faq li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-color);
  line-height: 1.7;
}

.service-accordion__list--faq li i {
  color: var(--text-light, #6b7280);
  font-size: 0.6875rem;
  flex-shrink: 0;
}

/* レスポンシブ対応 */
@media (max-width: 767.98px) {
  .service-accordion-group {
    margin-top: 1.25rem;
  }

  .service-accordion__summary {
    padding: 0.75rem 0;
    gap: 0.625rem;
  }

  .service-accordion__icon {
    font-size: 0.875rem;
  }

  .service-accordion__title {
    font-size: 0.8125rem;
  }

  .service-accordion__content {
    padding: 0 0 0.875rem 1.5rem;
  }

  .service-accordion__list {
    gap: 0.25rem;
  }

  .service-accordion__list li,
  .service-accordion__list--faq li {
    font-size: 0.75rem;
  }

  .service-accordion__list--faq li i {
    font-size: 0.625rem;
  }
}

/* =================================================
   ビジネスサポート事業 概要版スタイル追加
   ================================================= */

/* 詳しく見るボタンのラッパー調整 */
.bs-service-detail__action {
  margin-top: 1.5rem;
}

/* 概要版サービス詳細カードの調整 */
.bs-service-detail--summary .bs-service-detail__features {
  margin-bottom: 0;
}

@media screen and (max-width: 767.98px) {
  .bs-service-detail__features {
    grid-template-columns: 1fr;
  }

  .bs-service-detail__action {
    margin-top: 1.25rem;
  }
}

/* =================================================
   サービス詳細ページ専用スタイル
   ================================================= */

/* サービス詳細ページ全体 */
.service-detail-page {
  --service-accent: var(--primary-color);
}

/* サービスヒーロー */
.service-hero {
  padding: 60px 0 60px 0;
  position: relative;
  overflow: hidden;
}

/* 背景画像付きヒーロー */
.service-hero--with-bg {
  --hero-bg-opacity: 0.2; /* 背景画像の透過度（0〜1で調整可能） */
  padding: 100px 0;
}

/* 背景画像用の疑似要素（透過調整可能） */
.service-hero--with-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--border-radius-sm);
  opacity: var(--hero-bg-opacity);
  z-index: 0;
}

.service-hero--with-bg .service-hero__content {
  position: relative;
  z-index: 1;
}

.service-hero__logo {
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.service-hero__logo img {
  width: auto;
  height: 280px;
  max-width: none;
  object-fit: contain;
}

.service-hero__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-hero__catch {
  font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2.25rem);
  font-weight: 900;
  color: var(--theme-accent);
  margin: 0 0 2rem;
  line-height: 1.4;
}

.service-hero__description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
}

/* Vision セクション */
.service-vision {
  position: relative;
  padding: 80px 0;
  margin-bottom: 40px;
  overflow: hidden;
}

.service-vision > * {
  position: relative;
  z-index: 1;
}

.service-vision__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap:clamp(2.5rem, 2.1538rem + 1.5385vw, 4rem);
  align-items: center;
}

.service-vision__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-vision__catch {
  font-size: clamp(1.5rem, 1.3269rem + 0.7692vw, 2.25rem);
  font-weight: 800;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
}

/* 汎用アクセントテキスト（グラデーション）
   どのセクションでも <span class="catch-accent">…</span> で利用可能 */
.catch-accent,
.service-vision__catch-accent,
.service-current-initiatives__catch-accent {
  background: var(--gradient-diagonal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-vision__lead {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-color);
  margin: 0;
}

.service-vision__diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: min(100%, 480px);
  margin: 0 auto;
  overflow: visible;
}

.service-vision__rings {
  --vision-ring-size: 50%;
  --vision-core-size: 58%;
  --vision-top-x: 50%;
  --vision-top-y: 30%;
  --vision-bl-x: 26%;
  --vision-bl-y: 67%;
  --vision-br-x: 74%;
  --vision-br-y: 67%;

  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  isolation: isolate;
}

.service-vision__item {
  position: absolute;
  width: var(--vision-ring-size);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.service-vision__item--top {
  left: var(--vision-top-x);
  top: var(--vision-top-y);
}

.service-vision__item--bottom-left {
  left: var(--vision-bl-x);
  top: var(--vision-bl-y);
}

.service-vision__item--bottom-right {
  left: var(--vision-br-x);
  top: var(--vision-br-y);
}

.service-vision__ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  mix-blend-mode: multiply;
  -webkit-mask: radial-gradient(circle closest-side, transparent 78%, #000 79%);
  mask: radial-gradient(circle closest-side, transparent 78%, #000 79%);
}

.service-vision__item--top .service-vision__ring {
  background: linear-gradient(135deg, #8fd8cc 0%, #6bb8e8 100%);
}

.service-vision__item--bottom-left .service-vision__ring {
  background: linear-gradient(135deg, #7ec4f0 0%, #5598dc 100%);
}

.service-vision__item--bottom-right .service-vision__ring {
  background: linear-gradient(135deg, #8ba8f0 0%, #a892e8 100%);
}

.service-vision__core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: var(--vision-core-size);
  aspect-ratio: 1;
  min-width: 0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.25rem;
  padding: 0.45rem 0.4rem;
  z-index: 3;
}

.service-vision__core-num {
  font-family: var(--font-en, sans-serif);
  font-size: clamp(0.75rem, 0.68rem + 0.3vw, 0.9375rem);
  font-weight: 400;
  color: rgba(29, 32, 137, 0.55);
  letter-spacing: 0.08em;
  line-height: 1;
}

.service-vision__core-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.service-vision__core-icon i {
  font-size: clamp(1.25rem, 1.1rem + 0.4vw, 1.5rem);
  color: var(--primary-color, #1d2089);
}

.service-vision__core-title {
  font-size: clamp(0.75rem, 0.68rem + 0.25vw, 0.9375rem);
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.3;
  margin: 0;
  white-space: nowrap;
}

.service-vision__details {
  display: grid;
  grid-template-columns: auto 1px 1fr;
  row-gap: 2rem;
  column-gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-vision__detail {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  align-items: start;
}

.service-vision__detail-num {
  font-size: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  font-weight: 300;
  color: rgba(29, 32, 137, 0.25);
  line-height: 1;
  letter-spacing: 0.02em;
  width: 2.5ch;
  text-align: right;
}

.service-vision__detail-bar {
  width: 1px;
  background: var(--border-light, #d1d5db);
  align-self: stretch;
  min-height: 3rem;
}

.service-vision__detail-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0 0 0.5rem;
}

.service-vision__detail-description {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
}

@media (max-width: 1399.98px) {
  .service-vision__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-vision__diagram {
    max-width: min(100%, 480px);
  }

  .service-vision__rings {
    width: min(100%, 420px);
  }
}

@media (max-width: 767.98px) {
  .service-vision {
    padding: 60px 0;
  }

  .service-vision__diagram {
    width: min(100%, 360px);
    max-width: 360px;
  }

  .service-vision__rings {
    --vision-ring-size: 57%;
    --vision-core-size: 54%;
    --vision-top-y: 26%;
    --vision-bl-x: 24%;
    --vision-br-x: 77%;
    --vision-bl-y: 70%;
    --vision-br-y: 70%;
    width: min(100%, 360px);
  }

  .service-vision__core {
    padding: 0.4rem 0.35rem;
  }

  .service-vision__core-title {
    font-size: 0.8125rem;
  }

  .service-vision__details {
    margin-top: 1.5rem;
    row-gap: 1.5rem;
    column-gap: 1.25rem;
  }
}

@media (max-width: 479.98px) {
  .service-vision__diagram {
    width: min(100%, 320px);
    max-width: 320px;
  }

  .service-vision__rings {
    --vision-ring-size: 50%;
    --vision-core-size: 58%;
    --vision-top-y: 30%;
    --vision-bl-x: 28%;
    --vision-br-x: 73%;
    --vision-bl-y: 68%;
    --vision-br-y: 68%;
    width: min(100%, 320px);
  }

  .service-vision__core {
    padding: 0.35rem 0.3rem;
  }

  .service-vision__core-num {
    font-size: 0.8rem;
  }

  .service-vision__core-title {
    font-size: 0.75rem;
  }
}

.service-current-initiatives {
  padding: 80px 0;
}

.service-current-initiatives__inner {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-current-initiatives__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 0.6154rem + 6.1538vw, 8rem);
  margin-bottom: 2.5rem;
}

.service-current-initiatives__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-current-initiatives__catch {
  font-size: clamp(1.5rem, 1.3269rem + 0.7692vw, 2.25rem);
  font-weight: 800;
  line-height: 1.7;
  margin: 0;
  color: var(--text-color);
}

.service-current-initiatives__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-color);
}

.service-current-initiatives__visual {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  position: relative;
}

.service-current-initiatives__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-pipe-treatment__figure {
  margin: 0;
}

.service-pipe-treatment__note {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-color-light, #888);
  text-align: right;
}

.service-current-initiatives__slider {
  width: 100%;
  height: 100%;
}

.service-current-initiatives__slide {
  height: 100%;
}

.service-current-initiatives__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-current-initiatives__pagination {
  position: absolute;
  left: 0 !important;
  right: 0;
  bottom: 0.75rem !important;
  z-index: 2;
}

.service-current-initiatives__pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.8);
  opacity: 0.7;
}

.service-current-initiatives__pagination .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

.service-current-initiatives__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.service-current-initiative-card {
  padding: 1.25rem;
  min-height: 100%;
}

.service-current-initiative-card__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.service-current-initiative-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-subtle);
}

.service-current-initiative-card__icon i {
  font-size: 1.8rem;
  line-height: 1;
  background: var(--gradient-diagonal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
}

.service-current-initiative-card__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.service-current-initiative-card__num {
  display: inline-flex;
  width: fit-content;
  font-family: var(--font-en, sans-serif);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  color: rgba(29, 32, 137, 0.75);
  border-bottom: 1px solid #bcc5ea;
  padding-bottom: 0.2rem;
}

.service-current-initiative-card__title {
  margin: 0;
  font-size: clamp(1.25rem, 1.2154rem + 0.1538vw, 1.4rem);
  line-height: 1.4;
  font-weight: 700;
  color: var(--text-color);
}

.service-current-initiative-card__description {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-color);
}

.service-current-initiatives__message {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  border: 1px solid #d7dbeb;
  border-radius: var(--border-radius-sm);
  background: var(--gradient-subtle-light);
  padding: 1rem 1.25rem;
}

.service-current-initiatives__message-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccd2ea;
  background: #fff;
  color: var(--primary-color, #1d2089);
}

.service-current-initiatives__message-icon i {
  font-size: 1.3rem;
  line-height: 1;
}

.service-current-initiatives__message-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-color);
}

@media (max-width: 1399.98px) {
  .service-current-initiatives__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-current-initiatives__slide img {
    object-fit: contain;
  }

  .service-current-initiatives {
    padding: 64px 0;
  }

  .service-current-initiatives__intro {
    grid-template-columns: 1fr;
    /* gap: 1.25rem; */
  }

  .service-current-initiatives__visual {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

  .service-current-initiatives__pagination {
    bottom: 0.5rem !important;
  }
}

@media (max-width: 767.98px) {
  .service-current-initiatives {
    padding: 56px 0;
  }

  /* SP時は visual を上、content を下に入れ替え */
  .service-current-initiatives__visual {
    order: 1;
  }

  .service-current-initiatives__content {
    order: 2;
  }

  /* 法人用（reverse）は逆順：content を上、visual を下に */
  .usage-section--reverse .service-current-initiatives__content {
    order: 1;
  }

  .usage-section--reverse .service-current-initiatives__visual {
    order: 2;
  }

  .service-current-initiatives__inner {
    gap: 1rem;
  }

  .service-current-initiatives__cards {
    grid-template-columns: 1fr;
  }

  .service-current-initiative-card {
    padding: 0;
  }

  .service-current-initiative-card__icon {
    width: 48px;
    height: 48px;
  }

  .service-current-initiative-card__icon i {
    font-size: 1.2rem;
  }

  .service-current-initiative-card__title {
    font-size: 1.25rem;
  }

  .service-current-initiatives__message {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.service-detail-page--favelink-international .service-features__list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail-page--favelink-international .service-features__list {
  display: grid;
  gap: 1.25rem;
}

.service-detail-page--favelink-international .service-features__item {
  height: 100%;
}

.service-detail-page--favelink-international .service-cta__inner {
  max-width: 760px;
  margin: 0 auto;
}

.service-detail-page--favelink-international .service-cta__description {
  line-height: 1.8;
}

.service-detail-page--gran-support
  .service-programs__item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.service-detail-page--gran-support .service-cta__inner {
  max-width: 780px;
  margin: 0 auto;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.page-hero-actions__button-wrapper {
  margin: 0;
}

.page-hero-dept-sub--closing {
  margin-top: 1rem;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .page-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero-actions .page-hero-actions__button-wrapper,
  .page-hero-actions .page-hero-actions__button {
    width: 100%;
    text-align: center;
  }
}

/* 共感ゾーン（全サービス共通） */
.service-empathy {
  padding: 80px 0;
}

.service-empathy__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  margin-top: 3rem;
}

.service-empathy__item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 0.875rem;
  align-items: center;
  padding: 1rem 1.125rem;
  border-radius: var(--border-radius-sm);
  background: var(--gradient-subtle-light);
}

.service-empathy__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-empathy__image img {
  display: block;
  width: min(100%, 56px);
  height: auto;
}

.service-empathy__text {
  margin: 0;
  font-size: clamp(0.875rem, 0.8462rem + 0.1282vw, 1rem);
  line-height: 1.75;
  color: var(--text-color);
}

.service-empathy__closing {
  margin: 2rem 0 0;
  font-size: clamp(0.9375rem, 0.9087rem + 0.1282vw, 1.0625rem);
  font-weight: 600;
  line-height: 1.8;
  color: var(--text-color);
  text-align: center;
}

/* サービス概要セクション */
.service-overview {
  padding: 0 0 80px 0;
}

.service-overview__inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 1fr);
  grid-template-areas: "body visual";
  justify-content: space-between;
  gap: clamp(2rem, 0.6154rem + 6.1538vw, 8rem);
  margin-top: 3rem;
}

.service-overview__visual {
  grid-area: visual;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 2rem;
  background: var(--gradient-subtle);
  border-radius: var(--border-radius-sm);
}

.service-detail-page--gran-support .service-overview__visual {
  background: #1d2089;
}

.service-overview__body {
  grid-area: body;
}

.service-overview__logo {
  display: block;
  width: min(100%, 320px);
  height: auto;
}

.service-overview__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
}

.service-overview__placeholder {
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-sm);
  background: var(--gradient-subtle-light);
}

.service-overview__placeholder i {
  font-size: 2rem;
  color: var(--primary-color);
}

.service-overview__catch {
  font-size: clamp(1.5rem, 1.3269rem + 0.7692vw, 2.25rem);
  font-weight: 800;
  line-height: 1.8;
  margin: 0 0 1.5rem;
}

.service-overview__description {
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
}

.service-overview__description-emphasis {
  display: inline;
  font-size: clamp(1.125rem, 1.0385rem + 0.3846vw, 1.5rem);
  font-weight: 700;
  padding: 0 0.15em 0.05em;
  background: linear-gradient(transparent 58%, rgba(255, 223, 93, 0.65) 58%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* サービス概要 - リード文 */
.service-overview__lead {
  line-height: 1.8;
  color: var(--text-color);
  margin: 0 0 1.25rem;
  letter-spacing: 0.02em;
}

/* サービス概要 - 4つの視点（量産型を避けたミニマルカード） */
.service-overview__points {
  list-style: none;
  margin: 3rem 0 0;
  padding: 2.5rem 0 0;
  border-top: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.5rem;
}

.service-overview-point {
  position: relative;
  padding: 0.25rem 0 0.5rem 1.5rem;
  border-left: 2px solid var(--primary-color);
}

.service-overview-point__num {
  display: inline-block;
  font-family: var(--font-en, "Inter", sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.service-overview-point__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0 0 0.5rem;
}

.service-overview-point__text {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--text-light);
  margin: 0;
}

/* サービス概要 + おすすめ対象者 統合レイアウト */
.service-overview--with-targets .service-overview__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 0rem + 6.6667vw, 8rem);
  margin-top: 2.5rem;
  align-items: stretch;
}

.service-overview__col {
  display: flex;
  flex-direction: column;
}

.service-overview__col--targets {
  background: var(--gradient-subtle, #f5f7fa);
  padding: clamp(1.5rem, 0.8rem + 2vw, 2.5rem);
  border-radius: var(--border-radius-sm, 8px);
}

.service-overview__targets-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.service-overview__targets-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.service-overview__targets-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-color);
}

.service-overview__targets-item i {
  flex-shrink: 0;
  color: var(--primary-color);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-top: 0.05em;
}

@media (max-width: 1399.98px) {
  .service-overview__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "body";
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .service-overview--with-targets .service-overview__split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* 対象者セクション */
.service-targets {
  padding: 80px 0;
  margin-bottom: 40px;
}

.service-targets__lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.service-targets__list {
  list-style: none;
  margin: 2.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-targets-card {
  position: relative;
  padding: 2rem 2rem 2rem 2.25rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  transition: var(--transition-default);
}

.service-targets-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.75rem;
  bottom: 1.75rem;
  width: 3px;
  background: var(--primary-color);
  border-radius: 0 2px 2px 0;
}

.service-targets-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-light);
}

.service-targets-card__num {
  display: inline-block;
  font-family: var(--font-en, "Inter", sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.service-targets-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0 0 0.625rem;
}

.service-targets-card__text {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--text-light);
  margin: 0;
}

/* 対象者：アイコンモザイク（教育・事業創出プログラム） */
.service-targets-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.75rem;
  list-style: none;
  padding: 0;
}

.service-targets-mosaic__item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-default);
}

.service-targets-mosaic__glyph {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  background: var(--gradient-subtle);
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    0 100%
  );
}

.service-targets-mosaic__glyph::before {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 1px;
  background: var(--gradient-diagonal);
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    0 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.service-targets-mosaic__glyph i {
  position: relative;
  z-index: 1;
  font-size: 1.65rem;
  line-height: 1;
  background: var(--gradient-diagonal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
}

.service-targets-mosaic__body {
  min-width: 0;
}

.service-targets-mosaic__label {
  display: block;
  font-family: var(--font-en, "Inter", sans-serif);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.service-targets-mosaic__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.55;
  margin: 0 0 0.625rem;
}

.service-targets-mosaic__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin: 0;
}

@media screen and (max-width: 1399.98px) {
  .service-targets-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 水を知る5つの視点（カードグリッド型：上3下2） */
.service-water-steps {
  padding: 80px 0;
  margin-bottom: 40px;
}

.service-water-steps__lead {
  font-size: clamp(1rem, 0.9712rem + 0.1282vw, 1.125rem);
  line-height: 1.8;
  color: var(--text-color);
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.water-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.water-steps-grid::after {
  display: none;
}

.water-steps-grid__molecule {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.water-step-card {
  padding: 2.5rem 2rem 2rem;
  border-bottom: 2px solid var(--border-light);
  text-align: left;
}

.water-step-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.water-step-card__number {
  font-family: var(--font-en);
  font-size: clamp(2rem, 1.7692rem + 1.0256vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text-color);
}

.water-step-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--gradient-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.water-step-card__icon i {
  font-size: 1.125rem;
  color: var(--primary-color);
}

.water-step-card__label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}

.water-step-card__label-line {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--border-color);
}

.water-step-card__label-text {
  font-family: var(--font-en);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-lighter);
  text-transform: lowercase;
}

.water-step-card__title {
  font-size: clamp(0.9375rem, 0.9087rem + 0.1282vw, 1.0625rem);
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 0.75rem;
  line-height: 1.6;
}

.water-step-card__body {
  overflow: hidden;
}

.water-step-card__text {
  font-size: clamp(0.8125rem, 0.7837rem + 0.1282vw, 0.9375rem);
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
}

.water-step-card__toggle {
  display: none;
}

/* H2O 分子構造イラスト（グリッド内独立要素） */
.water-steps-grid__molecule {
  display: flex;
  align-items: center;
  justify-content: center;
}

.h2o-molecule {
  width: 320px;
  height: auto;
}

.h2o-molecule__bond {
  stroke: var(--border-color);
  stroke-width: 2.5;
  stroke-linecap: round;
}

.h2o-molecule__atom--o {
  fill: rgba(29, 32, 137, 0.08);
  stroke: var(--primary-color);
  stroke-width: 1.5;
}

.h2o-molecule__atom--h {
  fill: rgba(85, 90, 219, 0.06);
  stroke: var(--secondary-color);
  stroke-width: 1.5;
}

.h2o-molecule__label {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  fill: var(--secondary-color);
}

.h2o-molecule__label--o {
  font-size: 16px;
  fill: var(--primary-color);
}

.h2o-molecule__angle {
  stroke: var(--text-lighter);
  stroke-width: 1;
  stroke-dasharray: 3 2;
}

.h2o-molecule__angle-text {
  font-family: var(--font-en);
  font-size: 8px;
  font-weight: 500;
  fill: var(--text-lighter);
}

.h2o-molecule__formula {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  fill: var(--primary-color);
  letter-spacing: 0.04em;
}

.h2o-molecule__sub {
  font-size: 9px;
}

/* ======================================
   コンセプト・サブコピー (water-concept)
   ====================================== */
.water-concept {
  padding: 60px 0 80px;
}

.water-concept__inner {
  background: var(--gradient-subtle-light);
  border-radius: var(--border-radius-md);
  border: 3px dotted var(--primary-color);
  padding: 3.5rem 3rem;
  padding-top: calc(28px + 2rem);
  text-align: center;
  position: relative;
}

.water-concept__scenes {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: calc(-28px - 4rem);
  margin-bottom: 2.5rem;
}

.water-concept__scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.water-concept__scene-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(29, 32, 137, 0.06);
  transition: transform 0.4s ease;
}

.water-concept__scene-icon i {
  font-size: 1.4rem;
  color: var(--primary-color);
}

.water-concept__scene-label {
  font-size: clamp(0.75rem, 0.7356rem + 0.0641vw, 0.8125rem);
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.water-concept__body {
  max-width: 800px;
  margin: 0 auto;
}

.water-concept__lead {
  font-size: clamp(0.9375rem, 0.9087rem + 0.1282vw, 1.0625rem);
  line-height: 2;
  color: var(--text-color);
  margin: 0 0 1.5rem;
}

.water-concept__emphasis {
  font-size: clamp(1rem, 0.9712rem + 0.1282vw, 1.125rem);
  line-height: 2;
  color: var(--text-color);
  margin: 0;
  font-weight: 500;
}

.concept-contrast {
  font-weight: 700;
  padding: 0.125em 0.25em;
  border-radius: 3px;
}

.concept-contrast--adjust {
  color: var(--primary-color);
  background: rgba(29, 32, 137, 0.06);
}

/* ======================================
   水導入セクション (service-water-intro)
   ====================================== */
.service-water-intro {
  position: relative;
  padding: clamp(4rem, 3.5385rem + 2.0513vw, 6rem) 0 clamp(2rem, 1.5385rem + 2.0513vw, 4rem);
}

.service-water-intro__catch {
  margin: 0 0 1.25rem;
  font-size: clamp(1.125rem, 1.0385rem + 0.3846vw, 1.5rem);
  line-height: 1.6;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
}

.service-water-intro__lead,
.service-water-intro__body {
  margin: 0;
  font-size: clamp(0.9375rem, 0.9087rem + 0.1282vw, 1.0625rem);
  line-height: 2;
  color: var(--text-color);
}

.service-water-intro__content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 0;
  align-items: end;
  position: relative;
  z-index: 2;
}

.service-water-intro__text {
  min-width: 0;
  position: relative;
  z-index: 2;
  margin-right: clamp(-4.5rem, -3.5385rem + -1.6026vw, -3rem);
  margin-bottom: clamp(1rem, 0.4231rem + 1.2821vw, 2rem);
  padding: clamp(1.5rem, 1.1538rem + 1.5385vw, 3rem);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border-radius: var(--border-radius-md);
}

.service-water-intro__lead + .service-water-intro__body {
  margin-top: 1.5rem;
}

.service-water-intro__visual {
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  background: var(--gradient-subtle);
  aspect-ratio: 5 / 3.7;
}


.service-water-intro__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1199.98px) {
  .service-water-intro {
    padding: 32px 0 16px;
    border-radius: 20px;
  }

  .service-water-intro::before,
  .service-water-intro::after {
    opacity: 0.5;
  }

  .service-water-intro__catch {
    text-align: left;
    margin-bottom: 1rem;
  }

  .service-water-intro__content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-water-intro__visual {
    order: 1;
    aspect-ratio: 16 / 10;
  }

  .service-water-intro__text {
    order: 2;
    margin-right: 0;
    margin-bottom: 0;
    padding: 0;
    backdrop-filter: none;
  }
}

/* ======================================
   活水とは (water-what-is)
   ====================================== */
.water-what-is {
  padding: 48px 0 24px;
}

.water-what-is__visual {
  margin: 0 0 2rem;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: var(--gradient-subtle);
  aspect-ratio: 16 / 7;
}

.water-what-is__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .water-what-is__visual {
    margin: 0 0 1.5rem;
    aspect-ratio: 16 / 9;
  }
}

.water-what-is__text {
  font-size: clamp(0.9375rem, 0.9087rem + 0.1282vw, 1.0625rem);
  line-height: 2;
  color: var(--text-color);
  margin: 0;
  order: 2;
}

.water-what-is__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 1.1538rem + 1.5385vw, 3rem);
  align-items: center;
}

.water-what-is__diagram {
  width: 100%;
  max-width: min(100%, 420px);
  margin: 0 auto 0 0;
  order: 1;
}

.water-what-is__diagram .service-vision__rings {
  width: min(100%, 420px);
}

.water-what-is__notes {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 0.7692rem + 1.0256vw, 2rem);
}

.water-what-is__note {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 1.5rem 1.25rem;
  background: var(--white, #fff);
  border: 1px solid rgba(29, 32, 137, 0.12);
  border-radius: var(--border-radius-md, 12px);
  box-shadow: 0 2px 8px rgba(29, 32, 137, 0.04);
}

.water-what-is__note-num {
  font-family: var(--font-en, sans-serif);
  font-size: clamp(1rem, 0.9135rem + 0.3846vw, 1.375rem);
  font-weight: 400;
  color: rgba(29, 32, 137, 0.45);
  letter-spacing: 0.08em;
  line-height: 1;
}

.water-what-is__note-label {
  font-size: clamp(1rem, 0.9519rem + 0.2137vw, 1.1875rem);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.4;
  margin: 0;
}

.water-what-is__note-text {
  font-size: clamp(0.875rem, 0.8462rem + 0.1282vw, 1rem);
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
}

.water-what-is__diagram .service-vision__core-num {
  font-size: clamp(0.9375rem, 0.8798rem + 0.2564vw, 1.1875rem);
}

.water-what-is__diagram .service-vision__core-title {
  font-size: clamp(0.9375rem, 0.8798rem + 0.2564vw, 1.1875rem);
}

/* ======================================
   用途別セクション (usage-section)
   家庭用 / 法人・事業者用 をそれぞれ独立セクションとして
   service-current-initiatives と同じトンマナで表示
   ====================================== */
.usage-section {
  --usage-accent: var(--primary-color);
  --usage-accent-soft: rgba(0, 0, 0, 0.04);
  position: relative;
  padding: 60px 0;
  margin-bottom: 24px;
}

.usage-section .service-current-initiatives__intro {
  margin-top: 2.5rem;
  margin-bottom: 6rem;
}

.usage-section--reverse .service-current-initiatives__content {
  order: 2;
}

.usage-section--reverse .service-current-initiatives__visual {
  order: 1;
}

.usage-section__points {
  list-style: none;
  margin: 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--usage-accent-soft);
  border-left: 3px solid var(--usage-accent);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

/* ---- 利用シーンカード（3カラム） ---- */
.usage-section__scenes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 0.5rem + 1.2vw, 1.75rem);
  margin: 0;
}

.usage-scene-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


.usage-scene-card__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: var(--usage-accent-soft);
}

.usage-scene-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.usage-scene-card:hover .usage-scene-card__image {
  transform: scale(1.05);
}

.usage-scene-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.25rem 1.5rem;
}

.usage-scene-card__title-en {
  display: inline-block;
  font-family: var(--font-en, sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--usage-accent);
  padding-left: 2px;
}

.usage-scene-card__title {
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-color);
  margin: 0;
}

.usage-scene-card__badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin: 0.25rem 0 0;
  padding: 0;
}

.usage-scene-card__badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--usage-accent);
  background: var(--usage-accent-soft);
  border: 1px solid var(--usage-accent);
  padding: 0.25rem 0.75rem;
}

.usage-scene-card__description {
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--text-color);
  margin: 0.25rem 0 0;
}

/* 「詳しく見る」ボタン */
.usage-scene-card__detail-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0.5rem 1.1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--usage-accent);
  background: transparent;
  border: 1px solid var(--usage-accent);
  border-radius: 999px;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.usage-scene-card__detail-btn i {
  font-size: 0.875rem;
  transition: transform 0.25s ease;
}

.usage-scene-card__detail-btn:hover,
.usage-scene-card__detail-btn:focus-visible {
  background: var(--usage-accent);
  color: #fff;
}

.usage-scene-card__detail-btn:hover i {
  transform: translateX(3px);
}

/* シーン詳細モーダル */
.scene-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 0.5rem + 2vw, 2.5rem);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.scene-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.scene-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 32, 0.6);
  backdrop-filter: blur(2px);
  border: 0;
}

.scene-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: #fff;
  border-radius: var(--border-radius-md);
  transform: translateY(16px);
  transition: transform 0.3s ease;
  -webkit-overflow-scrolling: touch;
}

.scene-modal.is-open .scene-modal__dialog {
  transform: translateY(0);
}

.scene-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1rem;
  color: var(--white);
  background: var(--text-muted);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.scene-modal__close:hover,
.scene-modal__close:focus-visible {
  opacity: 0.7;
}

.scene-modal__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(2.5rem, 1.5rem + 2vw, 3rem) clamp(1.5rem, 1rem + 1.5vw, 2.25rem) clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
}

.scene-modal__head {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.scene-modal__title {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--text-color);
  margin: 0;
}

.scene-modal__title-en {
  font-family: var(--font-en, sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-color);
  padding-left: 2px;
}

.scene-modal__visual {
  position: relative;
  background: var(--usage-accent-soft);
  border-radius: var(--border-radius-md, 12px);
  overflow: hidden;
}

.scene-modal__image {
  display: block;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;

}

.scene-modal__note {
  width: 100%;
  max-width: 560px;
  margin: -0.5rem auto 0;
  font-size: 0.6875rem;
  line-height: 1.6;
  color: var(--text-muted, #888);
  text-align: right;
}

.scene-modal__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.scene-modal__merits-label {
  margin: 0 0 0.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--usage-accent);
}

.scene-modal__merits {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem 1.5rem;
  margin: 0;
  padding: 0;
}

.scene-modal__merit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.scene-modal__merit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
  color: var(--usage-accent);
  background: var(--usage-accent-soft);
  border-radius: 50%;
}

.scene-modal__merit-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.scene-modal__merit-title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-color);
}

.scene-modal__merit-desc {
  font-size: 0.8125rem;
  line-height: 1.75;
  color: var(--text-color);
}

/* 施工事例モーダル - カテゴリタグ */
.case-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.case-modal__tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--theme-accent, var(--primary-color));
}

/* 施工事例モーダル - ビフォーアフター比較 */
.case-modal__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.case-modal__compare-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.case-modal__compare-label {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--text-muted, #6b7280);
  border-radius: 999px;
}

.case-modal__compare-label--after {
  background: var(--primary-color);
  color: #fff;
}

.case-modal__compare-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--border-radius-md, 12px);
  background: var(--usage-accent-soft);
}

.case-modal__description {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--text-color);
}

@media (max-width: 600px) {
  .scene-modal__merits {
    grid-template-columns: 1fr;
  }

  .case-modal__compare {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1399.98px) {
  .usage-section__scenes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .usage-section__scenes {
    grid-template-columns: 1fr;
  }
}

.usage-section__point {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-color);
}

.usage-section__point-icon {
  color: var(--usage-accent);
  font-size: 1.0625rem;
  line-height: 1.6;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.usage-section__point-text {
  flex: 1;
}

@media (max-width: 900px) {
  .usage-section {
    padding: 56px 0;
  }

  .usage-section--reverse .service-current-initiatives__content,
  .usage-section--reverse .service-current-initiatives__visual {
    order: initial;
  }
}

@media (max-width: 600px) {
  .usage-section {
    padding: 44px 0;
  }

  .usage-section__points {
    padding: 1rem 1.125rem;
  }
}

/* ======================================
   浄水と活水の比較 (water-comparison) - 視覚化版
   ====================================== */
.service-water-comparison {
  padding: 80px 0;
  margin-bottom: 40px;
}

.service-water-comparison--table {
  margin-bottom: 24px;
}

.service-water-comparison-table__wrap {
  margin-top: 2.5rem;
  overflow-x: auto;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  background: var(--white);
  box-shadow: var(--shadow-light);
}

.service-water-comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.service-water-comparison-table th,
.service-water-comparison-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  text-align: left;
  vertical-align: top;
}

.service-water-comparison-table thead th {
  background: var(--primary-color);
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
}

.service-water-comparison-table tbody th {
  width: 22%;
  color: var(--primary-color);
  font-weight: 800;
}

.service-water-comparison-table tbody tr:last-child th,
.service-water-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.water-comparison__lead {
  font-size: clamp(0.9375rem, 0.8943rem + 0.1923vw, 1.125rem);
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 0;
  text-align: center;
}

.water-comparison__visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-top: 3rem;
  align-items: stretch;
  max-width: 800px;
  margin-inline: auto;
}

.water-comparison__panel {
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.water-comparison__panel--purification,
.water-comparison__panel--activation {
  background: var(--white);
}

.water-comparison__panel-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-light);
}

.water-comparison__panel-label {
  display: block;
  font-size: clamp(1.125rem, 1.0674rem + 0.2564vw, 1.375rem);
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: 0.05em;
}

.water-comparison__panel-label-en {
  display: block;
  font-family: var(--font-en);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-lighter);
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
  text-transform: capitalize;
}

.water-comparison__panel-concept {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--border-radius-sm);
}

.water-comparison__panel--purification .water-comparison__panel-concept,
.water-comparison__panel--activation .water-comparison__panel-concept {
  background: var(--gradient-subtle-light);
}

.water-comparison__concept-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
}

.water-comparison__concept-icon--subtract {
  background: var(--background-surface);
}

.water-comparison__concept-icon--subtract i {
  font-size: 1.25rem;
  color: var(--text-lighter);
}

.water-comparison__concept-icon--adjust {
  background: rgba(29, 32, 137, 0.08);
}

.water-comparison__concept-icon--adjust i {
  font-size: 1.25rem;
  color: var(--primary-color);
}

.water-comparison__concept-text {
  display: block;
  font-size: clamp(0.9375rem, 0.9231rem + 0.0641vw, 1rem);
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.water-comparison__concept-desc {
  font-size: clamp(0.8125rem, 0.7981rem + 0.0641vw, 0.875rem);
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.water-comparison__panel-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.water-comparison__panel-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: clamp(0.8125rem, 0.7837rem + 0.1282vw, 0.9375rem);
  line-height: 1.7;
  color: var(--text-color);
}

.water-comparison__panel-items li i {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--primary-color);
}

.water-comparison__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.water-comparison__vs span {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-lighter);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.water-comparison__benefits {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  max-width: 800px;
  margin-inline: auto;
}

.water-comparison__benefits-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin: 0 0 1.5rem;
  letter-spacing: 0.04em;
}

.water-comparison__benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.water-comparison__benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.625rem;
  padding: 1rem 0.5rem;
}

.water-comparison__benefit i {
  font-size: 1.375rem;
  color: var(--primary-color);
}

.water-comparison__benefit span {
  font-size: clamp(0.8125rem, 0.7837rem + 0.1282vw, 0.9375rem);
  line-height: 1.6;
  color: var(--text-color);
  font-weight: 500;
}

.water-comparison__trust {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--gradient-subtle-light);
  border-radius: var(--border-radius-sm);
  border-left: 3px solid var(--primary-color);
  max-width: 800px;
  margin-inline: auto;
}

.water-comparison__trust i {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-top: 0.125rem;
}

.water-comparison__trust p {
  font-size: clamp(0.875rem, 0.8606rem + 0.0641vw, 0.9375rem);
  line-height: 1.9;
  color: var(--text-color);
  margin: 0;
  font-weight: 500;
}

.water-comparison__closing {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
}

.water-comparison__closing p {
  font-size: clamp(0.9375rem, 0.9231rem + 0.0641vw, 1rem);
  color: var(--text-color);
  margin: 0 0 1.25rem;
  line-height: 1.8;
}

.water-comparison__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  padding: 0.625rem 1.75rem;
  border: 1px solid var(--primary-color);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.water-comparison__cta-link:hover {
  background: var(--primary-color);
  color: var(--white);
}

.water-comparison__cta-link i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.water-comparison__cta-link:hover i {
  transform: translateX(4px);
}

/* ======================================
   プロセス カード型グリッド (process-cards)
   ====================================== */
.process-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 2rem 0 0;
  list-style: none;
  padding: 0;
  counter-reset: process-card;
}

.process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  line-height: 175%;
  letter-spacing: 0.02em;
}

.process-card__title {
  margin: 0 0 0.9rem;
  padding: 0 0 0.75rem;
  font-size: clamp(0.8125rem, 0.77rem + 0.19vw, 1rem);
  font-weight: 700;
  color: var(--text-color);
  line-height: 175%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid var(--border-light);
}

.process-card__title::before {
  counter-increment: process-card;
  content: counter(process-card, decimal-leading-zero);
  display: inline-grid;
  place-items: center;
  width: 2.1em;
  height: 2.1em;
  border: 1px solid #dbe4ff;
  border-radius: 999px;
  background: #f4f7ff;
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.process-card__title::after {
  content: none;
}

.process-card__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.process-card__step {
  font-size: clamp(0.75rem, 0.72rem + 0.13vw, 0.875rem);
  line-height: 1.8;
  color: var(--text-color);
  position: relative;
  padding-left: 1rem;
}

.process-card__step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: 0.65;
}

.process-card__step:not(:last-child) {
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed var(--border-light);
}

.process-card__step a {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* 提供内容セクション */
.service-contents {
  padding: 80px 0;
}

.service-contents__lead {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 0.9846rem + 4.5128vw, 6.4rem);
  margin: 2rem 0 6rem;
}

.service-contents__catch {
  font-size: clamp(1.25rem, 1.1346rem + 0.5128vw, 1.75rem);
  font-weight: 800;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}

.service-contents__description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
  text-align: left;
  margin: 0;
}

.service-contents__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 0;
  list-style: none;
  padding: 0;
}

.service-content-item {
  display: flex;
  flex-direction: row;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.service-content-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 120px;
  min-height: 120px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-sm);
}

.service-content-item__icon i {
  font-size: 2rem;
  background: var(--white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
}

.service-content-item__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 20px;
  background: var(--white);
  border-radius: var(--border-radius-sm);
}

.service-content-item__title {
  position: relative;
  display: block;
  width: fit-content;
  font-size: clamp(0.9375rem, 0.8769rem + 0.2692vw, 1.2rem);
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 0.75rem;
}

.service-content-item__description {
  font-size: clamp(0.875rem, 0.8606rem + 0.0641vw, 0.9375rem);
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

/* What We Offer：アイコン上・テキスト下のセンター揃え横並びレイアウト */
.service-contents__columns {
  --column-gap: clamp(1rem, 0.4rem + 2vw, 2rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--column-gap);
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.service-contents-column {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.75rem;
}

.service-contents-column + .service-contents-column::before {
  content: "";
  position: absolute;
  left: calc(var(--column-gap, 2rem) / -2);
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: var(--border-light, #e5e7eb);
}

.service-contents.service-contents--ipc-offer {
  padding: 0 0 80px 0;
}

/* 4列レイアウト：各行の左端・右端にも縦線（6列→4列化で欠けていた部分） */
@media (min-width: 992px) {
  .service-contents-column:nth-child(4n + 1)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: var(--border-light, #e5e7eb);
  }

  .service-contents-column:nth-child(4n)::after,
  .service-contents-column:last-child:not(:nth-child(4n))::after {
    content: "";
    position: absolute;
    right: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: var(--border-light, #e5e7eb);
  }
}

.service-contents-column__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.service-contents-column__icon i {
  font-size: 2.5rem;
  line-height: 1;
  background: var(--gradient-diagonal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
}

.service-contents-column__title {
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0 0 1rem;
  padding-bottom: 0.85rem;
}

.service-contents-column__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 32px;
  height: 1px;
  background: var(--border-light, #e5e7eb);
}

.service-contents-column__description {
  font-size: 0.8125rem;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 991.98px) {
  .service-contents__columns {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2.5rem;
  }

  .service-contents-column + .service-contents-column::before {
    display: none;
  }

  .service-contents-column:nth-child(3n + 2)::before,
  .service-contents-column:nth-child(3n + 3)::before {
    content: "";
    position: absolute;
    display: block;
    left: calc(var(--column-gap, 2rem) / -2);
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: var(--border-light, #e5e7eb);
  }

  .service-contents-column:nth-child(3n + 1)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: var(--border-light, #e5e7eb);
  }

  .service-contents-column:nth-child(3n)::after,
  .service-contents-column:last-child:not(:nth-child(3n))::after {
    content: "";
    position: absolute;
    right: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: var(--border-light, #e5e7eb);
  }
}

@media (max-width: 767.98px) {
  .service-contents__columns {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }

  .service-contents-column::before,
  .service-contents-column::after {
    display: none !important;
  }
}

.service-contents--ipc-offer .service-ipc-offer {
  padding-bottom: 8rem;
}

.service-contents--ipc-offer .service-ipc-offer__visual {
  min-width: 0;
}

.service-contents--ipc-offer .service-ipc-offer__orbital {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 1100 / 720;
  min-height: clamp(0px, 56vw, 720px);
}

.service-contents--ipc-offer .service-ipc-offer__orbital::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(240px, 50vw, 760px);
  height: clamp(150px, 32vw, 500px);
  transform: translate(-50%, -50%) rotate(-24deg);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    #4a7dff 0%,
    var(--primary-color) 45%,
    rgba(20, 60, 200, 0.5) 75%,
    transparent 100%
  );
  filter: blur(70px);
  opacity: 1;
  z-index: 1;
}

.service-contents--ipc-offer .service-ipc-offer__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.service-contents--ipc-offer .service-ipc-offer__glow--one {
  width: clamp(220px, 46vw, 700px);
  height: clamp(140px, 29vw, 460px);
  transform: translate(-55%, -50%) rotate(-24deg);
  background: radial-gradient(ellipse at center, #6a8fff 0%, transparent 70%);
  opacity: 0.5;
  filter: blur(28px);
}

.service-contents--ipc-offer .service-ipc-offer__glow--two {
  width: clamp(240px, 52vw, 780px);
  height: clamp(150px, 32vw, 500px);
  transform: translate(-45%, -52%) rotate(-24deg);
  background: radial-gradient(
    ellipse at center,
    var(--primary-color) 0%,
    transparent 72%
  );
  opacity: 0.45;
  filter: blur(36px);
}

.service-contents--ipc-offer .service-ipc-offer__noise {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(240px, 50vw, 760px);
  height: clamp(150px, 32vw, 500px);
  transform: translate(-50%, -50%) rotate(-24deg);
  border-radius: 50%;
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
  z-index: 2;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .service-contents--ipc-offer .service-ipc-offer__noise {
    opacity: 0.25;
  }
}

.service-contents--ipc-offer .service-ipc-offer__core-text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  margin: 0;
  color: var(--white);
  font-family: var(--font-en);
  font-size: clamp(0.95rem, 0.45rem + 2.4vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-shadow: 0 2px 24px rgba(0, 30, 120, 0.4);
}

.service-contents--ipc-offer .service-ipc-offer__orbit-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-contents--ipc-offer .service-ipc-offer__orbit-item {
  position: absolute;
  z-index: 4;
  width: min(360px, 32%);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.service-contents--ipc-offer .service-ipc-offer__orbit-item--1 {
  top: 0;
  right: 2%;
}

.service-contents--ipc-offer .service-ipc-offer__orbit-item--2 {
  top: 25%;
  left: 2%;
}

.service-contents--ipc-offer .service-ipc-offer__orbit-item--3 {
  bottom: 20%;
  right: -4%;
}

.service-contents--ipc-offer .service-ipc-offer__orbit-item--4 {
  bottom: 2%;
  left: 13%;
}

.service-contents--ipc-offer .service-ipc-offer__orbit-title-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  flex: 1;
}

.service-contents--ipc-offer .service-ipc-offer__orbit-title {
  margin: 0;
  font-size: clamp(0.7rem, 0.4rem + 1.4vw, 1.875rem);
  color: var(--text-color);
  font-weight: 700;
  line-height: 1.4;
}

.service-contents--ipc-offer .service-ipc-offer__orbit-title-en {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(0.6rem, 0.5rem + 0.4vw, 0.8rem);
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.service-contents--ipc-offer .service-ipc-offer__orbit-description {
  margin: clamp(0.3rem, 0.2rem + 0.4vw, 0.7rem) 0 0;
  font-size: clamp(0.7rem, 0.55rem + 0.6vw, 0.9375rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.service-contents--ipc-offer .service-ipc-offer__orbit-more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: clamp(0.4rem, 0.25rem + 0.5vw, 0.85rem);
  font-family: var(--font-en);
  font-size: clamp(0.7rem, 0.6rem + 0.4vw, 0.9rem);
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}

.service-contents--ipc-offer .service-ipc-offer__orbit-more i {
  font-size: 0.8em;
  color: var(--primary-color);
  transition: transform 0.2s ease;
}

.service-contents--ipc-offer .service-ipc-offer__orbit-more:hover {
  color: var(--primary-color);
  gap: 0.7rem;
}

.service-contents--ipc-offer .service-ipc-offer__orbit-more:hover i {
  transform: translateX(2px);
}

.service-contents--ipc-offer .service-ipc-support-areas {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 0.6154rem + 6.1538vw, 8rem);
  margin-top: clamp(2.2rem, 1.7rem + 2.2vw, 3.8rem);
  align-items: start;
}

.service-ipc-support-areas__lead {
  position: sticky;
  top: 100px;
}

.service-ipc-support-areas__catch {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
  font-weight: 800;
  line-height: 1.5;
  margin: 0 0 1rem;
}

.service-ipc-support-areas__description {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-color);
  margin: 0 0 2rem;
}

.ipc-flow-figure {
  list-style: none;
  padding: 0 0 1.5rem;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.4rem, 0.2rem + 0.4vw, 0.6rem);
}

.ipc-flow-figure__step {
  min-width: 0;
  aspect-ratio: 1 / 1;
  border: 1.5px solid var(--primary-color);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

.ipc-flow-figure__link {
  width: 100%;
  height: 100%;
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  text-decoration: none;
}

.ipc-flow-figure__label-en {
  font-weight: 600;
  font-size: clamp(0.625rem, 0.45rem + 0.5vw, 0.95rem);
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
  background: var(--gradient-diagonal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
}

.ipc-flow-figure__label-ja {
  margin: 0;
  font-weight: 500;
  font-size: clamp(0.52rem, 0.44rem + 0.25vw, 0.68rem);
  line-height: 1.35;
  color: var(--text-light);
}

.ipc-flow-figure__step--2,
.ipc-flow-figure__step--4 {
  transform: translateY(22%);
}

.service-contents--ipc-offer .service-ipc-support-areas__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-ipc-support-area {
  position: relative;
  padding: clamp(1.5rem, 1rem + 1.5vw, 2.25rem) 0;
  border-top: 1px solid var(--border-light);
}

.service-ipc-support-area:last-child {
  border-bottom: 1px solid var(--border-light);
}

.service-ipc-support-area__header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-ipc-support-area__number {
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
  margin-right: -30px;
  background: var(--gradient-subtle);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
}

.service-ipc-support-area__title {
  margin: 0;
  font-size: clamp(1.35rem, 1.05rem + 1.15vw, 2rem);
  font-weight: 800;
  line-height: 1.8;
  color: var(--text-color);
  letter-spacing: 0.01em;
}

.service-ipc-support-area__catch {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 0.9712rem + 0.1282vw, 1.125rem);
  font-weight: 600;
}

.service-ipc-support-area__description {
  margin: 0;
  font-size: clamp(0.975rem, 0.9692rem + 0.0256vw, 1rem);
  line-height: 1.8;
}

.service-ipc-support-area__tags {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 0.5rem;
}

.service-ipc-support-area__tags li {
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--gradient-subtle);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  line-height: 1.5;
}

@media screen and (max-width: 1399.98px) {
  .service-contents--ipc-offer .service-ipc-support-areas {
    grid-template-columns: 1fr;
  }

  .service-ipc-support-areas__lead {
    position: static;
  }

  .service-ipc-support-area {
    padding: 1.5rem 0;
  }
}

@media screen and (max-width: 1199.98px) {
  .service-contents--ipc-offer .service-ipc-offer__orbit-item {
    width: min(280px, 34%);
  }

  .service-contents--ipc-offer .service-ipc-offer__orbit-item--1 {
    right: 0;
  }

  .service-contents--ipc-offer .service-ipc-offer__orbit-item--2 {
    left: 0;
  }

  .ipc-flow-figure {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    /* max-width: 360px; */
    padding-bottom: 0.3rem;
  }

  .ipc-flow-figure__label-en {
    font-size: clamp(0.75rem, 0.65rem + 0.4vw, 0.95rem);
  }

  .ipc-flow-figure__step--2,
  .ipc-flow-figure__step--3,
  .ipc-flow-figure__step--4 {
    transform: none;
  }

  .ipc-flow-figure__step--2 {
    transform: translateY(18%);
  }

  .ipc-flow-figure__step--4 {
    transform: translateY(18%);
  }

}

@media screen and (max-width: 991.98px) {
  .service-contents--ipc-offer .service-ipc-offer {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
  .service-contents--ipc-offer .service-ipc-offer__orbit-description {
    display: none;
  }

  .service-contents--ipc-offer .service-ipc-offer__orbital::before {
    filter: blur(30px);
  }
}

@media screen and (max-width: 767.98px) {
  .service-contents--ipc-offer .service-ipc-offer__orbit-item--1 {
    top: -1%;
    right: 0;
  }

  .service-contents--ipc-offer .service-ipc-offer__orbit-item--2 {
    top: 16%;
    left: 0;
  }

  .service-contents--ipc-offer .service-ipc-offer__orbit-item--3 {
    bottom: 2%;
    right: 2%;
  }

  .service-contents--ipc-offer .service-ipc-offer__orbit-item--4 {
    bottom: 0;
    left: 0;
  }

  .ipc-flow-figure {
    gap: 0.4rem;
  }

  /* .ipc-flow-figure__step {
    aspect-ratio: 1.4 / 1;
    border-radius: 14px;
  } */
}

/* 特徴セクション */
.service-features {
  padding: 60px 0;
  margin-bottom: 40px;
}

.service-features__lead {
  font-size: clamp(0.9375rem, 0.9231rem + 0.0641vw, 1rem);
  line-height: 2;
  color: var(--text-color);
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.service-features__list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-features__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--gradient-subtle);
  border-radius: var(--border-radius-sm);
}

.service-features__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-light);
}

.service-features__icon i {
  font-size: 1.125rem;
  color: var(--primary-color);
}

.service-features__text {
  font-size: clamp(0.9375rem, 0.9231rem + 0.0641vw, 1rem);
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.5;
}

/* プログラム内容セクション */
.service-programs {
  padding: 80px 0;
  margin-bottom: 40px;
}

.service-programs__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

/* プログラム内容：カテゴリグループ（住まい／暮らし／事業） */
.service-programs__group {
  margin-top: 3rem;
  scroll-margin-top: 120px;
}

.service-programs__group:first-of-type {
  margin-top: 2.5rem;
}

.service-programs__group-title {
  font-size: clamp(1.375rem, 1.25rem + 0.5vw, 1.75rem);
  font-weight: 800;
  color: var(--primary-color);
  margin: 0;
  padding: 0.5rem 0 0.75rem;
  border-bottom: 3px solid var(--primary-color);
}

.service-programs__group .service-programs__list {
  margin-top: 1.5rem;
}

.service-programs__item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  transition: var(--transition-default);
}

.service-programs__item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-light);
}

.service-programs__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-color);
}

.service-programs__description {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--text-color);
  margin: 0 0 1.5rem;
}

.service-programs__items {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-programs__items li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--gradient-subtle);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary-color);
}

.service-programs__items li::before {
  content: "●";
  font-size: 0.5rem;
  color: var(--primary-color);
}

.service-programs__outro {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

.service-programs__note {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: var(--background-light);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

.service-programs__cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.service-programs__cta-inner {
  width: fit-content;
}

.service-onsite-support .section-title {
  margin-bottom: 1rem;
}

.service-onsite-support__catch {
  margin-bottom: 1.5rem;
}

.service-onsite-support__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.service-onsite-support__description {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-color);
}

.service-onsite-support__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.service-onsite-support__item {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  background: var(--white);
}

.service-onsite-support__item-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-onsite-support__item-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-subtle);
  color: var(--primary-color);
  flex-shrink: 0;
}

.service-onsite-support__item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-color);
}

.service-onsite-support__item-description {
  margin: 0.5rem 0 0;
  padding-left: 2.25rem;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-light);
}

.service-onsite-support__line-actions {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-onsite-support__line-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  background: #06c755;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.service-onsite-support__line-button:hover {
  opacity: 0.9;
  color: #fff;
}

.service-onsite-support__line-button i {
  font-size: 1rem;
}

.service-onsite-support__line-qr {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.service-onsite-support__visual {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  background: var(--white);
}

.service-onsite-support__visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.service-onsite-support__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* プログラム詳細レイアウト（subtitle + items オブジェクト） */
.service-programs__item--detailed {
  padding: 2.5rem;
}

.service-programs__subtitle {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin: -0.5rem 0 1.25rem;
}

.service-programs__items--detailed {
  display: block;
  flex-wrap: initial;
  gap: 0;
  margin: 0 0 1.25rem;
}

.service-programs__items--detailed li {
  display: block;
  padding: 1rem 0 1rem 1.25rem;
  margin: 0;
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid var(--border-light);
  border-left: 2px solid var(--primary-color);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-color);
}

.service-programs__items--detailed li:last-child {
  border-bottom: none;
}

.service-programs__items--detailed li::before {
  content: none;
}

.service-programs__item-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.375rem;
  line-height: 1.6;
}

.service-programs__item-text {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--text-light);
}

.service-detail-page--gran-support .service-programs--gran-support-cards {
  padding: 96px 0;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-programs__lead {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 3rem 0;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-programs-anchor-nav {
  display: none;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-programs-card-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 24px;
  margin-top: 2.25rem;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card {
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(280px, 40%);
  grid-template-areas:
    "body visual"
    "products products";
  align-items: stretch;
  overflow: hidden;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  scroll-margin-top: 120px;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__visual {
  grid-area: visual;
  position: relative;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  background: #eef0ff;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(36px, 7vw, 88px);
  height: 100%;
  background: linear-gradient(to right, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__visual-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eef0ff, #f8f9ff);
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__body {
  grid-area: body;
  padding: 28px;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  background: var(--gradient-diagonal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  width: fit-content;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__title {
  font-size: clamp(1.25rem, 1.0769rem + 0.7692vw, 2rem);
  line-height: 1.4;
  margin: 0 0 12px;
  font-weight: 800;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__description {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 700;
  margin: 0 0 12px;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__copy {
  font-size: 0.9375rem;
  line-height: 1.85;
  margin: 0 0 20px;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__tags li {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--service-tag-color, #1d2089);
  border: 1px solid var(--service-tag-border, transparent);
  font-size: 0.8125rem;
  font-weight: 700;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__products {
  grid-area: products;
  border-top: 1px solid var(--border-light);
  padding: 1.25rem 28px 28px;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__products-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 0.75rem;
  line-height: 1.4;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-product-card {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-product-card__visual {
  aspect-ratio: 16 / 11;
  background: var(--background-surface);
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-product-card__visual-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-light), var(--background-light));
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-product-card__body {
  padding: 0.625rem 0.6875rem 0.75rem;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-product-card__title {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text-color);
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-product-card__description {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-light);
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card--home {
  --service-tag-bg: var(--primary-light);
  --service-tag-color: var(--primary-color);
  --service-tag-border: var(--border-primary);
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card--energy {
  --service-tag-bg: var(--gradient-subtle-light);
  --service-tag-color: var(--secondary-color);
  --service-tag-border: var(--secondary-light);
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card--cleaning {
  --service-tag-bg: var(--background-light);
  --service-tag-color: var(--accent-teal);
  --service-tag-border: var(--accent-teal);
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card--security {
  --service-tag-bg: var(--accent-warm-light);
  --service-tag-color: var(--accent-warm);
  --service-tag-border: var(--accent-warm);
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card--living {
  --service-tag-bg: var(--accent-gold-light);
  --service-tag-color: var(--accent-gold);
  --service-tag-border: var(--accent-gold);
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-programs-cta {
  margin-top: 40px;
  padding: 28px;
  border-radius: 24px;
  background: #1d2089;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-programs-cta__note {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 700;
}

.service-detail-page--gran-support .service-programs--gran-support-cards .service-programs-cta__button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #fff;
  color: #1d2089;
  text-decoration: none;
  font-weight: 800;
}

@media screen and (max-width: 1399.98px) {
  .service-detail-page--gran-support .service-programs--gran-support-cards .service-programs-anchor-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
    justify-content: center;
  }

  .service-detail-page--gran-support .service-programs--gran-support-cards .service-programs-anchor-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--primary-color);
    background: var(--white);
    border: 1px solid var(--border-primary);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
    transition: var(--transition-default);
  }

  .service-detail-page--gran-support .service-programs--gran-support-cards .service-programs-anchor-nav__icon,
  .service-detail-page--gran-support .service-programs--gran-support-cards .service-programs-anchor-nav__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .service-detail-page--gran-support .service-programs--gran-support-cards .service-programs-anchor-nav__icon i {
    font-size: 0.95rem;
  }

  .service-detail-page--gran-support .service-programs--gran-support-cards .service-programs-anchor-nav__text {
    line-height: 1.45;
  }

  .service-detail-page--gran-support .service-programs--gran-support-cards .service-programs-anchor-nav__arrow i {
    font-size: 0.8rem;
  }

  .service-detail-page--gran-support .service-programs--gran-support-cards .service-programs-anchor-nav a:hover {
    color: var(--white);
    background: var(--primary-color);
    border-color: var(--primary-color);
  }
}

/* 教育・事業創出プログラム：プログラムショーケース */
.service-programs--education-showcase .service-programs__list {
  display: none;
}

.education-program-showcase {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-top: 2.75rem;
}

.education-program-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  background: var(--white);
}

.education-program-panel__inner {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 1.5rem + 2vw, 3rem);
}

.education-program-panel__label {
  display: block;
  font-family: var(--font-en, "Inter", sans-serif);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0.875rem;
}

.education-program-panel__title {
  font-size: clamp(1.375rem, 1.2rem + 0.6vw, 1.75rem);
  font-weight: 800;
  color: var(--text-color);
  line-height: 1.45;
  margin: 0 0 0.625rem;
}

.education-program-panel__subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.65;
  margin: 0 0 1rem;
}

.education-program-panel__description {
  font-size: 0.9375rem;
  line-height: 1.95;
  color: var(--text-color);
  margin: 0;
}

.education-program-panel__outro {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--text-light);
  margin: 0;
  max-width: 52rem;
}

.education-program-panel__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-light);
}

.education-program-panel__action {
  flex-shrink: 0;
}

.education-program-panel__button-wrapper {
  display: flex;
  justify-content: flex-start;
  margin: 0;
}

.education-program-panel__button {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 44px;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.education-program-panel__button-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.education-program-panel__button-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background-color: currentColor;
  transition: width 0.35s ease;
  z-index: 0;
}

.education-program-panel__button-arrow {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  line-height: 1;
}

.education-program-panel__button:hover,
.education-program-panel__button:focus-visible {
  color: var(--primary-color);
  text-decoration: none;
}

.education-program-panel__button:hover .education-program-panel__button-arrow,
.education-program-panel__button:focus-visible
  .education-program-panel__button-arrow {
  color: var(--white);
}

.education-program-panel__button:hover
  .education-program-panel__button-icon::after,
.education-program-panel__button:focus-visible
  .education-program-panel__button-icon::after {
  width: 100%;
}

/* グランプログラム：ブループリント・ジャーニー */

.education-program-panel--gran::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  transform: skewY(-4deg) scale(1.15);
  transform-origin: top left;
  opacity: 0.35;
  pointer-events: none;
}

.education-program-panel--gran::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(42%, 280px);
  height: 100%;
  background: var(--gradient-subtle);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.55;
  pointer-events: none;
}

.education-program-panel--gran .education-program-panel__content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 1rem + 2vw, 2.75rem);
  align-items: start;
}

.education-program-panel--gran .education-program-panel__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 1.25rem 0 0;
  counter-reset: none;
}

.education-program-panel--gran .education-program-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 0 1rem 0 0;
}

.education-program-panel--gran .education-program-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: calc(2.5rem + 4px);
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.education-program-panel--gran .education-program-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-family: var(--font-en, "Inter", sans-serif);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--gradient-primary);
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 8px),
    calc(100% - 8px) 100%,
    0 100%
  );
}

.education-program-panel--gran .education-program-step__title {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.5;
  margin: 0 0 0.375rem;
}

.education-program-panel--gran .education-program-step__text {
  font-size: 0.8125rem;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0;
}

/* プロハビ：習慣オーブ */

.education-program-panel--prohabi::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -8%;
  width: min(52vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--primary-color) 18%, transparent);
  box-shadow:
    0 0 0 24px color-mix(in srgb, var(--primary-color) 4%, transparent),
    0 0 0 48px color-mix(in srgb, var(--primary-color) 2%, transparent);
  pointer-events: none;
}

.education-program-panel--prohabi .education-program-panel__inner {
  display: grid;
  grid-template-columns: minmax(140px, 200px) minmax(0, 1fr);
  gap: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  align-items: start;
}

.education-program-panel--prohabi .education-program-panel__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.education-program-panel--prohabi .education-program-panel__logo img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
}

.education-program-panel--prohabi .education-program-panel__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
}

.education-program-panel--prohabi .education-program-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1.125rem 1.125rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.education-program-panel--prohabi .education-program-step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at 90% 10%,
    var(--gradient-subtle),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.education-program-panel--prohabi .education-program-step:hover {
  border-color: color-mix(
    in srgb,
    var(--primary-color) 35%,
    var(--border-light)
  );
  box-shadow: var(--shadow-light);
}

.education-program-panel--prohabi .education-program-step:hover::before {
  opacity: 1;
}

.education-program-panel--prohabi .education-program-step__num {
  font-family: var(--font-en, "Inter", sans-serif);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--gradient-diagonal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.education-program-panel--prohabi .education-program-step__body {
  position: relative;
  z-index: 1;
}

.education-program-panel--prohabi .education-program-step__title {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--text-color);
  line-height: 1.5;
  margin: 0 0 0.5rem;
}

.education-program-panel--prohabi .education-program-step__text {
  font-size: 0.8125rem;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0;
}

.education-program-panel--prohabi .education-program-panel__footer {
  grid-column: 1 / -1;
}

@media screen and (max-width: 1399.98px) {
  .education-program-panel--gran .education-program-panel__content {
    grid-template-columns: 1fr;
  }

  .education-program-panel--gran .education-program-panel__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1rem;
    padding-top: 0.5rem;
  }

  .education-program-panel--gran
    .education-program-step:not(:last-child)::after {
    display: none;
  }

  .education-program-panel--prohabi .education-program-panel__inner {
    grid-template-columns: 1fr;
  }

  .education-program-panel--prohabi .education-program-panel__logo {
    max-width: 200px;
    margin: 0 auto;
  }

  .education-program-panel--prohabi .education-program-panel__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 767.98px) {
  .education-program-showcase {
    gap: 2.5rem;
  }

  .education-program-panel--gran .education-program-panel__steps,
  .education-program-panel--prohabi .education-program-panel__steps {
    grid-template-columns: 1fr;
  }

  .education-program-panel__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .education-program-panel--prohabi .education-program-step,
  .education-program-panel__button,
  .education-program-panel__button-icon,
  .education-program-panel__button-icon::after {
    transition: none;
  }
}

/* 進め方セクション - シンプル・ミニマルデザイン */
.service-process {
  padding: 80px 0;
  margin-bottom: 40px;
}

/* 導入までの流れ（横並びステップ・番号＋アイコン） */
.service-process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 0;
  row-gap: clamp(1.25rem, 2vw, 2.25rem);
  list-style: none;
  margin: clamp(1.75rem, 3.5vw, 2.5rem) 0 0;
  padding: 0;
}

.service-process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 clamp(0.35rem, 1.25vw, 0.875rem);
  min-width: 0;
}

.service-process-step + .service-process-step::before {
  content: ">";
  position: absolute;
  left: 0;
  top: clamp(2.85rem, 2.1rem + 1.5vw, 3.55rem);
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-size: clamp(1rem, 0.5385rem + 2.0513vw, 3rem);
  font-weight: 300;
  line-height: 1;
  color: var(--border-color);
  pointer-events: none;
}

/* 4列目の次の行の先頭では行またぎの > を出さない */
.service-process-step:nth-child(4n + 1):not(:first-child)::before {
  display: none;
}

.service-process-step__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.6rem, 1.2vw, 0.85rem);
  margin-bottom: clamp(0.85rem, 1.5vw, 1.15rem);
}

.service-process-step__no {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(1.35rem, 1rem + 0.9vw, 1.85rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.service-process-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(3.5rem, 2.75rem + 2vw, 4.75rem);
  height: clamp(3.5rem, 2.75rem + 2vw, 4.75rem);
  margin-bottom: 0;
  border-radius: 50%;
  background: color-mix(
    in srgb,
    var(--primary-color, var(--accent-color)) 12%,
    transparent
  );
}

.service-process-step__icon i {
  font-size: clamp(1.35rem, 1.05rem + 0.95vw, 1.9rem);
  line-height: 1;
  background: var(--gradient-diagonal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
}

.service-process-step__title {
  margin: 0 0 clamp(0.55rem, 1.1vw, 0.85rem);
  font-size: clamp(0.8125rem, 0.74rem + 0.28vw, 0.9375rem);
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.service-process-step__desc {
  margin: 0;
  font-size: clamp(0.75rem, 0.7rem + 0.18vw, 0.875rem);
  line-height: 1.8;
  padding: 0 2em;
}

.service-process-step__desc a {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-process-step__desc a:hover {
  text-decoration: none;
}

@media screen and (max-width: 991.98px) {
  .service-process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: clamp(1.35rem, 3.5vw, 2rem);
  }

  .service-process-step + .service-process-step::before {
    top: clamp(2.65rem, 2rem + 2.8vw, 3.4rem);
    font-size: clamp(0.8125rem, 0.72rem + 0.55vw, 1.05rem);
  }

  /* 2列時は PC用の 4列目改行ルールを打ち消す */
  .service-process-step:nth-child(4n + 1):not(:first-child) {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
  }

  /* 改行直後（3番目・5番目…）では左端の > を出さない */
  .service-process-step:nth-child(2n + 1):not(:first-child)::before {
    display: none;
  }

  .service-process-step:nth-child(2n + 1):not(:first-child) {
    padding-top: clamp(1rem, 2.8vw, 1.65rem);
    margin-top: clamp(0.25rem, 1.2vw, 0.5rem);
    border-top: 1px solid var(--border-light);
  }
}

@media screen and (max-width: 767.98px) {
  .service-process {
    padding: clamp(2.5rem, 8vw, 3.75rem) 0;
    margin-bottom: clamp(1.5rem, 5vw, 2.5rem);
  }

  .service-process-steps {
    grid-template-columns: 1fr;
    row-gap: 0;
    margin-top: clamp(1.25rem, 4vw, 1.85rem);
  }

  .service-process-step:first-child {
    border-top: none;
    padding-top: 0;
  }

  .service-process-step + .service-process-step::before {
    display: none;
  }

  .service-process-step {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: clamp(1rem, 3.2vw, 1.45rem) clamp(0.5rem, 2.5vw, 1rem);
    border-top: 1px solid var(--border-light);
  }

  .service-process-step__meta {
    flex-direction: row;
    align-items: center;
    align-self: flex-start;
    margin-bottom: clamp(0.65rem, 2vw, 0.9rem);
    gap: clamp(0.65rem, 2.8vw, 1rem);
  }

  .service-process-step__no {
    font-size: clamp(1.35rem, 3.8vw + 0.75rem, 1.85rem);
    min-width: 0;
    text-align: left;
  }

  .service-process-step__icon {
    flex-shrink: 0;
    width: clamp(2.75rem, 8vw + 1.65rem, 3.5rem);
    height: clamp(2.75rem, 8vw + 1.65rem, 3.5rem);
  }

  .service-process-step__icon i {
    font-size: clamp(1.15rem, 3.2vw + 0.65rem, 1.45rem);
  }

  .service-process-step__title {
    width: 100%;
    min-width: 0;
    margin: 0 0 clamp(0.35rem, 1.2vw, 0.5rem);
    font-size: clamp(0.875rem, 2.4vw + 0.75rem, 1rem);
    line-height: clamp(1.35rem, 0.3vw + 1.28rem, 1.5rem);
  }

  .service-process-step__desc {
    width: 100%;
    min-width: 0;
    margin: 0;
    font-size: clamp(0.8125rem, 2vw + 0.7rem, 0.9375rem);
    line-height: clamp(1.45rem, 0.35vw + 1.38rem, 1.65rem);
    padding: 0;
  }
}

.service-process__list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
}

.service-process__item {
  display: flex;
  align-items: flex-start;
  padding: 0 0 2rem;
  position: relative;
}

.service-process__item:last-child {
  padding-bottom: 0;
}

.service-process__label {
  flex-shrink: 0;
  width: 100px;
}

.service-process__step-text {
  display: block;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--theme-accent);
  letter-spacing: 0.05em;
  line-height: 1;
}

.service-process__step-num {
  display: block;
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--theme-accent);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.service-process__content {
  flex: 1;
  padding-left: 2rem;
  border-left: 1px solid var(--border-light);
}

.service-process__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.service-process__description {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--text-light);
  margin: 0;
}

/* 実績紹介セクション */

.service-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.service-works__item {
  background: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-default);
}

.service-works__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.service-works__image {
  /* aspect-ratio: 16 / 10; */
  overflow: hidden;
}

.service-works__image img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.service-works__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-subtle);
}

.service-works__placeholder i {
  font-size: 3rem;
  color: var(--border-light);
}

.service-works__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.service-works__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--gradient-diagonal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
  margin-bottom: 1rem;
  padding-left: 2px;
}

.service-works__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 0.5rem;
  line-height: 1.5;
}

.service-works__description {
  font-size: 0.875rem;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
}

/* works-ipc: 実績紹介レイアウト */
.service-detail-page--works-ipc .service-works__grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.service-detail-page--works-ipc .service-works__item {
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  align-items: center;
  gap: 8rem;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-light);
}

.service-detail-page--works-ipc .service-works__item:hover {
  transform: none;
  box-shadow: none;
}

.service-detail-page--works-ipc .service-works__images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-detail-page--works-ipc .service-works__images--single {
  grid-template-columns: minmax(0, 1fr);
}

.service-detail-page--works-ipc .service-works__body {
  padding: 0;
}

/* .service-detail-page--works-ipc .service-works__category {
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: var(--text-light);
  letter-spacing: 0.08em;
  font-size: 0.6875rem;
  margin-bottom: 0.875rem;
} */

.service-detail-page--works-ipc .service-works__title {
  font-size: clamp(1.375rem, 1.3058rem + 0.3077vw, 1.675rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.service-detail-page--works-ipc .service-works__description {
  font-size: 0.9375rem;
  line-height: 1.8;
}

.service-detail-page--works-ipc .service-works__description + .service-works__description {
  margin-top: 0.375rem;
}

.service-detail-page--works-ipc .service-works__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
  margin: 0;
}

.service-detail-page--works-ipc .service-works__tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-light);
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--text-color);
  background: var(--gradient-subtle-light);
}

.service-detail-page--works-ipc .service-works__detail-button-wrapper {
  margin-top: 1.25rem;
  display: flex;
  justify-content: flex-end;
}

/* よくある相談（FAQ）セクション */
.service-faq {
  padding: 80px 0;
}

.service-faq__list {
  margin-top: 2.5rem;
}

.service-faq__item {
  border-bottom: 1px solid var(--border-light);
}

.service-faq__question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.service-faq__question::-webkit-details-marker {
  display: none;
}

.service-faq__question::marker {
  display: none;
  content: "";
}

.service-faq__q-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--primary-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
}

.service-faq__q-text {
  flex: 1;
  font-size: clamp(0.9375rem, 0.9231rem + 0.0641vw, 1rem);
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.5;
}

.service-faq__toggle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.service-faq__toggle i {
  font-size: 1rem;
  color: var(--text-light);
}

.service-faq__item[open] .service-faq__toggle {
  transform: rotate(180deg);
}

.service-faq__answer {
  padding: 0 0 1.5rem 3rem;
}

.service-faq__a-text {
  font-size: clamp(0.875rem, 0.8606rem + 0.0641vw, 0.9375rem);
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
  padding: 1em;
  border-left: 3px solid var(--primary-color);
  background: var(--gradient-subtle-light);
}

/* サービス詳細ページCTA */
.service-cta {
  padding: 60px;
  background: var(--gradient-subtle);
  border-radius: 20px;
  text-align: center;
  margin-top: 40px;
}

.service-cta__title {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.75rem);
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 1rem;
}

.service-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-cta__description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin: 0 0 2rem;
}

.service-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--gradient-diagonal);
  color: var(--white);
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.service-cta__button:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  color: var(--white);
}

/* サービス詳細レスポンシブ */
@media screen and (max-width: 1399.98px) {
  .service-detail-page--gran-support .service-programs--gran-support-cards .service-programs-card-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "body"
      "products";
  }

  .service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__visual {
    display: none;
  }

  .service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 1199.98px) {
  .service-contents__list {
    grid-template-columns: 1fr;
  }
  .service-contents__lead {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
  }
}
@media screen and (max-width: 767.98px) {
  .service-hero {
    padding: 0 0 40px 0;
  }

  .service-hero--with-bg {
    padding: 60px 20px;
    border-radius: var(--border-radius-md);
    margin-bottom: 16px;
  }

  .service-hero--with-bg::before {
    border-radius: var(--border-radius-md);
  }

  .service-hero__logo {
    display: none;
  }
  .service-features__list {
    grid-template-columns: 1fr;
  }

  .service-overview__visual {
    min-height: 160px;
    padding: 1.5rem;
  }

  .service-overview__logo {
    width: min(100%, 240px);
  }

  .service-overview__placeholder {
    min-height: 160px;
  }

  .service-overview__points {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.25rem;
    padding-top: 2rem;
  }

  .service-overview-point {
    padding-left: 1.25rem;
  }

  .service-targets {
    padding: 60px 0;
  }

  .service-targets__list {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .service-targets-card {
    padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  }

  .service-targets-card::before {
    top: 1.25rem;
    bottom: 1.25rem;
  }

  .service-targets-mosaic {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .service-targets-mosaic__item {
    padding: 1.5rem;
    gap: 1.125rem;
  }

  .service-programs__item--detailed {
    padding: 1.75rem;
  }

  .service-programs__items--detailed li {
    padding: 0.875rem 0 0.875rem 1rem;
  }

  .service-onsite-support__layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-onsite-support__catch {
    margin-bottom: 1.25rem;
  }

  .service-onsite-support__item {
    padding: 0.75rem 0.875rem;
  }

  .service-onsite-support__line-actions {
    gap: 0.75rem;
  }

  .service-onsite-support__line-button {
    padding: 0.75rem 1.125rem;
    font-size: 0.875rem;
  }

  .service-onsite-support__line-qr {
    width: 64px;
    height: 64px;
  }

  .service-onsite-support__visual-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .service-empathy__list {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .service-empathy__item {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 0.75rem;
    padding: 1.5rem;
  }

  .service-empathy__image {
    justify-content: center;
  }

  .service-empathy__image img {
    width: min(100%, 48px);
  }

  .service-content-item__icon {
    width: 80px;
    min-height: 80px;
  }

  .service-content-item__icon i {
    font-size: 1.5rem;
  }

  .service-content-item__body {
    padding: 16px;
  }

  .service-detail-page--favelink-international .service-cta {
    padding: 40px 24px;
  }

  .service-water-steps {
    padding: 60px 0;
    margin-bottom: 24px;
  }

  .service-water-steps__lead {
    text-align: left;
    line-height: 1.8;
  }

  .water-steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 2.5rem;
  }

  .water-steps-grid::after {
    display: none;
  }

  .water-step-card:nth-child(4),
  .water-step-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .water-step-card:nth-child(5) {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  .water-step-card {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
  }

  .water-step-card__header {
    margin-bottom: 0.25rem;
  }

  .water-step-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .water-step-card__icon i {
    font-size: 1rem;
  }

  .water-step-card__label {
    margin-bottom: 1rem;
  }

  .water-step-card__title {
    margin-bottom: 0;
  }

  .water-steps-grid__molecule {
    grid-column: auto;
    grid-row: auto;
    order: 99;
    padding: 1rem 0;
  }

  .h2o-molecule {
    width: 100px;
  }

  .water-step-card__body {
    max-height: 0;
    transition:
      max-height 0.35s ease,
      opacity 0.3s ease;
    opacity: 0;
  }

  .water-step-card.is-open .water-step-card__body {
    max-height: 300px;
    opacity: 1;
  }

  .water-step-card__text {
    padding-top: 0.75rem;
  }

  .water-step-card__toggle {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.75rem;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.02em;
  }

  .water-step-card__toggle i {
    font-size: 0.625rem;
    transition: transform 0.3s ease;
  }

  .water-step-card.is-open .water-step-card__toggle i {
    transform: rotate(180deg);
  }

  .water-step-card__toggle-close {
    display: none;
  }

  .water-step-card.is-open .water-step-card__toggle-open {
    display: none;
  }

  .water-step-card.is-open .water-step-card__toggle-close {
    display: inline;
  }

  /* コンセプトセクション レスポンシブ */
  .water-concept {
    padding: 40px 0 60px;
  }

  .water-concept__inner {
    padding: 2.5rem 1.5rem;
    padding-top: calc(24px + 1.5rem);
  }

  .water-concept__scenes {
    gap: 1.25rem;
    margin-top: calc(-28px - 3rem);
    margin-bottom: 2rem;
  }

  .water-concept__scene-icon {
    width: 48px;
    height: 48px;
  }

  .water-concept__scene-icon i {
    font-size: 1.125rem;
  }

  .water-concept__lead {
    line-height: 1.9;
  }

  .water-concept__emphasis {
    line-height: 1.9;
  }

  .service-water-intro {
    padding: 32px 0 16px;
  }

  .service-water-intro__catch {
    text-align: left;
    margin-bottom: 1rem;
  }

  .service-water-intro__content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-water-intro__lead + .service-water-intro__body {
    margin-top: 1rem;
  }

  .service-water-intro__visual {
    aspect-ratio: 16 / 10;
  }

  .water-what-is {
    padding: 32px 0 16px;
  }

  .water-what-is__body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .water-what-is__diagram {
    order: 2;
    margin: 0 auto;
  }

  .water-what-is__text {
    order: 1;
  }

  .water-what-is__notes {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .water-what-is__note {
    padding: 1.25rem 1.25rem 1rem;
  }

  /* 比較セクション レスポンシブ */
  .service-water-comparison {
    padding: 60px 0;
    margin-bottom: 24px;
  }

  .water-comparison__lead {
    text-align: left;
  }

  .water-comparison__visual {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 2rem;
  }

  .water-comparison__panel {
    padding: 1.75rem 1.25rem;
    border-radius: var(--border-radius-sm);
  }

  .water-comparison__panel--activation {
    margin-top: -1px;
  }

  .water-comparison__panel-concept {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .water-comparison__concept-icon {
    width: 40px;
    height: 40px;
  }

  .water-comparison__vs {
    padding: 0.75rem 0;
  }

  .water-comparison__benefits {
    margin-top: 2rem;
    padding: 1.5rem 1.25rem;
  }

  .water-comparison__benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .water-comparison__benefit {
    padding: 0.75rem 0.5rem;
  }

  .water-comparison__trust {
    margin-top: 2rem;
    padding: 1.25rem 1.25rem;
    gap: 0.75rem;
  }

  .water-comparison__closing {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  /* プロセスカード レスポンシブ */
  .process-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 1.5rem;
  }

  .process-card {
    padding: 1rem;
  }

  .process-card__title {
    margin-bottom: 0.75rem;
    padding-bottom: 0.625rem;
    font-size: 0.9375rem;
  }

  .process-card__title::before {
    width: 1.9em;
    height: 1.9em;
    font-size: 0.6875rem;
  }

  .process-card__steps {
    gap: 0.625rem;
  }

  .process-card__step {
    font-size: 0.8125rem;
    padding-left: 0.875rem;
  }

  .process-card__step:not(:last-child) {
    padding-bottom: 0.625rem;
  }

  .service-contents {
    padding: 60px 0;
  }

  .service-overview {
    padding: 60px 0;
  }

  .service-empathy {
    padding: 60px 0;
  }

  .service-features {
    padding: 40px 0;
  }

  .service-features__lead {
    text-align: left;
    line-height: 1.9;
  }

  .service-features__item {
    padding: 1rem 1.25rem;
  }

  .service-works {
    padding: 60px 0;
  }

  .service-works__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .service-detail-page--works-ipc .service-works__item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 2rem;
  }

  .service-detail-page--works-ipc .service-works__images {
    max-width: 520px;
  }

  .service-programs {
    padding: 60px 0;
  }

  .service-programs__list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-programs__item {
    padding: 1.5rem;
  }

  .service-detail-page--gran-support .service-programs--gran-support-cards {
    padding: 64px 0;
    border-radius: 20px;
  }

  .service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "body"
      "products";
    border-radius: 20px;
  }

  .service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__visual::before {
    content: none;
  }

  .service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__body {
    padding: 22px;
  }

  .service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__products {
    padding: 1rem 22px 22px;
  }

  .service-detail-page--gran-support .service-programs--gran-support-cards .service-programs-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-detail-page--gran-support .service-programs--gran-support-cards .service-programs-cta__button {
    width: 100%;
    min-width: 0;
  }

  .service-faq__answer {
    padding-left: 0;
  }

  .service-cta {
    padding: 40px 20px;
    border-radius: var(--border-radius-md);
  }

  .service-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .service-cta__button {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 479.98px) {
  .service-detail-page--gran-support .service-programs--gran-support-cards .service-program-card__products-grid {
    grid-template-columns: 1fr;
  }

  .service-works__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-works__body {
    padding: 1rem 1.25rem 1.25rem;
  }

  .service-detail-page--works-ipc .service-works__images {
    gap: 0.75rem;
  }

  .service-detail-page--works-ipc .service-works__image--dual {
    aspect-ratio: 3 / 4;
  }

  .service-detail-page--works-ipc .service-works__body {
    padding: 0;
  }

  .water-comparison__benefits-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .water-comparison__benefit {
    flex-direction: row;
    text-align: left;
    padding: 0.625rem 0;
  }
}

/* ========================================
   404ページスタイル
======================================== */
.page-404 {
  padding: 60px 0 100px;
}

.error-404-section {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* 404アイコン・数字 */
.error-404__icon {
  margin-bottom: 2rem;
}

.error-404__number {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(6rem, 20vw, 10rem);
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-diagonal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.9;
  letter-spacing: -0.03em;
}

/* コンテンツ */
.error-404__content {
  margin-bottom: 3rem;
}

.error-404__title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.error-404__description {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* 検索フォーム */
.error-404__search {
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.error-404__search-label {
  font-size: 0.875rem;
  color: var(--text-color);
  margin-bottom: 0.75rem;
}

.error-404__search-form {
  width: 100%;
}

.error-404__search-input-wrapper {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.error-404__search-input-wrapper:focus-within {
  border-color: var(--color-primary, #1a365d);
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.error-404__search-input {
  flex: 1;
  border: none;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  outline: none;
  background: transparent;
}

.error-404__search-input::placeholder {
  color: var(--text-lighter);
}

.error-404__search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  background: var(--color-primary, #1a365d);
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.error-404__search-button:hover {
  background: var(--color-primary-dark, #0d2137);
}

.error-404__search-button i {
  font-size: 1.125rem;
}

/* アクションボタン */
.error-404__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.error-404__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.error-404__btn i {
  font-size: 1.125rem;
}

.error-404__btn--primary {
  background: linear-gradient(
    135deg,
    var(--color-primary, #1a365d) 0%,
    var(--color-primary-dark, #0d2137) 100%
  );
  color: #fff;
  box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.error-404__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 54, 93, 0.4);
  color: #fff;
}

.error-404__btn--secondary {
  background: #fff;
  color: var(--color-primary, #1a365d);
  border: 2px solid #e2e8f0;
}

.error-404__btn--secondary:hover {
  border-color: var(--color-primary, #1a365d);
  background: #f7fafc;
  color: var(--color-primary, #1a365d);
}

/* リンク一覧 */
.error-404__links {
  padding-top: 2.5rem;
  border-top: 1px solid #e2e8f0;
}

.error-404__links-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1.25rem;
}

.error-404__links-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.error-404__links-list li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9375rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.error-404__links-list li a:hover {
  background: #edf2f7;
  color: var(--color-primary, #1a365d);
}

.error-404__links-list li a i {
  font-size: 1rem;
  color: var(--color-primary, #1a365d);
}

/* レスポンシブ */
@media screen and (max-width: 767.98px) {
  .page-404 {
    padding: 40px 0 80px;
  }

  .error-404__number {
    font-size: clamp(5rem, 25vw, 7rem);
  }

  .error-404__actions {
    flex-direction: column;
    align-items: center;
  }

  .error-404__btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .error-404__links-list {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .error-404__links-list li a {
    width: 200px;
    justify-content: center;
  }
}

/* =================================================
   太陽光・蓄電池サービス詳細ページ追加スタイル
   ================================================= */

/* 提供内容セクション - アウトロ */
.service-contents__outro {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  line-height: 1.8;
}

/* 特徴セクション - 縦型カードレイアウト（選ばれる理由スタイル） */
.service-features--horizontal {
  padding: 80px 0;
  margin-bottom: 40px;
}

.service-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-feature-card--vertical {
  background: var(--white);
  border-radius: var(--border-radius-sm);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-default);
  position: relative;
}

.service-feature-card--vertical .service-feature-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-feature-card--vertical .service-feature-card__icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.service-feature-card--vertical .service-feature-card__title {
  font-size: clamp(1.125rem, 1.0674rem + 0.2564vw, 1.375rem);
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 1rem;
  line-height: 1.4;
}

.service-feature-card--vertical .service-feature-card__description {
  font-size: clamp(0.875rem, 0.8606rem + 0.0641vw, 0.9375rem);
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
  padding: 0;
  text-align: left;
}

/* Features：左に画像／右に番号付きリストの2カラムレイアウト */
.service-features--image-side {
  padding: 80px 0;
}

.service-features--image-side .service-features__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 0.6154rem + 6.1538vw, 8rem);
  align-items: center;
}

.service-features--image-side .service-features__visual {
  width: 100%;
  height: 100%;
}

.service-features--image-side .service-features__visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 667px;
  object-fit: cover;
  object-position: right;
  border-radius: var(--border-radius-sm);
}

.service-features--image-side .service-features__split {
  margin-top: 2.5rem;
}

.service-features--image-side .service-features__numbered {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 1.4615rem + 1.2821vw, 3rem);
}

.service-features-num {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: clamp(0.75rem, 0.4615rem + 1.2821vw, 2rem);
  align-items: start;
}

.service-features-num__index {
  font-family: var(--font-en, "Inter", sans-serif);
  font-size: clamp(1.75rem, 1.6346rem + 0.5128vw, 2.25rem);
  font-weight: 500;
  line-height: 1;
  background: var(--gradient-diagonal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
}

.service-features-num__title {
  font-size: clamp(1.125rem, 1.05rem + 0.3vw, 1.375rem);
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.service-features-num__description {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 991.98px) {
  .service-features--image-side .service-features__split {
    grid-template-columns: 1fr;
  }
  .service-features--image-side .service-features__visual img {
    max-height: 360px;
  }
}

@media (max-width: 767.98px) {
  .service-features-num {
    grid-template-columns: 48px 1fr;
  }
}

/* 取扱メーカー（3×2ロゴグリッド＋フッターバー） */
.service-handled-manufacturers {
  padding: clamp(2rem, 1.5rem + 1.5vw, 3rem) 0 clamp(3rem, 2rem + 2vw, 5rem);
}

.service-handled-manufacturers .section-title {
  margin-bottom: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
}

.service-handled-manufacturers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.5rem, 0.4rem + 0.3vw, 0.75rem);
  margin: 0;
}

.service-handled-manufacturers__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(88px, 72px + 4vw, 112px);
  padding: clamp(0.75rem, 0.5rem + 0.8vw, 1.25rem);
  background: var(--white);
  border: 1px solid var(--border-light);
  box-sizing: border-box;
}

.service-handled-manufacturers__cell img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.service-handled-manufacturers__footer {
  margin: clamp(0.5rem, 0.35rem + 0.4vw, 0.75rem) 0 0;
  padding: clamp(0.625rem, 0.5rem + 0.4vw, 0.875rem) 1rem;
  text-align: center;
  font-size: clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
  font-weight: 500;
  color: var(--text-muted, #555);
  background: var(--bg-muted, #f0f0f0);
  border: 1px solid var(--border-light);
  box-sizing: border-box;
}

@media (max-width: 479.98px) {
  .service-handled-manufacturers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 横長カードレイアウト（旧：互換性のため残す） */
.service-features__cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 2rem 2.5rem;
  transition: var(--transition-default);
}

.service-feature-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-light);
}

.service-feature-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-feature-card__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--gradient-primary);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.service-feature-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-color);
  margin: 0;
  line-height: 1.5;
}

.service-feature-card__description {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--text-light);
  margin: 0;
  padding-left: calc(48px + 1rem);
}

/* 選ばれる理由セクション */
.service-why-choose-us {
  padding: 80px 0;
  margin-bottom: 40px;
}

.service-why-choose-us__list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-why-choose-us__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-default);
}

.service-why-choose-us__item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-light);
}

.service-why-choose-us__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--gradient-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-why-choose-us__icon i {
  font-size: 1.25rem;
  color: var(--primary-color);
}

.service-why-choose-us__text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.5;
}

/* レスポンシブ - 特徴カード（タブレット） */
@media screen and (max-width: 991.98px) {
  .service-features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .service-feature-card--vertical {
    padding: 2rem 1.5rem;
  }

  .service-feature-card--vertical .service-feature-card__icon {
    width: 64px;
    height: 64px;
  }

  .service-feature-card--vertical .service-feature-card__icon i {
    font-size: 1.5rem;
  }
}

/* レスポンシブ - 特徴カード（スマートフォン） */
@media screen and (max-width: 767.98px) {
  /* 縦型カードレイアウト（選ばれる理由スタイル）のレスポンシブ */
  .service-features__grid {
    grid-template-columns: 1fr;
  }

  .service-feature-card--vertical {
    padding: 2rem 1.5rem;
  }

  .service-feature-card--vertical .service-feature-card__icon {
    width: 64px;
    height: 64px;
  }

  .service-feature-card--vertical .service-feature-card__icon i {
    font-size: 1.5rem;
  }

  /* 横長カードレイアウト（旧）のレスポンシブ */
  .service-feature-card {
    padding: 1.5rem;
  }

  .service-feature-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .service-feature-card__number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .service-feature-card__title {
    font-size: 1.125rem;
  }

  .service-feature-card__description {
    padding-left: 0;
    font-size: 0.875rem;
  }

  .service-why-choose-us__list {
    grid-template-columns: 1fr;
  }

  .service-why-choose-us__item {
    padding: 1rem 1.25rem;
  }

  .service-why-choose-us__icon {
    width: 40px;
    height: 40px;
  }

  .service-why-choose-us__icon i {
    font-size: 1rem;
  }

  .service-why-choose-us__text {
    font-size: 0.9375rem;
  }

  .service-contents__outro,
  .service-why-choose-us__outro {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }
}

/* 共通：サービスカード一覧（各サービスで使い回し可能） */
.common-service-cards {
  padding: 80px 0;
  margin-bottom: 40px;
}

.common-service-cards__lead {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-color);
}

.common-service-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 0.5rem + 1.5vw, 1.75rem);
  margin-top: 3rem;
}

.common-service-card {
  background: var(--white);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-default);
}

.common-service-card:hover {
  box-shadow: var(--shadow-medium);
}

.common-service-card__inner {
  position: relative;
  min-height: 240px;
}

.common-service-card__body {
  position: relative;
  width: 62%;
  max-width: 62%;
  min-width: 0;
  padding: clamp(1.25rem, 1rem + 1vw, 2rem) clamp(1rem, 0.75rem + 1vw, 2.25rem);
  z-index: 1;
}

.common-service-card__head {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.875rem;
  align-items: start;
  margin-bottom: 1rem;
}

.common-service-card__head-content {
  min-width: 0;
  flex: 1;
}

.common-service-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0f1f3;
}

.common-service-card__icon i {
  font-size: 1.25rem;
  background: var(--gradient-diagonal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
}

.common-service-card__icon--image {
  background: var(--white);
  border: 1px solid var(--border-light);
}

.common-service-card__icon--image img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.common-service-card__heading {
  min-width: 0;
}

.common-service-card__number {
  display: block;
  font-family: var(--font-en, "Inter", sans-serif);
  font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-light);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.common-service-card__title {
  font-size: clamp(1.0625rem, 0.98rem + 0.35vw, 1.375rem);
  font-weight: 800;
  color: var(--text-color);
  line-height: 1.35;
  margin: 0;
}

.common-service-card__prices {
  grid-column: 1 / -1;
  margin: 1rem 0 0;
  padding: 0.625rem 0 0;
  border-top: 1px solid var(--border-light);
}

.common-service-card__prices-label {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-light);
}

.common-service-card__prices-list {
  list-style: none;
  margin: 0.45rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.common-service-card__price {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.common-service-card__price-amount {
  font-family: var(--font-secondary);
  color: var(--accent-warm);
  font-size: 1.3em;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.common-service-card__text {
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--text-color);
  margin: 0;
}

.common-service-card__text:has(+ .common-service-card__list) {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.common-service-card__list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1rem;
}

.common-service-card__list li {
  position: relative;
  margin: 0;
  padding-left: 1.35rem;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-color);
}

.common-service-card__list li::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--white);
  box-sizing: border-box;
}

.common-service-card__list li::after {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0.32rem;
  width: 0.35rem;
  height: 0.2rem;
  border-left: 1.5px solid var(--primary-color);
  border-bottom: 1.5px solid var(--primary-color);
  transform: rotate(-45deg);
}

.common-service-card__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
  overflow: hidden;
  background: var(--gradient-subtle);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.common-service-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.common-service-card:hover .common-service-card__media img {
  transform: scale(1.04);
}

.common-service-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.9),
      transparent 32%
    ),
    var(--gradient-subtle);
}

.common-service-card__placeholder i {
  font-size: 2.75rem;
  color: var(--primary-color);
  opacity: 0.7;
}

/* クリーンメイト那覇：対応エリア */
.service-area {
  padding: 80px 0;
  margin-bottom: 40px;
}

.service-area__lead {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-color);
  text-align: left;
}

.service-area__content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 2rem;
  max-width: 1040px;
  margin: 2rem auto 0;
}

.service-area__text {
  min-width: 0;
}

.service-area__catch {
  margin: 0 0 1.25rem;
  font-size: clamp(1.375rem, 1.1rem + 1.3vw, 1.875rem);
  font-weight: 800;
  color: var(--primary-color);
  text-align: left;
  letter-spacing: 0.04em;
}

.service-area__image-wrap {
  margin: 0;
  overflow: hidden;
}

.service-area__image {
  display: block;
  width: 100%;
  height: auto;
}

.service-area__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-area-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  padding: 1.5rem;
  transition: var(--transition-default);
}

.service-area-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-light);
}

.service-area-card__label {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 0.75rem;
}

.service-area-card__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
}

@media screen and (max-width: 1399.98px) {
  .common-service-cards__grid {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 0.5rem + 1.5vw, 1.5rem);
  }

  .common-service-card__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(132px, 34vw, 240px);
    min-height: 0;
    padding-top: 0;
  }

  .common-service-card__body {
    display: contents;
    width: auto;
    max-width: none;
    padding: 0;
  }

  .common-service-card__head {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    margin-bottom: 0;
    padding: 1.25rem 0.75rem 0.5rem 1.25rem;
  }

  .common-service-card__text {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: start;
    padding: 0.625rem 1.25rem 1.25rem;
  }

  .common-service-card__text:has(+ .common-service-card__list) {
    padding-bottom: 0.75rem;
    border-bottom: none;
  }

  .common-service-card__list {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 0;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid var(--border-light);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .common-service-card__media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 100%;
    min-height: 160px;
    align-self: stretch;
  }
}

@media screen and (max-width: 991.98px) {
  .service-area__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-area__catch,
  .service-area__lead {
    text-align: center;
  }

  .service-area__grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767.98px) {
  .common-service-cards,
  .service-area {
    padding: 60px 0;
    margin-bottom: 24px;
  }

  .common-service-card__inner {
    grid-template-columns: minmax(0, 1fr) clamp(120px, 32vw, 200px);
  }

  .common-service-card__head {
    padding: 1rem 0.5rem 0.5rem 1rem;
  }

  .common-service-card__text {
    padding: 0.5rem 1rem 1rem;
  }

  .common-service-card__prices {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }

  .common-service-card__prices-label {
    font-size: 0.6875rem;
  }

  .common-service-card__list {
    padding: 0.875rem 1rem 1rem;
    grid-template-columns: 1fr;
  }

  .common-service-card__media {
    min-height: 140px;
  }

  .common-service-card__text,
  .common-service-card__list li {
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .service-water-comparison-table th,
  .service-water-comparison-table td {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }

  .service-area-card {
    padding: 1.25rem;
  }
}

/* 設置事例セクション */
.service-installation-cases {
  padding: 80px 0;
  margin-bottom: 40px;
}

.service-installation-cases__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.service-case-card {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: var(--transition-default);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-case-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-case-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-case-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-subtle);
}

.service-case-card__placeholder i {
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
}

.service-case-card__body {
  padding: 1.25rem 0.1rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.service-case-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-case-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  background: var(--primary-color);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
}

.service-case-card__title {
  font-size: clamp(1.2rem, 1.1308rem + 0.3077vw, 1.5rem);
  font-weight: 700;
  color: var(--text-color);
  margin: 0;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.service-case-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.125rem;
  font-size: 0.75rem;
}

.service-case-card__tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--theme-accent);
  text-decoration: none;
}

.service-case-card__detail-btn {
  box-sizing: border-box;
  align-self: center;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  margin-top: auto;
  padding: 0.5rem 1.1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--primary-color);
  background: transparent;
  border: 1px solid var(--primary-color);
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.service-case-card__detail-btn i {
  font-size: 0.875rem;
  transition: transform 0.25s ease;
}

.service-case-card__detail-btn:hover,
.service-case-card__detail-btn:focus-visible {
  background: var(--primary-color);
  color: var(--white);
}

.service-case-card__detail-btn:hover i {
  transform: translateX(3px);
}

/* 設置事例 - スライダー（4件以上） */
.service-installation-cases__slider {
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
}

.service-installation-cases__slider .swiper-wrapper {
  align-items: stretch;
}

.service-installation-cases__slider .swiper-slide {
  height: auto;
  display: flex;
}

.service-installation-cases__slider .service-case-card {
  width: 100%;
}

.service-installation-cases__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.service-installation-cases__nav {
  position: static;
  z-index: 2;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-color);
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    opacity 0.25s ease;
}

.service-installation-cases__nav i {
  font-size: 1.125rem;
}

.service-installation-cases__nav:hover,
.service-installation-cases__nav:focus-visible {
  background: var(--primary-color);
  color: var(--white);
}

.service-installation-cases__nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

.service-installation-cases__pagination {
  position: static;
  width: auto;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  min-width: 3.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-color);
  letter-spacing: 0.05em;
}

.service-installation-cases__pagination .swiper-pagination-current {
  color: var(--primary-color);
}

/* 設置事例 - レスポンシブ */
@media screen and (max-width: 1199.98px) {
  .service-installation-cases__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 0.5rem + 1.5vw, 1.5rem);
  }

  .service-installation-cases__nav {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media screen and (max-width: 767.98px) {
  .service-installation-cases {
    padding: 60px 0;
  }

  .service-installation-cases__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-case-card__body {
    gap: 0.625rem;
  }

}

/* =====================================================
   お客様の声セクション
   ===================================================== */
.service-testimonials {
  padding: 80px 0;
  margin-bottom: 40px;
}

.service-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.service-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.service-testimonial-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gradient-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-testimonial-card__icon i {
  font-size: 1.25rem;
  color: var(--theme-accent);
}

.service-testimonial-card__body {
  flex: 1;
}

.service-testimonial-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.service-testimonial-card__text {
  font-size: clamp(0.875rem, 0.8606rem + 0.0641vw, 0.9375rem);
  line-height: 1.8;
  color: var(--text-secondary);
}

@media screen and (max-width: 767.98px) {
  .service-testimonials {
    padding: 60px 0;
  }

  .service-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-testimonial-card {
    padding: 1.5rem;
  }
}

/* =================================================
   ホテル・観光事業 スタイル
   ================================================= */

/* B. About（ホテル・観光事業について） */
.ht-about {
  padding: 0 0 80px 0;
}

.ht-about__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

.ht-about__lead {
  font-size: clamp(1.5rem, 1.3269rem + 0.7692vw, 2.25rem);
  font-weight: 800;
  line-height: 1.8;
  margin: 0 0 2rem;
}

.ht-about__description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
}

.ht-about__image {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.ht-about__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ht-about__placeholder {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--gradient-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ht-about__placeholder i {
  font-size: 4rem;
  color: var(--border-light);
}

/* D. サービス詳細（4セクション） */
.ht-service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.ht-service-detail:last-of-type {
  border-bottom: none;
}

.ht-service-detail__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8rem;
  align-items: start;
}

.ht-service-detail--reverse .ht-service-detail__wrapper {
  grid-template-columns: 1fr 1.2fr;
}

.ht-service-detail--reverse .ht-service-detail__text {
  order: 2;
}

.ht-service-detail--reverse .ht-service-detail__image {
  order: 1;
}

.ht-service-detail__number {
  display: block;
  font-family: var(--font-en);
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-subtle);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ht-service-detail__title {
  font-size: clamp(1.375rem, 1.2rem + 0.6vw, 1.75rem);
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 0.75rem;
  line-height: 1.4;
}

.ht-service-detail__catch {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
}

.ht-service-detail__lead {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-color);
  margin: 0 0 1.5rem;
}

.ht-service-detail__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
}

.ht-service-detail__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-color);
  line-height: 1.5;
}

.ht-service-detail__features li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 1px;
  background-color: currentColor;
  flex-shrink: 0;
}

.ht-service-detail__action {
  margin-top: 1.5rem;
}

.ht-service-detail__image {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.ht-service-detail__image img {
  max-width: 660px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ht-service-detail__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(
    135deg,
    var(--background-light),
    var(--theme-accent-light)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.ht-service-detail__placeholder i {
  font-size: 4rem;
  color: var(--theme-accent);
  opacity: 0.5;
}

/* Challenges（沖縄の宿泊施設が直面している課題） */
.ht-challenges {
  padding: 80px 0;
}

.ht-challenges__lead {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  font-weight: 500;
  color: var(--text-color);
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 800px;
  line-height: 1.8;
}

.ht-challenges__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ht-challenge-card {
  background: var(--white);
  border-radius: var(--border-radius-sm);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition-default);
  position: relative;
  border-top: 4px solid var(--primary-color);
}

.ht-challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-dark);
}

.ht-challenge-card__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.ht-challenge-card__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ht-challenge-card__bullets li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 0.75rem;
}

.ht-challenge-card__bullets li:last-child {
  margin-bottom: 0;
}

.ht-challenge-card__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--secondary-color);
  border-radius: 50%;
}

.ht-challenges__closing {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem);
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin: 3rem auto 0;
  max-width: 700px;
  line-height: 1.6;
}

/* Stats（実績数字バッジ） */
.ht-stats {
  padding: 60px 0;
  background: var(--gradient-subtle);
}

.ht-stats__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.ht-stats__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 900px;
}

.ht-stats__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border-radius: var(--border-radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition-default);
}

.ht-stats__badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-dark);
}

.ht-stats__value {
  font-family: var(--font-en);
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.ht-stats__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.ht-stats__note {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.5;
}

.ht-stats__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.ht-stats__cta-text {
  font-size: 1rem;
  color: var(--text-color);
  margin: 0;
}

.ht-stats__cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-weight: 700;
}

.ht-stats__cta-button i {
  transition: transform 0.3s ease;
}

.ht-stats__cta-button:hover i {
  transform: translateX(4px);
}

/* Capabilities - Examples（対応例2カラム） */
.ht-capabilities__examples {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-light);
}

.ht-capabilities__examples-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-color);
  text-align: center;
  margin: 0 0 2rem;
}

.ht-capabilities__examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.ht-capabilities__example-column {
  background: var(--white);
  border-radius: var(--border-radius-sm);
  padding: 2rem;
  box-shadow: var(--shadow-light);
}

.ht-capabilities__example-heading {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--theme-accent);
}

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

.ht-capabilities__example-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 0.75rem;
}

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

.ht-capabilities__example-list li i {
  color: var(--theme-accent);
  font-size: 1rem;
  margin-top: 0.2em;
  flex-shrink: 0;
}

/* About - Strength（強み2行） */
.ht-about__strength {
  background: var(--gradient-subtle);
  border-radius: var(--border-radius-sm);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0 2rem;
  border-left: 4px solid var(--primary-color);
}

.ht-about__strength-line {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.8;
}

.ht-about__strength-line:first-child {
  margin-bottom: 0.25rem;
}

/* Pre-CTA（相談導線） */
.ht-pre-cta {
  padding: 60px 0;
  text-align: center;
}

.ht-pre-cta__content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--gradient-subtle);
  border-radius: var(--border-radius-md);
  padding: 3rem 2.5rem;
}

.ht-pre-cta__text {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  font-weight: 500;
  color: var(--text-color);
  margin: 0 0 1.5rem;
  line-height: 1.8;
}

.ht-pre-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition-default);
}

.ht-pre-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-dark);
}

.ht-pre-cta__button i {
  transition: transform 0.3s ease;
}

.ht-pre-cta__button:hover i {
  transform: translateX(4px);
}

/* E. Capabilities（対応できること） */
.ht-capabilities {
  padding: 80px 0;
  text-align: center;
}

.ht-capabilities__lead {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 auto 2.5rem;
  max-width: 700px;
  line-height: 1.6;
}

.ht-capabilities__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.ht-capabilities__tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-color);
  background: transparent;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  transition: var(--transition-default);
  white-space: nowrap;
}

.ht-capabilities__tag:hover {
  background: var(--theme-accent-light);
  border-color: var(--theme-accent);
  color: var(--primary-color);
  box-shadow: var(--shadow-light);
}

/* F. Facilities & Projects（施設・運営実績） */
.ht-facilities {
  padding: 80px 0;
  margin: 40px 0;
}

.ht-facilities__intro {
  text-align: center;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.ht-facilities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ht-facility-card {
  background: var(--white);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-default);
}

.ht-facility-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.ht-facility-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ht-facility-card:hover .ht-facility-card__image img {
  transform: scale(1.05);
}

.ht-facility-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--background-light),
    var(--theme-accent-light)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.ht-facility-card__placeholder i {
  font-size: 3rem;
  color: var(--theme-accent);
  opacity: 0.5;
}

.ht-facility-card__content {
  padding: 1.5rem;
  position: relative;
}

.ht-facility-card__name {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 0.75rem;
  line-height: 1.4;
}

.ht-facility-card__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0 0 1rem;
}

.ht-facility-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ht-facility-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--theme-accent);
  background: var(--theme-accent-light);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  transition: var(--transition-default);
}

.ht-facility-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary-color);
  border-radius: 6px;
  transition: var(--transition-default);
}

.ht-facility-card__link:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ht-facility-card__link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.ht-facility-card__link:hover i {
  transform: translate(2px, -2px);
}

/* =================================================
   ホテル・観光事業 レスポンシブ対応
   ================================================= */

/* タブレット（lg未満 / 1399.98px以下） */
@media screen and (max-width: 1399.98px) {
  .ht-challenges__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .ht-challenges {
    padding: 60px 0;
  }

  .ht-about__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ht-about__image {
    order: -1;
  }

  .ht-about__strength {
    padding: 1.25rem 1.5rem;
  }

  .ht-service-detail__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ht-service-detail--reverse .ht-service-detail__wrapper {
    grid-template-columns: 1fr;
  }

  .ht-service-detail--reverse .ht-service-detail__text {
    order: unset;
  }

  .ht-service-detail__image,
  .ht-service-detail--reverse .ht-service-detail__image {
    order: -1;
  }

  .ht-facilities__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ht-capabilities {
    padding: 60px 0;
  }

  .ht-capabilities__list {
    gap: 0.75rem;
  }

  .ht-pre-cta {
    padding: 50px 0;
  }

  .ht-pre-cta__content {
    padding: 2.5rem 2rem;
  }

  /* Stats レスポンシブ（タブレット） */
  .ht-stats {
    padding: 50px 0;
  }

  .ht-stats__badges {
    gap: 1.5rem;
  }

  .ht-stats__badge {
    padding: 1.5rem 1rem;
  }

  /* Examples レスポンシブ（タブレット） */
  .ht-capabilities__examples-grid {
    gap: 1.5rem;
  }

  .ht-capabilities__example-column {
    padding: 1.5rem;
  }
}

/* スマホ（md未満 / 767.98px以下） */
@media screen and (max-width: 767.98px) {
  .ht-about {
    padding: 60px 0;
  }

  .ht-about__wrapper {
    margin-top: 2rem;
  }

  .ht-service-detail {
    padding: 60px 0;
  }

  .ht-service-detail__number {
    font-size: 2.5rem;
  }

  .ht-facilities {
    padding: 60px 0;
    margin: 30px 0;
  }

  .ht-facilities__intro {
    margin-bottom: 2rem;
  }

  .ht-facilities__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ht-facility-card__content {
    padding: 1.25rem;
  }
  .ht-facility-card__name {
    font-size: 1rem;
  }

  .ht-capabilities {
    padding: 50px 0;
  }

  .ht-capabilities__lead {
    margin-bottom: 2rem;
  }

  .ht-capabilities__list {
    gap: 0.625rem;
  }

  .ht-capabilities__tag {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }

  /* Challenges レスポンシブ（SP） */
  .ht-challenges {
    padding: 50px 0;
  }

  .ht-challenges__lead {
    margin-bottom: 2rem;
  }

  .ht-challenges__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ht-challenge-card {
    padding: 1.5rem;
  }

  .ht-challenge-card__title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .ht-challenge-card__bullets li {
    font-size: 0.875rem;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
  }

  .ht-challenge-card__bullets li::before {
    width: 5px;
    height: 5px;
  }

  .ht-challenges__closing {
    margin-top: 2rem;
    font-size: 1rem;
  }

  /* About Strength レスポンシブ（SP） */
  .ht-about__strength {
    padding: 1rem 1.25rem;
    margin: 1rem 0 1.5rem;
  }

  .ht-about__strength-line {
    font-size: 0.9375rem;
  }

  /* Stats レスポンシブ（SP） */
  .ht-stats {
    padding: 40px 0;
  }

  .ht-stats__wrapper {
    gap: 2rem;
  }

  .ht-stats__badges {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 320px;
  }

  .ht-stats__badge {
    padding: 1.25rem 1rem;
    flex-direction: row;
    gap: 1rem;
    text-align: left;
  }

  .ht-stats__value {
    font-size: 1.75rem;
    margin-bottom: 0;
    min-width: 60px;
  }

  .ht-stats__label {
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
  }

  .ht-stats__note {
    font-size: 0.75rem;
  }

  .ht-stats__cta-text {
    font-size: 0.9375rem;
  }

  .ht-stats__cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }

  /* Examples レスポンシブ（SP） */
  .ht-capabilities__examples {
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .ht-capabilities__examples-title {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }

  .ht-capabilities__examples-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ht-capabilities__example-column {
    padding: 1.25rem;
  }

  .ht-capabilities__example-heading {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }

  .ht-capabilities__example-list li {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

  /* Pre-CTA レスポンシブ（SP） */
  .ht-pre-cta {
    padding: 40px 0;
  }

  .ht-pre-cta__content {
    padding: 2rem 1.5rem;
  }

  .ht-pre-cta__text {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }

  .ht-pre-cta__button {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    width: 100%;
    justify-content: center;
  }
}

/* =================================================
   生活サポート事業（Lifestyle Services）
   ================================================= */

/* B. 選ばれる理由（Why Choose Us） */
.ls-strengths {
  padding: 80px 0;
  border-radius: 20px;
  margin-bottom: 40px;
}

.ls-strengths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.ls-strength-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
  transition: var(--transition-default);
  border: 1px solid rgba(29, 32, 137, 0.06);
}

.ls-strength-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-dark);
}

.ls-strength-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--theme-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ls-strength-card__icon i {
  font-size: 2rem;
  color: var(--theme-accent);
}

.ls-strength-card__title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 0.5rem;
}

.ls-strength-card__subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--theme-accent);
  margin: 0 0 1rem;
}

.ls-strength-card__description {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
  text-align: left;
}

/* C. About（生活サポート事業とは） */
.ls-about__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8rem;
  align-items: flex-start;
  margin-top: 2.5rem;
}

.ls-about__lead {
  font-size: clamp(1.5rem, 1.3269rem + 0.7692vw, 2.25rem);
  font-weight: 800;
  line-height: 1.8;
  margin: 0 0 2rem;
}

.ls-about__description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
}

.ls-about__image {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.ls-about__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ls-about__placeholder {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--gradient-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ls-about__placeholder i {
  font-size: 4rem;
  color: var(--border-light);
}

/* D. Main Services（提供サービス概要） */
.ls-main-services {
  padding: 80px 0;
  border-radius: 20px;
  margin-bottom: 40px;
}

.ls-service-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.ls-service-nav-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--border-radius-md);
  text-decoration: none;
  color: inherit;
  transition: var(--transition-default);
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
}

.ls-service-nav-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ls-service-nav-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-dark);
}

.ls-service-nav-card:hover::before {
  opacity: 1;
}

/* メインサービスカードの強調 */
.ls-service-nav-card--main {
  border: 2px solid var(--theme-accent-light);
}

.ls-service-nav-card--main::before {
  opacity: 1;
  background: var(--theme-accent);
}

.ls-service-nav-card__number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(29, 32, 137, 0.08);
  line-height: 1;
}

.ls-service-nav-card__icon {
  width: 56px;
  height: 56px;
  background: var(--theme-accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.ls-service-nav-card:hover .ls-service-nav-card__icon {
  background: var(--theme-accent);
}

.ls-service-nav-card__icon i {
  font-size: 1.5rem;
  color: var(--theme-accent);
  transition: color 0.3s ease;
}

.ls-service-nav-card:hover .ls-service-nav-card__icon i {
  color: var(--white);
}

.ls-service-nav-card__content {
  flex: 1;
}

.ls-service-nav-card__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 0.25rem;
  line-height: 1.4;
}

.ls-service-nav-card__brand {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.ls-service-nav-card__catch {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--theme-accent);
  margin: 0 0 1rem;
}

.ls-service-nav-card__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ls-service-nav-card__benefits li {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--background-light);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.ls-service-nav-card__arrow {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.ls-service-nav-card__arrow i {
  font-size: 1rem;
  color: var(--primary-color);
}

.ls-service-nav-card:hover .ls-service-nav-card__arrow {
  transform: translateY(4px);
}

/* E. サービス詳細 */
.ls-service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.ls-service-detail:last-of-type {
  border-bottom: none;
}

.ls-service-detail__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8rem;
  align-items: start;
}

.ls-service-detail--reverse .ls-service-detail__wrapper {
  grid-template-columns: 1fr 1.2fr;
}

.ls-service-detail--reverse .ls-service-detail__text {
  order: 2;
}

.ls-service-detail--reverse .ls-service-detail__image {
  order: 1;
}

.ls-service-detail__number {
  display: block;
  font-family: var(--font-en);
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-subtle);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ls-service-detail__title {
  font-size: clamp(1.35rem, 1.05rem + 1.15vw, 2rem);
  font-weight: 900;
  margin: 0 0 1.25rem;
}

.ls-service-detail__brand {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 1.25rem;
}

.ls-service-detail__lead {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0 0 1.5rem;
}

.ls-service-detail__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
}

.ls-service-detail__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-color);
  line-height: 1.6;
}

.ls-service-detail__features li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 1px;
  background-color: currentColor;
  flex-shrink: 0;
}

.ls-service-detail__image {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.ls-service-detail__image img {
  max-width: 660px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ls-service-detail__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(
    135deg,
    var(--background-light),
    var(--theme-accent-light)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.ls-service-detail__placeholder i {
  font-size: 4rem;
  color: var(--theme-accent);
  opacity: 0.5;
}

.ls-service-detail__action {
  margin-top: 1.5rem;
}

/* G. Gran Support（内包サービス） */
.ls-gran-support {
  padding: 80px 0;
  border-radius: 20px;
  margin: 40px 0;
}

.ls-gran-support__hero-image {
  margin: 2rem 0 3rem;
  overflow: hidden;
}

.ls-gran-support__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-width: 600px;
  max-height: 400px;
  margin-inline: auto;
}

.ls-gran-support__intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.ls-gran-support__lead {
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.ls-gran-support__description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
}

.ls-gran-support__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ls-gran-support-card {
  background: var(--white);
  border-radius: var(--border-radius-sm);
  padding: 1.75rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition-default);
}

.ls-gran-support-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-dark);
}

.ls-gran-support-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.ls-gran-support-card__icon {
  width: 48px;
  height: 48px;
  background: var(--theme-accent-light);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ls-gran-support-card__icon i {
  font-size: 1.25rem;
  color: var(--theme-accent);
}

.ls-gran-support-card__title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.4;
}

.ls-gran-support-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ls-gran-support-card__tag {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-color);
  background: var(--background-surface);
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  transition: var(--transition-default);
}

.ls-gran-support-card:hover .ls-gran-support-card__tag {
  border-color: var(--theme-accent);
  background: var(--theme-accent-light);
}

.ls-gran-support__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-top: 2rem;
  text-align: center;
}

.ls-gran-support__note i {
  color: var(--theme-accent);
}

/* =================================================
   生活サポート事業 レスポンシブ対応
   ================================================= */

/* タブレット（lg未満 / 991.98px以下） */
@media screen and (max-width: 1399.98px) {
  .ls-strengths__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .ls-about__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ls-about__image {
    order: -1;
  }

  .ls-service-overview__grid {
    grid-template-columns: 1fr;
  }

  .ls-service-detail__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ls-service-detail--reverse .ls-service-detail__wrapper {
    grid-template-columns: 1fr;
  }

  .ls-service-detail--reverse .ls-service-detail__text {
    order: unset;
  }

  .ls-service-detail__image,
  .ls-service-detail--reverse .ls-service-detail__image {
    order: -1;
  }

  .ls-gran-support__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* スマホ（md未満 / 767.98px以下） */
@media screen and (max-width: 767.98px) {
  .ls-strengths {
    padding: 60px 20px;
    margin-bottom: 20px;
  }

  .ls-strengths__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ls-strength-card {
    padding: 2rem 1.5rem;
  }

  .ls-strength-card__icon {
    width: 64px;
    height: 64px;
  }

  .ls-strength-card__icon i {
    font-size: 1.5rem;
  }

  .ls-about {
    padding: 60px 0;
  }

  .ls-about__wrapper {
    margin-top: 2rem;
  }

  .ls-main-services {
    padding: 60px 20px;
    margin-bottom: 20px;
    background: var(--gradient-subtle);
  }

  .ls-service-nav-card {
    padding: 1.5rem;
  }

  .ls-service-nav-card__number {
    font-size: 2rem;
  }

  .ls-service-detail {
    padding: 50px 0;
  }

  .ls-service-detail__number {
    font-size: 2.5rem;
  }

  .ls-gran-support {
    padding: 60px 20px;
    margin: 20px 0;
    background: var(--gradient-subtle-light);
  }

  .ls-gran-support__grid {
    grid-template-columns: 1fr;
  }

  .ls-gran-support-card {
    padding: 1.5rem;
  }
}

/* 小さいスマホ（480px以下） */
@media screen and (max-width: 479.98px) {
  .ls-strength-card__title {
    font-size: 1.25rem;
  }

  .ls-service-detail__placeholder i {
    font-size: 3rem;
  }
}

/* ===================================
   教育事業（Education Services）
   =================================== */

/* A. ヒーロー（ファーストビュー） */
.es-hero {
  padding: 60px 0 80px;
  position: relative;
  text-align: center;
}

.es-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.es-hero__description {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-light);
  margin: 0;
  letter-spacing: 0.02em;
}

/* D. 大切にしていること（Our Values） */
.es-strengths {
  padding: 80px 0;
  margin-bottom: 40px;
}

/* C. About（教育事業について） */
.es-about {
  padding: 80px 0;
}

.es-about__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8rem;
  align-items: flex-start;
}

.es-about__lead {
  font-size: clamp(1.5rem, 1.3269rem + 0.7692vw, 2.25rem);
  font-weight: 800;
  line-height: 1.8;
  margin: 0 0 2rem;
}

.es-about__description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
}

.es-about__image {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  padding: 2rem;
  background: var(--gradient-subtle);
  border-radius: var(--border-radius-sm);
}

.es-about__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
}

.es-about__placeholder {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--gradient-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.es-about__placeholder i {
  font-size: 4rem;
  color: var(--border-light);
}

/* D. Main Service（ジャンボリー学童） */
.es-main-service {
  padding: 80px 0;
  border-radius: var(--border-radius-md);
  margin-bottom: 40px;
}

.es-main-service__detail {
  margin-top: 3rem;
}

.es-main-service__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
}

.es-main-service__text {
  position: relative;
}

.es-main-service__number {
  display: block;
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(29, 32, 137, 0.1);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.es-main-service__title {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-weight: 800;
  color: var(--theme-accent);
  margin: 0 0 0.5rem;
  line-height: 1.4;
}

.es-main-service__subtitle {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
}

.es-main-service__lead {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 2rem;
}

.es-main-service__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.es-main-service__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-color);
}

.es-main-service__features li i {
  color: var(--theme-accent);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.es-main-service__future {
  background: var(--gradient-subtle-light);
  border-radius: var(--border-radius-sm);
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 4px solid var(--theme-accent);
}

.es-main-service__future-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--theme-accent);
  background: var(--gradient-subtle);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.es-main-service__future-date {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-color);
  margin: 0 0 0.5rem;
}

.es-main-service__future-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
}

.es-main-service__action {
  margin-top: 1.5rem;
}

.es-main-service__image {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.es-main-service__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.es-main-service__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.es-main-service__placeholder i {
  font-size: 4rem;
  color: var(--border-light);
}

/* E. Related Services（サービス詳細） */
.es-related-services {
  padding: 80px 0;
}

.es-related-services__intro {
  text-align: center;
  font-size: 1rem;
  line-height: 2;
  color: var(--text-light);
  max-width: 700px;
  margin: 2rem auto 3rem;
}

.es-related-services__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.es-related-nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-light);
  transition: var(--transition-default);
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
}

.es-related-nav-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-dark);
  border-color: rgba(29, 32, 137, 0.1);
}

.es-related-nav-card__icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-subtle-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.es-related-nav-card__icon i {
  font-size: 1.75rem;
  color: var(--primary-color);
}

.es-related-nav-card__content {
  flex: 1;
}

.es-related-nav-card__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-color);
  margin: 0 0 0.5rem;
  line-height: 1.4;
}

.es-related-nav-card__subtitle {
  display: block;
  font-size: 0.8125rem;
  color: var(--theme-accent);
  font-weight: 600;
}

.es-related-nav-card__arrow {
  margin-top: 1rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.es-related-nav-card:hover .es-related-nav-card__arrow {
  transform: translateY(4px);
}

/* サービス詳細ブロック */
.es-related-detail {
  padding: 60px 0;
  border-top: 1px solid rgba(29, 32, 137, 0.08);
}

.es-related-detail:first-of-type {
  border-top: none;
}

.es-related-detail__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.es-related-detail--reverse .es-related-detail__wrapper {
  grid-template-columns: 1fr 1.2fr;
}

.es-related-detail--reverse .es-related-detail__text {
  order: 2;
}

.es-related-detail--reverse .es-related-detail__image {
  order: 1;
}

.es-related-detail__number {
  display: block;
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(29, 32, 137, 0.1);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.es-related-detail__title {
  font-size: clamp(1.25rem, 1rem + 0.8vw, 1.625rem);
  font-weight: 800;
  color: var(--text-color);
  margin: 0 0 0.5rem;
  line-height: 1.4;
}

.es-related-detail__subtitle {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--theme-accent);
  margin: 0 0 1rem;
}

.es-related-detail__description {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-light);
  margin: 0 0 1.5rem;
}

.es-related-detail__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.es-related-detail__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-color);
}

.es-related-detail__features li i {
  color: var(--theme-accent);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.es-related-detail__action {
  margin-top: 1rem;
}

.es-related-detail__image {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.es-related-detail__image img {
  max-width: 660px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.es-related-detail__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--gradient-subtle-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.es-related-detail__placeholder i {
  font-size: 3.5rem;
  color: var(--border-light);
}

@media screen and (max-width: 991.98px) {
  .es-about__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .es-about__image {
    order: -1;
  }
}

/* レスポンシブ対応 - 教育事業 */
@media screen and (max-width: 991.98px) {
  .es-main-service__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .es-main-service__image {
    position: static;
  }

  .es-related-services__nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .es-related-detail__wrapper,
  .es-related-detail--reverse .es-related-detail__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .es-related-detail__image,
  .es-related-detail--reverse .es-related-detail__image {
    order: -1;
  }

  .es-related-detail__text,
  .es-related-detail--reverse .es-related-detail__text {
    order: 1;
  }
}

@media screen and (max-width: 767.98px) {
  .es-hero {
    padding: 40px 0 60px;
  }

  .es-strengths {
    padding: 40px 0;
    border-radius: var(--border-radius-md);
    margin: 20px 0 30px;
  }

  .es-about {
    padding: 60px 0;
  }

  .es-about__wrapper {
    margin-top: 2rem;
  }

  .es-main-service {
    padding: 40px 0;
    border-radius: var(--border-radius-md);
    margin: 20px 0 30px;
  }

  .es-main-service__number {
    font-size: 3rem;
  }

  .es-related-services {
    padding: 60px 0;
  }

  .es-related-services__nav {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .es-related-nav-card {
    flex-direction: row;
    text-align: left;
    padding: 1.5rem;
  }

  .es-related-nav-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 1rem 0 0;
  }

  .es-related-nav-card__arrow {
    margin-top: 0;
    margin-left: auto;
    transform: rotate(-90deg);
  }

  .es-related-nav-card:hover .es-related-nav-card__arrow {
    transform: rotate(-90deg) translateY(-4px);
  }

  .es-related-detail {
    padding: 40px 0;
  }

  .es-related-detail__number {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 479.98px) {
  .es-hero__description {
    font-size: 0.9375rem;
  }

  .es-main-service__placeholder i,
  .es-related-detail__placeholder i {
    font-size: 2.5rem;
  }
}

/* =================================================
   プロハビ（Progress Habit Program）ページ専用スタイル
   ================================================= */

/* プロハビページ全体 */
.progress-habit-page {
  --prohabi-accent: var(--theme-accent);
  --prohabi-primary: var(--primary-color);
}

/* 2. プロハビとは */
.progress-habit-page .prohabi-about {
  padding: 80px 0;
}

.progress-habit-page .prohabi-about__wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.progress-habit-page .prohabi-about__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-habit-page .prohabi-about__logo img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}

.progress-habit-page .prohabi-about__content {
  display: flex;
  align-items: center;
}

.progress-habit-page .prohabi-about__text {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-color);
  margin: 0;
}

.progress-habit-page .prohabi-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.progress-habit-page .prohabi-feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  padding: 2rem;
  text-align: left;
  transition: var(--transition-default);
  position: relative;
  overflow: hidden;
}

.progress-habit-page .prohabi-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.progress-habit-page .prohabi-feature-card:hover {
  box-shadow: var(--shadow-medium);
}

.progress-habit-page .prohabi-feature-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-habit-page .prohabi-feature-card__icon i {
  font-size: 1.75rem;
  color: var(--prohabi-primary, var(--primary-color));
}

.progress-habit-page .prohabi-feature-card__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--prohabi-primary, var(--primary-color));
  margin: 0 0 1rem;
  text-align: center;
}

.progress-habit-page .prohabi-feature-card__description {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
}

/* 3. 対象者・活用フィールド */
.progress-habit-page .prohabi-target {
  padding: 80px 0;
}

.progress-habit-page .prohabi-target__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.progress-habit-page .prohabi-target-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  transition: var(--transition-default);
}

.progress-habit-page .prohabi-target-card:hover {
  border-color: var(--prohabi-primary, var(--primary-color));
  box-shadow: var(--shadow-light);
}

.progress-habit-page .prohabi-target-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--prohabi-primary, var(--primary-color));
}

.progress-habit-page .prohabi-target-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--prohabi-accent, var(--theme-accent, #ff5a3c));
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-habit-page .prohabi-target-card__icon i {
  font-size: 1.25rem;
  color: var(--white);
}

.progress-habit-page .prohabi-target-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--prohabi-primary, var(--primary-color));
  margin: 0;
}

.progress-habit-page .prohabi-target-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.progress-habit-page .prohabi-target-card__list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.75rem;
  font-size: 1rem;
  color: var(--text-color);
  border-bottom: 1px dashed var(--border-light);
}

.progress-habit-page .prohabi-target-card__list li:last-child {
  border-bottom: none;
}

.progress-habit-page .prohabi-target-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--prohabi-accent, var(--theme-accent, #ff5a3c));
  font-weight: 700;
}

/* 4. 得られる変化（Before / After） */
.progress-habit-page .prohabi-transformation {
  padding: 80px 0;
}

.progress-habit-page .prohabi-transformation__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.progress-habit-page .prohabi-transform-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition-default);
}

.progress-habit-page .prohabi-transform-card:hover {
  box-shadow: var(--shadow-light);
  border-color: var(--prohabi-primary, var(--primary-color));
}

.progress-habit-page .prohabi-transform-card__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--gradient-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-habit-page .prohabi-transform-card__icon i {
  font-size: 1.5rem;
  color: var(--prohabi-primary, var(--primary-color));
}

.progress-habit-page .prohabi-transform-card__content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.progress-habit-page .prohabi-transform-card__before,
.progress-habit-page .prohabi-transform-card__after {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.progress-habit-page .prohabi-transform-card__label {
  font-family: var(--font-en);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.progress-habit-page
  .prohabi-transform-card__before
  .prohabi-transform-card__label {
  color: var(--text-lighter);
}

.progress-habit-page
  .prohabi-transform-card__after
  .prohabi-transform-card__label {
  color: var(--prohabi-accent, var(--theme-accent, #ff5a3c));
}

.progress-habit-page .prohabi-transform-card__text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-color);
}

.progress-habit-page
  .prohabi-transform-card__before
  .prohabi-transform-card__text {
  color: var(--text-light);
}

.progress-habit-page
  .prohabi-transform-card__after
  .prohabi-transform-card__text {
  color: var(--prohabi-primary, var(--primary-color));
  font-weight: 700;
}

.progress-habit-page .prohabi-transform-card__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-habit-page .prohabi-transform-card__arrow i {
  font-size: 0.875rem;
  color: var(--prohabi-accent, var(--theme-accent, #ff5a3c));
}

/* 5. プロハビの流れ（コア）— 5ステップ・シェブロン */
.progress-habit-page .prohabi-flow {
  --prohabi-flow-primary: var(--prohabi-primary, var(--primary-color, #1d2089));
  --prohabi-flow-chevron-notch: clamp(18px, 2.2vw, 28px);
  padding: 80px 0;
}

.progress-habit-page .prohabi-flow__lead {
  max-width: 42rem;
  font-size: clamp(0.875rem, 0.82rem + 0.2vw, 1rem);
  line-height: 1.8;
}

.progress-habit-page .prohabi-flow__body {
  margin-top: clamp(2rem, 3.5vw, 2.75rem);
}

.progress-habit-page .prohabi-flow__phases {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0.75rem 0 0;
  padding: 0;
}

.progress-habit-page .prohabi-flow-phase {
  grid-column: span var(--phase-span, 1);
  position: relative;
  text-align: center;
  padding-top: 1.35rem;
}

.progress-habit-page .prohabi-flow-phase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.65rem;
  right: 0.65rem;
  border-top: 1px solid
    color-mix(in srgb, var(--prohabi-flow-primary) 28%, transparent);
}

.progress-habit-page .prohabi-flow-phase__label {
  display: inline-block;
  font-size: clamp(0.75rem, 0.7rem + 0.15vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--prohabi-flow-primary);
}

.progress-habit-page .prohabi-flow__chevrons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  filter: drop-shadow(0 4px 14px rgba(29, 32, 137, 0.06));
}

.progress-habit-page .prohabi-flow-chevron {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin-right: calc(var(--prohabi-flow-chevron-notch) * -0.72);
}

.progress-habit-page .prohabi-flow-chevron:last-child {
  margin-right: 0;
  z-index: 5;
}

.progress-habit-page .prohabi-flow-chevron--1 {
  z-index: 1;
}
.progress-habit-page .prohabi-flow-chevron--2 {
  z-index: 2;
}
.progress-habit-page .prohabi-flow-chevron--3 {
  z-index: 3;
}
.progress-habit-page .prohabi-flow-chevron--4 {
  z-index: 4;
}

.progress-habit-page .prohabi-flow-chevron__inner {
  min-height: clamp(11.5rem, 10rem + 4vw, 14.5rem);
  padding: clamp(1.1rem, 1.5vw, 1.5rem) clamp(1.35rem, 2vw, 1.85rem)
    clamp(1.1rem, 1.5vw, 1.5rem) clamp(1rem, 1.4vw, 1.35rem);
  clip-path: polygon(
    0 0,
    calc(100% - var(--prohabi-flow-chevron-notch)) 0,
    100% 50%,
    calc(100% - var(--prohabi-flow-chevron-notch)) 100%,
    0 100%,
    var(--prohabi-flow-chevron-notch) 50%
  );
}

.progress-habit-page .prohabi-flow-chevron--1 .prohabi-flow-chevron__inner {
  padding-left: clamp(1rem, 1.4vw, 1.35rem);
  clip-path: polygon(
    0 0,
    calc(100% - var(--prohabi-flow-chevron-notch)) 0,
    100% 50%,
    calc(100% - var(--prohabi-flow-chevron-notch)) 100%,
    0 100%
  );
  background: var(--white);
}

.progress-habit-page .prohabi-flow-chevron--2 .prohabi-flow-chevron__inner {
  background: color-mix(in srgb, var(--prohabi-flow-primary) 6%, white);
}

.progress-habit-page .prohabi-flow-chevron--3 .prohabi-flow-chevron__inner {
  background: color-mix(in srgb, var(--prohabi-flow-primary) 12%, white);
}

.progress-habit-page .prohabi-flow-chevron--4 .prohabi-flow-chevron__inner {
  background: color-mix(in srgb, var(--prohabi-flow-primary) 20%, white);
}

.progress-habit-page .prohabi-flow-chevron--5 .prohabi-flow-chevron__inner {
  background: color-mix(in srgb, var(--prohabi-flow-primary) 30%, white);
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    0 100%,
    var(--prohabi-flow-chevron-notch) 50%
  );
}

.progress-habit-page .prohabi-flow-chevron__label {
  margin: 0 0 0.35rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  line-height: 1;
  padding-left: 1rem;
}

.progress-habit-page .prohabi-flow-chevron__label-en {
  font-family: var(--font-en);
  font-size: clamp(0.625rem, 0.58rem + 0.12vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--prohabi-flow-primary);
}

.progress-habit-page .prohabi-flow-chevron__number {
  font-family: var(--font-en);
  font-size: clamp(2rem, 1.5rem + 1.8vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--prohabi-flow-primary);
}

.progress-habit-page .prohabi-flow-chevron__title {
  margin: 0 0 clamp(0.5rem, 0.8vw, 0.75rem);
  font-size: clamp(0.8125rem, 0.76rem + 0.22vw, 0.9375rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--prohabi-flow-primary);
  padding-left: 1rem;
}

.progress-habit-page .prohabi-flow-chevron__desc {
  margin: 0;
  font-size: clamp(0.8125rem, 0.786rem + 0.1179vw, 0.9275rem);
  line-height: 1.8;
  padding-left: 1rem;
}

/* 6. 選ばれる理由 */
.progress-habit-page .prohabi-why {
  padding: 60px 0;
  margin-bottom: 40px;
}

.progress-habit-page .prohabi-why__list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.progress-habit-page .prohabi-why__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--gradient-subtle);
  border-radius: var(--border-radius-sm);
}

.progress-habit-page .prohabi-why__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-light);
}

.progress-habit-page .prohabi-why__icon i {
  font-size: 1.25rem;
  color: var(--prohabi-primary, var(--primary-color));
}

.progress-habit-page .prohabi-why__text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.5;
}

/* 7. プラン・料金 */
.progress-habit-page .prohabi-pricing {
  padding: 80px 0;
}

.progress-habit-page .prohabi-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.progress-habit-page .prohabi-price-card {
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-default);
  position: relative;
}

.progress-habit-page .prohabi-price-card:hover {
  border-color: var(--prohabi-primary, var(--primary-color));
  box-shadow: var(--shadow-medium);
}

.progress-habit-page .prohabi-price-card--popular {
  border-color: var(--prohabi-accent, var(--theme-accent, #ff5a3c));
  transform: scale(1.02);
}

.progress-habit-page .prohabi-price-card--popular:hover {
  transform: scale(1.04);
}

.progress-habit-page .prohabi-price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--prohabi-accent, var(--theme-accent, #ff5a3c));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.progress-habit-page .prohabi-price-card__name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--prohabi-primary, var(--primary-color));
  margin: 0 0 0.5rem;
}

.progress-habit-page .prohabi-price-card__description {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin: 0 0 1.5rem;
}

.progress-habit-page .prohabi-price-card__price {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.progress-habit-page .prohabi-price-card__amount {
  display: block;
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--prohabi-primary, var(--primary-color));
  line-height: 1;
}

.progress-habit-page .prohabi-price-card__unit {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.progress-habit-page .prohabi-price-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.progress-habit-page .prohabi-price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: var(--text-color);
  border-bottom: 1px dashed var(--border-light);
}

.progress-habit-page .prohabi-price-card__features li:last-child {
  border-bottom: none;
}

.progress-habit-page .prohabi-price-card__features li i {
  color: var(--prohabi-accent, var(--theme-accent, #ff5a3c));
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.progress-habit-page .prohabi-pricing__note {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: var(--gradient-subtle-light);
  border-radius: 8px;
}

/* 9. FAQ（既存のservice-faqスタイルを継承） */
.progress-habit-page .prohabi-faq {
  padding: 80px 0;
}

/* =================================================
   プロハビページ レスポンシブ対応
   ================================================= */

/* タブレット（lg未満 / 991.98px以下） */
@media screen and (max-width: 991.98px) {
  .progress-habit-page .prohabi-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .progress-habit-page .prohabi-flow__chevrons {
    gap: 0;
  }

  .progress-habit-page .prohabi-flow-chevron__inner {
    min-height: 10.5rem;
    padding-right: 1.25rem;
  }

  .progress-habit-page .prohabi-flow-chevron__desc {
    line-height: 1.65;
  }

  .progress-habit-page .prohabi-pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .progress-habit-page .prohabi-price-card {
    padding: 1.5rem;
  }

  .progress-habit-page .prohabi-price-card--popular {
    transform: scale(1);
  }

  .progress-habit-page .prohabi-price-card--popular:hover {
    transform: translateY(-4px);
  }
}

/* スマホ（md未満 / 767.98px以下） */
@media screen and (max-width: 767.98px) {
  .progress-habit-page #prohabi-hero {
    padding: 0 0 40px 0;
  }

  .progress-habit-page .prohabi-about,
  .progress-habit-page .prohabi-target,
  .progress-habit-page .prohabi-transformation,
  .progress-habit-page .prohabi-flow,
  .progress-habit-page .prohabi-pricing,
  .progress-habit-page .prohabi-impact,
  .progress-habit-page .prohabi-faq {
    padding: 60px 0;
  }

  .progress-habit-page .prohabi-why {
    padding: 40px 0;
  }

  .progress-habit-page .prohabi-about__wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .progress-habit-page .prohabi-about__logo {
    order: -1;
  }

  .progress-habit-page .prohabi-about__logo img {
    max-width: 100%;
  }

  .progress-habit-page .prohabi-about__content {
    justify-content: center;
  }

  .progress-habit-page .prohabi-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .progress-habit-page .prohabi-feature-card {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 1rem;
    text-align: left;
  }

  .progress-habit-page .prohabi-feature-card__icon {
    width: 56px;
    height: 56px;
    margin: 0;
    grid-row: span 2;
  }

  .progress-habit-page .prohabi-feature-card__title {
    margin: 0;
    align-self: end;
  }

  .progress-habit-page .prohabi-feature-card__description {
    align-self: start;
  }

  .progress-habit-page .prohabi-target__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .progress-habit-page .prohabi-transformation__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .progress-habit-page .prohabi-transform-card {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }

  .progress-habit-page .prohabi-transform-card__content {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .progress-habit-page .prohabi-transform-card__before,
  .progress-habit-page .prohabi-transform-card__after {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
  }

  .progress-habit-page .prohabi-transform-card__arrow {
    transform: rotate(90deg);
  }

  .progress-habit-page .prohabi-flow {
    --prohabi-flow-arrow-h: clamp(18px, 5vw, 22px);
  }

  .progress-habit-page .prohabi-flow__phases {
    display: none;
  }

  .progress-habit-page .prohabi-flow__chevrons {
    grid-template-columns: 1fr;
    gap: 0;
    filter: none;
  }

  .progress-habit-page .prohabi-flow-chevron {
    margin-right: 0;
    margin-bottom: 0;
    clip-path: none;
    background: transparent;
  }

  /* 下向き矢印を次STEPに重ねる */
  .progress-habit-page .prohabi-flow-chevron + .prohabi-flow-chevron {
    margin-top: calc(var(--prohabi-flow-arrow-h) * -1);
  }

  /* 上のSTEPほど前面 */
  .progress-habit-page .prohabi-flow-chevron--1 {
    z-index: 5;
  }

  .progress-habit-page .prohabi-flow-chevron--2 {
    z-index: 4;
  }

  .progress-habit-page .prohabi-flow-chevron--3 {
    z-index: 3;
  }

  .progress-habit-page .prohabi-flow-chevron--4 {
    z-index: 2;
  }

  .progress-habit-page .prohabi-flow-chevron--5 {
    z-index: 1;
  }

  .progress-habit-page .prohabi-flow-chevron__inner {
    min-height: auto;
    padding: 1.15rem 1.25rem;
    border-radius: 0;
    clip-path: none;
  }

  /* STEP 1–4：下矢印のみ */
  .progress-habit-page .prohabi-flow-chevron--1 .prohabi-flow-chevron__inner,
  .progress-habit-page .prohabi-flow-chevron--2 .prohabi-flow-chevron__inner,
  .progress-habit-page .prohabi-flow-chevron--3 .prohabi-flow-chevron__inner,
  .progress-habit-page .prohabi-flow-chevron--4 .prohabi-flow-chevron__inner {
    padding-top: 2rem;
    padding-bottom: calc(1.15rem + var(--prohabi-flow-arrow-h));
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - var(--prohabi-flow-arrow-h)),
      50% 100%,
      0 calc(100% - var(--prohabi-flow-arrow-h))
    );
  }

  /* STEP 5：最終STEPは下矢印なし */
  .progress-habit-page .prohabi-flow-chevron--5 .prohabi-flow-chevron__inner {
    padding-bottom: 1.15rem;
    clip-path: none;
  }

  .progress-habit-page .prohabi-flow-chevron--1 .prohabi-flow-chevron__inner {
    background: var(--white);
  }

  .progress-habit-page .prohabi-flow-chevron--2 .prohabi-flow-chevron__inner {
    background: color-mix(in srgb, var(--prohabi-flow-primary) 6%, white);
  }

  .progress-habit-page .prohabi-flow-chevron--3 .prohabi-flow-chevron__inner {
    background: color-mix(in srgb, var(--prohabi-flow-primary) 12%, white);
  }

  .progress-habit-page .prohabi-flow-chevron--4 .prohabi-flow-chevron__inner {
    background: color-mix(in srgb, var(--prohabi-flow-primary) 20%, white);
  }

  .progress-habit-page .prohabi-flow-chevron--5 .prohabi-flow-chevron__inner {
    background: color-mix(in srgb, var(--prohabi-flow-primary) 30%, white);
  }

  .progress-habit-page .prohabi-flow-chevron__label,
  .progress-habit-page .prohabi-flow-chevron__title,
  .progress-habit-page .prohabi-flow-chevron__desc {
    padding-left: 0;
  }

  .progress-habit-page .prohabi-flow-chevron__label {
    flex-direction: row;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .progress-habit-page .prohabi-flow-chevron__number {
    font-size: 1.75rem;
  }

  .progress-habit-page .prohabi-why__list {
    grid-template-columns: 1fr;
  }

  .progress-habit-page .prohabi-why__item {
    padding: 1rem 1.25rem;
  }

  .progress-habit-page .prohabi-pricing__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .progress-habit-page .prohabi-price-card {
    padding: 2rem 1.5rem;
  }

  .progress-habit-page .prohabi-price-card--popular {
    order: -1;
  }

  .progress-habit-page .prohabi-price-card__amount {
    font-size: 2rem;
  }
}

/* 小さいスマホ（480px以下） */
@media screen and (max-width: 479.98px) {
  .progress-habit-page #prohabi-hero .page-hero-dept-catch {
    font-size: 1.375rem;
  }

  .progress-habit-page .prohabi-feature-card__icon {
    width: 48px;
    height: 48px;
  }

  .progress-habit-page .prohabi-feature-card__icon i {
    font-size: 1.25rem;
  }

  .progress-habit-page .prohabi-target-card__icon {
    width: 40px;
    height: 40px;
  }

  .progress-habit-page .prohabi-transform-card__icon {
    width: 48px;
    height: 48px;
  }

  .progress-habit-page .prohabi-why__icon {
    width: 40px;
    height: 40px;
  }

  .progress-habit-page .prohabi-why__icon i {
    font-size: 1rem;
  }
}

/* =================================================
   OTHER CONTENTS セクション（ページ回遊用ナビゲーション）
   ================================================= */

.other-contents-section {
  position: relative;
  overflow-x: hidden;
  padding: 80px 0 100px;
  background: var(--gradient-subtle-light);
}

/* セクション背面の装飾「Other」（フッター CTA の Contact と同趣旨・右方向にはみ出しクリップ） */
.other-contents-section::before {
  content: "Other";
  position: absolute;
  left: auto;
  right: clamp(-1.5rem, -4vw, 0.25rem);
  top: calc(80px + 1.1rem);
  transform: translateY(-50%);
  z-index: 0;
  font-family: var(--font-en);
  font-size: clamp(4rem, 2.1538rem + 8.2051vw, 12rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  color: rgba(29, 32, 137, 0.12);
  pointer-events: none;
  user-select: none;
}

.other-contents-section > .container {
  position: relative;
  z-index: 1;
}

.other-contents-title {
  font-family: var(--font-en);
  font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
  margin: 0 0 40px;
  /* 既存のセクションタイトルと同じグラデーション */
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
  margin-inline: auto;
}

.other-contents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* 2アイテムの場合 */
.other-contents-grid[data-items="2"] {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin: 0 auto;
}

/* 3アイテムの場合 */
.other-contents-grid[data-items="3"] {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

/* 4アイテムの場合 */
.other-contents-grid[data-items="4"] {
  grid-template-columns: repeat(4, 1fr);
}

.other-contents-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid rgba(29, 32, 137, 0.08);
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  color: var(--primary-color);
  position: relative;
  transition: var(--card-transition);
  box-shadow: var(--shadow-light);
  overflow: hidden;
}

.other-contents-card:hover {
  box-shadow: var(--card-shadow-hover);
  border-color: transparent;
  text-decoration: none;
}

/* タイトル */
.other-contents-card__title {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.other-contents-card:hover .other-contents-card__title {
  color: var(--primary-color);
}

/* 矢印アイコン（右側・既存のボタンスタイルに準拠） */
.other-contents-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.other-contents-card__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background-color: currentColor;
  transition: width 0.35s ease;
  z-index: 0;
}

.other-contents-card__arrow {
  font-size: 0.9rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  color: inherit;
  transition: color 0.3s ease;
}

.other-contents-card:hover .other-contents-card__icon::after {
  width: 100%;
}

.other-contents-card:hover .other-contents-card__arrow {
  color: var(--white);
}

/* タブレット対応 */
@media screen and (max-width: 991.98px) {
  .other-contents-section {
    padding: 60px 0 80px;
  }

  .other-contents-section::before {
    top: calc(60px + 1rem);
  }

  .other-contents-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .other-contents-grid[data-items="2"],
  .other-contents-grid[data-items="3"],
  .other-contents-grid[data-items="4"] {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
}

/* スマートフォン対応 */
@media screen and (max-width: 767.98px) {
  .other-contents-section {
    padding: 50px 0 60px;
  }

  .other-contents-section::before {
    top: calc(50px + 0.95rem);
  }

  .other-contents-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .other-contents-grid,
  .other-contents-grid[data-items="2"],
  .other-contents-grid[data-items="3"],
  .other-contents-grid[data-items="4"] {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: none;
  }

  .other-contents-card {
    padding: 16px 12px;
    gap: 8px;
    align-items: center;
  }

  .other-contents-card__title {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .other-contents-card__icon {
    width: 18px;
    height: 18px;
    align-self: center;
    margin-top: auto;
  }

  .other-contents-card__arrow {
    font-size: 0.75rem;
  }
}

/* =================================================
   代表メッセージページ - 写真＋リード文
   ================================================= */

.greeting-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  align-items: start;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.greeting-intro__image {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.greeting-intro__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.greeting-intro__lead p {
  margin: 0 0 1.5rem;
}

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

.greeting-section .section-content {
  width: 100%;
  margin-top: 0;
}

/* レスポンシブ対応 */


@media screen and (max-width: 1399.98px) {
  .greeting-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .greeting-intro__image {
    order: -1;
    margin: 0 auto;
    width: 100%;
  }
}

/* =============================================
   サービス詳細ページ KV（キービジュアル）
   ============================================= */

.service-kv {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 0;
  margin-bottom: 120px;
}

.service-kv__inner {
  position: relative;
  width: calc(100% - 7rem);
  height: clamp(300px, 45vw, 560px);
  margin-left: auto;
  clip-path: inset(0 0 0 100%);
  animation: kv-reveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

@keyframes kv-reveal {
  from {
    clip-path: inset(0 0 0 100%);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

.service-kv__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 767.98px) {
  .service-kv {
    padding-top: 0;
    margin-bottom: 20px;
  }
  .service-kv__inner {
    width: calc(100% - 4%);
    height: clamp(220px, 55vw, 320px);
  }
}

/* KV 非表示時：タイトル直下から本文エリアへ。KV ブロックと同等の前後のリズムを確保 */
.service-detail-page--no-kv .page-content-with-sidebar {
  padding-top: 0;
}

@media screen and (max-width: 767.98px) {
  .service-detail-page--no-kv .page-content-with-sidebar {
    padding-top: clamp(1.5rem, 4vw, 2.5rem);
  }
}

/* ==============================
  FaveLink Acceptance Flow
============================== */

.fv-acceptance-flow {
  padding: 80px 0px;
}

.fv-flow-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.fv-flow-heading {
  margin-bottom: 40px;
}

.fv-flow-lead {
  margin: 0;
  color: var(--text-color);
  font-size: clamp(0.875rem, 0.8462rem + 0.1282vw, 1rem);
  line-height: 1.8;
}

.fv-flow-list {
  position: relative;
}

.fv-flow-card {
  overflow: hidden;
  background: #fff;
  border: 3px solid var(--primary-color);
  border-radius: var(--border-radius-md);
  box-shadow: 0 14px 34px rgba(29, 32, 137, 0.12);
}

.fv-flow-card + .fv-flow-card {
  margin-top: 36px;
}

.fv-flow-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  background: var(--gradient-primary);
  color: #fff;
}

.fv-flow-card-title-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.fv-flow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.fv-flow-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.3;
}

.fv-flow-card-title i {
  font-size: 0.95em;
}

.fv-flow-card-button {
  /* 現状は非表示。今後使用する場合は display: none を削除する */
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--accent-warm);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.fv-flow-card-button:hover {
  color: #fff;
  opacity: 0.88;
  transform: translateY(-1px);
}

.fv-flow-card-description {
  margin: 0;
  padding: 22px 28px 0;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.8;
}

.fv-flow-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 28px 30px;
}

.fv-flow-group {
  padding: 22px;
  background: var(--primary-light);
  border: 2px solid var(--secondary-color);
  border-radius: var(--border-radius-md);
}

.fv-flow-group-title {
  margin: 0 0 14px;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.fv-flow-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fv-flow-items li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--secondary-color);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.fv-flow-arrow {
  position: relative;
  display: flex;
  justify-content: center;
  height: 70px;
}

.fv-flow-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  width: 4px;
  height: 38px;
  background: var(--primary-color);
}

.fv-flow-arrow::after {
  content: "";
  position: absolute;
  top: 32px;
  border-top: 28px solid var(--primary-color);
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
}

.fv-flow-arrow span {
  position: absolute;
  top: 12px;
  right: calc(50% + 38px);
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.fv-flow-note {
  max-width: 920px;
  margin: 28px auto 0;
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}

/* ==============================
  Acceptance Flow Responsive
============================== */

@media (max-width: 900px) {
  .fv-acceptance-flow {
    padding: 64px 16px;
  }

  .fv-flow-card-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .fv-flow-card-title-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .fv-flow-card-button {
    width: 100%;
  }

  .fv-flow-card-description {
    padding: 20px 20px 0;
  }

  .fv-flow-groups {
    grid-template-columns: 1fr;
    padding: 22px 20px 26px;
  }

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

  .fv-flow-arrow span {
    right: auto;
    left: calc(50% + 34px);
  }
}

@media (max-width: 560px) {

  .fv-flow-card {
    border-width: 2px;
    border-radius: var(--border-radius-md);
  }

  .fv-flow-card-title {
    font-size: 23px;
  }

  .fv-flow-group {
    padding: 18px;
  }

  .fv-flow-group-title {
    font-size: 18px;
  }

  .fv-flow-items {
    grid-template-columns: 1fr;
  }

  .fv-flow-items li {
    min-height: auto;
    font-size: 14px;
  }

  .fv-flow-arrow {
    height: 62px;
  }

  .fv-flow-arrow span {
    display: none;
  }

  .fv-flow-note {
    text-align: left;
  }
}
