@charset "UTF-8";
/* ----------------------------------------
  CSS カスタムプロパティ（変数）
---------------------------------------- */
:root {
  /* カラー */
  --color-primary: #193A6A;
  --color-accent: #0057A7;
  --color-gradient-start: #002982;
  --color-gradient-end: #0093AD;
  --color-gradient: linear-gradient(110deg, #002982, #0093AD);
  --color-text: #333333;
  --color-text-light: #666666;
  --color-bg-gray: #F4F4F4;
  --color-bg-form: #F8F8F8;
  --color-white: #FFFFFF;
  --color-border-gray: #838383;
  --color-border-form: #EFF0F2;
  /* フォント */
  --font-primary: "Noto Sans JP", sans-serif;
  --font-montserrat: "Montserrat", sans-serif;
  --font-oswald: "Oswald", sans-serif;
  /* レイアウト */
  /* --content-width をリキッドレイアウトの外枠として使用 */
  /* 1440px + padding 80px × 2 = 1440px の外枠 → 内コンテンツは最大 1280px */
  --max-width: 1440px;
  --content-width: 1440px;
  --header-height: 80px;
  --side-padding: 80px;
  /* トランジション */
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* ----------------------------------------
  リセット
---------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-base);
}

a:hover {
  opacity: 0.8;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* ----------------------------------------
  タブレット〜中間（768px〜1280px）
---------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1280px) {
  :root {
    --side-padding: 5vw; /* 両側5vwで合計10vw → コンテンツ幅約90% */
  }
}
/* ----------------------------------------
  レスポンシブ（SP）
---------------------------------------- */
@media screen and (max-width: 767px) {
  :root {
    --side-padding: 16px;
    --header-height: 64px;
  }
  body {
    font-size: 14px;
  }
}
/* ----------------------------------------
  ユーティリティ
---------------------------------------- */
.u-pc-only {
  display: inline;
}

.u-sp-only {
  display: none;
}

/* PC（768px+）と600px以下のみ表示、601〜767pxは非表示 */
.u-pc-and-narrow {
  display: inline;
}

/* ----------------------------------------
  セクション共通ラベル・タイトル
---------------------------------------- */
.section-label {
  display: inline-block;
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-white);
  background-color: var(--color-primary);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(26px, 2.78vw, 40px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
  margin-bottom: clamp(32px, 3.33vw, 48px);
  text-align: center;
}

/* ----------------------------------------
  スクロールアニメーション
---------------------------------------- */
.js-scroll-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ----------------------------------------
  ボディロック（モバイルメニュー用）
---------------------------------------- */
.body-lock {
  overflow: hidden;
}

/* ----------------------------------------
  Marketo フォームスタイル上書き
---------------------------------------- */
.mktoForm {
  width: 100% !important;
  font-family: var(--font-primary) !important;
}

.mktoForm .mktoFieldWrap {
  width: 100% !important;
}

.mktoForm .mktoField {
  width: 100% !important;
  padding: 12px 16px !important;
  font-size: 16px !important;
  border: 1px solid var(--color-border-form) !important;
  border-radius: 6px !important;
  background-color: var(--color-bg-form) !important;
  font-family: var(--font-primary) !important;
  transition: border-color var(--transition-base) !important;
}

.mktoForm .mktoField:focus {
  border-color: var(--color-accent) !important;
  outline: none !important;
}

.mktoForm label {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--color-text) !important;
  margin-bottom: 4px !important;
}

.mktoForm .mktoAsterix {
  color: #C62828 !important;
}

.mktoForm .mktoButtonRow {
  text-align: center !important;
  margin-top: 24px !important;
}

.mktoForm .mktoButton {
  width: 100% !important;
  max-width: 400px !important;
  padding: 16px 32px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--color-white) !important;
  background: var(--color-gradient) !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: opacity var(--transition-base) !important;
  font-family: var(--font-primary) !important;
}

.mktoForm .mktoButton:hover {
  opacity: 0.9 !important;
}

.mktoForm .mktoOffset,
.mktoForm .mktoGutter {
  display: none !important;
}

.mktoForm .mktoFormRow {
  margin-bottom: 16px !important;
}

.mktoForm select.mktoField {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' fill='none' stroke-width='2'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  padding-right: 40px !important;
}

/* ----------------------------------------
  レスポンシブ（SP）
---------------------------------------- */
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
  .u-sp-only {
    display: inline;
  }
  /* 601〜767px では非表示 */
  .u-pc-and-narrow {
    display: none;
  }
}
/* 600px以下のみ表示（u-narrow-only 単独用） */
.u-narrow-only {
  display: none;
}

@media screen and (max-width: 600px) {
  .u-narrow-only {
    display: inline;
  }
  /* 600px以下では再表示 */
  .u-pc-and-narrow {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  .section-label {
    font-size: 12px;
    padding: 4px 18px;
  }
  .section-title {
    font-size: 26px;
    margin-bottom: 32px;
  }
}
/* ========================================
  ヘッダー
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-white);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-base);
}

.header-hidden {
  /* 常時追従のため非表示無効化 */
  transform: translateY(0);
}

.header-inner {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--side-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  flex-shrink: 0;
}

/* ロゴ: 1440pxで250px、比例縮小 */
.header-logo img {
  width: clamp(160px, 17.36vw, 250px);
  height: auto;
}

.header-nav {
  margin-left: auto;
  /* 1440pxで48px → 3.33vw */
  margin-right: clamp(16px, 3.33vw, 48px);
}

.header-nav-list {
  display: flex;
  /* navギャップ: 1440pxで48px、比例縮小 */
  gap: clamp(20px, 3.33vw, 48px);
}

.header-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
  position: relative;
}

.header-nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-base);
}

.header-nav-link:hover::after {
  width: 100%;
}

.header-nav-link:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  width: 155px;
  height: 40px;
  border-radius: 4px;
  white-space: nowrap;
  transition: all var(--transition-base);
}
.header-btn img {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.header-btn-outline {
  border: 1px solid var(--color-gradient-start);
  background-color: var(--color-white);
  background-image: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.2s ease;
}

.header-btn-outline:hover {
  background-color: rgba(0, 41, 130, 0.04);
  opacity: 1;
  transform: translateY(-3px);
}

.header-btn-solid {
  border: none;
  color: var(--color-white);
  background: var(--color-gradient);
  transition: all 0.2s ease;
  /* 立体感: 天面ハイライト + 内側底面陰影（外部ボトムシャドウなし） */
  box-shadow: inset 0 8px 12px -5px rgba(255, 255, 255, 0.35), inset 0 -8px 12px -5px rgba(0, 0, 60, 0.3);
}

.header-btn-solid:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: inset 0 8px 12px -5px rgba(255, 255, 255, 0.35), inset 0 -8px 12px -5px rgba(0, 0, 60, 0.3);
}

/* ----------------------------------------
  ハンバーガー（1280px以下で表示）
---------------------------------------- */
.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 6px;
  z-index: 1010;
}

.header-hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  transition: all var(--transition-base);
  border-radius: 1px;
}

.header-hamburger.is-active .header-hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header-hamburger.is-active .header-hamburger-line:nth-child(2) {
  opacity: 0;
}

.header-hamburger.is-active .header-hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ----------------------------------------
  モバイルメニュー（1280px以下）
---------------------------------------- */
.header-mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background-color: var(--color-white);
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  overflow-y: auto;
  display: none;
}

.header-mobile-menu.is-open {
  transform: translateX(0);
}

.header-mobile-nav {
  padding: 40px 24px;
}

.header-mobile-list {
  margin-bottom: 32px;
}

.header-mobile-list li {
  border-bottom: 1px solid var(--color-border-form);
}

.header-mobile-link {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
}

.header-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.header-mobile-actions .header-btn {
  width: 100%;
  height: auto;
  padding: 14px 20px;
  font-size: 16px;
}

/* ----------------------------------------
  タブレット〜（1280px以下：ハンバーガー表示）
---------------------------------------- */
@media screen and (max-width: 1280px) {
  .header-nav {
    display: none;
  }
  .header-actions {
    display: none;
  }
  .header-hamburger {
    display: flex;
  }
  .header-mobile-menu {
    display: block;
  }
}
/* ----------------------------------------
  SP（767px以下）
---------------------------------------- */
@media screen and (max-width: 767px) {
  .header-inner {
    padding: 0 16px;
  }
  .header-logo img {
    width: clamp(120px, 53.33vw, 200px); /* 375px時200px */
  }
}
/* ========================================
  フッター（LP2603準拠）
======================================== */
.footer {
  background: var(--color-white);
  color: var(--color-text);
  padding-block: clamp(5rem, 4.56rem + 1.88vw, 6.25rem) clamp(2rem, 1.38rem + 2.63vw, 3.75rem);
}
.footer p {
  margin: 0;
}

.footer__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer__logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.footer__logo-renoxia {
  width: 180px;
  height: auto;
  aspect-ratio: 5/1;
}

.footer__logo-showa {
  width: 180px;
  height: auto;
  aspect-ratio: 4.6/1;
}

.footer__contact {
  text-align: center;
  border-left: 1px solid #a2a9b1;
  border-right: 1px solid #a2a9b1;
  max-width: 465px;
  margin: clamp(2.5rem, 2.06rem + 1.88vw, 3.75rem) auto 0;
  padding-inline: 2em;
  display: grid;
  place-items: center;
}

.footer__contact-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer__contact img {
  width: 100%;
  max-width: 300px;
}

.footer__contact-note {
  margin-top: 1rem;
  font-size: 0.875rem;
}

.footer__bottom {
  text-align: center;
  margin-top: clamp(5rem, 4.56rem + 1.88vw, 6.25rem);
  font-size: clamp(0.625rem, 0.58rem + 0.19vw, 0.75rem);
  font-weight: 400;
}

/* ----------------------------------------
  レスポンシブ（768px以上）
---------------------------------------- */
@media (min-width: 768px) {
  .footer__logos {
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
  }
  .footer__logo-renoxia,
  .footer__logo-showa {
    width: auto;
    height: 62px;
  }
  .footer__logo-renoxia {
    transform: translateY(-4px);
  }
}
/* ========================================
  ファーストビュー（FV）
======================================== */
.fv {
  position: relative;
  /* 1440px→660px、1110px→540px を比例スケール。min300pxで768pxまで追従 */
  height: clamp(300px, 48.65vw, 660px);
  min-height: clamp(300px, 48.65vw, 660px);
  margin-top: var(--header-height);
  padding-top: 0;
  background-color: #F0F6FF;
  overflow: hidden;
}

