@charset "UTF-8";
/* =========================================
   Cigna LP — cigna.css
   medicaldich.com/cigna/
   ========================================= */

/* ===== RESET（既存テーマの干渉を完全リセット） ===== */

/* stylelp.css の *::before / *::after { position:absolute } を打ち消す */
.cigna-page *::before,
.cigna-page *::after {
  position: static !important;
  display: revert;
  background-repeat: initial;
  background-size: initial;
}

/* style.css の #container { overflow:hidden } を打ち消す */
#container {
  overflow: visible !important;
}

.cigna-page * {
  box-sizing: border-box;
  font-family: 'Noto Sans JP', "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: inherit;
}
.cigna-page a {
  text-decoration: none;
  color: inherit;
}
.cigna-page ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* 画像のmax-widthは個別クラスで制御（全称指定するとロゴ・ヒーロー画像が崩れるため外す） */
.cigna-page img {
  display: block;
}

/* Cigna内でposition:absoluteを使う要素は個別に明示指定 */
.cigna-flow-num-text {
  position: absolute !important;
}

/* ===== VARIABLES =====
   Cigna公式ブランドカラーに準拠
   Action Blue #0033FF / Navy #110081 / Dark Leaf Green #00874D
   Leaf Green #03CC54 / Light Leaf Green #A1F7A1 / Cool Gray #F4F4F4

   役割分担：
   --cn-navy       … Action Blue。CTAボタン・主要リンクホバーなど"ここぞ"の箇所のみ
   --cn-navy-dark  … Navy。ヒーロー背景ブロックなど大面積の濃色
   --cn-icon       … アイコン・見出し装飾用の落ち着いたネイビーグレー（多用してもうるさくならない色）
   --cn-text       … 本文色は通常の濃いグレーに（Navyにすると全体が青みがかって見えるため）
*/
.cigna-page {
  --cn-navy:       #0033FF;  /* Action Blue：CTA・最重要アクセントのみ */
  --cn-navy-dark:  #110081;  /* Navy：ヒーロー背景など大面積の濃色パネル用 */
  --cn-navy-mid:   #0033FF;
  --cn-icon:       #2C3E6B;  /* アイコン・カード見出し用の落ち着いたネイビー（多用前提） */
  --cn-blue-light: #EAF0FF;  /* Action Blueの淡色ティント */
  --cn-green:      #00874D;  /* Dark Leaf Green：サブアクセント（使用は最小限） */
  --cn-green-light:#A1F7A1;
  --cn-white:      #ffffff;
  --cn-gray-bg:    #F4F4F4;  /* Cool Gray */
  --cn-gray-light: #E5E5E5;
  --cn-gray-mid:   #8892a4;
  --cn-gray-dark:  #4a5568;
  --cn-text:       #1a2035;  /* 本文・見出しは落ち着いた濃グレーに統一 */
  --cn-max-w:      1160px;
  --cn-r:          6px;
  --cn-r-lg:       10px;
  color: var(--cn-text);
  background: #fff;
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== LAYOUT ===== */
.cigna-page .cn-container {
  max-width: var(--cn-max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.cigna-page section {
  padding: 64px 0;
}

/* ===== BUTTONS ===== */
.cigna-page .cn-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--cn-r);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .02em;
  white-space: nowrap;
  text-decoration: none;
}
.cigna-page .cn-btn-navy {
  background: var(--cn-green);
  color: #fff !important;
  border: 2px solid var(--cn-green);
}
.cigna-page .cn-btn-navy:hover {
  background: #fff;
  color: var(--cn-navy-dark) !important;
  border-color: #fff;
}
.cigna-page .cn-btn-outline {
  background: transparent;
  color: var(--cn-green) !important;
  border: 2px solid var(--cn-green);
}
.cigna-page .cn-btn-outline:hover {
  background: #fff;
  color: var(--cn-navy-dark) !important;
  border-color: #fff;
}
.cigna-page .cn-btn-white {
  background: var(--cn-green);
  color: #fff !important;
  border: 2px solid var(--cn-green);
}
.cigna-page .cn-btn-white:hover {
  background: #fff;
  color: var(--cn-navy-dark) !important;
  border-color: #fff;
}
.cigna-page .cn-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ===== SECTION TITLE ===== */
.cigna-page .cn-sec-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--cn-text);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* ===== HEADER ===== */
.cigna-header {
  background: #fff;
  border-bottom: 1px solid var(--cn-gray-light);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
}
.cigna-header-inner {
  max-width: var(--cn-max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cigna-header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  /* クリアスペース確保：左右に余白を持たせ他要素と干渉しないようにする */
  padding: 4px 8px 4px 0;
}
.cigna-logo-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.cigna-logo-badge {
  display: inline-block;
  color: var(--cn-gray-dark);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.4;
}
.cigna-header-logo-img {
  height: 25px;
  width: auto;
  max-width: none;
  display: block;
  flex-shrink: 0;
}
.cigna-logo-sub {
  font-size: 10px;
  color: var(--cn-gray-mid);
  margin-top: 3px;
  line-height: 1.3;
  display: block;
}
.cigna-header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cigna-header-nav a {
  font-size: 13px;
  color: var(--cn-gray-dark);
  padding: 6px 10px;
  border-radius: var(--cn-r);
  transition: all .2s;
  text-decoration: none;
}
.cigna-header-nav a:hover {
  background: var(--cn-blue-light);
  color: var(--cn-icon);
}
.cigna-header-nav .cn-header-cta {
  margin-left: 8px;
  padding: 9px 22px;
  background: var(--cn-navy);
  color: #fff !important;
  border-color: var(--cn-navy);
}
.cigna-header-nav .cn-header-cta:hover {
  background: var(--cn-navy-dark);
  color: #fff !important;
  border-color: var(--cn-navy-dark);
}

/* ===== MOBILE HEADER ===== */
.cigna-mobile-header-wrap {
  display: none;
  position: sticky;
  top: 0;
  z-index: 100;
}
.cigna-mobile-header {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--cn-gray-light);
  height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}
