/* Base */
:root {
  --green: #06c755;
  --green-dark: #005d2f;
  --teal: #1492aa;
  --teal-dark: #176f80;
  --ink: #171b1f;
  --muted: #4e5a60;
  --mint: #eefaf4;
  --blue: #eef7fc;
  --cyan: #a9d4dd;
  --white: #fff;
  --line: #b8ebce;
  --shadow: 0 8px 14px rgba(0, 66, 45, .14);
  --container: 860px;
  --hero-container: 1040px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
  background: #fff;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }


.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: var(--transit-default);
  z-index: 4;
}


/* ========================
btn
=========================== */
.pl_fv-cta_btn001_sp {
  text-align: center;
}
.pl_fv-cta_btn001_sp .btn-form {
  width: 95%;
  display: block;
  padding: 1rem 1rem;
  text-decoration: none;
  border-radius: 132px;
background: #06C755;
box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.50);
  color: #fff;
  border: 1px solid #06C755;
  border-radius: 4rem;
  margin: 1rem auto;
}
.pl_fv-cta_btn001_sp .btn-form span {
  vertical-align: bottom;
  margin-left: 10px;
}
/*ボタンを押したとき*/
.pl_fv-cta_btn001_sp .btn-form:active,
.pl_fv-cta_btn001_sp .btn-form:hover {
  background-color: #fff;
  color: #06C755;
  -webkit-transform: translateY(4px);
  transform: translateY(4px); /*下に動く*/
box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.50);
}

.pl_fv-cta_btn001_sp .btn-meetings {
  width: 95%;
  display: block;
  padding: 1rem 1rem;
  text-decoration: none;
  background: #FFF; /*ボタン色*/
  color: #2b2b2b;
  border: 1px solid #2b2b2b;
box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.50);
  border-radius: 4rem;
  margin: 1rem auto;
}
.pl_fv-cta_btn001_sp .btn-meetings span {
  vertical-align: bottom;
  margin-left: 10px;
}

/*ボタンを押したとき*/
.pl_fv-cta_btn001_sp .btn-meetings:active,
.pl_fv-cta_btn001_sp .btn-meetings:hover {
  background-color: #2b2b2b;
  color: #fff;
  -webkit-transform: translateY(4px);
  transform: translateY(4px); /*下に動く*/
box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.50);
}
/* ========================
cta
=========================== */
.btn-on-text{
  font-size: 0.9rem;
  font-weight: 600;
}
.prgn_fv-cta {
  width: 90%;
  margin: 4% auto 0 auto;
}

.pl_fv-cta_btn001_sp {
  margin: 1.5rem auto 0 auto;
  width: 94%;
  padding-bottom: 2rem;
}
.pl_fv-cta_btn001_sp a{
  font-size: 1.2rem;
  font-weight: 600;
}
@media screen and (min-width: 751px) {
  .btn-on-text{
  font-size: 1.2rem;
  font-weight: 500;
}
  .pl_fv-cta_btn001_sp a{
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
}
  .pl_fv-cta_btn001_sp {
    margin: 0 auto 0 auto;
    max-width: 900px;
    width: 90%;
    font-size: 1.2rem;
    display: flex;
    gap: 20px;
  }
}
/* @media screen and (max-width: 1000px) {
  .pl_fv-cta_btn001_pc {
    display: none;
  }
  .pl_fv-cta_btn001_sp {
    margin: 2.5rem auto 0 auto;
    width: 94%;
  }
}
@media screen and (min-width: 1001px) {
  .pl_fv-cta_btn001_pc {
    margin: 2.5rem auto 0 auto;
    width: 94%;
  }
  .pl_fv-cta_btn001_pc a {
    display: block;
  }
  .pl_fv-cta_btn001_sp {
    display: none;
  }
} */
.prgn_fv-cta_btn002 {
  margin: 10% auto -6% auto;
  width: 94%;
}


/* ------------------------------------
ボタンの基本スタイル
------------------------------------*/

/* ボタン自体のスタイル */

.shine-button {
	display: block;		/* 形状は block */
	/* ボタンを光らせるために必要 */
	position: relative;
	/* ボタンの位置を基準にするため relative指定 */
	overflow:hidden;		/* ボタンの外の領域は非表示 */
}


/* ボタン内のリンクのスタイル 
（リンク自体でボタンを作る場合には不要） */

.shine-button a {
	display: block;	/* 形状はblock */
	text-decoration:none;	/* 下線など文字装飾は無し */
}