/* 背景画像 */
.fv-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/top/fv-bg.webp");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* ----------------------------------------
  左コンテンツエリア（リキッドレイアウト）
---------------------------------------- */
.fv-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
  display: flex;
  align-items: flex-start; /* 上揃えでtop値を使用 */
  height: 100%;
}

.fv-content {
  max-width: clamp(280px, 42.6vw, 612px); /* 42.6×1440=613.4→612pxに確実にクランプ */
  width: 100%;
  position: relative;
  z-index: 2;
  /* 1440pxでtop:86px → 5.97vw */
  padding-top: clamp(56px, 5.97vw, 86px);
}

/* ----------------------------------------
  キャッチコピー（混在フォントサイズ）
---------------------------------------- */
.fv-title {
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
}

.fv-title-row {
  display: block;
  line-height: 1.4;
  white-space: nowrap;
}

/* 「メーカー」「縛られず、」「工場・倉庫」: 1440pxで52px */
.fv-title-word {
  font-size: clamp(28px, 3.7vw, 52px); /* 3.7×1440=53.28→52pxに確実にクランプ */
  font-weight: 700;
  color: var(--color-text);
  display: inline;
}

/* 「・」両サイドの余白を縮小（前：margin-left、後：letter-spacing） */
.fv-title-dot {
  margin-left: -0.23em;
  letter-spacing: -0.23em;
}

/* 「に」「に」「を。」: 1440pxで38px */
.fv-title-particle {
  font-size: clamp(20px, 2.72vw, 38px); /* 2.72×1440=39.17→38pxに確実にクランプ */
  font-weight: 700;
  color: var(--color-text);
  display: inline;
}

/* 「効く空調」グループ全体 */
.fv-title-accent-group {
  display: inline;
}

/* 「効く空調」＋「を。」を一体で折り返さないラッパー */
.fv-title-nowrap {
  display: inline;
  white-space: nowrap;
}

/* 「効く」ラッパー: アポストロフィをabsoluteで上端配置 */
.fv-kiku-wrap {
  position: relative;
  display: inline-block;
  padding-left: clamp(14px, 1.53vw, 18px);
}

/* 「効く空調」: 1440pxで60px・左→右グラデーション */
.fv-title-accent {
  font-size: clamp(32px, 4.25vw, 60px); /* 4.25×1440=61.2→60pxに確実にクランプ */
  font-weight: 700;
  line-height: 1.5;
  background: linear-gradient(to right, #002982 0%, #0093AD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  transform: skewX(-6deg);
  position: relative;
  z-index: 1;
  -webkit-filter: drop-shadow(0 0 1px rgb(255, 255, 255)) drop-shadow(0 0 1px rgb(255, 255, 255)) drop-shadow(0 0 1px rgb(255, 255, 255)) drop-shadow(0 0 1px rgb(255, 255, 255)) drop-shadow(0 0 1px rgb(255, 255, 255)) drop-shadow(0 0 1px rgb(255, 255, 255)) drop-shadow(0 0 1px rgb(255, 255, 255)) drop-shadow(0 0 1px rgb(255, 255, 255)) drop-shadow(0 0 1px rgb(255, 255, 255)) drop-shadow(0 0 1px rgb(255, 255, 255));
  filter: drop-shadow(0 0 1px rgb(255, 255, 255)) drop-shadow(0 0 1px rgb(255, 255, 255)) drop-shadow(0 0 1px rgb(255, 255, 255)) drop-shadow(0 0 1px rgb(255, 255, 255)) drop-shadow(0 0 1px rgb(255, 255, 255)) drop-shadow(0 0 1px rgb(255, 255, 255)) drop-shadow(0 0 1px rgb(255, 255, 255)) drop-shadow(0 0 1px rgb(255, 255, 255)) drop-shadow(0 0 1px rgb(255, 255, 255)) drop-shadow(0 0 1px rgb(255, 255, 255));
}

/* アポストロフィ SVG: 効くの上端にabsolute配置 */
.fv-apostrophe {
  position: absolute;
  top: 8px;
  left: 0;
  width: clamp(12px, 1.25vw, 18px);
  height: clamp(8px, 0.83vw, 12px);
  display: block;
}

/* 閉じアポストロフィ: 右上に180度回転 */
.fv-apostrophe--close {
  left: 48%;
  right: auto;
  transform: rotate(180deg);
}

/* ----------------------------------------
  サブコピー
---------------------------------------- */
.fv-subtitle {
  font-size: clamp(14px, 1.18vw, 17px);
  font-weight: 500;
  color: #333333;
  line-height: 1.7;
  word-break: break-word;
  margin-bottom: clamp(20px, 2.3vw, 32px);
}

/* ----------------------------------------
  特徴カード（3枚）
  白背景: w166px × h105px
  青バー: w186px × h46px（両端10px飛び出し、8px下）
---------------------------------------- */
.fv-features {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(20px, 2.5vw, 36px);
  margin-bottom: clamp(24px, 3.4vw, 48px);
  /* 左端の青バー（10px飛び出し）をfv-content左端に揃える */
  padding-left: 10px;
}

.fv-feature-card {
  position: relative; /* バーのabsolute基準 */
  width: clamp(100px, 11.53vw, 166px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  /* アイコン48pxのうち18px被り → 30px上に出る分の余白 */
  padding-top: clamp(20px, 2.1vw, 30px);
  /* 青バーを白背景の下に8pxだけ出す */
  padding-bottom: clamp(6px, 0.55vw, 8px);
}

.fv-feature-card-top {
  position: relative;
  z-index: 1; /* 青バーより前面 */
  background: #FFFFFF;
  box-shadow: 0px 4.5px 27.14px rgba(0, 0, 0, 0.18);
  border-radius: 4px;
  /* 1440pxで105px: 7.35×1440=105.84→確実にクランプ */
  height: clamp(70px, 7.35vw, 105px);
  padding: clamp(20px, 2.08vw, 29px) clamp(6px, 0.69vw, 10px) clamp(10px, 0.97vw, 14px);
  text-align: center;
}

/* アイコンラップ（白背景なし） */
.fv-feature-card-icon-wrap {
  position: absolute;
  /* 48pxアイコンで18px被り → -30px(=-(48-18)) */
  top: clamp(-30px, -2.1vw, -20px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(36px, 3.4vw, 48px);
  height: clamp(36px, 3.4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv-feature-card-icon {
  width: clamp(36px, 3.4vw, 48px);
  height: clamp(36px, 3.4vw, 48px);
  object-fit: contain;
  display: block;
}

/* サブタイトル: 1440pxで18px */
.fv-feature-card-sub {
  font-size: clamp(11px, 1.18vw, 17px);
  font-weight: 500;
  color: #333333;
  line-height: 1.3;
  word-break: break-word;
  margin-bottom: 4px;
}

/* 3枚目カード: padding-topを17pxに縮小 */
.fv-feature-card-top--compact {
  padding-top: clamp(12px, 1.21vw, 17px);
}

/* タイトル: 1440pxで24px */
.fv-feature-card-title {
  font-size: clamp(13px, 1.53vw, 22px);
  font-weight: 700;
  color: #0057A7;
  line-height: 1.3;
}

/* 青いボトムバー: 1440pxでw186px h46px、両端10px飛び出し */
.fv-feature-card-bar {
  position: absolute;
  bottom: 0;
  left: -10px; /* 両端10px飛び出し */
  width: calc(100% + 20px);
  height: clamp(28px, 3.26vw, 46px); /* 3.26×1440=46.9→確実にクランプ */
  background-color: #193A6A;
  z-index: 0; /* 白い背景の後ろ */
}

/* ----------------------------------------
  CTAボタン（1440pxでw270px h60px・ピル型）
---------------------------------------- */
.fv-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(200px, 18.75vw, 270px);
  height: clamp(48px, 4.17vw, 60px);
  padding: 0 clamp(38px, 3.47vw, 50px) 0 clamp(16px, 1.67vw, 24px);
  font-size: clamp(15px, 1.39vw, 20px);
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #FFFFFF;
  white-space: nowrap;
  background: var(--color-gradient);
  border-radius: 100px;
  transition: all 0.2s ease;
  /* 立体感: 天面ハイライト + 内側底面陰影（外部ボトムシャドウなし） */
  box-shadow: inset 0 10px 14px -6px rgba(255, 255, 255, 0.35), inset 0 -10px 14px -6px rgba(0, 0, 60, 0.3);
}

.fv-cta-btn:hover {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: inset 0 10px 14px -6px rgba(255, 255, 255, 0.35), inset 0 -10px 14px -6px rgba(0, 0, 60, 0.3);
}

/* 矢印 */
.fv-cta-btn-arrow {
  position: absolute;
  right: clamp(18px, 1.81vw, 26px);
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 9px;
  display: block;
  flex-shrink: 0;
}

/* ----------------------------------------
  右側：絶対配置の画像要素（.fv基準）
---------------------------------------- */
/* 青い楕円の背景
   1440px: right:-5.83vw(-84px), top:-1.39vw(-20px), w:865px, h:720px(50vw)
   FV装飾イラスト削除に伴い 60px 左・40px 下へ移動
*/
.fv-circle-bg {
  position: absolute;
  right: -10vw;
  /* PC: top基準ではなくbottom基準にして、画面幅が広がってもFVボトムから常に1vw上に維持 */
  bottom: 1vw;
  width: clamp(300px, 60.07vw, 865px);
  height: clamp(300px, 50.1vw, 720px);
  z-index: 1;
  pointer-events: none;
}

/* 円形スライドショー: 1440px時 right:95px top:78px 505×505px
   FV装飾イラスト削除に伴い 60px 左・40px 下へ移動 */
.fv-image-circle {
  position: absolute;
  right: clamp(36px, 6.6vw, 95px); /* 1440px時 95px (元 35px から +60px 左) */
  top: clamp(38px, 5.42vw, 78px); /* 1440px時 78px (元 38px から +40px 下) */
  width: clamp(220px, 35.07vw, 505px);
  height: clamp(220px, 35.07vw, 505px);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* フェードスライドショー */
.fv-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.fv-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.fv-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv-slide.is-active {
  opacity: 1;
}

/* ----------------------------------------
  1441px以上: 画像を左基準固定、青背景はwidthをvwで伸ばし続ける
---------------------------------------- */
@media screen and (min-width: 1441px) {
  .fv-circle-bg {
    width: 60.07vw;
    height: 50.1vw;
  }
  /* 画像: viewport中心からの距離で固定 */
  .fv-image-circle {
    right: auto;
    left: calc(50% + 120px); /* 1440px時の left:840px (元 900px から -60px) */
    top: 78px; /* 元 38px から +40px 下 */
  }
}
/* ----------------------------------------
  768-1110px: fv-subtitle の改行を非表示
---------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1110px) {
  .fv-subtitle br {
    display: none;
  }
  /* padding-top: 880px時に24px（2.73vw）*/
  .fv-content {
    padding-top: clamp(16px, 2.73vw, 30px);
  }
}
/* ----------------------------------------
  レスポンシブ（SP: 767px以下）
---------------------------------------- */
@media screen and (max-width: 767px) {
  .fv {
    height: auto;
    min-height: auto;
    overflow: hidden;
  }
  .fv-inner {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 16px 340px;
  }
  .fv-content {
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
  }
  .fv-title-row {
    white-space: normal;
  }
  .fv-title-word {
    font-size: 26px;
  }
  .fv-title-accent-group {
    margin-left: 0.15em;
    margin-right: 0.15em;
  }
  .fv-apostrophe {
    width: 12px;
    height: 8px;
    vertical-align: top;
  }
  .fv-subtitle {
    font-size: 3.73vw; /* 375px時14px、広いほど大きく */
    line-height: 1.8;
    text-align: left;
  }
  .fv-features {
    gap: 5%;
    padding-left: 0; /* バーはみ出し補正不要のためリセット */
    margin-bottom: 24px;
    justify-content: center;
  }
  .fv-feature-card {
    width: auto;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding-bottom: 4px; /* 青バーが4px下に出る分 */
    overflow: visible;
  }
  .fv-feature-card-top {
    flex: 1; /* 3枚の高さを揃えるため残り領域を埋める */
    height: auto;
    padding: 28px 4px 8px;
  }
  /* SP: バーをabsoluteに戻してPCと同様に両端へ広げる */
  .fv-feature-card-bar {
    position: absolute;
    bottom: -4px;
    left: -6px;
    width: calc(100% + 12px);
    height: 24px;
    margin-top: 0;
  }
  .fv-feature-card-sub {
    font-size: clamp(10px, 3.2vw, 12px); /* 375px時12px */
    line-height: 1.4;
  }
  .fv-feature-card-title {
    font-size: clamp(12px, 3.73vw, 14px); /* 375px時14px */
    line-height: 1.4;
  }
  .fv-cta-btn {
    width: 64%;
    font-size: 16px;
    height: 52px;
    justify-content: center;
  }
  /* SP: 画像エリアは下部に絶対配置（左右中央） */
  .fv-circle-bg {
    width: auto;
    height: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: 40px;
  }
  .fv-image-circle {
    width: 260px;
    height: 260px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: 60px;
  }
}
/* ========================================
  課題セクション
======================================== */
.problem {
  background-color: var(--color-white);
  /* FVから48px下 → 3.34×14.4=48.1→確実にクランプ */
  padding: clamp(32px, 3.34vw, 48px) 0 0;
  overflow: hidden;
}

.problem-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--side-padding); /* 両サイド80px */
  text-align: center;
}

/* グレー背景内コンテンツはアイコンより前面 */
.problem-title,
.problem-warning,
.problem-desc,
.problem-cards {
  position: relative;
  z-index: 1;
}

/* タイトルはグレー背景内に配置 */
.problem-title {
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-primary);
  /* タイトル下40px → 青色バナーまでの余白 */
  margin-bottom: clamp(28px, 2.78vw, 40px); /* 2.78×14.4=40.03→確実にクランプ */
}

.problem-title-row {
  display: block;
}

/* 大きい文字: 1440pxで34px（空調・お悩み・課題） */
.problem-title-word {
  font-size: clamp(20px, 2.37vw, 34px); /* 2.37×14.4=34.1→確実にクランプ */
  display: inline;
}

/* 小さい文字: 1440pxで28px（の・で・こんな・ありませんか？） */
.problem-title-particle {
  font-size: clamp(16px, 1.95vw, 28px); /* 1.95×14.4=28.1→確実にクランプ */
  display: inline;
}

.problem-title-accent {
  color: #0057A7;
}

/* お悩みのイラスト用ラッパー */
.problem-illust-anchor {
  position: relative;
  display: inline-block;
}

/* issue-title-illusut.svg: みの上に絶対配置 */
.problem-title-illust {
  position: absolute;
  top: -0.6em;
  right: -0.5em;
  width: clamp(16px, 1.67vw, 24px); /* 1.67×14.4=24.05→確実にクランプ */
  height: auto;
  display: block;
  pointer-events: none;
}

/* 青色の警告バナー（文字幅に合わせてfit-content） */
.problem-warning {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 1.11vw, 16px);
  background: #193A6A;
  border-radius: 8px;
  padding: 6px 32px;
  margin-bottom: 0;
}

