@charset "UTF-8";
/* ==============================================
   共通設定（PC・スマホの表示切り替えなど）
================================================= */
/* 共通で使う文字装飾クラス */
.text-bold {
  font-weight: bold;
}
.text-blue {
  color: #3E3E82;
}
.text-small {
  font-size: 0.813rem;
  font-weight: normal;
}
.text-large {
  font-size: 1.25rem;
}
.text-xl {
  font-size: 1.625rem;
  font-weight: 900;
}
.text-red {
  color: #E60012;
}
.text-center {
  text-align: center;
}
/* ===========================================
   キャッチコピー：p-hero
   =========================================== */
.p-hero {
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.p-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/img_hero-visual.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 32% center;
  opacity: 0.55;
  filter: brightness(0.9) contrast(1.05);
  z-index: 1;
}
.p-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 1.25rem;
  box-sizing: border-box;
}
.p-hero__content {
  width: 100%;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 3rem 1.25rem;
  margin: 25px 0px;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(62, 62, 130, 0.06);
  box-sizing: border-box;
}
/* --- 業界初バッジ（PCのみ表示）の配置 --- */
.p-hero__prestige-badge {
  display: block; /* PC版では表示 */
  position: absolute;
  top: 30px; /* バッジを少し内側に移動してバランスを調整 */
  left: 50px; /* バッジを少し内側に移動してバランスを調整 */
  width: 250px;
}
.p-hero__logo {
  margin-bottom: 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-hero__badge {
  display: inline-block;
  background-color: #3E3E82;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 6px rgba(62, 62, 130, 0.15);
}
.p-hero__logo img {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
}
.p-hero__title {
  margin: 0 0 2rem 0;
  font-weight: 700;
}
.p-hero__title-sub {
  display: block;
  font-size: 1.063rem;
  color: #374151;
  margin-bottom: 0.625rem;
  font-weight: bold;
}
.p-hero__title-main {
  display: block;
  font-size: 1.563rem;
  color: #111111;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8);
}
.p-hero__btn-area {
  margin-top: 1.5rem;
}
/* --- ヒーローエリアの注釈 --- */
.p-hero__note {
  font-size: 0.813rem;
  color: #333333;
  margin-top: 0.5rem;
  text-align: right;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
/* ==================================================
   Project：p-concept (2大リスク・吹き出しレイアウト - PC基準)
   ===================================================== */
.p-concept {
  background-color: #F9FAFB;
  padding: 4rem 1rem; /* PC時の余白 */
}
.p-concept__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.p-concept__lead-area {
  margin-bottom: 2rem;
}
.p-concept__lead {
  font-size: 1.9rem; /* PC時の文字サイズ */
  font-weight: bold;
  color: #3E3E82;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}
.p-concept__notice {
  background-color: #F4F8FA;
  border: 2px solid #3E3E82;
  border-radius: 8px;
  padding: 2rem 3rem; /* PC時の余白 */
  margin-top: 2.5rem; /* PC時の余白 */
  margin-bottom: 4rem; /* PC時の余白 */
  box-shadow: 0 4px 15px rgba(62, 62, 130, 0.05);
}
.p-concept__notice-text {
  font-size: 1rem; /* PC時の文字サイズ */
  color: #222222;
  line-height: 1.6;
  margin: 0;
  text-align: center; /* PC時の配置 */
}
/* 2つのリスクを左右に並べる（PC基準） */
.p-concept__cards {
  display: flex;
  flex-direction: row; /* 横並び */
  gap: 3rem;
  margin-bottom: 2rem;
}
.p-concept__card {
  flex: 1; /* 等幅で広げる */
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-concept__card-title {
  font-size: 1.375rem; /* PC時のサイズ */
  font-weight: bold;
  color: #222222;
  margin: 0 0 1.5rem 0; /* PC時の余白 */
  line-height: 1.3;
}
.p-concept__bubble {
  background-color: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.p-concept__bubble::before, .p-concept__bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: solid transparent;
  height: 0;
  width: 0;
  pointer-events: none;
}
.p-concept__bubble::before {
  border-color: rgba(229, 231, 235, 0);
  border-top-color: #E5E7EB;
  border-width: 10px;
}
.p-concept__bubble::after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #ffffff;
  border-width: 9px;
  margin-top: -1px;
}
.p-concept__bubble-text {
  font-size: 1rem; /* PC時の文字サイズ */
  color: #222222;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}
/* 後ろの (※) を小さくする設定 */
.p-concept__bubble-text span {
  font-size: 0.6em;
  font-weight: normal;
  margin-left: 2px;
  vertical-align: 0.15em;
}
.p-concept__card-visual {
  text-align: center;
  margin-top: 0.5rem;
}
.p-concept__card-icon img {
  width: 330px; /* PC時の画像サイズ */
  height: auto;
  margin: 0 auto;
}
.p-concept__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1.5rem; /* PC時の余白 */
}
.p-concept__arrow::before {
  content: "";
  width: 30px; /* PC時のサイズ */
  height: 50px; /* PC時のサイズ */
  background-color: #3E3E82;
}
.p-concept__arrow::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 35px solid transparent; /* PC時のサイズ */
  border-right: 35px solid transparent; /* PC時のサイズ */
  border-top: 35px solid #3E3E82; /* PC時のサイズ */
}
.p-concept__summary {
  background-color: #ffffff;
  border: 2px solid #3E3E82;
  border-radius: 12px;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(62, 62, 130, 0.04);
}
.p-concept__summary-text {
  color: #222222;
  font-size: 1.375rem; /* PC時のサイズ */
  font-weight: bold;
  line-height: 1.6;
  margin: 0;
}
.p-concept__summary-highlight--orange {
  color: #FF7F32;
  font-size: 1.5rem; /* PC時のサイズ */
}
.p-concept__summary-highlight--blue {
  color: #3E3E82;
  font-size: 1.563rem; /* PC時のサイズ */
  background: linear-gradient(transparent 60%, #E6E6FA 60%);
  padding: 0 0.125rem;
}
/* 「AI医薬品需要予測」の後ろの (※) を小さくする設定 */
.p-concept__summary-highlight--blue span {
  font-size: 0.6em; /* 文字の大きさを親の60%に縮小 */
  font-weight: normal; /* 太字を解除して控えめにする */
  margin-left: 2px; /* 少しだけ左に隙間をあけてスッキリさせる */
  vertical-align: 0.15em; /* ほんの少しだけ上にずらすと綺麗に揃います */
}
/* 右下配置の小さな注意書き */
.p-note-right {
  text-align: right;
  font-size: 0.8rem; /* 小さめの文字 */
  color: #666666; /* 主張しすぎないグレー */
  margin-top: 15px; /* 上の文章との隙間 */
  margin-bottom: 0;
  line-height: 1.4;
}
/* ===================================================
   Project：p-merit (導入メリット - PC基準)
   =================================================== */
.p-merit {
  background-color: #E0EEF6;
  padding: 0 2rem 5rem; /* PC時の余白 */
  position: relative;
}
.p-merit__wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px; /* PC時の波の高さ */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,42.4V0Z' fill='%23F9FAFB'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 1;
}
.p-merit__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-top: 6rem; /* PC時の余白 */
}
.p-merit__header {
  margin-bottom: 1.5rem;
  text-align: center;
}
.p-merit__sub-title {
  display: block;
  font-size: 1.375rem; /* PC時のサイズ */
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.p-merit__main-title {
  font-size: 2.25rem; /* PC時のサイズ */
  letter-spacing: 0.03em;
  font-weight: bold;
  color: #3E3E82;
  margin: 0;
  line-height: 1.4;
}
.p-merit__intro {
  margin-bottom: 4rem; /* PC時の余白 */
}
.p-merit__intro-text {
  font-size: 1.063rem; /* PC時のサイズ */
  text-align: center; /* PC時の配置 */
  color: #222222;
  line-height: 1.7;
  margin: 0;
}
/* 3カラム横並び（PC基準） */
.p-merit__cards {
  display: flex;
  flex-direction: row; /* 横並び */
  gap: 1rem;
  margin-bottom: 4rem; /* PC時の余白 */
}
.p-merit__card {
  flex: 1; /* 等幅で広げる */
  background-color: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 1.4rem 1rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(62, 62, 130, 0.03);
  display: flex;
  flex-direction: column;
}
.p-merit__card-header {
  margin-bottom: 1.75rem;
}
.p-merit__card-title-group {
  display: block; /* Flexboxを解除 */
  text-align: center; /* アイコンを中央揃え */
  margin-bottom: 0.3rem; /* タイトルとの間に少し広めの余白 */
}
.p-merit__card-icon {
  width: 55px; /* PC時のサイズ */
  height: 55px;
  object-fit: contain;
  display: inline-block;
}
.p-merit__card-ja {
  font-size: 1rem;
  font-weight: bold;
  color: #3E3E82;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  padding-top: 1rem;
  border-top: 2px solid #E0EEF6;
  min-height: 4.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-merit__card-body {
  background-color: #F4F8FA;
  border-radius: 8px;
  padding: 1.5rem 1rem;
  flex-grow: 1;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
}
.p-merit__step {
  font-size: 0.938rem;
  color: #4B5563;
  font-weight: bold;
}
.p-merit__step-arrow {
  font-size: 1rem;
  margin: 0.75rem 0;
}
.p-merit__result {
  font-size: 1.063rem;
  font-weight: bold;
}
.p-merit::after {
  content: "";
  position: absolute;
  bottom: -39px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 40px solid #E0EEF6;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  z-index: 10;
}
/* ======================================================
   Project：p-impact (導入効果＆費用対効果の統合 - PC基準)
   ====================================================== */
.p-impact {
  background-color: #F0F5F9; /* 全体をパステルブルーで統一 */
  padding: 3rem 1rem; /* PC時の余白 */
}
.p-impact__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.p-impact__wrapper {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2rem 2rem; /* PC時の余白 */
  border: none;
  box-shadow: 0 10px 30px rgba(62, 62, 130, 0.08);
  position: relative;
  box-sizing: border-box;
  width: 100%;
}
.p-impact__title {
  font-size: 2rem; /* PC時のサイズ */
  font-weight: bold;
  color: #3E3E82;
  margin-bottom: 1rem; /* PC時の余白 */
  letter-spacing: 0.05em;
}
.p-impact__lead {
  text-align: center;
  font-size: 1.063rem;
  color: #4B5563; /* 濃いグレー */
  line-height: 1.7;
  margin-bottom: 2.5rem; /* 下のカードとの余白 */
} /* --- 前半：導入効果（大数） --- */
.p-impact__top {
  margin-bottom: 2rem; /* PC時の余白 */
}
.p-impact__numbers {
  display: flex;
  flex-direction: row; /* PC時は横並び */
  gap: 1rem;
}
.p-impact__number-card {
  flex: 1; /* PC時は等幅 */
  min-width: 0; /* PC時の文字ストッパー */
  background-color: #F8FAFC;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 2.5rem 1rem; /* PC時の余白 */
  text-align: center;
  box-sizing: border-box;
}
.p-impact__number-tag {
  background-color: #3E3E82;
  color: #ffffff;
  font-size: 0.813rem;
  font-weight: bold;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.p-impact__number-title {
  font-size: 1.125rem;
  margin: 0 0 1rem 0;
  font-weight: bold;
  color: #222222;
}
.p-impact__number-value {
  font-size: 3.25rem; /* PC時のサイズ */
  font-weight: 900;
  color: #FF7F32;
  line-height: 1;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.p-impact__number-value .unit {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 0.25rem;
}
.p-impact__wave {
  display: none;
}
/* --- 後半：費用対効果 --- */
.p-roi__summary-box {
  background-color: #ffffff; /* 白背景で清潔感を出す */
  border: 2px solid #E0EEF6; /* 淡いブルーの優しい枠線 */
  border-radius: 8px; /* 角丸 */
  padding: 1.5rem 1.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 15px rgba(62, 62, 130, 0.04); /* ふんわりとした影 */
}
.p-roi__summary-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #3E3E82;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
.p-roi__summary-text {
  font-size: 1rem; /* タイトルの代わりになるよう少し大きめに */
  font-weight: bold;
  color: #3E3E82; /* 紺色にして引き締める */
  margin-bottom: 1.5rem;
  text-align: center;
}
/* リスト全体を中央のブロックとして配置 */
.p-roi__summary-list {
  list-style: none; /* デフォルトの黒丸を消す */
  padding-left: 0;
  margin: 0 auto; /* 中央に寄せる */
  width: fit-content; /* 中身の幅に合わせる */
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* リスト間の隙間を均等に */
}
.p-roi__summary-list li {
  position: relative;
  padding-left: 2rem; /* チェックマークを置くための余白 */
  color: #4B5563;
  line-height: 1.6;
}
/* 丸い背景部分 */
.p-roi__summary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em; /* 高さの微調整 */
  width: 20px;
  height: 20px;
  background-color: #E0EEF6; /* 薄い水色 */
  border-radius: 50%;
}
/* チェックの線部分 */
.p-roi__summary-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 0.4em; /* 高さの微調整 */
  width: 5px;
  height: 10px;
  border-right: 2px solid #0070C0; /* 青色 */
  border-bottom: 2px solid #0070C0; /* 青色 */
  transform: rotate(45deg); /* 傾けてチェックマークにする */
}
.p-roi__summary-list li strong {
  color: #222222;
  display: inline-block;
  width: 5em;
  text-align-last: justify;
}
.p-impact__bottom {
  padding: 0;
}
.p-impact__cards {
  display: flex;
  flex-direction: row; /* PC時は横並び */
  align-items: stretch;
  gap: 2rem;
  margin-bottom: 4rem; /* PC時の余白 */
}
.p-impact__card {
  flex: 1; /* PC時は等幅 */
  background-color: #F8FAFC;
  border: 1px solid #D6E8F3;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.p-impact__card-header {
  background-color: #0070C0;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  margin: 0;
  padding: 1rem;
}
.p-impact__card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.p-impact__box-red {
  background-color: #E60012;
  color: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  margin-top: auto;
  box-shadow: 0 4px 10px rgba(230, 0, 18, 0.2);
}
.p-impact__box-outline {
  background-color: #ffffff;
  color: #222222;
  border: 2px solid #E60012;
  border-radius: 8px;
  padding: 0.25rem 0.25rem;
  text-align: center;
  font-weight: bold;
  margin-top: auto;
  white-space: normal;
  line-height: 1.4;
  word-break: keep-all;
  overflow-wrap: anywhere;
  font-size: 0.938rem;
  letter-spacing: -0.05em;
  width: 100%;
  box-sizing: border-box;
  word-break: normal;
  overflow-wrap: break-word;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; 
}
/* --- 3つ目のカード（廃棄・ロス削減）の赤枠のみ文字を小さくする --- */
.p-impact__card-body--waste .p-impact__box-outline {
  font-size: 0.8rem;
  line-height: 1.5;
  padding: 0.5rem 0.5rem;
text-align: left;
}
.p-impact__card-body > *:nth-last-child(2) {
  margin-bottom: 1.2rem;
}
.p-impact__arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
  gap: 1rem;
}
.p-impact__arrow-text {
  background-color: #ffffff;
  border: 1px solid #222222;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: bold;
  position: relative;
}
.p-impact__arrow-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #222222;
}
.p-impact__arrow-down {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 30px solid #E60012;
}
.p-impact__chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 140px;
  margin: 1.5rem 0;
  gap: 0.5rem;
  border-bottom: 2px solid #222222;
  padding-bottom: 5px;
}
.p-impact__chart-bar--blue {
  background-color: #0070C0;
  color: #ffffff;
  width: 42%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: 0.875rem;
}
.p-impact__chart-arrow {
  font-size: 2.5rem;
  color: #002B62;
  line-height: 1;
  transform: translateY(-40px);
}
.p-impact__chart-bar--red {
  background-color: #E60012;
  color: #ffffff;
  width: 42%;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: 0.875rem;
}
.p-impact__card-body--waste {
  justify-content: flex-start;
}
/* --- 汎用ユーティリティ（余白用） --- */
.mb-small {
  margin-bottom: 0.5rem !important;
}
/* --- カード3のテキストバランス調整 --- */
.p-impact__waste-text {
  font-size: 0.938rem;
  margin: 0;
  text-align: center;
  /* 上下の文字バランスを整えるためにpaddingを少し調整 */
  padding: 0.8rem 1rem;
  min-height: auto;
}
.p-impact__box-white {
  background-color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  margin: 0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  width: 100%;
  box-sizing: border-box;
  min-height: 82px;
}
.p-impact__arrow-down--simple {
  margin: 0.75rem auto;
  border-top-width: 30px;
}
.p-impact__conclusion {
  margin-bottom: 3rem; /* PC時の余白 */
  text-align: center;
}
.p-impact__conclusion-lead {
  font-size: 1.5rem; /* PC時のサイズ */
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.p-impact__conclusion-highlight {
  display: block;
  font-size: 1.8rem; /* PC時のサイズ */
  margin-top: 0.7rem;
}
.p-impact__notes {
  font-size: 0.7rem; /* PC時のサイズ */
  color: #4B5563;
  line-height: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: left; /* 読みやすいように左揃えに変更 */
}
.p-impact__notes p {
  margin-bottom: 0.5rem; /* 段落同士の隙間 */
  margin-top: 0;
  white-space: normal;
}
.p-impact__notes p:last-child {
  margin-bottom: 0;
}
.p-overview__cta-inline {
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.p-overview__cta-lead {
  font-size: 1.375rem; /* PC時のサイズ */
  font-weight: bold;
  color: #3E3E82;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
/* ====================================================
   Project：p-overview (サービス概要 - PC基準)
   =================================================== */
.p-overview {
  background-color: #E0EEF6;
  padding: 3rem 1rem; /* PC時の余白 */
}
.p-overview__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.p-overview__header {
  margin-bottom: 2.5rem;
  text-align: center;
}
.p-overview__title {
  font-size: 2rem; /* PC時のサイズ */
  font-weight: bold;
  color: #3E3E82;
  margin-bottom: 1rem; /* PC時の余白 */
  letter-spacing: 0.05em;
}
.p-overview__lead {
  font-size: 1.125rem; /* PC時のサイズ */
  font-weight: bold;
  color: #4B5563;
}
.p-overview__section-title {
  font-size: 1.75rem; /* PC時のサイズ */
  font-weight: bold;
  color: #3E3E82;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
/* --- 1. 特徴カード --- */
.p-overview__features {
  display: flex;
  flex-direction: row; /* PC時は横並び */
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem; /* PC時の余白 */
  margin-bottom: 6rem; /* PC時の余白 */
}
.p-overview__feature-card {
  flex: 0 1 calc(33.333% - 1.35rem); /* PC時は3カラム */
  background-color: #ffffff;
  border-top: 5px solid #0070C0;
  border-radius: 8px;
  padding: 2.5rem 1.5rem 1.5rem; /* PC時の余白 */
  box-shadow: 0 4px 15px rgba(62, 62, 130, 0.04);
  position: relative;
  box-sizing: border-box;
}
.p-overview__feature-num {
  position: absolute;
  top: -14px;
  left: 1.25rem;
  background-color: #0070C0;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.2rem 0.875rem;
  border-radius: 20px;
}
.p-overview__feature-title {
  font-size: 1.15rem; /* PC時のサイズ */
  font-weight: bold;
  color: #222222;
  margin-bottom: 0.5rem;
  white-space: nowrap; /* PC時は折り返さない */
}
.p-overview__feature-text {
  font-size: 0.875rem;
  color: #4B5563;
  line-height: 1.5;
  margin: 0;
}
/* --- 2. ハイブリッド運用（仕組み） --- */
.p-overview__hybrid {
  position: relative;
  background-color: #f0f8ff;
  border-radius: 40px; /* PC時の角丸 */
  padding: 2rem 3rem; /* PC時の余白 */
  margin-top: 3rem; /* PC時の余白 */
  margin-bottom: 3rem; /* PC時の余白 */
  box-shadow: 0 10px 30px rgba(62, 62, 130, 0.08);
}
.p-overview__hybrid::before {
  content: "";
  position: absolute;
  top: -40px; /* PC時のツノ */
  left: 50%;
  transform: translateX(-50%);
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 40px solid #f0f8ff;
}
.p-overview__hybrid .p-overview__section-title {
  text-align: left;
  margin-bottom: 0.5rem;
}
/* サブタイトルのデザイン */
.p-overview__hybrid .p-overview__section-subtitle {
  text-align: left;
  font-size: 1.125rem;
  font-weight: bold;
  color: #0070C0;
  margin-top: 0;
  margin-bottom: 2rem;
}
.p-overview__hybrid-grid {
  display: flex;
  flex-direction: row; /* PC時は横並び */
  align-items: center;
  gap: 3rem; /* PC時の余白 */
}
.p-overview__hybrid-figure {
  flex: 1.2; /* PC時の割合 */
  text-align: center;
}
.p-overview__hybrid-figure img {
  max-width: 100%;
  height: auto;
}
.p-overview__hybrid-info {
  display: flex;
  flex-direction: column;
  flex: 1; /* PC時の割合 */
  gap: 2rem; /* PC時の余白 */
}
.p-hybrid-step {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2rem; /* PC時の余白 */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.p-hybrid-step__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.p-hybrid-step__badge {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}
.p-hybrid-step__title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #222222;
  margin: 0;
}
.p-hybrid-step__desc {
  font-size: 0.938rem;
  color: #4B5563;
  line-height: 1.6;
  margin: 0;
}
.p-hybrid-step--ai {
  border-left: 5px solid #0070C0;
}
.p-hybrid-step--ai .p-hybrid-step__badge {
  background-color: #0070C0;
}
.p-hybrid-step--human {
  border-left: 5px solid #3F8E3D;
}
.p-hybrid-step--human .p-hybrid-step__badge {
  background-color: #3F8E3D;
}
/* --- 3. 主な機能（白枠ボックス） --- */
.p-overview__functions-box {
  background-color: #f0f8ff;
  border-radius: 40px; /* PC時の角丸 */
  padding: 4rem 3rem; /* PC時の余白 */
  margin-bottom: 6rem; /* PC時の余白 */
  box-shadow: 0 10px 30px rgba(62, 62, 130, 0.08);
  text-align: left;
}
.p-functions__title {
  font-size: 1.75rem; /* PC時のサイズ */
  font-weight: bold;
  color: #3E3E82;
  margin-bottom: 3rem; /* PC時の余白 */
  letter-spacing: 0.05em;
}
.p-functions__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.p-function-card {
  flex: 0 1 calc(50% - 1rem);
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
}
.p-function-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.p-function-card__icon {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #0070C0;
  flex-shrink: 0;
}
.p-function-card__icon::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  width: 5px;
  height: 10px;
  border-right: 2px solid #0070C0;
  border-bottom: 2px solid #0070C0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-function-card__title {
  font-size: 1.25rem; /* PC時のサイズ */
  font-weight: bold;
  color: #222222;
  margin: 0;
  white-space: nowrap; /* PC時は折り返さない */
}
.p-function-card__text {
  font-size: 0.938rem; /* PC時のサイズ */
  color: #4B5563;
  line-height: 1.6;
  margin: 0;
}
/* ================================================
   Project：p-case (導入事例 - PC基準)
   ================================================ */
.p-case {
  background-color: #F9FAFB;
  padding: 2rem 1rem; /* PC時の余白 */
}
.p-case__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.p-case__header {
  margin-bottom: 2.5rem; /* PC時の余白 */
  text-align: center;
}
.p-case__title {
  font-size: 2rem; /* PC時のサイズ */
  font-weight: bold;
  color: #3E3E82;
  margin-bottom: 1rem; /* PC時の余白 */
  letter-spacing: 0.05em;
}
.p-case__lead {
  font-size: 1.125rem; /* PC時のサイズ */
  font-weight: bold;
  color: #4B5563;
}
.p-case__content {
  display: flex;
  flex-direction: row; /* PC時は横並び */
  align-items: stretch;
  gap: 2rem;
}
/* --- 左側：事例カード --- */
.p-case__card {
  display: flex;
  flex-direction: column;
  flex: 1.5; /* PC時の割合 */
  background-color: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #222222;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.p-case__card-img img {
  width: 100%;
  height: 240px; /* PC時の画像高さ */
  object-fit: cover; /* PC時の画像調整 */
  display: block;
}
.p-case__card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.p-case__card-label {
  display: inline-block;
  font-size: 0.813rem;
  color: #0070C0;
  font-weight: bold;
  margin-bottom: 0.75rem;
}
.p-case__card-title {
  font-size: 1.25rem; /* PC時のサイズ */
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 0.5rem 0;
}
.p-case__card-sub {
  font-size: 0.813rem;
  color: #6B7280;
  margin: 0 0 1.5rem 0;
}
.p-case__card-action {
  margin-top: auto;
  text-align: right;
  color: #0070C0;
  font-weight: bold;
  font-size: 0.938rem;
}
.p-case__card-action .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.p-case__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 112, 192, 0.1);
}
.p-case__card:hover .p-case__card-action .arrow {
  transform: translateX(6px);
}
/* --- 右側：Before/After ストーリー --- */
.p-case__story {
  display: flex;
  flex-direction: column;
  flex: 1; /* PC時の割合 */
  justify-content: center; /* PC時の配置 */
}
.p-case__story-box {
  border-radius: 12px;
  padding: 1.5rem; /* PC時の余白 */
}
.p-case__story-box--before {
  background-color: #F3F4F6;
  border: 1px dashed #D1D5DB;
}
.p-case__story-box--before .p-case__story-label {
  color: #4B5563;
}
.p-case__story-arrow {
  text-align: center;
  color: #00A0E9;
  font-weight: bold;
  font-size: 0.938rem;
  margin: 0.5rem 0;
}
.p-case__story-box--after {
  background-color: #ffffff;
  border: 2px solid #00A0E9;
  box-shadow: 0 8px 20px rgba(0, 160, 233, 0.1);
}
.p-case__story-box--after .p-case__story-label {
  background-color: #FFF9E6;
  color: #00A0E9;
  text-align: center;
  border-radius: 6px;
  padding: 0.5rem;
  margin-bottom: 1rem;
}
.p-case__story-label {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.p-case__story-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-case__story-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem; /* PC時のサイズ */
  font-weight: bold;
  color: #222222;
  line-height: 1.5;
}
.p-case__story-list li:last-child {
  margin-bottom: 0;
}
.p-case__story-box--before li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 3px;
  background-color: #9CA3AF;
}
.p-case__story-list--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 6px;
  height: 12px;
  border-right: 3px solid #00A0E9;
  border-bottom: 3px solid #00A0E9;
  transform: rotate(45deg);
}
/* ===================================================
   Project：p-flow (導入フロー - PC基準)
   =================================================== */