/* リンク自体でボタンを作る場合の追加のスタイル
（ボックス＋その中にリンクのあるボタンの場合には不要）*/

a.shine-button {
    text-decoration: none;	/* リンクの下線は非表示 */
}


/* ------------------------------------
ボタンの外側にボックス作成
（疑似要素「before」を使う）
------------------------------------*/
.shine-button::before {
	content: "";			/* 文字は表示しないので中身無しを指定 */
    
	position: absolute;	/* ボタンの位置を基準に絶対値指定する */
	display: block;		/* 形式はblock */

	background: linear-gradient(to right,rgba(255,255,255,0), rgba(255,255,255,0.9));
    /* 背景色は透明から白になるグラデーション */
	
	width: 50px;	/* 横幅 */
	height: 50px;	/* 縦幅 */

	top: -60px;	/* ボタン左上を基準に上へ60pxの位置 */
	left: -60px;	/* ボタン左上を基準に左へ60pxの位置 */


	/* アニメーションの動作指定 */
	animation-name:shine-run;	/* アニメーション名の指定 */
	animation-delay:0s;		/* アニメーションの開始時間指定 */
	animation-duration: 3s;	/* アニメーション動作時間の指定 */
	animation-timing-function: ease-in;
	/* アニメーションの動き指定（徐々に早く）*/
	animation-iteration-count: infinite;
	/* アニメーションの無限繰り返しの指定 */
}


/* ------------------------------------
アニメーションのタイミングとボックスの
拡大率、角度、透過率の指定
------------------------------------*/
@keyframes shine-run {
    0% {
        transform: scale(0) rotate(50deg);
        /* アニメ開始時は大きさ0、50度の傾き */
        
        opacity: 0;
        /* アニメ開始時は全透過 */
    }

    40% {
        transform: scale(1) rotate(50deg);
        /* 40%まで進む間に大きさを等倍に。傾きは50度のまま*/
        
        opacity: 1;
        /* 透過しない（しっかり表示される）ように1を設定 */
    }

    100% {
        transform: scale(250) rotate(50deg);
        /* 最後は元の大きさの250倍になるようにする。傾きは50度のまま*/

        opacity: 0;
        /* 全透過になるようにして、徐々に消えるような変化を付ける */
    }
}
/* ========================
fix-btn
=========================== */
.fix-btn-wrapper {
  position: fixed;
  z-index: 999;
  width: 100%;
  max-width: 999px;
  margin: 0 auto;
  bottom: 0;
  padding: 0px 2%;
  transition: opacity 1s ease-in-out;
  left: 50%;
  transform: translateX(-50%);
}

.fix_btn {
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.fix_btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.fix-btn-wrapper .pl_fv-cta_btn001_sp {
  text-align: center;
  display: flex;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: bolder;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 0.5rem;
}
.fix-btn-wrapper .pl_fv-cta_btn001_sp .btn-form {
  width: 98%;
  display: block;
  padding: 1rem 0.3rem;
  text-decoration: none;
  background: #06C755; /*ボタン色*/
  color: #fff;
  border: 1px solid #06C755;
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.50);
  border-radius: 0.5rem;
  margin: 0 auto;
}
.fix-btn-wrapper .pl_fv-cta_btn001_sp .btn-form span {
  vertical-align: bottom;
  margin-left: 10px;
}

.fix-btn-wrapper .pl_fv-cta_btn001_sp .btn-meetings {
  width: 98%;
  display: block;
  padding: 1rem 0.3rem;
  text-decoration: none;
  background: #fff; /*ボタン色*/
  color: #06C755;
  border: 1px solid #06C755;
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.50);
  margin: 0 auto;
  border-radius: 0.5rem;
}
.fix-btn-wrapper .pl_fv-cta_btn001_sp .btn-meetings span {
  vertical-align: bottom;
  margin-left: 5px;
}
  .fix-btn-wrapper .fix_btn .pl_fv-cta_btn001_sp a {
    font-size: 0.85rem !important;
  }
@media screen and (max-width: 500px) {
  .fix-btn-wrapper .pl_fv-cta_btn001_sp {
    font-size: 0.8rem;
  }
  .fix-btn-wrapper .pl_fv-cta_btn001_sp .btn-form span,
  .fix-btn-wrapper .pl_fv-cta_btn001_sp .btn-meetings span {
    vertical-align: middle;
    font-size: 0.8rem;
    margin-left: 3px;
  }
}