.problem-warning-illust {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.problem-warning-text {
  font-size: clamp(14px, 1.25vw, 18px); /* 1.25×14.4=18→確実にクランプ */
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.6;
  text-align: left;
}

/* 補足説明文: 青色背景から24px */
.problem-desc {
  margin-top: clamp(16px, 1.67vw, 24px); /* 1.67×14.4=24.05→確実にクランプ */
  margin-bottom: 16px;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-text);
}

/* 課題カード（グレー背景エリア）— タイトルを内包 */
.problem-issues {
  position: relative; /* Alarm-icon絶対配置の基準 */
  background-color: transparent;
  background-image: url("../img/top/issue-bg.webp");
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  /* top: 60px → 4.17×14.4=60.1→確実にクランプ */
  padding: clamp(40px, 4.17vw, 60px) clamp(24px, 2.78vw, 40px) 0;
  margin-bottom: 0;
  overflow: hidden; /* アイコンをグレー背景内でクリップ */
}

/* グレー背景左上の装飾アイコン */
.problem-bg-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(160px, 20.84vw, 300px); /* 20.84×14.4=300.1→確実にクランプ */
  height: auto;
  pointer-events: none;
  z-index: 0;
}

/* ----------------------------------------
  カード散在レイアウト（絶対配置）
  1440px: コンテナ高さ600px
    カード①③: left/right:0, bottom:48px, rotate(-7deg)/rotate(7deg)
    カード②: 中央, bottom:185px
    アイコン(180px)が白背景上部からはみ出す（重なり90px）
---------------------------------------- */
.problem-cards {
  position: relative;
  height: clamp(380px, 37.5vw, 540px); /* 37.5×14.4=540.0→確実にクランプ */
}

/* カードラッパー: 絶対配置のみ（回転なし） */
.problem-card {
  position: absolute;
  width: clamp(240px, 26.5vw, 380px); /* 26.5×14.4=381.6→確実にクランプ */
}

/* 課題①: 左 */
.problem-card--1 {
  left: 0;
  top: clamp(50px, 6.25vw, 90px); /* 6.25×14.4=90→確実にクランプ */
}

/* 課題①アイコン: 1440px時 margin-bottom -110px */
.problem-card--1 .problem-card-icon-wrap {
  margin-bottom: clamp(-110px, -7.65vw, -60px); /* 7.65×14.4=110.2→確実にクランプ */
}

.problem-card--1 .problem-card-icon {
  width: auto;
  height: clamp(100px, 12.5vw, 180px); /* 12.5×14.4=180→確実にクランプ */
}

/* 白背景のみ rotate(-7deg)
   margin-top: -16px で白背景を16px上に
   padding-top = 重なり80px + 余白14px + 16px(白背景移動分) = 110px でテキスト位置を維持 */
.problem-card--1 .problem-card-body {
  transform: rotate(-7deg);
  transform-origin: center center;
  padding-top: clamp(75px, 9.03vw, 130px); /* 9.03×14.4=130.0→確実にクランプ */
}

/* テキストを水平に戻す */
.problem-card--1 .problem-card-content {
  transform: rotate(7deg);
}

/* 課題②: 中央、回転なし
   アイコン非重なり32px → カード高さ=32+310=342px
   white bg top from container top = 32px, desc margin 16px → desc底から48px ✓
   bottom = container(600) - card(342) = 258px */
.problem-card--2 {
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(58px, 13.75vw, 198px); /* 13.75×14.4=198.0→確実にクランプ */
}

/* 課題③: 右 */
.problem-card--3 {
  right: 0;
  top: clamp(24px, 2.78vw, 40px); /* 2.78×14.4=40.0→確実にクランプ */
}

/* 課題③アイコン: 1440px時 width 300px、height auto */
.problem-card--3 .problem-card-icon {
  width: clamp(160px, 20.84vw, 300px); /* 20.84×14.4=300.1→確実にクランプ */
  height: auto;
}

/* 白背景のみ rotate(7deg)
   padding-top 135px、左右48pxで3行折り返し */
.problem-card--3 .problem-card-body {
  transform: rotate(7deg);
  transform-origin: center center;
  padding: clamp(80px, 9.38vw, 135px) clamp(20px, 3.41vw, 49px) clamp(20px, 1.67vw, 24px); /* 9.38×14.4=135.1 / 3.41×14.4=49.1→確実にクランプ */
}

/* テキストを水平に戻す */
.problem-card--3 .problem-card-content {
  transform: rotate(-7deg);
}

/* アイコン: 白背景上部にはみ出す（非重なり32px、重なり148px） */
.problem-card-icon-wrap {
  text-align: center;
  position: relative;
  z-index: 2;
  /* アイコン180px - 非重なり32px = 重なり148px */
  margin-bottom: clamp(-148px, -10.29vw, -60px); /* 10.29×14.4=148.2→確実にクランプ */
}