.p-flow {
  background-color: #ffffff;
  padding: 6rem 1rem; /* PC時の余白 */
}
.p-flow__inner {
  max-width: 1000px;
  margin: 0 auto;
  border: 2px solid #D6E8F3;
  border-radius: 24px;
  padding: 1rem 2rem;
  background-color: #ffffff;
}
.p-flow__lead {
  font-size: 1.125rem; /* PC時のサイズ */
  color: #222222;
  margin-bottom: 2rem; /* PC時の余白 */
  line-height: 1.6;
}
.p-flow__lead strong {
  font-size: 1.25em;
  color: #E60012;
}
/* --- ステップ（フロー図） --- */
.p-flow__steps {
  display: flex;
  flex-direction: row; /* PC時は横並び */
  justify-content: center;
  align-items: center;
  gap: 1rem; /* PC時の余白 */
  margin-bottom: 2rem;
}
.p-flow__step {
  display: flex;
  flex-direction: row; /* PC時の並び */
  align-items: center;
  width: auto; /* PC時は自動調整 */
  max-width: none;
  flex: 1.1; /* PC時の割合 */
  gap: 1rem;
}
.p-flow__step--final {
  flex: 0.8; /* PC時の割合 */
}
/* STEP 4 の破線ラッパー */
.p-flow__step-wrapper--dashed {
  border: 2px dashed #222222;
  padding: 1.5rem 0.7rem 0.7rem; /* PC時の余白 */
  position: relative;
  border-radius: 12px;
  width: 100%;
  box-sizing: border-box;
}
.p-flow__step-note {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  padding: 0 0.5rem;
  font-size: 0.875rem; /* PC時のサイズ */
  font-weight: bold;
  color: #222222;
  white-space: nowrap;
}
/* 各STEPの箱 */
.p-flow__step-box {
  border-radius: 16px;
  padding: 1.5rem 0.5rem; /* PC時の余白 */
  position: relative;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px; /* PC時の高さ */
}
.p-flow__step-box--blue {
  background-color: #0070C0;
}
.p-flow__step-text {
  color: #ffffff;
  font-weight: bold;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}