/* ==========================
Medibot header 
=========================== */

@media screen and (min-width: 750px) {
  .header_pc {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 0.5rem 0 0.5rem 0;
    background: #ffffff;
    border-bottom: 1px solid #bfd6dc;
    display: flex;
  }
  .header_pc div:nth-child(1) {
    padding: 0 2rem;
  }
  /* .header_pc div:nth-child(2),
  .header_pc div:nth-child(3),
  .header_pc div:nth-child(4) {
    padding: 0 3rem;
  } */
  .header_pc div:nth-child(2) {
    margin-left: auto;
    padding: 0 1rem;
  }
  .header_pc div:nth-child(2) a {
    background-color: #06C755;
    color: #fff;
    padding: 0.5rem 2rem;
    border-radius: 25px;
    display: block;
    font-size: 0.875rem;
    margin-right: 2rem;
    border: 2px solid #06C755;
  }
  .header_pc div:nth-child(2) a:hover {
    background-color: #ffffff;
    border: 2px solid #06C755;
    color: #06C755;
  }
  .header_pc .logo img {
    width: 40px;
    max-width: 40px;
  }
  .header_pc div a {
    display: inline-block;
    padding-top: 0.5rem;
    text-decoration: none;
    color: #505256;
  }
  .header_pc div a:hover {
    color: #06C755;
  }
  .header_sp {
    display: none;
  }
}
@media screen and (max-width: 751px) {
  .header_pc {
    display: none;
  }

  .header_sp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 0.5rem 0 0.5rem 0;
    background: #ffffff;
    border-bottom: 1px solid #bfd6dc;
    display: flex;
    font-size: 0.8rem;
    font-weight: 600;
  }
  .header_sp div:nth-child(1) {
    padding: 0 5px;
  }
  /* .header_sp div:nth-child(2),
  .header_sp div:nth-child(3),
  .header_sp div:nth-child(4) {
    padding: 0 0.2rem;
  } */
  .header_sp div:nth-child(2) {
    margin-left: auto;
    padding: 0 0.9rem;
  }
  .header_sp div:nth-child(2) a {
    background-color: #06C755;
    color: #fff;
    padding: 0.5rem 0.8rem;
    border-radius: 19px;
    display: block;
    font-size: 0.75rem;
    margin-right: 0;
    border: 2px solid #06C755;
    letter-spacing: 0.1rem;
  }
  .header_sp div:nth-child(2) a:hover {
    background-color: #ffffff;
    border: 2px solid #06C755;
    color: #06C755;
  }
  .header_sp .logo img {
    width: 40px;
  }
  .header_sp div a {
    display: inline-block;
    padding-top: 0.5rem;
    text-decoration: none;
    color: #505256;
  }
  .header_sp div a:hover {
    color: #06C755;
  }
}