.cigna-mobile-header a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cigna-mobile-logo-link {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.cigna-mobile-logo-badge {
  display: inline-block;
  color: var(--cn-gray-dark);
  font-size: 8px;
  font-weight: 700;
  white-space: normal;
  line-height: 1.3;
}
.cigna-mobile-logo-img {
  height: 22px;
  width: auto;
  max-width: none;
  display: block;
  flex-shrink: 0;
}
.cigna-mobile-cta {
  font-size: 12px;
  font-weight: 700;
  background: var(--cn-navy);
  color: #fff !important;
  padding: 8px 14px;
  border-radius: var(--cn-r);
  text-decoration: none;
  white-space: nowrap;
}
.cigna-mobile-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cigna-menu-toggle-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.cigna-hamburger {
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}
.cigna-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cn-navy-dark);
  border-radius: 2px;
  transition: all .25s ease;
}
/* メニュー本体：通常は非表示、チェック時にスライド表示 */
.cigna-mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 56px;
  right: 0;
  width: 240px;
  background: #fff;
  border-left: 1px solid var(--cn-gray-light);
  border-bottom: 1px solid var(--cn-gray-light);
  box-shadow: -2px 4px 16px rgba(0,0,0,.08);
  z-index: 150;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.cigna-mobile-nav a {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--cn-text);
  border-bottom: 1px solid var(--cn-gray-light);
  text-decoration: none;
  flex-shrink: 0;
}
.cigna-mobile-nav a:last-child { border-bottom: none; }
.cigna-mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 56px;
  background: rgba(0,0,0,.3);
  z-index: 140;
}
/* チェックボックスON時の挙動（同一ラッパー内の子孫要素を制御） */
.cigna-menu-toggle-input:checked ~ .cigna-mobile-header .cigna-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.cigna-menu-toggle-input:checked ~ .cigna-mobile-header .cigna-hamburger span:nth-child(2) {
  opacity: 0;
}
.cigna-menu-toggle-input:checked ~ .cigna-mobile-header .cigna-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.cigna-menu-toggle-input:checked ~ .cigna-mobile-nav {
  max-height: 60vh;
}
.cigna-menu-toggle-input:checked ~ .cigna-mobile-nav-overlay {
  display: block;
}