/* 左上の丸い数字 */
.p-flow__step-num {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.125rem;
  border: 3px solid #ffffff;
}
.p-flow__step-num--blue {
  background-color: #0070C0;
}
/* PC用矢印（右向き） */
.p-flow__step-arrow {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 25px solid #9CA3AF;
  border-right: none;
}
/* 破線枠が含まれるステップの幅を2つ分に広げる */
.p-flow__step--double {
  flex: 2.4; /* 箱2つ分の幅を確保 */
}
/* 破線枠内のレイアウト（横並び） */
.p-flow__step-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
/* 破線枠の中の箱（STEP3と4）を、外の箱と同じ比率で広げる */
.p-flow__step-inner .p-flow__step-box {
  flex: 1;
}
/* --- ご利用にあたってのご注意 --- */
.p-flow__attention {
  margin-top: 1rem;
  padding: 1rem 1rem; /* PC時の余白 */
  border-top: 1px dashed #D1D5DB;
}
.p-flow__attention-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.p-flow__attention-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #E60012;
  color: #ffffff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.813rem;
}
.p-flow__attention-title {
  font-size: 1rem;
  font-weight: bold;
  color: #4B5563;
  margin: 0;
}
.p-flow__attention-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.p-flow__attention-list li {
  position: relative;
  padding-left: 1.25rem;
}
.p-flow__attention-list li::before {
  content: "\203B";
  position: absolute;
  left: 0;
  top: 0;
  color: #E60012;
  font-weight: bold;
  font-size: 0.8rem;
}
.p-flow__attention-list strong {
  display: block;
  font-size: 0.9rem; /* PC時のサイズ */
  color: #4B5563;
  margin-bottom: 0;
}
.p-flow__attention-list p {
  font-size: 0.8rem; /* PC時のサイズ */
  color: #6B7280;
  line-height: 1.5;
  margin: 0;
}
/* =====================================================
   【スマホ用設定】 画面幅 768px 以下の時の表示
   ==================================================== */