.problem-card-icon {
  width: clamp(120px, 12.5vw, 180px); /* 12.5×14.4=180→確実にクランプ */
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* 白い背景エリア: W380×H310px */
.problem-card-body {
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  width: clamp(240px, 26.5vw, 380px); /* 26.5×14.4=381.6→確実にクランプ */
  height: clamp(200px, 21.6vw, 310px); /* 21.6×14.4=311.0→確実にクランプ */
  /* padding-top = 重なり148px + アイコン底との余白9px = 157px */
  padding: clamp(85px, 10.91vw, 157px) clamp(16px, 2.23vw, 32px) clamp(20px, 1.67vw, 24px); /* 2.23×14.4=32.1→確実にクランプ */
  box-sizing: border-box;
  overflow: hidden;
}

/* テキストコンテンツ（カード①③は回転戻し） */
.problem-card-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.problem-card-label {
  font-size: clamp(11px, 0.97vw, 14px);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}

/* タイトル: Figma指定 21px / 700 / 150% / 4% */
.problem-card-title {
  font-size: clamp(14px, 1.46vw, 21px); /* 1.46×14.4=21.0→確実にクランプ */
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  text-align: center;
}

/* 本文: Figma指定 16px / 500 / 150% / 4% */
.problem-card-text {
  font-size: clamp(12px, 1.11vw, 16px); /* 1.11×14.4=15.98≈16px→確実にクランプ */
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-text);
  text-align: center;
}

/* 「そこで」セクション */
.problem-transition {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0 0;
}

/* 逆三角形コンテナ: 1440pxでw220px h56px */
.problem-transition-triangle {
  width: clamp(140px, 15.28vw, 220px); /* 15.28×14.4=220.0 */
  height: clamp(36px, 3.89vw, 56px); /* 3.89×14.4=56.0 */
  background: var(--color-gradient);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-transition-text {
  color: var(--color-white);
  font-size: clamp(16px, 1.67vw, 24px); /* 1.67×14.4=24.05→確実にクランプ */
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: clamp(-14px, -0.98vw, -6px) 0 0; /* 0.98×14.4=14.1→確実にクランプ */
  line-height: 1.5;
}

/* 解決イメージ（画像＋オーバーレイ）
   — 上端を同角度の逆三角でえぐる
   三角の半幅: 110px = 7.64vw / 深さ: 56px = 3.89vw
   — tip同士の余白38px → margin-top: calc(38px - 3.89vw) で重なり調整 */
/* 角丸ラッパー: border-radius + overflow で clip-path と両立 */
.problem-resolve-wrap {
  margin-top: calc(38px - 3.89vw); /* 1440px時: -18px (18px重なり) */
  border-radius: clamp(20px, 2.08vw, 30px); /* 2.08×14.4=29.95→確実にクランプ */
  overflow: hidden;
}

.problem-resolve {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(50% - 7.64vw) 0, 50% 3.89vw, calc(50% + 7.64vw) 0, 100% 0, 100% 100%, 0 100%);
}

.problem-resolve-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.problem-resolve-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(2, 7, 33, 0.73);
}

/* コンテンツを通常フローに: top 78px・bottom 42px padding で余白を保証 */
.problem-resolve-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(48px, 5.42vw, 78px) clamp(20px, 2.78vw, 40px) clamp(26px, 2.92vw, 42px); /* 5.42×14.4=78.1 / 2.92×14.4=42.05→確実にクランプ */
  text-align: center;
}

.problem-resolve-logo {
  margin-bottom: clamp(16px, 1.67vw, 24px); /* 1.67×14.4=24.05→確実にクランプ */
}
.problem-resolve-logo img {
  width: clamp(160px, 16.67vw, 240px); /* 16.67×14.4=240.1→確実にクランプ */
  height: auto;
  margin: 0 auto;
  display: block;
}

/* 中立提案の強み: 左右に装飾縦線
   左: 4px|2px gap|2px(shadow) 12px gap text
   右: text 12px gap 2px(shadow)|2px gap|4px */
.problem-resolve-lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.11vw, 16px); /* flex gap = 2px空白+2px影+12px = 16px */
  font-size: clamp(18px, 1.94vw, 28px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: clamp(20px, 2.23vw, 32px); /* 2.23×14.4=32.1→確実にクランプ */
  /* 右に2px gap + 2px影線 */
  /* 左に2px影線 + 2px gap */
}
.problem-resolve-lead::before, .problem-resolve-lead::after {
  content: "";
  display: block;
  width: 4px;
  height: clamp(20px, 2.08vw, 30px); /* 2.08×14.4=29.95→確実にクランプ */
  background: var(--color-white);
  flex-shrink: 0;
}
.problem-resolve-lead::before {
  box-shadow: 5px 0 0 -1px var(--color-white);
}
.problem-resolve-lead::after {
  box-shadow: -5px 0 0 -1px var(--color-white);
}

.problem-resolve-sub {
  font-size: clamp(14px, 1.39vw, 20px); /* 1.39×14.4=20.0→確実にクランプ */
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.8; /* 36px / 20px = 1.8 */
  letter-spacing: 0.04em; /* 0.80px / 20px = 0.04em */
  word-wrap: break-word;
  text-shadow: 0px 4px 8px rgba(255, 255, 255, 0.25);
  margin-bottom: clamp(6px, 0.56vw, 8px); /* 0.56×14.4=8.1→確実にクランプ */
}

/* sub + rule をテキスト幅で揃えるラッパー */
.problem-resolve-sub-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: clamp(12px, 1.12vw, 16px);
}

.problem-resolve-rule {
  border: none;
  border-top: 1px solid #fff;
  margin: 0;
  width: 100%;
}

.problem-resolve-body {
  font-size: clamp(13px, 1.11vw, 16px);
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.8;
  margin: 0;
}

/* ----------------------------------------
  タブレット〜中間（768px〜1110px）
  PCと同レイアウトをリキッド縮小
---------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1110px) {
  .problem-cards {
    height: clamp(340px, 44vw, 488px);
  }
  /* アイコンを縮小 */
  .problem-card-icon {
    width: clamp(80px, 10.5vw, 116px);
  }
  .problem-card-icon-wrap {
    margin-bottom: clamp(-85px, -7.5vw, -60px);
  }
  .problem-card--1 .problem-card-icon {
    height: clamp(80px, 10.5vw, 116px);
    width: auto;
  }
  .problem-card--1 .problem-card-icon-wrap {
    margin-bottom: clamp(-70px, -6.5vw, -60px);
  }
  .problem-card--3 .problem-card-icon {
    width: clamp(110px, 16vw, 178px);
    height: auto;
  }
  /* カードボディの高さ・余白を縮小 */
  .problem-card-body {
    height: clamp(180px, 23vw, 255px);
    padding-top: clamp(60px, 8.5vw, 94px);
  }
  .problem-card--1 .problem-card-body {
    padding-top: clamp(55px, 7.8vw, 87px);
  }
  .problem-card--3 .problem-card-body {
    padding: clamp(55px, 7.8vw, 87px) clamp(12px, 2.8vw, 31px) clamp(12px, 1.5vw, 17px);
  }
  .problem-card-title {
    font-size: clamp(11px, 1.35vw, 15px);
  }
  .problem-card-text {
    font-size: clamp(9px, 1.05vw, 12px);
  }
}
/* ----------------------------------------
  レスポンシブ（SP）
---------------------------------------- */
@media screen and (max-width: 767px) {
  .problem {
    padding: 32px 0 0;
  }
  .problem-inner {
    padding: 0 16px;
  }
  .problem-title {
    margin-bottom: 24px;
  }
  .problem-title-word {
    font-size: 22px;
  }
  .problem-title-particle {
    font-size: 18px;
  }
  .problem-issues {
    padding: 32px 20px 28px;
  }
  .problem-issues {
    padding-bottom: 0;
  }
  .problem-warning {
    display: inline-flex;
    gap: 10px;
    padding: 8px 16px;
  }
  .problem-warning-illust {
    flex-shrink: 0;
    height: 20px;
    width: 20px;
  }
  .problem-warning-text {
    font-size: 13px;
    line-height: 1.6;
  }
  .problem-desc {
    margin-top: 16px;
    margin-bottom: 24px;
    font-size: 14px;
    text-align: left;
  }
  /* SP: カードを縦並びに */
  .problem-cards {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 32px;
  }
  .problem-card {
    position: static;
    width: 100%;
    transform: none !important;
  }
  .problem-card-body {
    transform: none !important;
    width: 100%;
    height: auto;
    box-sizing: border-box;
  }
  .problem-card-content {
    transform: none !important;
  }
  .problem-card-icon-wrap {
    margin-bottom: -68px; /* アイコン100px - 非重なり32px = 重なり68px */
  }
  .problem-card-icon {
    width: 100px;
  }
  .problem-card-body {
    padding: 77px 16px 20px; /* 重なり68px + 余白9px */
    min-height: auto;
  }
  .problem-card-title {
    font-size: 16px;
  }
  .problem-card-text {
    font-size: 12px;
  }
  .problem-issue-card {
    padding: 28px 20px 24px;
  }
  .problem-transition-triangle {
    width: 160px;
    height: 40px;
  }
  .problem-transition-text {
    font-size: 16px;
  }
  .problem-resolve-wrap {
    margin-top: -12px;
    border-radius: 20px;
  }
  .problem-resolve {
    clip-path: polygon(0 0, calc(50% - 70px) 0, 50% 36px, calc(50% + 70px) 0, 100% 0, 100% 100%, 0 100%);
  }
  .problem-resolve-img {
    height: 560px;
  }
  .problem-resolve-content {
    padding: 48px 20px 24px;
  }
  .problem-resolve-logo img {
    width: 180px;
  }
  .problem-resolve-lead {
    font-size: 20px;
    margin-bottom: 12px;
    gap: 12px;
  }
  .problem-resolve-sub {
    font-size: 15px;
  }
  .problem-resolve-body {
    font-size: 13px;
  }
}
/* ========================================
  特徴セクション（POINT）
======================================== */
.point {
  position: relative;
  background-color: var(--color-white);
  /* 前セクションから48px → 3.34×14.4=48.1→確実にクランプ */
  padding: clamp(32px, 3.34vw, 48px) 0 clamp(60px, 6.94vw, 100px);
  overflow: hidden;
  /* feature-bg: セクション上端から305px下に配置 → 21.18×14.4=305.0 */
}
.point::before {
  content: "";
  position: absolute;
  top: clamp(160px, 21.18vw, 305px);
  left: 0;
  width: 100%;
  height: calc(100% - clamp(160px, 21.18vw, 305px));
  background-image: url("../img/top/feature-bg.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  pointer-events: none;
}

.point-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

/* 見出しエリア: ドット＋ラベル＋タイトル 左寄せ */
.point-heading {
  text-align: left;
  margin-bottom: clamp(36px, 3.75vw, 54px); /* 3.75×14.4=54.0→確実にクランプ */
}

/* ドット5つを縦並び・中央揃え */
.point-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}

