/* ==============================
   Global Header (LP)
   ============================== */
.g-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.g-header__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.g-header__logo{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.g-header__logo-img{
  display: block;
  height: 48px;   /* ← ロゴの基準サイズ */
  width: auto;
}
.g-header__logo-text{
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 640px){
  .g-header__logo-img{
    height: 48px;
  }
}
.g-header__cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #0b3b8a;
  box-shadow: 0 10px 24px rgba(11, 59, 138, 0.22);
  white-space: nowrap;
}
.g-header__cta:hover{
  filter: brightness(1.05);
}

@media (max-width: 640px){
  .g-header__inner{ padding: 12px 14px; }
  .g-header__logo-text{ font-size: 16px; }
  .g-header__cta{ padding: 11px 14px; }
}


/* ==============================
   Page Top Button
   ============================== */
.page-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;

  width: 48px;
  height: 48px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
  color: inherit;

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  cursor: pointer;
}

.page-top.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top:hover{
  filter: brightness(1.03);
}

@media (max-width: 640px){
  .page-top{
    right: 12px;
    bottom: 12px;
    width: 44px;
    height: 44px;
  }
}


/* =========================
  Hero
========================= */

/* =========================
  Common UI
========================= */

.p-hero__badge,
.p-problem__badge,
.p-data__badge,
.p-value__badge,
.v3-flow__badge,
.v3-philo__badge,
.v3-why__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--badge-py) var(--badge-px);
  border-radius: var(--r-pill);
  line-height: 1;
}

.p-data__rule,
.p-value__rule,
.v3-flow__rule,
.v3-why__rule{
  width: var(--rule-w);
  height: var(--rule-h);
  border-radius: var(--r-pill);
}

.p-hero {
  position: relative;
  overflow: hidden;
  
  min-height: calc(var(--vh, 1vh) * 100);
  display: grid;
  align-items: center;
  
  background-image: url("assets/img/hero/hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.p-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.p-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.55) 38%,
    rgba(255, 255, 255, 0.92) 70%,
    rgba(255, 255, 255, 0.98) 100%
  );
  pointer-events: none;
}

.p-hero__inner {
  position: relative;
  z-index: 1; 
  max-width: 1920px;
  margin-inline: auto;
  width: 100%;
  padding: 56px 20px; 
}

@media (min-width: 1280px) {
  .p-hero__inner {
    padding-left: 80px;
    padding-right: 80px;
  }
}

.p-hero__content {
  max-width: 720px;
  text-align: left;
}

.p-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--badge-py) var(--badge-px);
  border-radius: var(--r-pill);
  background: #0b4fa3;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.p-hero__title {
  margin-top: 22px;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.25;
  font-size: var(--fs-hero-title);
  color: #0f172a;
  text-wrap: balance;
}

.p-hero__lead {
  margin-top: 18px;
  font-weight: 700;
  line-height: 1.9;
  font-size: var(--fs-hero-lead);
  color: rgba(15, 23, 42, 0.78);
}

/* =========================
  SP：縦横中央 + 文字中央寄せ
========================= */
@media (max-width: 767px) {
  .p-hero__inner {
    padding: 42px 0;
    display: grid;
    place-items: center;
    min-height: calc(var(--vh, 1vh) * 100);
  }

  .p-hero__content {
    text-align: center;
  }

  .p-hero__badge {
    font-size: 14px;
    padding: 10px 16px;
  }

  .p-hero__lead {
    font-size: 16px;
    line-height: 1.85;
  }

  
  .p-hero::before {
    background: rgba(255, 255, 255, 0.38);
  }
  .p-hero::after {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.90) 0%,
      rgba(255, 255, 255, 0.70) 45%,
      rgba(255, 255, 255, 0.55) 100%
    );
  }
}

/* =========================
  INTRO
========================= */

.p-intro {
  background: #fff;
}

.p-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.p-intro__media {
  display: block;
}

.p-intro__img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
  
  filter: saturate(1.02) contrast(1.02);
}

.p-intro__content {
  padding-top: 6px; 
}

.p-intro__title {
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.35;
  font-size: var(--fs-section-title);
  color: #0f172a;
  text-wrap: balance;
}

.p-intro__text {
  margin-top: 18px;
  font-size: var(--fs-body);
  line-height: 2.0;
  color: rgba(15, 23, 42, 0.72);
}

/* =========================
  SP: stacked
========================= */
@media (max-width: 767px) {

  .p-intro__title {
    text-align: center;
  }
  .p-intro__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .p-intro__content {
    padding-top: 0;
    text-align: left; 
  }

}

/* =========================
  PROBLEM
========================= */

.p-problem__head {
  margin-bottom: 28px;
}

.p-problem__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--badge-py) var(--badge-px);
  border-radius: var(--r-pill);
  background: #b01717;
  color: #fff;
  font-weight: 700;
  font-size: var(--fs-body);
  line-height: 1;
}

.p-problem__title {
  margin-top: 18px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.01em;
  font-size: var(--fs-section-title);
}

.p-problem__issues {
  margin-top: 22px;
  display: grid;
  gap: 18px;
}

.p-issue {
  background: #fff;
  border: 2px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-areas:
    "icon title"
    "icon text";
  column-gap: 14px;
  row-gap: 6px;
  align-items: start;
}

.p-issue__icon {
  grid-area: icon;
  width: 34px;
  height: 34px;
  border-radius: var(--r-pill);
  background: #ffdde0;
  color: #b01717;
  display: grid;
  place-items: center;
  font-weight: 900;
  line-height: 1;
  font-size: 18px;
}

.p-issue__title {
  grid-area: title;
  font-weight: 900;
  font-size: var(--fs-body-lg);
  line-height: 1.4;
}

.p-issue__text {
  grid-area: text;
  color: rgba(15, 23, 42, 0.72);
  font-size: var(--fs-body);
  line-height: 1.9;
}