@media (max-width: 768px) {
  /* -------------------------------------------
     メイン（スマホ版）
  ------------------------------------------- */
  /* --- ヒーローエリア 左上リボン（スマホサイズ調整） --- */
  .p-concept__bubble {
    justify-content: center; /* 枠内の上下中央に配置 */
    align-items: stretch; /* 横幅いっぱいに広げる */
  }
  .p-hero__ribbon {
    position: absolute;
    top: 20px; /* 上からの位置 */
    left: -85px; /* 左からの位置（マイナスで外側に逃がす） */
    width: 300px; /* リボンの長さ */
    background-color: #F39800;
    color: #ffffff;
    padding: 6px 0;
    text-align: center;
    transform: rotate(-35deg);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
  }
  .p-hero__ribbon-sub {
    display: block;
    font-size: 0.75rem;
    font-weight: bold;
  }
  .p-hero__ribbon-main {
    display: block;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.05em;
  }
  .p-hero__title-main {
    font-size: 1.35rem;
  }
  /* --- ヒーローエリアの注釈 --- */
  .p-hero__note {
    font-size: 0.6rem;
  }
  /* メダル画像を大きくする */
  .p-hero__effects img {
    width: 130%;
    max-width: none;
    margin-left: -15%;
  }
  /* -------------------------------------------
     p-concept (2大リスク)
  ------------------------------------------- */
  .p-concept {
    padding: 2rem 1rem; /* スマホ時の余白 */
  }
  .p-concept__lead {
    font-size: 1.375rem; /* スマホ時のサイズ */
  }
  .p-concept__notice {
    padding: 1.5rem; /* スマホ時の余白 */
    margin-top: 0;
    margin-bottom: 3rem;
  }
  .p-concept__notice-text {
    font-size: 0.938rem; /* スマホ時のサイズ */
    text-align: justify; /* スマホ時は両端揃え */
  }
  .p-concept__cards {
    flex-direction: column; /* スマホ時は縦積み */
    gap: 2.5rem;
  }
  .p-concept__card {
    flex: auto;
  }
  .p-concept__card-title {
    font-size: 1.188rem; /* スマホ時のサイズ */
    margin-bottom: 1.25rem;
  }
  .p-concept__bubble {
    padding: 1.5rem; /* スマホ時の余白 */
    margin-bottom: 1.5rem;
  }
  .p-concept__bubble-text {
    font-size: 0.875rem; /* スマホ時のサイズ */
  }
  .p-concept__card-icon img {
    width: 230px; /* スマホ時の画像サイズ */
  }
  .p-concept__arrow {
    margin-bottom: 2rem; /* スマホ時の余白 */
  }
  .p-concept__arrow::before {
    width: 22px; /* スマホ時のサイズ */
    height: 35px;
  }
  .p-concept__arrow::after {
    border-left: 30px solid transparent; /* スマホ時のサイズ */
    border-right: 30px solid transparent;
  }
  .p-concept__summary-text {
    font-size: 1rem; /* スマホ時のサイズ */
  }
  .p-concept__summary-highlight--orange {
    font-size: 1.125rem; /* スマホ時のサイズ */
  }
  .p-concept__summary-highlight--blue {
    font-size: 1.188rem; /* スマホ時のサイズ */
  }
  .p-note-right {
    font-size: 0.7rem;
    margin-top: 10px;
  }
  /* -------------------------------------------
     p-merit (導入メリット)
  ------------------------------------------- */
  .p-merit {
    padding: 0 1.25rem 4rem; /* スマホ時の余白 */
  }
  .p-merit__wave {
    height: 40px; /* スマホ時の波の高さ */
  }
  .p-merit__inner {
    padding-top: 4rem; /* スマホ時の余白 */
  }
  .p-merit__sub-title {
    font-size: 1.125rem; /* スマホ時のサイズ */
  }
  .p-merit__main-title {
    font-size: 1.1rem; /* スマホ時のサイズ */
    letter-spacing: normal;
  }
  .p-merit__intro {
    margin-bottom: 3rem; /* スマホ時の余白 */
  }
  .p-merit__intro-text {
    font-size: 0.875rem; /* スマホ時のサイズ */
    text-align: justify; /* スマホ時は両端揃え */
  }
  .p-merit__cards {
    flex-direction: column; /* スマホ時は縦積み */
    margin-bottom: 3.5rem;
  }
  .p-merit__card {
    flex: auto;
  }
  .p-merit__card-icon {
    width: 32px; /* スマホ時の画像サイズ */
  }
  /* -------------------------------------------
     p-impact (導入効果＆費用対効果)
  ------------------------------------------- */
  .p-impact {
    padding: 3rem 1.25rem; /* スマホ時の余白 */
  }
  .p-impact__wrapper {
    padding: 3rem 1.5rem; /* スマホ時の余白 */
  }
  .p-impact__title {
    font-size: 1.5rem; /* スマホ時のサイズ */
    margin-bottom: 2rem;
  }
  .p-impact__numbers {
    flex-direction: column; /* スマホ時は縦積み */
  }
  .p-impact__number-card {
    flex: auto;
    padding: 2rem 1.5rem; /* スマホ時の余白 */
    min-width: auto;
  }
  .p-impact__number-value {
    font-size: 2.5rem; /* スマホ時のサイズ */
  }
  .p-impact__cards {
    flex-direction: column; /* スマホ時は縦積み */
    align-items: auto;
    margin-bottom: 3rem;
  }
  .p-impact__card {
    flex: auto;
  }
  .p-impact__conclusion {
    margin-bottom: 2rem; /* スマホ時の余白 */
  }
  .p-impact__conclusion-lead {
    font-size: 1rem; /* スマホ時のサイズ */
  }
  .p-impact__conclusion-highlight {
    font-size: 1.625rem; /* スマホ時のサイズ */
  }
  .p-impact__notes {
    display: block; /* スマホ時はブロック */
    font-size: 0.6rem; /* スマホ時のサイズ */
  }
  .p-impact__notes p {
    margin-bottom: 0.5rem; /* スマホ時の余白 */
    white-space: normal; /* スマホ時は改行許可 */
  }
  /* -------------------------------------------
     p-overview (サービス概要)
  ------------------------------------------- */
  .p-overview {
    padding: 4rem 1.25rem; /* スマホ時の余白 */
  }
  .p-overview__title {
    font-size: 1.3rem; /* スマホ時のサイズ */
    margin-bottom: 0.5rem;
  }
  .p-overview__lead {
    font-size: 0.938rem; /* スマホ時のサイズ */
  }
  .p-overview__section-title {
    font-size: 1.375rem; /* スマホ時のサイズ */
  }
  .p-overview__features {
    flex-direction: column; /* スマホ時は縦積み */
    gap: 1.25rem;
    margin-bottom: 5rem;
  }
  .p-overview__feature-card {
    flex: auto;
    padding: 2rem 1.25rem 1.25rem; /* スマホ時の余白 */
  }
  .p-overview__feature-title {
    font-size: 1.063rem; /* スマホ時のサイズ */
    white-space: normal; /* スマホ時は改行許可 */
  }
  .p-overview__hybrid {
    padding: 1.5rem 1.5rem; /* スマホ時の余白 */
    border-radius: 24px;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .p-overview__hybrid::before {
    top: -30px; /* スマホ時のツノの高さ */
    border-left-width: 30px;
    border-right-width: 30px;
    border-bottom-width: 30px;
  }
  .p-overview__hybrid-grid {
    flex-direction: column; /* スマホ時は縦積み */
    align-items: stretch;
    gap: 2rem;
  }
  .p-overview__hybrid-figure {
    flex: auto;
  }
  .p-overview__hybrid-info {
    flex: auto;
    gap: 1.5rem;
  }
  .p-hybrid-step {
    padding: 1.5rem; /* スマホ時の余白 */
  }
  .p-overview__functions-box {
    padding: 3rem 1.5rem; /* スマホ時の余白 */
    border-radius: 24px;
    margin-bottom: 4rem;
  }
  .p-functions__title {
    font-size: 1.5rem; /* スマホ時のサイズ */
    margin-bottom: 2.5rem;
  }
  .p-function-card {
    flex: auto;
    padding: 1.5rem; /* スマホ時の余白 */
  }
  .p-function-card__title {
    font-size: 1.125rem; /* スマホ時のサイズ */
    white-space: normal; /* スマホ時は改行許可 */
  }
  .p-function-card__text {
    font-size: 0.875rem; /* スマホ時のサイズ */
  }
  /* -------------------------------------------
     p-case (導入事例)
  ------------------------------------------- */
  .p-case {
    padding: 1rem 1rem; /* スマホ時の余白 */
  }
  .p-case__header {
    margin-bottom: 2rem; /* スマホ時の余白 */
  }
  .p-case__title {
    font-size: 1.5rem; /* スマホ時のサイズ */
    margin-bottom: 0.5rem;
  }
  .p-case__lead {
    font-size: 0.938rem; /* スマホ時のサイズ */
  }
  .p-case__content {
    flex-direction: column; /* スマホ時は縦積み */
  }
  .p-case__card {
    flex: auto;
  }
  .p-case__card-img img {
    height: auto;
    object-fit: initial; /* スマホ時は画像のトリミングをリセット */
  }
  .p-case__card-title {
    font-size: 1.125rem; /* スマホ時のサイズ */
  }
  .p-case__story {
    flex: auto;
    justify-content: flex-start;
  }
  .p-case__story-box {
    padding: 1.25rem; /* スマホ時の余白 */
  }
  .p-case__story-list li {
    font-size: 0.813rem; /* スマホ時のサイズ */
  }
  /* -------------------------------------------
     p-flow (導入フロー)
  ------------------------------------------- */
  .p-flow {
    padding: 4rem 1.25rem; /* スマホ時の余白 */
  }
  .p-flow__lead {
    font-size: 1rem; /* スマホ時のサイズ */
    margin-bottom: 3rem; /* スマホ時の余白 */
  }
  .p-flow__steps {
    flex-direction: column; /* スマホ時は縦積み */
    gap: 1.5rem;
  }
  .p-flow__step {
    flex-direction: column; /* スマホ時は縦積み */
    width: 100%;
    max-width: 280px;
    flex: auto;
    gap: 1.5rem;
  }
  .p-flow__step--final {
    flex: auto;
  }
  .p-flow__step-wrapper--dashed {
    padding: 1.25rem 0.25rem 0.25rem; /* スマホ時の余白 */
  }
  .p-flow__step-note {
    font-size: 0.813rem; /* スマホ時のサイズ */
  }
  .p-flow__step-box {
    padding: 1rem 0.5rem; /* スマホ時の余白 */
    min-height: 70px; /* スマホ時の高さ */
  }
  /* スマホ用矢印（下向きに変更） */
  .p-flow__step-arrow {
    border-top: 25px solid #9CA3AF;
    border-bottom: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
  }
  /*破線枠内も縦積みにする */
  .p-flow__step-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .p-flow__attention {
    padding: 1rem 0 0 0; /* スマホ時は左右の余白を消してスリムに */
  }
  .p-flow__attention-list strong {
    font-size: 0.8rem; /* スマホ時のサイズ */
  }
  .p-flow__attention-list p {
    font-size: 0.6rem; /* スマホ時のサイズ */
  }
}