.point-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.point-dot--1 {
  background-color: #C0C9D2;
}

.point-dot--2 {
  background-color: #7A93AB;
}

.point-dot--3 {
  background-color: #307BBC;
}

.point-dot--4 {
  background-color: #155A97;
}

.point-dot--5 {
  background-color: #193A6A;
}

/* POINT ラベル: Figma指定スタイル上書き */
.point-heading .section-label {
  font-family: var(--font-primary); /* Noto Sans JP */
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  word-wrap: break-word;
  margin-bottom: 0; /* タイトルとの余白なし */
}

/* タイトル: 左寄せ・line-height 160% */
.point-heading .section-title {
  text-align: left;
  line-height: 1.6;
  margin-bottom: 0;
}

.point-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.89vw, 56px);
  background-color: var(--color-white);
  border-radius: 12px;
  /* 上下: 3.89×14.4=56.0 / 左右: border-left(10px)を引いた38px → 2.64×14.4=38.0 */
  padding: clamp(28px, 3.89vw, 56px) clamp(18px, 2.64vw, 38px);
  /* 5.97×14.4=85.97→確実にクランプ */
  margin-bottom: clamp(40px, 5.97vw, 86px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-left: 10px solid var(--color-primary);
  text-align: left;
}

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

.point-card-reverse {
  flex-direction: row-reverse;
}

.point-card-body {
  flex: 1;
  align-self: flex-start;
}

/* ----------------------------------------
  リボンバッジ（カード外・絶対配置）
  1440px: w64px h66px, 下側三角形カット
  白いカードから22px上に飛び出す
---------------------------------------- */
.point-card-badge {
  position: absolute;
  /* -1.53×14.4=-22.0 → 確実にクランプ */
  top: clamp(-22px, -1.53vw, -12px);
  /* カードのpadding-left(border-left含む)に合わせる: 2.64×14.4=38.0 */
  left: clamp(18px, 2.64vw, 38px);
  /* 4.44×14.4=63.9→確実にクランプ */
  width: clamp(44px, 4.44vw, 64px);
  /* 4.58×14.4=65.95→確実にクランプ */
  height: clamp(46px, 4.58vw, 66px);
  overflow: visible;
  z-index: 1;
  /* グラデーション面 + 下側逆三角形カット（上向きVくぼみ）→頂点が上方向 */
}
.point-card-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(122deg, #002982 0%, #0093AD 100%);
  /* 上79%が矩形、下21%はVくぼみ（頂点が79%の位置・上向き） */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 79%, 0 100%);
}

/* 右の折り目: バッジ上端（top:0）を起点に下向きに広がる三角形 */
/* 1440px: w11px × h22px */
.point-card-badge-fold {
  position: absolute;
  top: 0;
  left: 100%;
  width: 0;
  height: 0;
  border-bottom: clamp(12px, 1.53vw, 22px) solid #045E83;
  border-right: clamp(7px, 0.76vw, 11px) solid transparent;
}

/* "POINT" テキスト: 12px / Noto Sans JP / 900 */
/* Figma: 上から6px・左右中央 */
.point-card-badge-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 6px;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em; /* 0.48px / 12px */
  line-height: 1;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  z-index: 1;
}

/* "01/02/03" 番号: 28px / Oswald / 700・左右中央 */
.point-card-badge-num {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* 18px(POINTテキスト下端) + 2px gap = 20px → 1.39×14.4=20.0 */
  top: clamp(14px, 1.39vw, 20px);
  color: var(--color-white);
  font-family: var(--font-oswald);
  /* 1.94×14.4=27.9→確実にクランプ */
  font-size: clamp(18px, 1.94vw, 28px);
  font-weight: 700;
  letter-spacing: 0.04em; /* 1.12px / 28px */
  line-height: 1;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  z-index: 1;
}

.point-card-title {
  font-size: clamp(20px, 1.94vw, 28px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.point-card-divider {
  border: none;
  height: 1px;
  background-color: #858585;
  margin-bottom: 24px;
}

/* リード文（最初の一文）: 18px */
.point-card-lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 24px;
}

.point-card-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8; /* 28.80px / 16px */
  letter-spacing: 0.04em; /* 0.64px / 16px */
  color: var(--color-text);
}

.point-card-image {
  flex-shrink: 0;
  width: clamp(180px, 20.83vw, 300px);
  height: clamp(180px, 20.83vw, 300px);
  border-radius: 12px;
  overflow: hidden;
}
.point-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----------------------------------------
  レスポンシブ（SP）
---------------------------------------- */
@media screen and (max-width: 767px) {
  .point {
    padding: 32px 0 60px;
  }
  .point-inner {
    padding: 0 16px;
  }
  .point-heading {
    margin-bottom: 32px;
  }
  .point-card {
    flex-direction: column;
    padding: 40px 20px 28px;
    gap: 24px;
    border-left-width: 6px;
  }
  .point-card-badge {
    top: -12px;
    left: 20px; /* SP: border-left(6px)+padding-left(20px)に合わせる */
    width: 44px;
    height: 46px;
  }
  .point-card-badge-fold {
    top: 0;
    border-bottom-width: 12px;
    border-right-width: 7px;
  }
  .point-card-badge-label {
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
    font-size: 10px;
  }
  .point-card-badge-num {
    left: 50%;
    transform: translateX(-50%);
    top: 18px; /* 6px(top) + 10px(font) + 2px(gap) */
    font-size: 18px;
  }
  .point-card-reverse {
    flex-direction: column;
  }
  .point-card-title {
    font-size: 18px;
  }
  .point-card-lead {
    font-size: 15px;
  }
  .point-card-text {
    font-size: 14px;
  }
  .point-card-image {
    width: 100%;
    height: 200px;
  }
}
/* ========================================
  CTAセクション
======================================== */
.cta {
  position: relative;
  padding: clamp(32px, 3.333vw, 48px) 0 clamp(44px, 4.444vw, 64px);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.cta-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/top/contact-cta-bg.webp");
  background-size: cover;
  background-position: center;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
  text-align: center;
}

.cta-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: Arial, sans-serif;
  font-size: clamp(14px, 1.389vw, 20px);
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  word-wrap: break-word;
  margin-bottom: clamp(10px, 1.111vw, 16px);
}
.cta-label::before, .cta-label::after {
  content: "";
  display: block;
  width: clamp(20px, 1.944vw, 28px);
  height: 1px;
  background: #ffffff;
  flex-shrink: 0;
}

.cta-title {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: clamp(20px, 2.222vw, 32px);
}

.cta-desc {
  font-size: clamp(14px, 1.111vw, 16px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: clamp(20px, 2.222vw, 32px);
}

/* CTAボックス */
.cta-box {
  background-color: var(--color-white);
  border-radius: clamp(16px, 2.083vw, 30px);
  padding: clamp(20px, 2.222vw, 32px) clamp(24px, 3.75vw, 54px) clamp(24px, 2.778vw, 40px);
  max-width: 1200px;
  margin: 0 auto;
}

.cta-box-text {
  font-family: var(--font-primary);
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
  color: #333333;
  margin-bottom: clamp(20px, 2.222vw, 32px);
  line-height: 1.7;
  word-wrap: break-word;
}

/* CTAボックス内 電話番号 */
.cta-box-phone-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  align-self: flex-start;
  text-align: center;
}

.cta-box-phone-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: clamp(12px, 1.111vw, 16px);
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.04em;
  word-wrap: break-word;
  padding: 0 clamp(16px, 1.667vw, 24px);
  height: clamp(22px, 2.222vw, 32px);
  border-radius: 100px;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, var(--color-gradient) border-box;
  margin-bottom: clamp(3px, 0.278vw, 4px);
}

.cta-box-phone-number-wrap {
  display: flex;
  align-items: flex-start;
  gap: clamp(6px, 0.556vw, 8px);
}

.cta-box-phone-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.cta-box-phone-icon {
  width: clamp(36px, 4.167vw, 60px);
  height: clamp(36px, 4.167vw, 60px);
  flex-shrink: 0;
}

.cta-box-phone-number {
  font-family: var(--font-oswald);
  font-size: clamp(28px, 2.778vw, 40px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  word-wrap: break-word;
}

.cta-box-phone-hours {
  font-size: clamp(13px, 1.181vw, 17px);
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.04em;
  word-wrap: break-word;
  line-height: 1.4;
}

.cta-box-phone-hours-label {
  font-family: var(--font-primary);
}

.cta-box-phone-hours-time {
  font-family: var(--font-oswald);
}

.cta-box-actions {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.333vw, 48px);
  justify-content: center;
}

.cta-box-btn-wrap {
  flex: 1;
  max-width: 360px;
  text-align: center;
  position: relative;
  padding-top: clamp(11px, 1.111vw, 16px);
}

.cta-box-btn-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  white-space: nowrap;
  font-family: var(--font-primary);
  font-size: clamp(11px, 1.042vw, 15px);
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.04em;
  padding: 0 clamp(16px, 1.667vw, 24px);
  height: clamp(22px, 2.222vw, 32px);
  border-radius: 100px;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, var(--color-gradient) border-box;
}

.cta-box-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: clamp(10px, 1.111vw, 16px);
  width: 100%;
  height: clamp(48px, 5.139vw, 74px);
  padding: 0 clamp(16px, 1.667vw, 24px);
  font-size: clamp(16px, 1.806vw, 26px);
  font-weight: 700;
  line-height: 1;
  border-radius: 100px;
  transition: all 0.2s ease;
}