@media (max-width: 767px) {
  .p-issue {
    grid-template-columns: 42px 1fr;
    grid-template-areas:
      "icon title"
      "text text";
    column-gap: 12px;
    row-gap: 10px;
    padding: 18px 16px;
  }

  .p-issue__icon {
    width: 34px;
    height: 34px;
    align-self: start;
  }

  .p-issue__title {
    align-self: center;
  }
}

.p-problem__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.p-scene {
  border: 0;
  background: transparent;
  padding: 0;
  text-align: center;
}

.p-scene__img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #fff;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.p-scene__cap {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  font-size: var(--fs-body);
  color: rgba(15, 23, 42, 0.80);
}

@media (hover: hover) and (pointer: fine) {
  .p-scene:hover .p-scene__img {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  }
}

@media (max-width: 767px) {
  .p-problem__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .p-scene__cap {
    font-size: 13px;
  }
}

.p-problem__note {
  margin-top: 28px;
  border: 4px dashed rgba(15, 23, 42, 0.20);
  border-radius: 12px;
  padding: 18px 18px;
  color: rgba(15, 23, 42, 0.74);
  font-size: var(--fs-body);
  line-height: 2.0;
}

.p-problem__em {
  color: #b01717;
  font-weight: 900;
}

/* =========================
  Modal (scene)
  ※JSで aria-hidden 切替 + openクラス付与
========================= */

.p-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
}

.p-modal.is-open {
  display: block;
}

.p-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.60);
}

.p-modal__dialog {
  position: fixed;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(920px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  overflow: auto;
  margin: 0; 
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, calc(-50% + 10px));
  opacity: 0;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.p-modal.is-open .p-modal__dialog {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.p-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  font-size: 22px;
  line-height: 1;
}

.p-modal__head {
  padding: 18px 18px 0;
}

.p-modal__title {
  margin: 0;
  font-weight: 900;
  font-size: var(--fs-body-lg);
}

.p-modal__desc {
  margin-top: 10px;
  color: rgba(15, 23, 42, 0.72);
  font-size: var(--fs-body);
  line-height: 1.9;
}

.p-modal__body {
  padding: 14px 18px 20px;
}

.p-modal__img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.10);
}

@media (min-width: 768px) {
  .p-modal__dialog {
    width: min(640px, calc(100% - 64px));
  }

  .p-modal__img {
    border-radius: 8px;
  }
}

/* =========================
  DATA
========================= */

.p-data__head { margin-bottom: 26px; }

.p-data__badge{
  display:inline-flex; align-items:center; justify-content:center;
  padding: var(--badge-py) var(--badge-px); border-radius: var(--r-pill);
  background:#0b4fa3; color:#fff;
  font-weight:700; font-size:var(--fs-body); line-height:1;
}

.p-data__title{
  margin-top:16px;
  font-weight:900; line-height:1.35; letter-spacing:0.01em;
  font-size:var(--fs-section-title);
}

.p-data__rule{
  width: var(--rule-w); height: var(--rule-h); border-radius: var(--r-pill);
  background:#0b4fa3; margin:16px auto 0;
}

.p-data__list{ display:grid; gap:34px; margin-top:22px; }

.p-data__item{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
  position: relative;
  padding-bottom: 34px; 
}

.p-data__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(15, 23, 42, 0.10); 
}

@media (max-width: 767px) {
  .p-data__list {
    gap: 40px;
  }
  .p-data__item {
    padding-bottom: 40px;
  }
}

.p-data__item:last-child {
  padding-bottom: 0;
}
.p-data__item:last-child::after {
  display: none;
}

.p-data__item--reverse{
  grid-template-areas: "content chart";
}
.p-data__item--reverse .p-data__content{ grid-area: content; }
.p-data__item--reverse .p-data__chart,
.p-data__item--reverse .p-data__panel{ grid-area: chart; }

.p-data__chart,
.p-data__panel{
  background:#fff;
  border:1px solid rgba(15,23,42,0.10);
  border-radius:14px;
  box-shadow: 0 14px 34px rgba(15,23,42,0.08);
  padding:18px;
  box-sizing: border-box;
}

.p-data__content{ padding: 6px 0; }

.p-data__sub{
  font-weight:900;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height:1.45;
  letter-spacing:0.01em;
}

.p-data__text{
  margin-top:12px;
  color: rgba(15,23,42,0.72);
  font-size: var(--fs-body);
  line-height: 2.0;
}

.p-callout{
  margin-top:14px;
  background: #e8f1ff;
  border: 1px solid rgba(11,79,163,0.18);
  border-radius: 12px;
  padding: 14px 14px;
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.p-callout__icon{
  width:26px; height:26px; border-radius:999px;
  display:grid; place-items:center;
  background:#0b4fa3; color:#fff;
  font-weight:900; line-height:1;
  flex: 0 0 auto;
  transform: translateY(2px);
}

.p-callout__text{
  margin:0;
  color:#0b2a5a;
  font-weight:700;
  font-size: var(--fs-body);
  line-height:1.75;
}

.p-chart__title{
  font-weight:900;
  font-size: 13px;
  color: rgba(15,23,42,0.80);
  text-align:center;
  margin-bottom: 14px;
}

.p-chart__footnote{
  margin-top:10px;
  font-size: 11px;
  color: rgba(15,23,42,0.55);
  text-align:right;
}

.p-bar2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
  align-items:end;
  padding: 6px 4px 0;
  --bar-area-h: 170px;
  min-height: auto;   
}

.p-bar2__col{ text-align:center; position:relative; }

.p-bar2__bar{
  width: 84%;
  margin: 0 auto;
  height: var(--bar-area-h);
  border-radius: 10px 10px 6px 6px;
  background: var(--bar);
  transform-origin: bottom;
  transform: scaleY(var(--v));
}

.p-bar2__value{
  margin-top: 10px;
  font-weight:900;
  font-size: 18px;
  color: rgba(15,23,42,0.55);
}