/* Shared */
.section { padding: 48px 22px; background: var(--white); }
.section--mint { background: var(--mint); }
.section--blue { background: var(--blue); }
.section--cyan { background: var(--cyan); }
.section__inner {
  width: min(100%, var(--container));
  margin: 0 auto;
}
.section-label {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .18em;
}
.section-label--blue { color: var(--teal); }
.section h2 {
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
}
.section h2 span, .section h3 span { color: var(--green); }
.section-lead {
  margin-bottom: 26px;
  font-size: 14px;
}
.pill {
  width: 120px;
  margin: -68px auto 26px;
  padding: 5px 18px;
  color: var(--green);
  font-weight: 900;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* Buttons */
.button-group {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 15px 54px 15px 24px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  transition: .18s ease;
}
.button::after {
  position: absolute;
  right: 26px;
  width: 16px;
  height: 16px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  content: "";
  transform: rotate(45deg);
}
.button:hover, .button:focus-visible { outline: 0; transform: translateY(-1px); }
.button--primary {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 6px 0 rgba(0, 0, 0, .35);
}
.button--primary:hover, .button--primary:focus-visible {
  color: var(--green);
  background: var(--white);
}
.button--outline {
  color: #111;
  background: var(--white);
  border-color: #707070;
  box-shadow: 0 6px 0 rgba(0, 0, 0, .35);
}
.button--outline:hover, .button--outline:focus-visible {
  color: var(--white);
  background: #111;
}
.button--header {
  min-height: 48px;
  padding: 10px 42px 10px 20px;
  font-size: 16px;
  box-shadow: none;
}
.button--header::after {
  right: 18px;
  width: 10px;
  height: 10px;
  border-width: 3px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  background: #fff;
  border-bottom: 4px solid #111;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 12px 20px;
}
.site-header__logo {
  color: var(--teal);
  font-size: 15px;
  font-weight: 900;
}

/* 01 FV */
.hero {
  background: #fff;
}
.hero__inner {
  width: min(100%, var(--hero-container));
  margin: 0 auto;
  padding-bottom: 44px;
  padding-top: 50px;
}
.hero__visual {
  display: block;
  background: #fff;
}
.hero__visual img {
  width: 100%;
}
.hero__body {
  padding: 34px 22px 0;
  color: #111;
  background: #fff;
}
.hero__body p {
  color: #111;
  font-size: 15px;
  font-weight: 900;
}
.hero__body p span {
  color: var(--green);
}
.metric-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.metric-list div {
  padding: 13px 6px;
  color: var(--green);
  text-align: center;
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 6px;
}
.metric-list dt {
  font-size: 14px;
  font-weight: 900;
}
.metric-list dd {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}
.metric-list dd span { font-size: 14px; }

/* =====================
02 Problem
======================== */
.problem__cards {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}
.problem__cards article {
  position: relative;
  padding: 24px 18px 24px 72px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.problem__cards article span.item_icon {
  position: absolute;
  top: -10px;
  left: -8px;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  background: var(--green);
  border-radius: 8px;
}
.problem__cards h3 {
  color: var(--green-dark);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}
.problem__cards .problem__message {
  padding: 24px 16px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  border-radius: 12px;
  background-color: #005d2f;
}
.problem__cards .problem__message p span{
  color:#FEFFA7 ;
}

/* 03 Solution */
.solution { background: #fff; color: #111; }
.solution .section-label,
.solution h2 span { color: var(--teal); }
.solution .section-lead { color: #111; }

.solution__grid article {
  position: relative;
  padding: 10px 22px 22px;
  background: #fff;
  border: 1px solid #118CAB;
  background-color: #ECF4FA;
  border-radius: 10px;
}

.solution__grid article p{
  font-weight: normal;
}
.solution__grid article > span {
  position: absolute;
  top: 0;
  left: 25%;
  min-width: 160px;
  padding: 8px 22px;
  letter-spacing: 0.5rem;
  color: #fff;
  text-align: center;
  background: #118CAB;
  border-radius: 0 0 10px 10px;
  transform: translateX(-50%);
}
.solution__grid h3 {
  margin-top: 10px;
  margin-bottom: 18px;
 }

.solution__grid {
  display: grid;
  gap: 20px;
}
.solution__grid img {
  width: 100%;
  border-radius: 12px;
}

/* =========================
 04 Key
 ============================ */

.key__intro {
  padding: 42px 22px 22px;
  background: #fff;
}
/* .key__intro h2 {
  font-size: 18px;
} */

.key__intro h2 span{
  color: var(--green);
}

.key-route, .key-segment { padding-top: 52px; }
.key-scenario {
  padding-top: 52px;
  color: #111;
  background: #fff;
}
.key-scenario .section-lead { color: #111; }
.kpi-card {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 22px 0 30px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.kpi-card img {
  width: 58px;
}
.kpi-card strong {
  display: block;
  font-size: 20px;
}
.route-grid {
  display: grid;
  gap: 22px;
}
.route-grid article {
  padding: 22px 18px;
  background: rgba(255,255,255,.45);
  border-bottom: 1px solid var(--line);
}
.route-grid h3 {
  font-size: 23px;
  font-weight: 900;
}
.route-grid__icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 34px;
  border: 4px solid var(--green);
  border-radius: 50%;
}
.route-grid__icon--ig {
  color: #e84ea5;
  border-color: #e84ea5;
}
.route-grid__note {
  margin-top: 16px;
  padding: 10px;
  color: var(--green);
  background: #fff;
  border-radius: 8px;
}
.route-grid__note--purple { color: #9b57b4; }
.point-card {
  position: relative;
  margin-top: 32px;
  padding: 38px 22px 26px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  background: var(--green);
  border-radius: 8px;
}
.point-card .item_point {
  position: absolute;
  top: -19px;
  left: 50%;
  min-width: 160px;
  padding: 5px 22px;
  color: var(--green);
  text-align: center;
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 999px;
  transform: translateX(-50%);
}
.point-card__text01 img{
  width:15% ;
}
.point-card__text01{
  display: flex;
  align-items: center;
  gap: 18px;
}
.point-card__text02::after{
  position: absolute;
  right: 50%;
  width: 16px;
  height: 16px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  content: "";
  transform: rotate(135deg); 
}

.key_features02_route-grid-pc{
  display: none;
}
.key_features02_route-grid-sp{
  display: block;
}
.point-card div span{
  color: #feffa7; ;
}
.point-card--blue { background: var(--teal); }
.point-card--blue span { color: var(--teal); border-color: var(--teal); }
.scenario-list {
  display: grid;
  gap: 18px;
}
.scenario-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
}

.data-card_data{
  display: flex;
  gap: 15px;
}
.data-card_data img{
  width: 20%;
}


.scenario-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
}
.scenario-list h3 {
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
}
.data-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #9ed2de;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.data-card h3 {
  padding: 12px;
  color: #fff;
  text-align: center;
  background: var(--teal);
}
.data-card dl {
  padding: 8px 22px;
}
.data-card div {
  padding: 15px 0;
  border-bottom: 1px solid #b5d7df;
}
.data-card div:last-child { border-bottom: 0; }
.data-card dt {
  font-size: 18px;
  font-weight: 900;
}
.segment-heading {
  margin: 34px 0 18px;
  color: var(--teal);
  font-size: 28px;
  text-align: center;
}
.segment-images {
  display: grid;
  gap: 18px;
}
.segment-images img {
  border-radius: 10px;
}
.point-card--blue .item_point{
  position: absolute;
  top: -19px;
  left: 50%;
  min-width: 160px;
  padding: 5px 22px;
  color: var(--teal);
  text-align: center;
  background: #fff;
  border: 2px solid var(--teal);
  border-radius: 999px;
  transform: translateX(-50%);
}
.point-card--blue{
  padding: 22px;
  text-align: left;
}
.segment__point__item{
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
}
.segment__point__item img{
  width: 15%;
  margin-right: 2%;
}
.point-card--blue article{
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.point-card span{
  color: #FEFFA7;
}

/* =====================
05 Value
========================= */
.value { background: #fff; }
.value h2 { color: var(--ink); }
.value h2 span { color: var(--green); }
.value__factors {
  display: grid;
  gap: 18px;
  margin-top: 10px;
}


/* ========= 選ばれる理由 (effects) ========= */
  .reasons {
    background:
      linear-gradient(180deg, #ffffff 0%, #eaf6fa 100%);
  }
  .effects-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 14px; margin-top: 40px;
  }
  @media (min-width: 880px) {
    .effects-grid {
      grid-template-columns: 1fr 18px 1fr 18px 1fr 18px 1fr;
      gap: 8px;
      align-items: stretch;
    }
  }
  .effect {
    background: #fff;
    border: 1px solid var(--green);
    border-radius: 20px;
    padding: 28px 22px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; align-items: center;
    transition: transform .2s, box-shadow .2s;
  }
  .effect:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .effect-num {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--green); color: #fff;
    display: grid; place-items: center;
    font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 17px;
    margin-bottom: 16px;
    box-shadow: 0 6px 14px rgba(6,199,85,0.30);
  }
  .effect-title {
    font-size: 22px; font-weight: 700;
    letter-spacing: -0.01em; margin-bottom: 6px;
  }
  .effect-sub {
    font-size: 12.5px; color: var(--ink-2);
    font-weight: 700; margin-bottom: 18px;
  }
  .effect-tags {
    display: flex; flex-direction: column;
    gap: 8px; width: 100%;
  }
  .effect-tag {
    background: #f0fbf5;
    border: 1px solid #cbe9d6;
    color: var(--line-dark);
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 12px; font-weight: 800;
  }
  .effect-arrow {
    display: none;
    color: var(--green);
    align-self: center; justify-self: center;
  }
  @media (min-width: 880px) { .effect-arrow { display: grid; place-items: center; } }
  .effect-mobile-arrow {
    display: grid; place-items: center;
    color: var(--green);
    transform: rotate(90deg);
    padding: 4px 0;
  }
  @media (min-width: 880px) { .effect-mobile-arrow { display: none; } }

  .effects-banner {
    margin-top: 40px;
    background: #effbf3;
    border: 1px solid #bfead0;
    border-radius: 10px;
    padding: 28px 30px;
    text-align: center;
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: -0.01em;
  }
  .effects-banner .hl {
    background: linear-gradient(transparent 60%, rgba(6,199,85,0.30) 60%);
    padding: 0 3px;
    color: var(--ink);
  }





.value__factors article {
  position: relative;
  padding: 24px 18px 20px 88px;
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 6px;
}
.value__factors article > span {
  position: absolute;
  inset: 0 auto 0 0;
  display: grid;
  place-items: start center;
  width: 66px;
  padding-top: 26px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  background: var(--green);
}
.value__factors h3 {
  color: var(--green);
  font-size: 30px;
  line-height: 1.2;
}
.value__factors b {
  display: block;
  margin-top: 8px;
  padding: 7px;
  color: var(--green);
  text-align: center;
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.value__message {
  position: relative;
  margin-top: 75px;
  padding: 55px 24px 18px;
  color: #111;
  font-size: 16px;
  font-weight: 900;
  background: var(--mint);
  border: 2px solid var(--green);
  border-radius: 6px;
}
.value__message img{
  position: absolute;
  top: -45px;
  left: 40%;
  min-width: 50px;
}
.value__message span { color: var(--green); }

/* ====================
06 Results
======================= */
.result-cases{
 display: grid;
 grid-template-columns: repeat(1, 1fr); gap: 14px;
 margin-top: 40px;
}

.rc {
    background: #fff;
    border-radius: 20px;
    padding: 28px 30px 30px;
    box-shadow: 0 10px 28px rgba(11, 37, 69, 0.08);
    position: relative;
    overflow: hidden;
  }
  .rc::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06c755 0%, #118cab 60%, #2a6ad6 100%);
  }
  .rc-label {
    display: inline-block;
    border: 1.5px solid var(--ink); border-radius: 6px;
    padding: 5px 14px;
    font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 13px;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
  }
  .rc-title {
    font-size: clamp(17px, 1.7vw, 20px); font-weight: 900;
    color: var(--navy); line-height: 1.5; letter-spacing: -0.005em;
    margin: 0 0 18px;
  }
  .rc-metric {
    background: linear-gradient(135deg, #06c755 0%, #02a644 100%);
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
    color: #fff;
    box-shadow: 0 8px 18px rgba(6, 199, 85, 0.22);
  }
  .rc-metric-label {
    font-size: 13px; font-weight: 800;
    letter-spacing: 0.04em; margin-bottom: 8px;
  }
  .rc-metric-value {
    /* font-family: "Outfit", sans-serif; */
    font-family: Outfit, sans-serif;
    font-weight: 900;
    font-size: clamp(34px, 4.5vw, 52px);
    line-height: 1; letter-spacing: -0.02em;
    display: inline-flex; align-items: baseline; gap: 6px; justify-content: center;
    flex-wrap: wrap;
  }
  .rc-metric-value .unit { font-size: 0.5em; font-weight: 800; }
  .rc-metric-value .arr { color: rgba(255,255,255,0.85); padding: 0 4px; font-size: 0.85em; }
  .rc-divider {
    border: 0; border-top: 1px dashed var(--line-grey);
    margin: 22px 0 16px;
  }
  .rc-strategy {
    font-size: 13px; color: var(--ink-2); line-height: 1.85; margin: 0;
  }
  .rc-strategy strong {
    color: var(--ink); font-weight: 800; margin-right: 4px;
  }



/* ======================
07 Case
======================== */
.case { background: #fff; }
.case .section-lead { color: #111; }
.case__grid {
  display: grid;
  gap: 28px;
}
.case__grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--teal);
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.case__grid h3 {
  padding: 15px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  background: var(--teal);
}
.case__grid p,
.case__grid h4 {
  margin: 12px 16px;
}
.case__grid img {
  width: calc(100% - 56px);
  margin: 14px auto;
  border-radius: 4px;
}
.case__grid h4 {
  color: var(--green);
  font-size: 19px;
}

/* =======================
08 Origin
=========================== */
.origin {
  color: #111;
  background: #fff;
  text-align: center;
}
.origin .section__inner {
  width: min(100%, 1040px);
}
.origin h2 {
  margin-bottom: 28px;
}
.origin h2 img {
  width: 100%;
  height: fit-content;
}
.origin__content {
  position: relative;
  min-height: 520px;
  padding: 0 0 28px;
}
.origin__visual {
  width: min(100%, 720px);
  margin: 0 auto -18px;
}
.origin__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 525px);
  margin: 0 auto;
  padding: 28px 22px;
  background: #fff;
  border: 1px solid #ecf4fa;
  border-radius: 7px;
  box-shadow: 0 6px 8px rgba(0, 0, 0, .22);
}
.origin__panel p {
  color: #141414;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
}
.origin__panel p + p { margin-top: 16px; }
.origin__panel strong {
  color: #118cab;
  font-weight: 700;
}
.origin__panel small {
  font-size: 12px;
  font-weight: normal;
}

/* =======================
09 Flow
========================== */
.flow__grid {
  display: grid;
  gap: 32px;
  margin-top: 44px;
}
.flow__grid li {
  position: relative;
  padding: 46px 22px 24px;
  background: #fff;
  border: 1px solid #91ccda;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.flow__grid span {
  position: absolute;
  top: -22px;
  left: 50%;
  min-width: 160px;
  padding: 7px 20px;
  color: #fff;
  text-align: center;
  background: var(--teal);
  border-radius: 999px;
  transform: translateX(-50%);
}
.flow__grid img {
  width: 150px;
  margin: 0 auto 16px;
}
.flow__grid h3 {
  color: var(--teal);
  font-size: 22px;
  text-align: center;
}
.flow__grid p{
  font-weight: normal;
  font-size: 15px;
}
.flow__support {
  margin-top: 28px;
  padding: 18px;
  color: var(--green);
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* ===================
10 Support
====================== */
.support { background: #fff; }
.support .section-lead { color: #111; }
.support__board {
  margin-top: 32px;
  padding: 28px 18px;
  background: var(--teal);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.support__board > h3 {
  margin-bottom: 24px;
  color: #fff;
  font-size: 20px;
  text-align: center;
}
.support__board article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  margin-top: 18px;
  padding: 18px;
  background: #fff;
  border-radius: 10px;
}
.support__board img {
  width: 64px;
}
.support__board h4 {
  color: var(--teal);
  font-size: 22px;
}
.support__board p{
  font-size: 15px;
  font-weight: normal;
}

/* ==================
11 Plan
====================== */
.plan__cards {
  display: grid;
  gap: 18px;
  align-items: center;
}
.plan__cards article {
  min-height: 180px;
  padding: 24px 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.plan__cards h3 {
  color: var(--teal);
  text-align: center;
}
.plan__cards > span {
  color: var(--teal);
  font-size: 36px;
  text-align: center;
}
.plan__message {
  margin: 34px 0 0;
  color: #11677a;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.plan__message strong {
  display: inline-block;
  margin: 10px 0;
  padding: 6px 18px;
  border: 2px solid var(--teal);
  font-size: 32px;
  background-color: #FFF;
}

/* =======================
12 FAQ
========================= */
.faq { background: #fff; }
.faq h2 { color: #111; }
.faq__list {
  display: grid;
  gap: 18px;
}
.faq__list article {
  padding: 22px;
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.faq__list h3 {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.faq__list p {
  margin-top: 16px;
  font-weight: 500;
}
.faq__list .faq__q{
  color:var(--green) ;
  font-family: "Outfit";
}
.faq__list .faq__a{
  color:var(--teal) ;
  font-family: "Outfit";
  font-weight: 700;
}

/* ======================
13 Form CTA
========================= */
.form-cta {
  padding: 44px 22px;
  color: #fff;
  background: var(--green);
}
.form-cta h2 {
  font-size: 26px;
  line-height: 1.55;
}
.form-cta p {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 600;
}
.form-cta02 {
  padding: 44px 22px;
  background: var(--mint);
}

/* ======================
14 Footer
======================== */
.site-footer {
  padding: 64px 22px 42px;
  color: #fff;
  background: var(--teal-dark);
}
.site-footer__inner {
  width: min(100%, var(--container));
  margin: 0 auto;
}
.site-footer__logo {
  margin-bottom: 44px;
  font-size: 42px;
  text-align: center;
}
.site-footer__logo img{
  margin: 0 auto;

}
.site-footer ul {
  display: grid;
  gap: 16px;
  margin-bottom: 54px;
  padding-left: 28px;
}
.site-footer li {
  list-style: disc;
  font-weight: normal;
}
.site-footer a {
  text-decoration: underline;
}
.site-footer small {
  display: block;
  text-align: center;
  font-weight: normal;
}

/* PC */
@media (min-width: 750px) {
  body { font-size: 16px; }
  .section { padding: 64px 32px; }
  .section h2 { font-size: 32px; }
  .section__inner { width: min(100%, 860px); }
  .site-header__inner {
    width: min(100%, 1040px);
    margin: 0 auto;
  }
  .hero__inner {
    width: min(100%, 1040px);
    padding-top: 50px;
  }
  .hero__body {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
    padding: 0 ;
    margin-top: -76px;
  }
  .hero__body > p {
    align-self: center;
    padding-left:15px ;
  }
  .metric-list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
  }
  .hero .button-group,
  .value .button-group,
  .plan .button-group {
    grid-column: 1 / -1;
  }
  .button-group {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 28px;
  }
  .problem__cards,
  .solution__grid,
  .results__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .problem__message {
    grid-column: 2;
  }
  .solution__grid,
  .support__board,
  .result-cases,
  .key_features02_route-grid-pc {
    grid-template-columns: repeat(2, 1fr);
  }
  .solution__grid {
    display: grid;
  }
  .route-grid,
  .segment-images,
  .flow__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pill{
    margin-top: -85px;
  }
  .img_key_features_all{
  display: flex;
  justify-content: space-between;
}
.key_features02_route-grid-pc{
  margin: 0 auto;
  max-width:700px ;
  display: block;
  display:grid;
  gap: 20px 40px;
}
.key_features02_route-grid-sp{
  display: none;
}
.route-grid {
    display: grid;
    gap: 0px;
}
.point-card__text{
  display: flex;
  justify-content:space-around;
  align-items: center;
}
.point-card__text01 img{
  width:15% ;
}
.point-card__text01{
  display: flex;
  align-items: center;
  gap: 18px;
}
.point-card__text02::after{
  position: absolute;
  align-items: center;
  transform: rotate(45deg); 
}
.point-card--blue {
  padding: 30px 100px 10px;
}

  .scenario-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .data-card {
    max-width: 860px;
    margin: 0 auto;
  }
.data-card dl{
  display: grid;
   grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.data-card div{
  padding: 5px 0;
}
.data-card div:nth-child(3){
  border-bottom: none;
}



.data-card_data img {
    width: 10%;
    margin-right: 3%;
    margin-left: 3%;
}

.point-card--blue article{
  display: flex;
}

.result-cases {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}


  .value__factors {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 10px;
  }
  .value__factors article {
    padding: 54px 14px 18px;
  }
  .value__factors article > span {
    inset: 0 0 auto 0;
    width: 100%;
    height: 42px;
    padding-top: 6px;
  }
  .value__factors h3 {
    font-size: 24px;
  }
  .value__message {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    text-align: center;
  }
  .case__grid {
    display: grid;
  }
 
.case__grid article h3 p {
    width: 100%;
  }
 
  .case-grid__item{
    display: flex;
    padding: 0 10px 10px 15px;
  }
  .case__grid__right{
    width: 60%;
    padding: 0 5px;
  }
  .case__grid article > h3 {
    grid-column: 1 / -1;
  }
  .case__grid img {
    width: 40%;
    height: auto;
  }
  .case-grid__item p,
  .case-grid__item h4{
    margin: 8px 10px;
  }

  .case__grid__right .case__text{
    font-weight: normal;
  }
  .origin {
    padding-top: 32px;
    padding-bottom: 44px;
  }
  .origin h2 {
    margin: 0 auto;
    width: 500px;
    margin-bottom: 24px;
  }
  .origin__content {
    min-height: 438px;
  }
  .origin__visual {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72%;
    margin: 0;
  }
  .origin__panel {
    width: 525px;
    min-height: 432px;
    margin-left: auto;
    margin-right: 0;
    padding: 28px 26px;
  }
  .origin__panel p {
    font-size: 13px;
    line-height: 1.75;
  }
  .origin__panel p + p {
    margin-top: 13px;
  }
  .flow__grid li {
    min-height: 350px;
  }
  .support__board {
    display: grid;
    gap: 22px;
    padding: 36px;
  }
  .support__board > h3 {
    grid-column: 1 / -1;
  }
  .support__board article {
    margin-top: 0;
  }
  .plan__cards {
    grid-template-columns: 1fr auto 1fr;
  }
.plan__cards article {
  padding: 24px 60px;
}


  .form-cta {
    padding: 46px 32px;
  }
  .form-cta h2,
  .form-cta p {
    max-width: 860px;
    margin-right: auto;
    margin-left: auto;
  }
  .site-footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .site-footer small {
    grid-column: 1 / -1;
  }
}


/* PCでは非表示 */
.sp-only {
  display: none;
}

/* スマホだけ表示 */
@media (max-width: 750px) {
  .sp-only {
    display: inline;
  }
}