/* KAWATA DCS | Teal tone / rounded / soft shadow — CLEANED */

/* ========== CSS Variables ========== */
:root {
  --ink: #0f1a22;
  --ink-weak: #56707e;
  --paper: #fff;
  --muted: #f6faf9;

  --brand: #2db6ae;
  /* Teal */
  --brand-strong: #1ea9a0;
  --brand-weak: #dff4f2;

  --ring: rgba(45, 182, 174, .35);
  --radius: 18px;
  --radius-lg: 22px;
  --shadow: 0 14px 50px rgba(28, 88, 82, .12);
  --shadow-soft: 0 8px 24px rgba(28, 88, 82, .10);

  /* KP（図版系） */
  --kp-blue: #0b67c5;
  --kp-red: #e23a2e;
  --kp-green: #198f49;
  --kp-bubble: #fff6cc;
  --kp-arrow-width: 84px;
}

/* ========== Base / Helpers ========== */
* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfefe;
  font-family: 'Noto Sans JP', system-ui, -apple-system, Segoe UI, Roboto, 'Hiragino Sans', 'Yu Gothic UI', 'YuGothic', 'Meiryo', sans-serif;
  line-height: 1.75;
  letter-spacing: .015em;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px
}

.center {
  text-align: center
}

.small {
  font-size: .9rem
}

.mute {
  color: var(--ink-weak)
}

.sp {
  display: none
}

@media (max-width:720px) {
  .sp {
    display: inline
  }
}

.mark {
  background: linear-gradient(transparent 62%, rgba(13, 148, 136, .25) 0)
}

/* Section / Titles */
.section {
  padding: 72px 0
}

@media (max-width:720px) {
  .section {
    padding: 36px 0
  }
}

.section.alt {
  background: var(--muted)
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(18px, 3.4vw, 34px);
  line-height: 1.35;
  letter-spacing: .02em;
  font-weight: 800;
}

.section-title .em {
  position: relative;
  display: inline-block
}

.section-title .em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: .55em;
  background: linear-gradient(transparent 50%, var(--brand-weak) 0);
  border-radius: 8px;
  z-index: -1;
}

.sub-text {
  padding: 20px 0
}

/* Promo ribbon 1*/
.promo-ribbon-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 130px;
  background: var(--brand);
  color: #fff;
  min-height: 200px;
}

@media (max-width: 767px) {
  .promo-ribbon-1 {
    margin-top: 65px;
    min-height: 100px;
  }

  .promo-ribbon-1 .sp-break {
    display: block;
  }
}


.promo-ribbon-1 .container {
  padding: 10px 20px
}

.promo-ribbon-1 .container p {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-align: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .promo-ribbon-1 .container p {
    line-height: normal;
    font-size: 1.8rem;
  }
}

/* Promo ribbon */
.promo-ribbon {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--brand);
  color: #fff;
  min-height: 200px;
}

@media (max-width: 767px) {
  .promo-ribbon {
    min-height: 100px;
  }

  .promo-ribbon .sp-break {
    display: block;
  }
}

.promo-ribbon .container {
  padding: 10px 20px
}

.promo-ribbon .container p {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-align: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .promo-ribbon .container p {
    line-height: normal;
    font-size: 1.8rem;
  }
}

/* ========== “悩み”カード（Slide-1） ========== */

.pains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 22px;
}

.pains-image {
  display: block;
  max-height: 400px;
  max-width: 100%;
  margin: 0 auto;
}

@media (max-width:960px) {
  .pains-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:640px) {
  .pains-grid {
    grid-template-columns: 1fr
  }
}

.pain-card {
  position: relative;
  background: linear-gradient(180deg, #eefaf8, #fff 60%);
  border: 1px solid #cae7e3;
  border-radius: 26px;
  padding: 20px 18px 18px;
  box-shadow: var(--shadow);
}

.pain-card h3 {
  margin: 6px 0 8px;
  font-size: 18px;
  letter-spacing: .01em
}

.pain-card h3 strong {
  color: #118c88
}

.pain-card .pain-badge {
  position: absolute;
  left: -18px;
  top: -22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 10px 20px rgba(45, 182, 174, .35);
  border: 3px solid #fff;
}

/* ========== Slide-2（数値→矢印→バブル） ========== */
.kp-problem {
  padding: 72px 0;
  background: linear-gradient(180deg, #fff, #f7fbfa 60%, #fff)
}

.kp-grid {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) var(--kp-arrow-width) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
}

@media (max-width:980px) {
  .kp-grid {
    grid-template-columns: 1fr;
    gap: 18px
  }
}

.kp-card {
  background: #fff;
  border: 1.5px solid #d9ebe8;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 6px;
  text-align: center;
}

.kp-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-inline: auto
}