/* ===== HERO =====
   背景画像 + Navy単色オーバーレイ（ブランドガイドライン：グラデーション禁止のため単色＋透過率で実装）
*/
.cigna-hero {
  position: relative;
  height: 560px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.cigna-hero-bg {
  position: absolute !important;
  inset: 0;
  z-index: 0;
}
.cigna-hero-bg-img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center right;
  display: block;
}
/* 左側のみを覆うNavy単色ブロック（グラデーションなし、右側の写真はそのまま見せる） */
.cigna-hero::before {
  content: '' !important;
  position: absolute !important;
  top: 0;
  left: 0;
  bottom: 0;
  width: 58%;
  background: var(--cn-navy-dark);
  z-index: 1;
  display: block !important;
  /* 右端だけ斜めにカットして写真側へ滑らかに繋げる */
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
}
.cigna-hero-inner {
  position: relative !important;
  z-index: 2;
  max-width: var(--cn-max-w);
  margin: 0 auto;
  padding: 72px 32px;
  width: 100%;
  display: flex;
  align-items: center;
}
.cigna-hero-content {
  max-width: 540px;
}

/* Cigna ロゴ（ヒーロー内・h1の直上） */
.cigna-hero-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.cigna-hero-brand-logo {
  height: 70px;
  width: auto;
  display: block;
}
.cigna-hero-brand-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.45);
  padding: 2px 9px;
  border-radius: 20px;
  letter-spacing: .06em;
  white-space: nowrap;
}

.cigna-hero-h1 {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.cigna-hero-headline {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 16px;
}
.cigna-hero-lead {
  font-size: 14px;
  color: rgba(255,255,255,.92);
  line-height: 1.9;
  margin-bottom: 32px;
}
.cn-btn-navy-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--cn-green);
  color: #fff !important;
  border: 2px solid var(--cn-green);
  border-radius: var(--cn-r);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
}
.cn-btn-navy-solid:hover {
  background: #fff;
  color: var(--cn-navy-dark) !important;
  border-color: #fff;
}
.cn-btn-navy-solid svg {
  width: 16px;
  height: 16px;
}

/* ===== STATS BAR ===== */
.cigna-stats-bar {
  background: #fff;
}
.cigna-stats-bar-inner {
  max-width: var(--cn-max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cigna-stat-item {
  padding: 20px 24px;
  border-right: 1px solid var(--cn-gray-light);
  border-bottom: 1px solid var(--cn-gray-light);
  display: flex;
  align-items: center;
  gap: 14px;
}
.cigna-stat-item:nth-child(3n) {
  border-right: none;
}
.cigna-stat-item:nth-last-child(-n+3) {
  border-bottom: none;
}
.cigna-stat-icon {
  width: 36px;
  height: 36px;
  color: var(--cn-icon);
  flex-shrink: 0;
}
.cigna-stat-icon svg {
  width: 100%;
  height: 100%;
}
.cigna-stat-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--cn-icon);
  line-height: 1;
  display: block;
}
.cigna-stat-unit {
  font-size: 14px;
}
.cigna-stat-en {
  font-size: 11px;
  color: var(--cn-gray-mid);
  margin-top: 1px;
  display: block;
}
.cigna-stat-label {
  font-size: 11px;
  color: var(--cn-gray-dark);
  margin-top: 2px;
  display: block;
}