.cta-box-btn-primary {
  color: var(--color-white);
  background: var(--color-gradient);
  /* 立体感: 天面ハイライト + 内側底面陰影（外部ボトムシャドウなし） */
  box-shadow: inset 0 10px 14px -6px rgba(255, 255, 255, 0.35), inset 0 -10px 14px -6px rgba(0, 0, 60, 0.3);
}
.cta-box-btn-primary:hover {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: inset 0 10px 14px -6px rgba(255, 255, 255, 0.35), inset 0 -10px 14px -6px rgba(0, 0, 60, 0.3);
}

.cta-box-btn-secondary {
  color: var(--color-accent);
  background: var(--color-white);
  border: 2px solid var(--color-accent);
}
.cta-box-btn-secondary span {
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-box-btn-secondary:hover {
  background-color: #F0F7FF;
  opacity: 1;
  transform: translateY(-3px);
}

.cta-box-btn-icon {
  width: clamp(20px, 1.944vw, 28px);
  height: clamp(20px, 1.944vw, 28px);
  flex-shrink: 0;
  display: block;
}

/* ----------------------------------------
  レスポンシブ（SP）
---------------------------------------- */
@media screen and (max-width: 767px) {
  .cta-inner {
    padding: 0 16px;
  }
  .cta-box {
    padding: 20px 16px 24px;
  }
  .cta-box-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .cta-box-phone-area {
    align-self: auto;
    width: 100%;
    text-align: center;
  }
  .cta-box-phone-number-wrap {
    justify-content: center;
  }
  .cta-box-btn-wrap {
    max-width: 100%;
    width: 100%;
    padding-top: 16px;
  }
  .cta-box-phone-label {
    height: 28px;
  }
  .cta-box-btn-label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    height: 28px;
    padding: 0 16px;
  }
  .cta-box-btn-wrap {
    max-width: 360px;
    margin: 0 auto;
  }
  .cta-box-btn {
    font-size: 16px;
    height: 56px;
    padding: 0 16px;
  }
}
/* ========================================
  事例セクション（CASE）
  ※ 全 clamp() は 1440px 基準。vw 値は max / 1440 × 100 を
     わずかに上回る値にして、1440px 時に必ず max に到達させる。
======================================== */
.case {
  background-color: var(--color-white);
  padding: 80px 0 100px;
}

.case-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
  text-align: left;
}

.case-heading {
  text-align: left;
  margin-bottom: 0;
}

/* CASE ラベル: POINTセクションと同スタイル */
.case-heading .section-label {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  word-wrap: break-word;
  margin-bottom: 0;
}

/* タイトル: 左寄せ・下に24px余白 */
.case-heading .section-title {
  text-align: left;
  line-height: 1.6;
  margin-bottom: clamp(16px, 1.668vw, 24px);
}

/* グラデーションハイライトテキスト */
.case-highlight-text {
  margin-bottom: clamp(12px, 1.112vw, 16px);
}

.case-highlight {
  display: inline-block;
  background: var(--color-gradient);
  padding: clamp(2px, 0.209vw, 3px) clamp(4px, 0.556vw, 8px);
  border-radius: 4px;
  color: var(--color-white);
  font-size: clamp(16px, 1.668vw, 24px);
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.6;
  word-wrap: break-word;
}

.case-lead {
  color: #0E0E0E;
  font-size: clamp(14px, 1.112vw, 16px);
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.9;
  word-wrap: break-word;
  margin-bottom: clamp(24px, 2.223vw, 32px);
  text-align: left;
}

/* 事例: タブ（PC）+ スライダー（SP） */
.case-cases {
  margin-bottom: clamp(48px, 5.556vw, 80px); /* 1440px時 80px */
}

/* ----------------------------------------
  PC: タブ + コンテンツ
  1440px時 テキストエリア:画像エリア ≒ 590:611
---------------------------------------- */
.case-tabbed {
  display: grid;
  grid-template-columns: 590fr 611fr;
  gap: clamp(24px, 3.34vw, 48px);
  align-items: start;
}

.case-tab-list {
  display: flex;
  flex-direction: column;
}

.case-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 0.556vw, 8px);
  padding: 32px clamp(8px, 1.112vw, 16px); /* border〜テキストの余白 32px */
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid #A7A7A7;
  font-family: var(--font-primary);
  /* active 時の 2px ライン（疑似要素で重ねてレイアウトシフト防止） */
}
.case-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background-color: #3C5C9B;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.case-tab.is-active::after {
  opacity: 1;
}
.case-tab:hover:not(.is-active) {
  opacity: 0.8;
}

.case-tab-num {
  font-size: clamp(18px, 2.222vw, 32px); /* 1440px時 32px */
  font-weight: 700;
  color: #8D8D8D;
  word-wrap: break-word;
  line-height: normal;
  padding-left: clamp(10px, 0.97vw, 14px);
  border-left: 5px solid #A7A7A7;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.case-tab.is-active .case-tab-num {
  color: #333333;
  border-left-color: #3C5C9B;
}

.case-tab-title {
  font-size: clamp(16px, 1.945vw, 28px); /* 1440px時 28px */
  font-weight: 700;
  color: #8D8D8D;
  line-height: 1.4;
  word-wrap: break-word;
  transition: color 0.2s ease;
}

.case-tab.is-active .case-tab-title {
  color: #193A6A;
}

.case-tab-content {
  position: relative;
}

.case-tab-panel {
  display: none;
}
.case-tab-panel.is-active {
  display: block;
}

.case-tab-image {
  width: 100%;
  aspect-ratio: 610/444; /* 比率固定 */
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: clamp(12px, 1.112vw, 16px);
}

.case-tab-text {
  font-family: var(--font-primary);
  font-size: clamp(14px, 1.112vw, 16px);
  font-weight: 500;
  line-height: 1.7;
  color: #333333;
  word-wrap: break-word;
}

/* ----------------------------------------
  SP: スライダー（PC では非表示）
---------------------------------------- */
.case-slider {
  display: none;
}

.case-slide-card {
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  height: 100%;
}

.case-slide-num {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  border-left: 5px solid #002982;
  padding: 2px 8px 2px 12px;
  line-height: normal;
  margin-bottom: 12px;
}

.case-slide-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: #193A6A;
  line-height: 1.4;
  padding-bottom: 24px;
  border-bottom: 2px solid #3C5C9B;
  margin-bottom: 24px;
}

.case-slide-image {
  width: 100%;
  aspect-ratio: 376/272;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin-bottom: 16px;
}

.case-slide-text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #333333;
}

/* ----------------------------------------
  SP スライダーコントロール（矢印 + ドット）
  ← ・・・ → グラデーション円形矢印 + ドット
---------------------------------------- */
.case-slider {
  position: relative;
  padding-bottom: 64px; /* 矢印エリア用 (40px + 上下余白) */
}

.case-slider .splide__track {
  margin-bottom: 24px; /* テキストの下24px → コントロール */
}

.case-slider .splide__arrows {
  pointer-events: none;
}

.case-slider .splide__arrow {
  pointer-events: auto;
  position: absolute;
  bottom: 0;
  top: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 1;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: opacity 0.2s ease;
  /* デフォルト Splide SVG は非表示・arrow-vector.webp を ::before で表示 */
}
.case-slider .splide__arrow svg {
  display: none;
}
.case-slider .splide__arrow::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("../img/top/arrow-vector.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.case-slider .splide__arrow:hover {
  opacity: 0.85;
}
.case-slider .splide__arrow:disabled {
  opacity: 0.4;
}

/* 左矢印: グラデーション反転 (右に濃い色) + アイコン水平反転 */
.case-slider .splide__arrow--prev {
  left: calc(50% - 86px); /* dots cluster (60px) 中心から 16px 左 + arrow 40px */
  background: linear-gradient(110deg, #0093AD, #002982);
}
.case-slider .splide__arrow--prev::before {
  transform: scaleX(-1);
}

/* 右矢印: 通常グラデーション */
.case-slider .splide__arrow--next {
  left: calc(50% + 46px); /* dots cluster 中心から 30px + 16px gap */
  right: auto;
  background: var(--color-gradient);
}

.case-slider .splide__pagination {
  position: absolute;
  bottom: 14px; /* 矢印中央(20px)に合わせる */
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
  width: auto;
}
.case-slider .splide__pagination li {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 0;
}

.case-slider .splide__pagination__page {
  width: 12px;
  height: 12px;
  background: var(--color-gradient);
  border-radius: 50%;
  opacity: 0.4;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.case-slider .splide__pagination__page.is-active {
  opacity: 1;
  transform: scale(1.25);
}

/* 課題解決バナー */
/* overflow: visible にして point-illust を上方に飛び出させる */
/* 水平方向の % は全て banner 幅 1040px 基準 */
.case-banner {
  max-width: 1040px;
  margin: 0 auto;
}

/* グラデーションヘッダー: 高さ70px（上下8px padding込み） */
.case-banner-head {
  background: var(--color-gradient);
  height: clamp(50px, 4.862vw, 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(24px, 2.779vw, 40px);
  position: relative;
  border-radius: 12px 12px 0 0;
}

/* バナーアイコン: ヘッダー左に配置・上半分が飛び出し
   1440px時 83×83px・left 64px・top:0 + translateY(-50%) で上半分がはみ出し */
.case-banner-icon {
  position: absolute;
  /* 1440px時 64px → 全幅で 4.444vw を維持して比率を保つ */
  left: clamp(12px, 4.444vw, 64px);
  top: 0;
  transform: translateY(-50%);
  /* 1440px時 83px → 全幅で 5.764vw を維持 */
  width: clamp(28px, 5.764vw, 83px);
  height: clamp(28px, 5.764vw, 83px);
  pointer-events: none;
  z-index: 2;
}

/* タイトル: 左右に4pxギャップ + 48px白横線 */
.case-banner-title {
  display: flex;
  align-items: center;
  gap: clamp(2px, 0.279vw, 4px);
  font-size: clamp(18px, 1.945vw, 28px);
  font-weight: 700;
  letter-spacing: 0.04em; /* Figma 4% */
  color: var(--color-white);
}
.case-banner-title::before, .case-banner-title::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: clamp(32px, 3.334vw, 48px);
  height: 1px;
  background-color: var(--color-white);
}

/* ボディ: 上下50px余白、左右 9.62%（100/1040）でブラケット分を確保 */
/* ブラケット: 幅 3.85%（40/1040）・縦 130px・#333 の角括弧装飾 */
/* 水平方向は banner 幅 1040px 基準の % で指定 */
.case-banner-body {
  background-color: var(--color-white);
  padding: clamp(32px, 3.473vw, 50px) 9.62%;
  border: 1px solid var(--color-border-form);
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 3.3px 3.3px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  text-align: center;
}
.case-banner-body::before, .case-banner-body::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.85%; /* 40/1040 */
  height: clamp(90px, 9.029vw, 130px);
}
.case-banner-body::before {
  left: 17.12%;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  border-bottom: 1px solid #333;
}
.case-banner-body::after {
  right: 17.12%;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
}

/* case-illust01: 左側（上から59px・左 5.96%=62/1040） */
.case-illust01 {
  position: absolute;
  top: clamp(35px, 4.098vw, 59px);
  left: 5.96%; /* 62/1040 */
  width: 4.9%; /* 51/1040 */
  height: auto;
  pointer-events: none;
  z-index: 0;
}

/* case-illust02: 右側（上から78px・右 5.87%=61/1040） */
.case-illust02 {
  position: absolute;
  top: clamp(46px, 5.418vw, 78px);
  right: 5.87%; /* 61/1040 */
  width: 7.79%; /* 81/1040 */
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.case-banner-text {
  color: #333333;
  font-size: clamp(16px, 1.807vw, 26px);
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.8;
  word-wrap: break-word;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.95), 0 0 4px rgba(255, 255, 255, 0.9);
}

/* "現場" アクセントテキスト */
.case-banner-text-accent {
  color: #002982;
  font-size: clamp(20px, 2.258vw, 32.5px);
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.8;
  word-wrap: break-word;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.95), 0 0 4px rgba(255, 255, 255, 0.9);
}