.kp-facts li+li {
  margin-top: 20px
}

.kp-label {
  font-weight: 800;
  color: #2b3a46;
  font-size: clamp(16px, 1.8vw, 20px)
}

.kp-strong {
  font-weight: 900;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: .02em
}

.kp-em {
  color: var(--kp-red)
}

.kp-note {
  color: #697784;
  font-size: .95rem
}

.kp-arrow {
  display: grid;
  place-items: center;
  align-self: center
}

.kp-chevron {
  width: var(--kp-arrow-width);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .15))
}

.kp-chevron polygon {
  fill: var(--brand)
}

@media (max-width:980px) {
  .kp-arrow {
    display: none
  }
}

.kp-side {
  position: relative;
  align-self: center
}

.kp-bubble {
  display: inline-block;
  width: 100%;
  background: var(--kp-bubble);
  border: 1px solid #f0e6b2;
  border-radius: 999px;
  padding: 14px 20px;
  margin: 10px 8px;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.6;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.kp-red {
  color: var(--kp-red)
}

.kp-green {
  color: var(--kp-green)
}

.kp-blue {
  color: var(--kp-blue)
}

/* ========== 円形バッジ（BPO要素） ========== */
/* .kp-circles {
  --circle-size: clamp(140px, 18vw, 200px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(14px, 2vw, 22px);
  justify-items: center;
} */

/* ==== BPOレイアウト分割（PC: 左右 / SP: 縦並び） ==== */
.bpo-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  /* 左=やや広め */
  gap: clamp(16px, 3vw, 36px);
  align-items: center;
  margin-top: 24px;
}

@media (max-width: 1023.98px) {
  .bpo-split {
    grid-template-columns: 1fr;
    /* SP/タブレットは1列 */
  }
}

/* 左側：イラスト */
.bpo-illust {
  justify-self: start;
}

.bpo-illust img {
  display: block;
  width: min(520px, 100%);
  height: auto;
}

/* 右側：circles（PCでも2×2に固定） */
.bpo-split .kp-circles {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  justify-items: center;
}


.kp-circles {
  --circle-size: clamp(140px, 18vw, 200px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  justify-items: center;
}

/* PC（>=1024px）：4列1行 */
@media (min-width: 1024px) {
  .kp-circles {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.kp-circle {
  position: relative;
  width: var(--circle-size);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(120% 80% at 30% 20%, rgba(255, 255, 255, .65), transparent 55%), var(--brand-weak);
  border: 2px solid #cfe7e4;
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, .6);
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  color: var(--ink);
}

.kp-circle::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: radial-gradient(60% 60% at 50% 35%, rgba(45, 182, 174, .14), transparent 60%);
  z-index: -1;
  filter: blur(6px);
}

.kp-circle-text {
  display: block;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.25;
  font-size: clamp(16px, 1.8vw, 22px);
  color: #103a4a;
}

/* ========== POINTS（1〜4 の説明） ========== */
.kp-points {
  background: linear-gradient(180deg, #fff, #f8fdfc 60%, #fff)
}

.kp-point {
  background: #fff;
  border: 1px solid #e6efed;
  border-radius: 22px;
  padding: clamp(16px, 2.6vw, 28px);
  box-shadow: var(--shadow-soft);
  margin-block: clamp(14px, 2.2vw, 20px);
}

/* 見出し行を上揃えに */
.kp-point-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 .6rem;
}

.kp-point-head .kp-tag {
  flex: 1 1 auto;
  display: block;
  text-align: center;
  padding: .6em 1.1em;
  border-radius: 999px;
  font-weight: 900;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 10px 22px rgba(45, 182, 174, .18);
}

/* 見出し（コンパクト版） */
.kp-point-title {
  margin: .15rem 0 .6rem;
  text-align: center;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.22;
  font-size: clamp(18px, 2.0vw, 24px);
  word-break: keep-all;
  line-break: strict;
}

@media (min-width: 1024px) {
  .points-grid .kp-point-title {
    font-size: clamp(18px, 1.8vw, 22px);
  }
}

.kp-point-title .kp-tag {
  display: block;
  /* ← ピルを常に1行上に */
  margin: 0 0 .55em;
  /* ピルと見出しの間隔 */
  width: 100%;
}

.kp-check {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(120% 120% at 35% 30%, #fff, rgba(255, 255, 255, .6) 50%, transparent 51%), var(--brand-weak);
  border: 1px solid #cfe7e4;
  color: var(--brand);
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
}

.kp-tag {
  display: inline-block;
  text-align: center !important;
  margin-right: .5em;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  padding: .45em .8em;
  border-radius: 12px
}

.kp-point-hint {
  margin: 10px 0 14px;
  padding: 14px 16px;
  background: var(--brand-weak);
  border: 1px solid #c9efeb;
  color: #0f6662;
  font-weight: 800;
  border-radius: 14px;
}

.kp-point-body {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr .9fr;
  align-items: center
}

.kp-point-text {
  color: #20323e
}

.kp-point-text p {
  margin: .5em 0
}

.kp-point-illust {
  margin: 0;
  justify-self: end;
  background: #fff;
  border: 1px solid #e6eaf3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.kp-point-illust img {
  display: block;
  width: min(460px, 100%);
  height: auto
}

@media (max-width:980px) {
  .kp-point-body {
    grid-template-columns: 1fr
  }

  .kp-point-illust {
    justify-self: center
  }

  .kp-point-illust img {
    width: 100%
  }
}

/* ========== Scope（当社/ご用意）2カラム ========== */
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.5vw, 28px)
}