/* ===== CHOSEN SECTION ===== */
.cigna-chosen {
  padding: 56px 0;
  background: var(--cn-gray-bg);
}
.cigna-chosen-lead {
  text-align: center;
  font-size: 13px;
  color: var(--cn-gray-dark);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.9;
}
.cigna-chosen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cigna-chosen-card {
  background: #fff;
  border: 1px solid var(--cn-gray-light);
  border-radius: var(--cn-r-lg);
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow .2s;
}
.cigna-chosen-card:hover {
  box-shadow: 0 4px 20px rgba(11,45,110,.08);
}
.cigna-chosen-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  color: var(--cn-icon);
}
.cigna-chosen-icon svg {
  width: 100%;
  height: 100%;
}
.cigna-chosen-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--cn-text);
  margin-bottom: 6px;
}
.cigna-chosen-text {
  font-size: 12px;
  color: var(--cn-gray-mid);
  line-height: 1.6;
}

/* ===== PROBLEM SECTION ===== */
.cigna-problem {
  background: var(--cn-navy-dark);
  padding: 56px 0;
}
.cigna-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.cigna-problem-card {
  background: #fff;
  border: 1px solid var(--cn-gray-light);
  border-radius: var(--cn-r);
  padding: 20px 18px;
}
.cigna-problem-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.cigna-problem-check-icon {
  width: 18px;
  height: 18px;
  background: var(--cn-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.cigna-problem-check-icon svg {
  width: 10px;
  height: 10px;
}
.cigna-problem-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--cn-text);
  line-height: 1.4;
}
.cigna-problem-text {
  font-size: 12px;
  color: var(--cn-gray-dark);
  line-height: 1.7;
  margin-top: 6px;
  padding-left: 26px;
}
.cigna-problem-conclusion {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-top: 8px;
}

/* ===== COMPARISON TABLE ===== */
.cigna-comparison {
  padding: 64px 0;
  background: var(--cn-gray-bg);
}
.cigna-comparison-wrap {
  overflow-x: auto;
}
.cigna-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  table-layout: fixed;
}
.cigna-comparison-table col {
  width: 33.333%;
}
.cigna-comparison-table thead tr {
  background: var(--cn-navy-dark);
}
.cigna-comparison-table thead th {
  padding: 14px 20px;
  text-align: left;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border: none;
  background: var(--cn-navy-dark);
}
.cigna-comparison-table thead th:first-child { border-radius: var(--cn-r) 0 0 0; }
.cigna-comparison-table thead th:last-child  { border-radius: 0 var(--cn-r) 0 0; }
.cigna-comparison-table tbody tr:nth-child(even) { background: #f0f4fb; }
.cigna-comparison-table tbody tr:nth-child(odd)  { background: #fff; }
.cigna-comparison-table tbody tr {
  border-bottom: 1px solid var(--cn-gray-light);
}
.cigna-comparison-table tbody td {
  padding: 12px 20px;
  border: none;
  vertical-align: middle;
  color: var(--cn-text);
}
.cigna-comparison-table tbody td:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cn-gray-dark);
}
.cigna-comparison-table tbody td:first-child svg {
  width: 14px;
  height: 14px;
  color: var(--cn-icon);
  flex-shrink: 0;
}
.cn-cmp-mark {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.cn-cmp-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cn-cmp-ok  { background: #dbeafe; color: #1e40af; }
.cn-cmp-ok svg  { width: 12px; height: 12px; stroke: #1e40af; fill: none; stroke-width: 2.5; }
.cn-cmp-delta { background: #fef3c7; color: #92400e; }
.cn-cmp-delta-text { font-size: 11px; color: var(--cn-gray-dark); }
.cigna-table-note {
  font-size: 11px;
  color: var(--cn-gray-mid);
  margin-top: 10px;
  text-align: right;
}

/* ===== ABOUT (Cignaの特徴) ===== */
.cigna-about {
  padding: 72px 0;
  background: var(--cn-gray-bg);
}
.cigna-about-logo {
  display: block;
  height: 36px;
  width: auto;
  max-width: none;
  margin: 0 auto 18px;
}
.cigna-about-lead {
  text-align: center;
  font-size: 14px;
  color: var(--cn-gray-dark);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.9;
}
/* アイコンカード：6項目の概要を一覧表示 */
.cigna-about-icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.cigna-about-icon-card {
  background: #fff;
  border: 1px solid var(--cn-gray-light);
  border-radius: var(--cn-r);
  padding: 18px 10px;
  text-align: center;
}
.cigna-about-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  color: var(--cn-green);
}
.cigna-about-icon svg {
  width: 100%;
  height: 100%;
}
.cigna-about-icon-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--cn-text);
  line-height: 1.4;
}
/* 詳細カード：6項目を3列×2行で表示 */
.cigna-about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.cigna-about-card {
  background: #fff;
  border: 1px solid var(--cn-gray-light);
  border-radius: var(--cn-r-lg);
  padding: 28px 24px;
}
.cigna-about-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}
.cigna-about-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--cn-green);
  letter-spacing: .02em;
  line-height: 1;
  flex-shrink: 0;
}
.cigna-about-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--cn-text);
  line-height: 1.5;
}
.cigna-about-text {
  font-size: 13px;
  color: var(--cn-gray-dark);
  line-height: 1.9;
}