/* ----------------------------------------
  レスポンシブ（SP）
---------------------------------------- */
@media screen and (max-width: 767px) {
  .case {
    padding: 60px 0;
  }
  .case-inner {
    padding: 0 16px;
  }
  .case-cases {
    margin-bottom: 32px;
  }
  /* PCタブ非表示・SPスライダー表示 */
  .case-tabbed {
    display: none;
  }
  .case-slider {
    display: block;
  }
  .case-banner-head {
    height: auto;
    min-height: 60px;
    padding: 12px 20px 12px 60px;
  }
  .case-banner-title {
    font-size: 14px;
    gap: 8px;
  }
  .case-banner-title::before, .case-banner-title::after {
    width: 16px;
  }
  .case-banner-body {
    padding: 24px 20px;
  }
  .case-banner-body::before, .case-banner-body::after {
    display: none;
  }
  .case-banner-text {
    font-size: 12px;
  }
  .case-banner-text-accent {
    font-size: 14px;
    color: #002982;
  }
  .case-illust01 {
    top: auto;
    bottom: 12px;
    left: 4%;
    width: 8%;
  }
  .case-illust02 {
    top: auto;
    bottom: 8px;
    right: 4%;
    width: 12%;
  }
}
/* ========================================
  導入ステップセクション（STEP）
======================================== */
.step {
  background-color: #F6FAFE;
  padding: clamp(60px, 6.94vw, 100px) 0;
}

.step-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
  text-align: left;
}

.step-inner .section-label,
.step-inner .section-title {
  text-align: left;
}

.step-subtitle {
  color: #333333;
  font-size: clamp(14px, 1.25vw, 18px);
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  word-wrap: break-word;
  margin-top: clamp(-24px, -2.22vw, -16px);
  margin-bottom: clamp(32px, 3.33vw, 48px);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.step-card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: clamp(16px, 1.67vw, 24px) 0 clamp(16px, 1.67vw, 24px) clamp(16px, 1.67vw, 24px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* 左側：ヘッダー＋テキスト */
.step-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.83vw, 12px);
}

/* バッジ・区切り線・タイトルを横並び */
.step-card-header {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.39vw, 16px);
}

.step-card-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}

/* 縦区切り線 */
.step-card-line {
  width: 1px;
  height: clamp(36px, 3.33vw, 48px);
  background-color: #D3D3D3;
  flex-shrink: 0;
}

.step-card-badge-label {
  font-family: Arial, sans-serif;
  font-size: clamp(12px, 1.11vw, 16px);
  font-weight: 700;
  color: #193A6A;
  word-wrap: break-word;
  line-height: 1;
}

.step-card-badge-num {
  font-family: Arial, sans-serif;
  font-size: clamp(26px, 2.92vw, 42px);
  font-weight: 700;
  color: #193A6A;
  word-wrap: break-word;
  line-height: 1;
}

.step-card-title {
  font-family: var(--font-primary);
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 700;
  color: #333333;
  line-height: 1.6;
  word-wrap: break-word;
  white-space: nowrap;
}

/* テキスト上の横線：カード左端からスタート */
.step-card-divider {
  border: none;
  height: 1px;
  background-color: #D3D3D3;
  margin: 0 0 0 calc(-1 * clamp(16px, 1.67vw, 24px));
}

.step-card-text {
  font-size: clamp(13px, 1.11vw, 16px);
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.9;
  color: #333333;
  word-wrap: break-word;
}

.step-card-note {
  display: block;
  font-weight: 400;
}

/* 右側：アイコン画像 */
.step-card-icon {
  width: clamp(100px, 15.14vw, 218px);
  height: auto;
  flex-shrink: 0;
  display: block;
}

/* ----------------------------------------
  レスポンシブ（SP）
---------------------------------------- */
@media screen and (max-width: 767px) {
  .step {
    padding: 60px 0;
  }
  .step-inner {
    padding: 0 16px;
  }
  .step-subtitle {
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    margin-top: -20px;
  }
  .step-grid {
    grid-template-columns: 1fr;
  }
  .step-card {
    padding: 20px 0 20px 20px;
  }
  .step-card-title {
    white-space: normal;
    font-size: 14px;
  }
  .step-card-icon {
    width: 85px;
  }
  .step-card-divider {
    margin-left: -20px;
  }
}
/* ========================================
  FAQセクション
======================================== */
.faq {
  background-color: var(--color-white);
  padding: 100px 0;
}

.faq-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
  text-align: center;
}
.faq-inner .section-label {
  display: block;
  width: fit-content;
}
.faq-inner .section-title {
  text-align: left;
}

.faq-group {
  max-width: 100%;
  margin: 0 0 48px;
  text-align: left;
}
.faq-group:last-child {
  margin-bottom: 0;
}

.faq-group-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border-gray);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
  transition: opacity var(--transition-base);
  list-style: none;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question:hover {
  opacity: 0.7;
}

details.faq-item[open] .faq-question-arrow {
  transform: rotate(180deg);
}

.faq-question-mark {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.faq-question-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
  flex: 1;
  line-height: 1.6;
}

.faq-question-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: transform var(--transition-base);
}
.faq-question-arrow svg {
  width: 16px;
  height: 16px;
}

/* 回答 */
.faq-answer {
  overflow: hidden;
}

.faq-answer-inner {
  padding: 0 0 24px 56px;
}
.faq-answer-inner p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
}

/* ----------------------------------------
  レスポンシブ（SP）
---------------------------------------- */
@media screen and (max-width: 767px) {
  .faq {
    padding: 60px 0;
  }
  .faq-inner {
    padding: 0 16px;
  }
  .faq-group-title {
    font-size: 22px;
  }
  .faq-question {
    padding: 20px 0;
    gap: 12px;
  }
  .faq-question-mark {
    font-size: 20px;
    width: 32px;
  }
  .faq-question-text {
    font-size: 15px;
  }
  .faq-answer-inner {
    padding: 0 0 20px 44px;
  }
  .faq-answer-inner p {
    font-size: 14px;
  }
}
/* ========================================
  お問い合わせセクション
======================================== */
.contact {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.contact-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/top/contact-section-bg.webp");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
  text-align: center;
}

.contact-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(3px, 0.2777777778vw, 4px);
  font-family: Arial, sans-serif;
  font-size: clamp(14px, 1.3888888889vw, 20px);
  font-weight: 700;
  line-height: 1;
  color: #0057A7;
  word-wrap: break-word;
  margin-bottom: clamp(12px, 1.1111111111vw, 16px);
}
.contact-label::before, .contact-label::after {
  content: "";
  display: block;
  width: clamp(16px, 1.9444444444vw, 28px);
  height: 1px;
  background-color: #0057A7;
  flex-shrink: 0;
}

.contact-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1;
  color: #193A6A;
  margin-bottom: clamp(16px, 2.7777777778vw, 40px);
}

.contact-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 40px;
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-form-note {
  text-align: center;
  padding: 16px;
  background: var(--color-gradient);
}

.contact-form-note-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
}

.contact-form-body {
  padding: 48px;
}