.p-bar2__value span{ font-size: 12px; font-weight:900; margin-left:2px; }

.p-bar2__value--blue{ color:#0b4fa3; }

.p-bar2__label{
  margin-top: 6px;
  font-size: 12px;
  font-weight:700;
  color: rgba(15,23,42,0.60);
}

.p-bar2__label--blue{ color:#0b4fa3; }

.p-hbar{ display:grid; gap: 14px; }

.p-hbar__row{
  display:grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.p-hbar__label{
  margin:0;
  font-size: 12px;
  font-weight:700;
  color: rgba(15,23,42,0.78);
}

.p-hbar__track{
  width:100%;
  height: 12px;
  border-radius: 999px;
  background: #e8eef6;
  overflow:hidden;
}

.p-hbar__fill{
  display:block;
  height:100%;
  width: var(--w);
  background: var(--bar);
  border-radius: 999px;
}

.p-hbar__pct{
  margin:0;
  font-weight:900;
  font-size: 12px;
  color: rgba(15,23,42,0.70);
  text-align:right;
}

.p-line{
  width:100%;
  height:auto;
  display:block;
}

.p-line__grid line{
  stroke: rgba(15,23,42,0.10);
  stroke-width: 2;
}

.p-line__path{
  fill: none;
  stroke: #f0b400;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.p-line__pts circle{
  fill: #f0b400;
  stroke: #fff;
  stroke-width: 4;
}

.p-line__note{
  font-size: 14px;
  fill: rgba(15,23,42,0.65);
  font-weight: 700;
}

.p-data__panel-title{
  margin:0;
  font-weight:900;
  font-size: 13px;
  color: rgba(15,23,42,0.72);
}

.p-data__panel-list{
  margin-top: 12px;
  font-weight:900;
  line-height: 1.9;
  font-size: 14px;
}

.p-data__summary{
  margin-top: 64px;
  background: #0b4fa3;
  color: #fff;
  border-radius: 12px;
  padding: 22px 18px;
  position: relative;
}

.p-data__summary-tail{
  position:absolute;
  top:-21px;
  left:50%;
  transform: translateX(-50%);
  width:0; height:0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 22px solid #0b4fa3;
}

.p-data__summary-text{
  margin:0 auto;
  font-weight:500;
  line-height: 1.9;
  font-size: 20px;
  width: fit-content;
}

.p-data__summary-text span{
  color:#ffd500;
  font-weight: 700;
}

/* =========================
  SP: 1 column
  - 順序は「グラフ→テキスト」に統一
========================= */
@media (max-width: 767px) {
  .p-data__item {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .p-data__item > * {
    min-width: 0; 
  }

  
  .p-data__item--reverse .p-data__chart,
  .p-data__item--reverse .p-data__panel {
    order: 1;
  }

  .p-data__item--reverse .p-data__content {
    order: 2;
  }

  .p-data__chart,
  .p-data__panel {
    width: 100%;
  }

  .p-chart {
    width: 100%;
  }
}

/* =========================
  VALUE
========================= */

.p-value__head { margin-bottom: 22px; }

.p-value__badge{
  display:inline-flex; align-items:center; justify-content:center;
  padding: var(--badge-py) var(--badge-px); border-radius: var(--r-pill);
  background:#0b4fa3; color:#fff;
  font-weight:700; font-size:var(--fs-body); line-height:1;
}

.p-value__title{
  margin-top: 14px;
  font-weight: 900;
  font-size: var(--fs-section-title);
  line-height: 1.35;
}

.p-value__rule{
  width: var(--rule-w); height: var(--rule-h); border-radius: var(--r-pill);
  background:#0b4fa3;
  margin: 14px auto 0;
}

.p-value__lead{
  margin-top: 10px;
  color: rgba(15,23,42,0.64);
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1.9;
}

.p-value__customer{
  max-width:780px;
  margin: auto;
}

/* =========================
  Value Card 01 (Customer)
  - faithful to design
========================= */

.v3-valuecard {
  border-radius: 12px;
  padding: 26px 26px 22px;
  color: #fff;
  background: radial-gradient(900px 480px at 15% 20%, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 55%),
              linear-gradient(135deg, #0b5aa6 0%, #0a3f82 55%, #09336f 100%);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.18);
}

.v3-valuecard__head {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: start;
}

.v3-valuecard__icon {
  width: 86px;
  height: 86px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  font-size: 40px; 
  line-height: 1;
}

.v3-valuecard__titles {
  padding-top: 6px;
}

.v3-valuecard__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.2;
  font-size: clamp(22px, 2.3vw, 34px);
}

.v3-valuecard__sub {
  margin: 14px 0 0;
  font-weight: 700;
  font-size: 18px;
  opacity: 0.95;
}

.v3-valuecard__box {
  margin-top: 18px;
  background: #dfeeff;
  color: #0f172a;
  border-radius: 10px;
  padding: 14px 16px 16px;
}

.v3-valuecard__boxhead {
  display: flex;
  align-items: center;
  gap: 10px;
}

.v3-valuecard__check {
  color: #0b4fa3;
  font-size: 18px;
}

.v3-valuecard__boxlabel {
  margin: 0;
  font-weight: 900;
  font-size: 14px;
  color: #0b4fa3;
}

.v3-valuecard__pills {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.v3-valuecard__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: #0b4fa3;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.25;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}

.v3-valuecard__quote {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 6px 1fr;
  gap: 14px;
  align-items: center;
}

.v3-valuecard__bar {
  width: 6px;
  height: 100%;
  min-height: 56px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.v3-valuecard__quotetext {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.6;
  font-size: clamp(16px, 1.55vw, 22px);
}

@media (max-width: 767px) {
  .v3-valuecard {
    padding: 20px 18px 18px;
  }

  .v3-valuecard__head {
    grid-template-columns: 64px 1fr;
    gap: 14px;
  }

  .v3-valuecard__icon {
    width: 64px;
    height: 64px;
    font-size: 30px;
  }

  .v3-valuecard__sub {
    margin-top: 10px;
    font-size: 16px;
  }

  .v3-valuecard__pills {
    grid-template-columns: 1fr; 
    gap: 10px;
  }

  .v3-valuecard__pill {
    font-size: 13px;
    padding: 10px 12px;
  }

  .v3-valuecard__quote {
    grid-template-columns: 5px 1fr;
    gap: 12px;
  }
}

/* =========================
  Value Card modifier: employee
  - colors only (reuse structure)
========================= */

.v3-valuecard--employee{
  background: radial-gradient(900px 480px at 15% 20%, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 55%),
              linear-gradient(135deg, #0b2f5d 0%, #081f3d 60%, #061a33 100%);
}

.v3-valuecard--employee .v3-valuecard__icon{
  background: rgba(243, 196, 27, 0.18);
  color: #f3c41b;
}

.v3-valuecard--employee .v3-valuecard__box{
  background: #f2ead2;
}

.v3-valuecard--employee .v3-valuecard__check{
  color: #7a5a12;
}

.v3-valuecard--employee .v3-valuecard__boxlabel{
  color: #7a5a12;
}

.v3-valuecard--employee .v3-valuecard__pill{
  background: #d2a21b;
  color: #222222;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22);
}

.v3-valuecard--employee .v3-valuecard__bar{
  background: rgba(243, 196, 27, 0.85);
}

.v3-case__title h3{
  text-align: center;
  font-size:var(--fs-section-title);
  margin:2rem auto;
  font-weight: 900;
}

/* =========================
  Case Card (Reusable x3)
  faithful to design
========================= */

.v3-casecard{
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.12);
  box-shadow: 0 18px 44px rgba(15,23,42,0.12);
  margin-bottom:3rem;
}

.v3-casecard__media img{
  width: 100%;
  height: auto;
  display: block;
}

.v3-casecard__head{
  background: #e6eef7; 
  padding: 18px 18px 16px;
}

.v3-casecard__meta{
  margin: 0;
  font-weight: 700;
  font-size: 12px;
  color: rgba(15,23,42,0.60);
}

.v3-casecard__title{
  margin: 10px 0 0;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.35;
  font-size: 22px;
  color: #0f172a;
}

.v3-casecard__body{
  padding: 18px 18px 20px;
}

.v3-casecard__sec + .v3-casecard__sec{
  margin-top: 18px;
}

.v3-casecard__sec-head{
  display: flex;
  align-items: center;
  gap: 10px;
}

.v3-casecard__sec-ico{
  font-size: 18px;
  line-height: 1;
}

.v3-casecard__sec-title{
  margin: 0;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
}

.v3-casecard__sec-ico--issue{ color: #d32f2f; }
.v3-casecard__sec-title--issue{ color: #d32f2f; }

.v3-casecard__issue-list{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.v3-casecard__issue-item{
  position: relative;
  padding-left: 14px;
  color: #d32f2f;
  font-weight: 500;
  font-size:var(--fs-body);
  line-height: 1.85;
}

.v3-casecard__issue-item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  bottom: 0.35em;
  width: 3px;
  border-radius: 999px;
  background: #d32f2f;
}

.v3-casecard__solution-head{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.v3-casecard__bolt{
  color: #0b4fa3;
  font-size: 18px;
  line-height: 1;
}

.v3-casecard__solution-title{
  margin: 0;
  font-weight: 900;
  font-size: 16px;
  color: #0b4fa3;
  letter-spacing: 0.01em;
}

.v3-casecard__solution-box{
  margin-top: 12px;
  background: #e8f1ff;
  border: 2px solid rgba(11,79,163,0.20);
  border-radius: 10px;
  padding: 14px 14px;
  color: #0b2a5a;
  font-weight: 700;
  font-size: var(--fs-body);
  line-height: 1.85;
}

.v3-casecard__sec-head--after{
  margin-top: 2px;
}

.v3-casecard__sec-ico--after{
  color: #c99a12; 
  font-size: 18px;
}
.v3-casecard__sec-title--after{
  color: #c99a12;
}

.v3-casecard__after-list{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.v3-casecard__after-item{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(15,23,42,0.84);
  font-weight: 500;
  font-size:var(--fs-body);
  line-height: 1.8;
}

.v3-casecard__after-item i{
  color: #c99a12;
  font-size: 16px;
  transform: translateY(2px);
}

.v3-casecard__foot{
  background: #f2ead2;
  padding: 16px 18px;
  font-weight: 900;
  color: rgba(15,23,42,0.86);
  font-size: 18px;
  line-height: 1.9;
}

@media (max-width: 767px){

  .v3-casecard__head{ padding: 16px 14px 14px; }
  .v3-casecard__body{ padding: 16px 14px 18px; }
  .v3-casecard__title{ font-size: 20px; }
}

/* =========================
  Employee Case Card (CASE 04)
  uses .v3-casecard base
========================= */

.v3-casecard--employee .v3-casecard__title{
  letter-spacing: 0.01em;
}

.v3-empsec + .v3-empsec{ margin-top: 18px; }

.v3-empsec__head{
  display: flex;
  align-items: center;
  gap: 10px;
}

.v3-empsec__ico{
  font-size: 18px;
  line-height: 1;
}

.v3-empsec__title{
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.v3-empsec__ico--red{ color:#d32f2f; }
.v3-empsec__title--red{ color:#d32f2f; }

.v3-empsec__ico--blue{ color:#0b4fa3; }
.v3-empsec__title--blue{ color:#0b4fa3; }

.v3-empsec__ico--gold{ color:#c99a12; }
.v3-empsec__title--gold{ color:#c99a12; }

.v3-issueblock{
  margin-top: 12px;
  padding-left: 14px;
  position: relative;
}

.v3-issueblock::before{
  content:"";
  position:absolute;
  left:0;
  top: 2px;
  bottom: 2px;
  width: 3px;
  border-radius: 999px;
  background:#d32f2f;
}

.v3-issueblock__label{
  margin: 0;
  font-weight: 700;
  font-size: var(--fs-body);
  color:#d32f2f;
}

.v3-issueblock__text{
  margin: 8px 0 0;
  font-weight: 500;
  font-size:var(--fs-body);
  line-height: 1.9;
  color:#d32f2f;
}

.v3-howbox{
  margin-top: 12px;
  background:#e8f1ff;
  border: 2px solid rgba(11,79,163,0.18);
  border-radius: 12px;
  padding: 14px 14px;
}

.v3-howbox__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  counter-reset: how;
}

.v3-howbox__item{
  counter-increment: how;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color:#0b2a5a;
  font-weight: 700;
  font-size: var(--fs-body);
  line-height: 1.75;
}

.v3-howbox__item::before{
  content: counter(how);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(11,79,163,0.10);
  border: 1px solid rgba(11,79,163,0.25);
  color:#0b4fa3;
  font-weight: 900;
  font-size: 12px;
  transform: translateY(1px);
}

.v3-metrics{
  background: #0b4fa3;
  border-radius: 12px;
  padding: 14px 14px;
  color: #fff;
}

.v3-metrics__head{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 12px;
}

.v3-metrics__ico{
  font-size: 18px;
  line-height: 1;
}

.v3-metrics__title{
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
}

.v3-metrics__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.v3-metrics__cell{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 14px 14px;
}

.v3-metrics__val{
  margin: 0;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.1;
}

.v3-metrics__key{
  margin: 8px 0 0;
  font-weight: 500;
  font-size: 12px;
  opacity: 0.92;
          }

.v3-stablebox{
  margin-top: 12px;
  border: 2px solid #d2a21b;
  border-radius: 12px;
  padding: 12px 12px;
  background: #fff;
}

.v3-stablebox__list{
  margin: 0;
  padding-left: 1.25em;
  color: rgba(15,23,42,0.82);
  font-weight: 500;
  font-size:var(--fs-body);
  line-height: 1.95;
}

.v3-voice{
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 86px;
  gap: 14px;
  align-items: end;
}

.v3-voice__bubble{
  border: 2px solid #d2a21b;
  border-radius: 12px;
  padding: 14px 14px;
  background: #fff;
  position: relative;
}

.v3-voice__bubble::after{
  content:"";
  position:absolute;
  right: 18px;
  bottom: -10px;
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #d2a21b;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.02));
}

.v3-voice__bubble::before{
  content:"";
  position:absolute;
  right: 18px;
  bottom: -8px;
  width: 0; height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #fff;
  transform: translateY(-1px);
}

@media (min-width: 768px) {

  .v3-voice__bubble::after{
    left: auto;
    bottom: auto;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid #d2a21b;
    border-right: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-top-color: transparent; 
    border-bottom-color: transparent;
    border-top-width: 10px;
    filter: drop-shadow(0 1px 0 rgba(0,0,0,0.02));
  }

  .v3-voice__bubble::before{
    left: auto;
    bottom: auto;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid #fff;
    border-right: none;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-top-width: 9px;
  }
}

.v3-voice__text{
  margin: 0;
  font-weight: 500;
  font-size:var(--fs-body);
  line-height: 1.9;
  color: rgba(15,23,42,0.80);
}

.v3-voice__sign{
  margin: 10px 0 0;
  font-weight: 700;
  font-size: 12px;
  color: rgba(15,23,42,0.70);
  text-align: right;
}

.v3-voice__avatar{
  width: 86px;
  height: 86px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(15,23,42,0.10);
  background: #f3f4f6;
}

.v3-voice__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v3-casecard__foot--gold{
  background: #d2a21b;
  color: #222222;
  font-weight: 900;
  font-size: 18px;
}

@media (max-width: 767px){
  .v3-voice{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .v3-voice__avatar{
    width: 78px;
    height: 78px;
    justify-self: end;
  }

  .v3-metrics__val{
    font-size: 24px;
  }
}

/* =========================
  Flow section (complete)
========================= */

.v3-flow__head { margin-bottom: 26px; }

.v3-flow__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: var(--badge-py) var(--badge-px);
  border-radius: var(--r-pill);
  background:#0b4fa3;
  color:#fff;
  font-weight:900;
  font-size:12px;
  line-height:1;
}

.v3-flow__title{
  margin-top: 16px;
  font-weight: 900;
  letter-spacing: 0.01em;
  font-size: var(--fs-section-title);
  line-height: 1.35;
}

.v3-flow__rule{
  width: var(--rule-w);
  height: var(--rule-h);
  border-radius: var(--r-pill);
  background:#0b4fa3;
  margin: 14px auto 0;
}

.v3-flow__lead{
  margin: 22px auto 0;
  max-width: 560px;
  font-weight: 500;
  font-size:var(--fs-body);
  line-height: 2.15;
  color: rgba(15,23,42,0.72);
}

/* =========================
  Steps row
  - PC: 4 cards in a row + arrows between
  - SP: card + arrow (down) + card...
========================= */

.v3-flow__steps{
  margin-top: 38px;
  display: grid;
  align-items: stretch;
  gap: 0;
}

@media (min-width: 768px){
  .v3-flow__steps{
    grid-template-columns:
      1fr 56px
      1fr 56px
      1fr 56px
      1fr;
    column-gap: 0;
  }

  .v3-flow__arrow{
    display: grid;
    place-items: center;
    color: #0b4fa3;
    font-size: 34px;
    font-weight: 900;
    opacity: 0.9;
  }

  .v3-flow__arrow i{
    transform: none;
  }
}

.v3-step{
  display: grid;
  grid-template-rows: auto 1fr; 
  height: 100%;
  min-height: 240px; 
  border-radius: 10px;
  border: 2px solid rgba(11,79,163,0.55);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15,23,42,0.08);
}

.v3-step__top{
  background: #083f84;
  color: #fff;
  padding: 12px 12px 10px;
  text-align: center;
}

.v3-step__step{
  margin: 0;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.v3-step__name{
  margin: 6px 0 0;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.2;
}

.v3-step__body{
  padding: 14px 14px 16px;
  display: grid;
  gap: 12px;
  justify-items: center;
  align-content: center; 
}

.v3-step__icon{
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: rgba(11,79,163,0.12);
  display: grid;
  place-items: center;
  color: #0b4fa3;
  font-size: 30px;
}

.v3-step__text{
  margin: 0;
  text-align: center;
  font-weight: 500;
  font-size: var(--fs-body);
  line-height: 1.85;
  color: rgba(15,23,42,0.74);
}

@media (max-width: 767px){
  .v3-flow__steps{
    grid-template-columns: 1fr;
    row-gap: 12px;
    margin-top: 26px;
  }

  .v3-flow__arrow{
    display: grid;
    place-items: center;
    height: 34px;
    color: #0b4fa3;
    opacity: 0.9;
    font-size: 26px;
  }

  .v3-flow__arrow i{
    transform: rotate(90deg);
  }

  .v3-step{
    min-height: 230px; 
  }

  .v3-step__icon{
    width: 72px;
    height: 72px;
    font-size: 28px;
  }
}

/* =========================
  Follow block (pill overlaps dashed box)
========================= */

.v3-follow{
  margin-top: 44px;
  position: relative;
}

.v3-follow__pill{
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0b4fa3;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 7px 18px rgba(11,79,163,0.24);

  position: absolute;
  left: 22px;
  top: -24px;
  z-index: 2;
}

.v3-follow__pill-ico{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  font-size: 16px;
}

.v3-follow__box{
  padding: 48px 18px 18px;
  border: 2px dashed rgba(11,79,163,0.55);
  border-radius: 12px;
  background: #eef6ff;
}

.v3-follow__text{
  margin: 0;
  font-weight: 700;
  font-size:var(--fs-body);
  line-height: 2.05;
  color: rgba(15,23,42,0.74);
}

@media (max-width: 767px){
  .v3-follow__pill{
    left: 14px;
    top: -22px;
    font-size: 14px;
    padding: 12px 18px;
  }

  .v3-follow__box{
    padding: 52px 14px 16px;
  }
}

/* =========================
  Philosophy
========================= */

.v3-philo__inner{
  text-align: center;
  padding-top: 6px;
}

.v3-philo__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--badge-py) var(--badge-px);
  border-radius: var(--r-pill);
  background: #5a4508;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
}

.v3-philo__title{
  margin: 22px auto 0;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.35;
  font-size: var(--fs-section-title);
  color: #0f172a;
}

.v3-philo__media{
  margin: 26px auto 0;
  width: min(560px, 100%);
}

.v3-philo__media img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(15,23,42,0.12);
}

.v3-philo__lead{
  margin: 20px auto 0;
  width: fit-content;
  font-weight: 500;
  font-size:var(--fs-body);
  line-height: 2.2;
  color: rgba(15,23,42,0.70);
}

.v3-philo__textblock{
  margin: 22px auto 0;
  width: fit-content;
}

.v3-philo__subtitle{
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: rgba(15,23,42,0.70);
  letter-spacing: 0.04em;
}

.v3-philo__text{
  margin: 12px 0 0;
  font-weight: 500;
  font-size:var(--fs-body);
  line-height: 2.2;
  color: rgba(15,23,42,0.72);
}

.v3-philo__quote{
  margin: 0 auto 12px;
  font-weight: 700;
  font-size:18px;
  color: rgba(15,23,42,0.86);
  letter-spacing: 0.02em;
}

.v3-philo__closing{
  margin: 26px auto 0;
  width: fit-content;
  font-weight: 700;
  font-size:18px;
  line-height: 2.2;
  color: rgba(15,23,42,0.78);
}

.v3-philo__cta{
  margin-top: 30px;
}

.v3-philo__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  border-radius: 8px;
  background: #5a4508;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(90,69,8,0.22);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.v3-philo__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(90,69,8,0.28);
}

@media (max-width: 767px){
  .v3-philo__title{ margin-top: 18px; }
  .v3-philo__media{ margin-top: 22px; }
  .v3-philo__btn{ width: 100%; max-width: 360px; }
  .v3-philo__lead,.v3-philo__text,
  .v3-philo__subtitle,.v3-philo__closing,.v3-philo__quote{ text-align: left;}
}

/* =========================
  WHY (Benefits)
========================= */

.v3-why__head{
  margin-bottom: 28px;
}

.v3-why__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: var(--badge-py) var(--badge-px);
  border-radius: var(--r-pill);
  background:#0b4fa3;
  color:#fff;
  font-weight:900;
  font-size:12px;
  line-height:1;
}

.v3-why__title{
  margin-top: 16px;
  font-weight: 900;
  letter-spacing: 0.01em;
  font-size: var(--fs-section-title);
  line-height: 1.35;
  color: #0f172a;
}

.v3-why__rule{
  width: var(--rule-w);
  height: var(--rule-h);
  border-radius: var(--r-pill);
  background:#0b4fa3;
  margin: 14px auto 0;
}

.v3-why__grid{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.v3-whycard{
  border: 2px solid rgba(15,23,42,0.14);
  border-radius: 10px;
  background: #fff;
  padding: 16px 16px 18px;
}

.v3-whycard__media{
  border-radius: 8px;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid rgba(15,23,42,0.10);
}

.v3-whycard__media img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.v3-whycard__media--placeholder{
  height: 160px;
  display: grid;
  place-items: center;
  background: #d6d6d6;
}

.v3-whycard__placeholder{
  font-weight: 900;
  font-size: 14px;
  color: rgba(15,23,42,0.70);
}

.v3-whycard__title{
  margin: 16px 0 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.8;
  color: #0f172a;
}

.v3-whycard__text{
  margin: 10px 0 0;
  font-weight: 500;
  font-size:var(--fs-body);
  line-height: 2.0;
  color: rgba(15,23,42,0.70);
}

@media (max-width: 767px){
  .v3-why__grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .v3-whycard{
    padding: 14px 14px 16px;
  }

  .v3-whycard__media img,
  .v3-whycard__media--placeholder{
    height: 180px;
  }
}

/* =========================
  Pre-CTA (recommended A)
========================= */

.v3-precta{
  position: relative;
  background: #eef6ff;
  overflow: hidden;
  padding: 86px 0; 
}

@media (max-width: 767px){
  .v3-precta{ padding: 64px 0; }
}

.v3-precta__bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(238,246,255,0.4) 0%, rgba(238,246,255,0.98) 100%),
    url("assets/img/autro/bg.webp");
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.v3-precta__card{
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 46px 44px;
  border-radius: 16px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(11,79,163,0.14);
  box-shadow: 0 26px 70px rgba(15,23,42,0.10);
  text-align: center;
  backdrop-filter: blur(6px);
}

@media (max-width: 767px){
  .v3-precta__card{
    padding: 34px 18px;
    border-radius: 14px;
  }
}

.v3-precta__title{
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.01em;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.35;
  color: #0f172a;
}

.v3-precta__body{
  margin-top: 22px;
}

.v3-precta__text{
  margin: 14px 0 0;
  font-weight: 700;
  font-size:var(--fs-body);
  line-height: 2.2;
  color: rgba(15,23,42,0.78);
}

.v3-precta__key{
  margin: 18px 0 0;
  font-weight: 900;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: 0.01em;
  color: #0f172a;
}

.v3-precta__marker{
  display: inline;
  padding: 0 6px;
  color: #0b4fa3;
  background: linear-gradient(transparent 62%, rgba(11,79,163,0.18) 62%);
}

.v3-precta__quote{
  margin: 26px auto 0;
  width: fit-content;
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 14px;
  align-items: center;
  text-align: left;
}

.v3-precta__bar{
  width: 4px;
  height: 100%;
  min-height: 56px;
  border-radius: 999px;
  background: rgba(11,79,163,0.70);
}

.v3-precta__quote-text{
  margin: 0;
  font-weight: 700;
  font-size: var(--fs-body);
  line-height: 2.0;
  color: rgba(15,23,42,0.70);
}

@media (max-width: 767px){
  .v3-precta__quote{
    margin-top: 22px;
    grid-template-columns: 3px 1fr;
    gap: 12px;
  }
}

/* =========================
  CTA Section
========================= */

.v3-cta{
  background: linear-gradient(
    180deg,
    #003f7d 0%,
    #004b91 100%
  );
  padding: 96px 0 104px;
  text-align: center;
  color: #fff;
}

@media (max-width: 767px){
  .v3-cta{
    padding: 72px 0 80px;
  }
}

.v3-cta__points{
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.v3-cta__pill{
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: #0b4fa3;
  background: linear-gradient(
    180deg,
    #e6f1fb 0%,
    #cfe3f7 100%
  );
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.v3-cta__title{
  margin: 0;
  font-weight: 900;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.v3-cta__lead{
  margin: 28px auto 0;
  max-width: 760px;
  font-size:var(--fs-body);
  line-height: 2.1;
  color: rgba(255,255,255,0.9);
}

.v3-cta__action{
  margin-top: 48px;
}

.v3-cta__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 44px;
  border-radius: 14px;
  background: #f5b400;
  color: #1f2937;
  font-weight: 900;
  font-size: 16px;
  text-decoration: none;
  box-shadow:
    0 10px 0 rgba(183,133,0,0.9),
    0 18px 40px rgba(0,0,0,0.25);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.v3-cta__button:hover{
  transform: translateY(-2px);
  background: #ffbe1a;
  box-shadow:
    0 12px 0 rgba(183,133,0,0.9),
    0 24px 48px rgba(0,0,0,0.3);
}

@media (max-width: 767px){
  .v3-cta__button{
    width: 100%;
    max-width: 320px;
    padding: 20px 24px;
  }
}

/* =========================
  Footer
========================= */

.p-footer{
  background: linear-gradient(180deg, #062647 0%, #041e38 100%);
  color: #ffffff;
  padding: 48px 0 36px;
}

.p-footer__inner{
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.p-footer__main{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.p-footer__brand{
  text-align: center;
}

.p-footer__logo{
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.p-footer__en{
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.p-footer__info{
  text-align: left;
  font-size: 13px;
  line-height: 1.9;
  opacity: 0.95;
}

.p-footer__text{
  margin: 0;
}

.p-footer__text a{
  color: #ffffff;
  text-decoration: none;
}

.p-footer__text a:hover{
  text-decoration: underline;
}

.p-footer__nav{
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.p-footer__link{
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
}

.p-footer__link:hover{
  opacity: 1;
  text-decoration: underline;
}

.p-footer__separator{
  margin: 0 10px;
  opacity: 0.5;
}

/* =========================
  Responsive
========================= */

@media (max-width: 768px){
  .p-footer{
    padding: 40px 0 28px;
  }

  .p-footer__main{
    flex-direction: column;
    gap: 20px;
  }

  .p-footer__info{
    text-align: center;
  }
}

/* ==============================
   Company Page
   ============================== */
.p-company__card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  overflow: hidden;
}

.p-company__dl{
  margin: 0;
  padding: 0;
}

.p-company__row{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  padding: 16px 18px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.p-company__row:first-child{
  border-top: none;
}

.p-company__row dt{
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  opacity: .9;
}
.p-company__row dd{
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  opacity: .95;
}

.p-company__wrap{
  word-break: break-word;
}

.p-company__links a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 59, 138, .35);
}
.p-company__links a:hover{
  border-bottom-color: rgba(11, 59, 138, .7);
}

@media (max-width: 768px){
  .p-company__row{
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .p-company__row dt{
    font-size: 13px;
    opacity: .78;
  }
}

/* ==============================
   Privacy Policy
   ============================== */
.p-privacy__card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  overflow: hidden;
}

/* セクション = カード内の段落ブロック */
.p-privacy__section{
  margin: 0;
  padding: 18px 18px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.p-privacy__section:first-child{
  border-top: none;
}

/* 見出し：左にアクセントバー */
.p-privacy__section h2{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
  position: relative;
  padding-left: 12px;
}
.p-privacy__section h2::before{
  content: "";
  position: absolute;
  left: 0;
  top: .15em;
  width: 4px;
  height: 1.2em;
  border-radius: 999px;
  background: rgba(11, 59, 138, .9);
}

/* 本文タイポ */
.p-privacy__section p{
  margin: 0 0 10px;
  line-height: 1.95;
  font-size: 15px;
  opacity: .95;
}

/* 箇条書き：インデント/行間を整える */
.p-privacy__section ul{
  margin: 10px 0 10px;
  padding: 0;
  list-style: none;
}
.p-privacy__section li{
  position: relative;
  padding-left: 1.2em;
  margin: 0 0 8px;
  line-height: 1.9;
  font-size: 15px;
  opacity: .95;
}
.p-privacy__section li::before{
  content: "";
  position: absolute;
  left: .2em;
  top: .8em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(11, 59, 138, .55);
  transform: translateY(-50%);
}

/* 強調用の小ボックス（本文内で使える） */
.p-privacy__note{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(11, 59, 138, .05);
  border: 1px solid rgba(11, 59, 138, .12);
  line-height: 1.9;
  font-size: 14px;
}

/* リンク：会社概要ページと同系の下線 */
.p-privacy__section a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 59, 138, .35);
}
.p-privacy__section a:hover{
  border-bottom-color: rgba(11, 59, 138, .7);
}

/* セクション内の最後の余白を整える */
.p-privacy__section p:last-child{
  margin-bottom: 0;
}

/* SP調整 */
@media (max-width: 768px){
  .p-privacy__section{
    padding: 16px 14px;
  }
  .p-privacy__section h2{
    font-size: 17px;
  }
}

/* ==============================
   Contact (Form UI)
   ============================== */
.p-contact__card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  overflow: hidden;
  padding: 22px 18px;
}

.p-form__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.p-form__field{ display: block; }
.p-form__field--full{ grid-column: 1 / -1; }

.p-form__label{
  display: inline-block;
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 14px;
  opacity: .92;
}
.p-form__req{ color: #ef4444; }

.p-form__input,
.p-form__select,
.p-form__textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
  padding: 12px 14px;
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.p-form__input:focus,
.p-form__select:focus,
.p-form__textarea:focus{
  border-color: rgba(11, 59, 138, .55);
  box-shadow: 0 0 0 4px rgba(11, 59, 138, .10);
  background: rgba(255,255,255,.95);
}

.p-form__hint{
  margin: 8px 0 0;
  font-size: 13px;
  opacity: .72;
  line-height: 1.7;
}

.p-form__agree{
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.7;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(11, 59, 138, .05);
  border: 1px solid rgba(11, 59, 138, .12);
}
.p-form__agree input{ margin-top: 3px; }

.p-form__agree a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 59, 138, .35);
}
.p-form__agree a:hover{
  border-bottom-color: rgba(11, 59, 138, .7);
}

.p-form__actions{
  margin-top: 18px;
  text-align: center;
}
.p-form__submit{
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 16px;
  border: none;
  border-radius: 999px;
  cursor: pointer;

  background: #0b3b8a;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 12px 28px rgba(11, 59, 138, 0.22);
  transition: transform .2s ease, filter .2s ease;
}
.p-form__submit:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.p-form__sub{
  margin: 10px 0 0;
  font-size: 13px;
  opacity: .72;
}

@media (max-width: 768px){
  .p-contact__card{ padding: 18px 14px; }
  .p-form__grid{ grid-template-columns: 1fr; }
}

/* ==============================
   mail.php Confirm / Thanks UI
   ============================== */
.p-mail{
  padding: 56px 0 80px;
}
.p-mail__inner{
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-mail__head{
  margin: 0 0 18px;
}
.p-mail__title{
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.2;
}
.p-mail__lead{
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.9;
  opacity: .85;
}

.p-mail__card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  overflow: hidden;
}

.p-mail__table{
  width: 100%;
  border-collapse: collapse;
}
.p-mail__table th,
.p-mail__table td{
  padding: 16px 18px;
  border-top: 1px solid rgba(0,0,0,.06);
  vertical-align: top;
}
.p-mail__table tr:first-child th,
.p-mail__table tr:first-child td{
  border-top: none;
}
.p-mail__table th{
  width: 32%;
  text-align: left;
  font-weight: 800;
  font-size: 14px;
  background: rgba(11, 59, 138, .05);
}

.p-mail__btns{
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 18px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.p-mail__btn,
.p-mail__btn--ghost{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.p-mail__btn{
  background: #0b3b8a;
  color: #fff;
  box-shadow: 0 12px 28px rgba(11, 59, 138, 0.22);
}
.p-mail__btn:hover{ filter: brightness(1.05); transform: translateY(-2px); }
.p-mail__btn--ghost{
  background: rgba(0,0,0,.04);
  color: inherit;
  border: 1px solid rgba(0,0,0,.08);
}
.p-mail__btn--ghost:hover{
  border-color: rgba(11, 59, 138, .35);
}

.p-mail__error{
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(239,68,68,.06);
  border: 1px solid rgba(239,68,68,.18);
  color: #b91c1c;
  font-weight: 700;
  line-height: 1.8;
}

.p-mail__success{
  text-align: center;
  padding: 26px 18px;
}
.p-mail__check{
  width: 76px;
  height: 76px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(11, 59, 138, .08);
  color: #0b3b8a;
  font-size: 34px;
}