/* ===== CASE STUDIES ===== */
.cigna-cases {
  padding: 64px 0;
  background: #fff;
}
.cigna-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cigna-case-card {
  background: #fff;
  border: 1px solid var(--cn-gray-light);
  border-radius: var(--cn-r-lg);
  overflow: hidden;
}
.cigna-case-image {
  height: 120px;
  background: var(--cn-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cigna-case-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.cigna-case-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--cn-gray-light);
}
.cigna-case-tag {
  display: inline-block;
  background: var(--cn-blue-light);
  color: var(--cn-icon);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 8px;
}
.cigna-case-company {
  font-size: 15px;
  font-weight: 700;
  color: var(--cn-text);
  margin-bottom: 0;
}
.cigna-case-body {
  padding: 16px 20px;
}
.cigna-case-text {
  font-size: 12px;
  color: var(--cn-gray-dark);
  line-height: 1.8;
  margin-bottom: 14px;
}
.cigna-case-points-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--cn-icon);
  margin-bottom: 8px;
  display: block;
}
.cigna-case-points { display: flex; flex-direction: column; gap: 5px; }
.cigna-case-point {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: var(--cn-text);
}
.cigna-case-point::before {
  content: '・';
  color: var(--cn-icon);
  font-weight: 700;
  flex-shrink: 0;
}
.cigna-cases-note {
  font-size: 10px;
  color: var(--cn-gray-mid);
  text-align: center;
  margin-top: 16px;
}

/* ===== FLOW ===== */
.cigna-flow {
  padding: 64px 0;
}
.cigna-flow-lead {
  text-align: center;
  font-size: 13px;
  color: var(--cn-gray-dark);
  line-height: 1.8;
  margin-bottom: 36px;
}
.cigna-flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 16px;
}
.cigna-flow-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.cigna-flow-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--cn-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  background: #fff;
}
.cigna-flow-num-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--cn-gray-mid);
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0 6px;
  white-space: nowrap;
}
.cigna-flow-icon {
  width: 26px;
  height: 26px;
  color: var(--cn-icon);
}
.cigna-flow-icon svg {
  width: 100%;
  height: 100%;
}
.cigna-flow-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--cn-text);
  margin-bottom: 6px;
}
.cigna-flow-text {
  font-size: 12px;
  color: var(--cn-gray-dark);
  line-height: 1.7;
}

/* ===== FAQ ===== */
.cigna-faq {
  padding: 64px 0;
  background: var(--cn-gray-bg);
}
.cigna-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.cigna-faq-item {
  background: #fff;
  border: 1px solid var(--cn-gray-light);
  border-radius: var(--cn-r);
  overflow: hidden;
}
.cigna-faq-q {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--cn-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}
.cigna-faq-q:hover { background: var(--cn-blue-light); }
.cigna-faq-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--cn-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s;
}
.cigna-faq-icon svg {
  width: 10px;
  height: 10px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  transition: transform .25s;
}
.cigna-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.cigna-faq-a-inner {
  padding: 16px 20px 16px;
  font-size: 13px;
  color: var(--cn-gray-dark);
  line-height: 1.8;
}
.cigna-faq-item.open .cigna-faq-icon { background: var(--cn-gray-mid); }
.cigna-faq-item.open .cigna-faq-icon svg { transform: rotate(45deg); }
.cigna-faq-item.open .cigna-faq-a { max-height: 300px; }