/* ----------------------------------------
  Marketo フォーム上書き
---------------------------------------- */
.contact-form-body .mktoForm {
  width: 100% !important;
}
.contact-form-body .mktoForm * {
  box-sizing: border-box;
}
.contact-form-body .mktoForm .mktoFormRow {
  width: 100% !important;
  margin-bottom: 24px !important;
}
.contact-form-body .mktoForm .mktoFormRow:last-of-type {
  margin-bottom: 0 !important;
}
.contact-form-body .mktoForm .mktoFieldDescriptor,
.contact-form-body .mktoForm .mktoFormCol {
  width: 100% !important;
  margin-bottom: 0 !important;
  float: none !important;
  clear: both !important;
}
.contact-form-body .mktoForm .mktoFieldWrap {
  width: 100% !important;
  float: none !important;
}
.contact-form-body .mktoForm .mktoGutter,
.contact-form-body .mktoForm .mktoOffset {
  display: none !important;
}
.contact-form-body .mktoForm .mktoLabel {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 25.6px !important;
  letter-spacing: 0.64px !important;
  color: #333333 !important;
  width: 100% !important;
  float: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 8px !important;
}
.contact-form-body .mktoForm .mktoAsterix {
  font-size: 0 !important;
  flex-shrink: 0;
}
.contact-form-body .mktoForm .mktoAsterix::after {
  content: "必須";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  background-color: #193A6A;
  border-radius: 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 22.4px;
  letter-spacing: 0.56px;
  color: #ffffff;
}
.contact-form-body .mktoForm .mktoLabelHideRequired .mktoAsterix::after {
  display: none !important;
}
.contact-form-body .mktoForm .mktoLabelOptional::before {
  content: "任意";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  background-color: #717171;
  border-radius: 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 22.4px;
  letter-spacing: 0.56px;
  color: #ffffff;
  flex-shrink: 0;
}
.contact-form-body .mktoForm .mktoField {
  width: 100% !important;
  float: none !important;
}
.contact-form-body .mktoForm input.mktoField:not([type=checkbox]):not([type=radio]) {
  width: 100% !important;
  height: 45px !important;
  background-color: #F8F8F8 !important;
  border: 1px solid #EFF0F2 !important;
  border-radius: 5px !important;
  padding: 8px 12px !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 25.6px !important;
  letter-spacing: 0.64px !important;
  color: #6C7575 !important;
  box-shadow: none !important;
}
.contact-form-body .mktoForm input.mktoField:not([type=checkbox]):not([type=radio])::placeholder {
  color: #6C7575;
  font-weight: 500;
}
.contact-form-body .mktoForm input.mktoField:not([type=checkbox]):not([type=radio]):focus {
  color: #333333 !important;
  outline: 2px solid #0057A7 !important;
  outline-offset: 0;
  box-shadow: none !important;
}
.contact-form-body .mktoForm textarea.mktoField {
  width: 100% !important;
  height: 154px !important;
  background-color: #F8F8F8 !important;
  border: 1px solid #EFF0F2 !important;
  border-radius: 5px !important;
  padding: 8px 12px !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 25.6px !important;
  letter-spacing: 0.64px !important;
  color: #6C7575 !important;
  box-shadow: none !important;
  resize: vertical;
}
.contact-form-body .mktoForm textarea.mktoField::placeholder {
  color: #6C7575;
  font-weight: 500;
}
.contact-form-body .mktoForm textarea.mktoField:focus {
  color: #333333 !important;
  outline: 2px solid #0057A7 !important;
  outline-offset: 0;
  box-shadow: none !important;
}
.contact-form-body .mktoForm select.mktoField {
  width: 100% !important;
  height: 45px !important;
  background-color: #F8F8F8 !important;
  border: 1px solid #EFF0F2 !important;
  border-radius: 5px !important;
  padding: 8px 36px 8px 12px !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 0.64px !important;
  color: #6C7575 !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236C7575' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
}
.contact-form-body .mktoForm select.mktoField:focus {
  color: #333333 !important;
  outline: 2px solid #0057A7 !important;
  outline-offset: 0;
  box-shadow: none !important;
}
.contact-form-body .mktoForm .mktoRadioList,
.contact-form-body .mktoForm .mktoCheckboxList {
  display: grid !important;
  grid-template-columns: 20px auto 20px 1fr !important;
  align-items: center !important;
  row-gap: 16px !important;
  column-gap: 8px !important;
  width: 100% !important;
}
.contact-form-body .mktoForm .mktoRadioList label,
.contact-form-body .mktoForm .mktoCheckboxList label {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #231815 !important;
  cursor: pointer;
  white-space: nowrap;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.contact-form-body .mktoForm .mktoRadioList :nth-child(2),
.contact-form-body .mktoForm .mktoRadioList :nth-child(6),
.contact-form-body .mktoForm .mktoCheckboxList :nth-child(2),
.contact-form-body .mktoForm .mktoCheckboxList :nth-child(6) {
  padding-right: 72px !important;
}
.contact-form-body .mktoForm .mktoRadioList input[type=checkbox],
.contact-form-body .mktoForm .mktoRadioList input[type=radio],
.contact-form-body .mktoForm .mktoCheckboxList input[type=checkbox],
.contact-form-body .mktoForm .mktoCheckboxList input[type=radio] {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  aspect-ratio: 1/1 !important;
  box-sizing: border-box !important;
  border-radius: 50% !important;
  border: 2px solid #CDCDCD !important;
  background-color: #ffffff !important;
  position: relative !important;
  cursor: pointer !important;
  margin: 0 !important;
  padding: 0 !important;
  align-self: center !important;
  flex-shrink: 0;
}
.contact-form-body .mktoForm .mktoRadioList input[type=checkbox]:checked,
.contact-form-body .mktoForm .mktoRadioList input[type=radio]:checked,
.contact-form-body .mktoForm .mktoCheckboxList input[type=checkbox]:checked,
.contact-form-body .mktoForm .mktoCheckboxList input[type=radio]:checked {
  background-color: #193A6A !important;
  border-color: #193A6A !important;
}
.contact-form-body .mktoForm .mktoRadioList input[type=checkbox]:checked::after,
.contact-form-body .mktoForm .mktoRadioList input[type=radio]:checked::after,
.contact-form-body .mktoForm .mktoCheckboxList input[type=checkbox]:checked::after,
.contact-form-body .mktoForm .mktoCheckboxList input[type=radio]:checked::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact-form-body .mktoForm .mktoButtonRow {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  margin-top: clamp(24px, 2.7777777778vw, 40px) !important;
}
.contact-form-body .mktoForm .mktoButtonWrap {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: 360px !important;
  text-align: center !important;
  margin: 0 !important;
  padding-top: clamp(11px, 1.1111111111vw, 16px) !important;
}
.contact-form-body .mktoForm .mktoButtonWrap::before {
  content: "専門スタッフが丁寧に回答！";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: clamp(11px, 1.0416666667vw, 15px);
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.04em;
  padding: 0 clamp(16px, 1.6666666667vw, 24px);
  height: clamp(22px, 2.2222222222vw, 32px);
  border-radius: 100px;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, var(--color-gradient) border-box;
}
.contact-form-body .mktoForm .mktoButton {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(10px, 1.1111111111vw, 16px) !important;
  width: 100% !important;
  height: clamp(48px, 5.1388888889vw, 74px) !important;
  padding: 0 clamp(16px, 1.6666666667vw, 24px) !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: clamp(16px, 1.8055555556vw, 26px) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: var(--color-white) !important;
  background: var(--color-gradient) !important;
  border: none !important;
  border-radius: 100px !important;
  /* 立体感: 天面ハイライト + 内側底面陰影（外部ボトムシャドウなし） */
  box-shadow: inset 0 10px 14px -6px rgba(255, 255, 255, 0.35), inset 0 -10px 14px -6px rgba(0, 0, 60, 0.3) !important;
  text-shadow: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease;
}
.contact-form-body .mktoForm .mktoButton::before {
  content: "";
  display: block;
  width: clamp(20px, 1.9444444444vw, 28px);
  height: clamp(20px, 1.9444444444vw, 28px);
  background: url("../img/top/mail-icon-01.webp") center/contain no-repeat;
  flex-shrink: 0;
}
.contact-form-body .mktoForm .mktoButton:hover {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: inset 0 10px 14px -6px rgba(255, 255, 255, 0.35), inset 0 -10px 14px -6px rgba(0, 0, 60, 0.3) !important;
}
.contact-form-body .mktoForm .mktoButton:focus {
  outline: none;
}

/* ----------------------------------------
  レスポンシブ（SP）
---------------------------------------- */
@media screen and (max-width: 767px) {
  .contact {
    padding: 60px 0;
  }
  .contact-inner {
    padding: 0 16px;
  }
  .contact-title {
    font-size: 28px;
  }
  .contact-desc {
    font-size: 14px;
  }
  .contact-form-body {
    padding: 24px 16px;
  }
  .contact-form-body .mktoForm .mktoButtonWrap {
    max-width: 280px !important;
  }
  .contact-form-body .mktoForm .mktoRadioList,
  .contact-form-body .mktoForm .mktoCheckboxList {
    grid-template-columns: 20px 1fr !important;
  }
  .contact-form-body .mktoForm .mktoRadioList :nth-child(2),
  .contact-form-body .mktoForm .mktoRadioList :nth-child(6),
  .contact-form-body .mktoForm .mktoCheckboxList :nth-child(2),
  .contact-form-body .mktoForm .mktoCheckboxList :nth-child(6) {
    padding-right: 0 !important;
  }
}
/* ========================================
  会社概要セクション
======================================== */
.company {
  background-color: #F6FAFE;
  padding: 100px 0;
}

.company-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
  text-align: left;
}
.company-inner .section-title {
  text-align: left;
  margin-bottom: clamp(40px, 3.89vw, 56px);
}

.company-table {
  text-align: left;
}
.company-table th {
  font-size: clamp(14px, 1.11vw, 16px);
  font-family: var(--font-primary);
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.02em;
  word-wrap: break-word;
  padding: clamp(14px, 1.39vw, 20px) clamp(16px, 1.67vw, 24px) clamp(14px, 1.39vw, 20px) 0;
  width: 15.3125%;
  vertical-align: top;
  white-space: nowrap;
  position: relative;
}
.company-table th::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
}
.company-table td {
  font-size: clamp(14px, 1.11vw, 16px);
  font-family: var(--font-primary);
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
  letter-spacing: 0.02em;
  word-wrap: break-word;
  padding: clamp(14px, 1.39vw, 20px) clamp(16px, 1.67vw, 24px) clamp(14px, 1.39vw, 20px) 0;
  vertical-align: top;
  border-bottom: 2px solid #DDDDDD;
}

/* ----------------------------------------
  レスポンシブ（SP）
---------------------------------------- */
@media screen and (max-width: 767px) {
  .company {
    padding: 60px 0;
  }
  .company-inner {
    padding: 0 16px;
  }
  .company-table th {
    width: 25%;
    font-size: clamp(10px, 3.2vw, 12px);
    padding: 12px 8px 12px 0;
    white-space: normal;
  }
  .company-table td {
    font-size: clamp(10px, 3.2vw, 12px);
    padding: 12px 0 12px 8px;
  }
}

/*# sourceMappingURL=style.css.map */