@media (max-width:900px) {
  .scope-grid {
    grid-template-columns: 1fr
  }
}

.scope-card {
  position: relative;
  background: linear-gradient(180deg, #fff, #f8fbff 85%, #f4fbff);
  border: 1px solid #e6efed;
  border-radius: 22px;
  padding: clamp(18px, 2.4vw, 24px) clamp(18px, 2.4vw, 26px);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}

/* ピル見出し */
.scope-tab {
  position: absolute;
  top: -14px;
  left: 18px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  letter-spacing: .02em;
  padding: .5em 1.1em;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(45, 182, 174, .22);
  white-space: nowrap;
}

.scope-tab--mute {
  background: #eef8f7;
  color: #0f6662;
  border: 1px solid #cfe7e4;
  box-shadow: 0 8px 18px rgba(28, 88, 82, .08);
}

.scope-list {
  list-style: none;
  margin: 18px 0 8px;
  padding: 8px 0 0;
  display: grid;
  gap: 12px
}

.scope-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.8;
  font-weight: 700
}

.scope-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .25em;
  width: 20px;
  height: 20px
}

/* 左：チェック丸 */
.scope-list--check li::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="10" fill="%23e7faf8" stroke="%232db6ae" stroke-width="2"/><path d="M7 12.5l3 3 7-7" stroke="%232db6ae" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

/* 右：未チェックBOX */
.scope-list--todo li::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none"><rect x="3" y="3" width="18" height="18" rx="4" fill="%23ffffff" stroke="%232db6ae" stroke-width="2"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 6px;
}

/* ========== Flow（STEP 1–7） ========== */
.flow_design09 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow09 {
  padding-left: 0;
  border-bottom: 1px solid #e1e8ed
}

.flow09>li {
  list-style: none;
  display: flex;
  gap: 0;
  padding: 20px 0;
  border-top: 1px solid #e1e8ed;
}

.flow09>li dl {
  width: calc(100% - 70px);
  margin-top: .8em
}

.flow09>li dl dt {
  font-size: 1.2em;
  line-height: 2;
  font-weight: 700;
  margin-bottom: 10px
}

.flow09>li dl dd {
  margin: 0
}

.flow09>li .icon09 {
  line-height: 1;
  font-size: 2em;
  font-weight: 900;
  color: var(--brand);
  text-align: center;
  width: 70px;
  position: relative;
  margin-top: 0;
}

.flow09>li .icon09::before {
  content: "STEP";
  font-size: .3em;
  display: block;
  margin-bottom: 3px;
  letter-spacing: 1px
}

.flow09>li .icon09::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 40px);
  background-color: #cfe7e4;
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  margin: auto;
}

/* ===== Points: 2x2 grid on desktop, 1col on mobile ===== */
.points-grid {
  display: grid;
  gap: clamp(16px, 2.2vw, 28px);
  /* モバイル/タブレットは1列 */
  grid-template-columns: 1fr;
}

/* PC(>=1024px) は2列×2行 */
@media (min-width: 1024px) {
  .points-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* グリッド内では個々のカードの外側マージンをリセット */
.points-grid .kp-point {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* 伸縮で高さを揃えやすく */
}

/* 画像があるときの伸縮バランス（可読性優先で微調整） */
.points-grid .kp-point-body {
  margin-top: auto;
}