/* ===== CTA FOOTER ===== */
.cigna-cta-footer {
  background: var(--cn-navy-dark);
  padding: 64px 0;
}
.cigna-cta-footer-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cigna-cta-footer-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.cigna-cta-footer-text {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
}

/* ===== PAGE FOOTER ===== */
.cigna-page-footer {
  background: #0A0640;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 32px 0;
}
.cigna-page-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cigna-page-footer-logo {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
}
.cigna-page-footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.cigna-page-footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
  text-decoration: none;
}
.cigna-page-footer-links a:hover { color: #fff; }
.cigna-page-footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  margin-top: 16px;
  display: block;
}
.cigna-page-footer-disclaimer {
  font-size: 10px;
  color: rgba(255,255,255,.3);
  line-height: 1.7;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cigna-about-icons { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .cigna-about-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 768px) {
  .cigna-header { display: none; }
  .cigna-mobile-header-wrap { display: block; }
  .cigna-mobile-header { display: flex; }
  .cigna-menu-toggle-input:checked ~ .cigna-mobile-nav { display: flex; }
  .cigna-page section { padding: 0; }
  .cigna-page .cn-container { padding: 30px 16px 30px; }
  .cigna-stats-bar-inner { padding: 0; }

  /* ヒーロー：画像を上に100%幅で表示し、その下にNavy背景のテキストブロックを縦積み */
  .cigna-hero {
    height: auto;
    flex-direction: column;
    align-items: stretch;
  }
  .cigna-hero-bg {
    position: static !important;
    width: 100%;
    height: 180px;
  }
  .cigna-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
  }
  .cigna-hero::before {
    display: none !important;
  }
  .cigna-hero-inner {
    position: static !important;
    background: var(--cn-navy-dark);
    padding: 32px 16px 40px;
  }
  .cigna-hero-content {
    max-width: none;
  }
  .cigna-hero-brand { margin-bottom: 20px; }
  .cigna-hero-h1 { font-size: 13px; }
  .cigna-hero-headline { font-size: 23px; }
  .cigna-hero-lead { font-size: 13px; }

  .cigna-stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .cigna-stat-item { border-right: none; border-bottom: 1px solid var(--cn-gray-light); }
  .cigna-stat-item:nth-child(odd) { border-right: 1px solid var(--cn-gray-light); }
  .cigna-stat-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--cn-gray-light); }
  .cigna-stat-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--cn-gray-light); }

  .cigna-chosen-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cigna-problem-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cigna-about { padding: 48px 0; }
  .cigna-about-logo { height: 28px; margin-bottom: 14px; }
  .cigna-about-icons { grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 28px; }
  .cigna-about-icon-card { padding: 14px 6px; }
  .cigna-about-icon { width: 28px; height: 28px; margin-bottom: 8px; }
  .cigna-about-icon-title { font-size: 11px; }
  .cigna-about-grid { grid-template-columns: 1fr; gap: 16px; }
  .cigna-about-card { padding: 24px 20px; }
  .cigna-about-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .cigna-cases-grid { grid-template-columns: 1fr; }
  .cigna-flow-steps { grid-template-columns: 1fr 1fr; gap: 20px; }
  .cigna-faq-grid { grid-template-columns: 1fr; }
  .cigna-comparison-table { font-size: 12px; }
  .cigna-comparison-table thead th,
  .cigna-comparison-table tbody td { padding: 10px 8px; }
  .cigna-comparison-table tbody td:first-child { gap: 4px; }
  .cigna-comparison-table tbody td:first-child svg { display: none; }
  .cigna-page .cn-sec-title { font-size: 18px; }
  .cigna-problem-conclusion { font-size: 16px; }
}
