@charset "UTF-8";
/* =========================================================
   _reset.scss
   2025 モダンバージョン
========================================================= */
/* ===========================
   ボックスサイズを全体に適用
============================= */
*, *::before, *::after {
  box-sizing: border-box;
}

/* ===========================
   マージン・パディングをゼロ
============================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* ===========================
   HTML5 display
============================= */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* ===========================
   リストのスタイルをリセット
============================= */
ol, ul {
  list-style: none;
}

/* ===========================
   引用タグのデフォルトをリセット
============================= */
blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
}

/* ===========================
   テーブル
============================= */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ===========================
   フォーム要素
============================= */
button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* ===========================
   画像
============================= */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: 100%;
}

/* ===========================
   強調タグ
============================= */
strong {
  font-weight: bold;
}

/* ===========================
   リンク
============================= */
a {
  color: inherit;
  text-decoration: none;
}

/* =========================================================
   _color.scss
   カラートークン定義
========================================================= */
/* 基本カラー */
/* =========================================================
   _media.scss
   メディアクエリ定義
========================================================= */
/* 共通フォント */
.header-pc, .header-sp, .header-sp-open {
  font-family: "Murecho", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ========== PC Header (769px 以上) ========== */
.header-pc {
  background: #fff;
  /* 中央メニューは “縮む” ことを許可して、はみ出しを防止 */
  /* Flex だけで右端に固定幅で寄せる */
}
.header-pc__inner {
  max-width: 1480px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between; /* ロゴ | メニュー | CTA */
  gap: 32px;
  padding: 0px clamp(16px, 2vw, 24px);
  padding-right: 0 !important;
}
.header-pc__logo {
  flex: 0 0 auto;
}
.header-pc__logo img {
  height: auto;
  display: block;
  width: clamp(7.5rem, -3.75rem + 20vw, 11.25rem);
}
.header-pc__menu {
  flex: 1 1 auto;
  min-width: 0; /* 重要：flex item を正しく収縮させる */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 10px 0;
  padding: 0;
}
.header-pc__menu > li {
  position: relative;
  padding-inline: clamp(6px, 1vw, 14px);
  text-align: center;
}
.header-pc__menu > li + li::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: rgba(29, 80, 162, 0.25);
}
.header-pc__menu > li a {
  text-decoration: none;
  color: #111;
  font-weight: 700;
  line-height: 1.3;
  font-size: clamp(0.625rem, -0.125rem + 1.33vw, 0.875rem);
}
.header-pc__menu > li a:hover {
  color: #1D50A2;
}
.header-pc__menu > li a span {
  white-space: nowrap;
}
.header-pc__cta {
  flex: 0 0 auto; /* 縮ませない */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 66px;
  padding: 0 32px;
  color: #FFEF0F !important;
  font-weight: 800;
  background: linear-gradient(180deg, #4F77CC 0%, #254B9E 100%);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: filter 0.25s ease, transform 0.2s ease;
  width: clamp(12.5rem, 3.125rem + 16.67vw, 15.625rem);
}
.header-pc__cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.header-pc__cta span {
  color: #fff;
}

/* -------- ナローブレークの詰め調整（重なり防止） -------- */
@media (max-width: 1200px) {
  .header-pc__inner {
    gap: 24px;
    padding-inline: 16px;
  }
  .header-pc__menu {
    gap: 24px;
  }
  .header-pc__menu > li {
    padding-inline: 8px;
  }
}
@media (max-width: 1100px) {
  .header-pc__menu {
    gap: 18px;
  }
  .header-pc__menu > li {
    padding-inline: 6px;
  }
  .header-pc__menu > li + li::before {
    left: -4px;
    height: 20px;
  }
  .header-pc__menu a {
    font-size: 13px;
  }
}
@media (max-width: 980px) {
  .header-pc__menu {
    gap: 14px;
  }
  .header-pc__menu > li {
    padding-inline: 4px;
  }
  .header-pc__menu > li + li::before {
    display: none;
  } /* 罫線カットで幅確保 */
  .header-pc__menu a {
    font-size: 12.5px;
  }
}
/* PC 非表示（〜900.98px は SP に切替） */
@media (max-width: 900.98px) {
  .header-pc {
    display: none;
  }
}
/* ========== SP Header（〜900.98px） ========== */
.header-sp {
  background: #fff;
  border-bottom: 2px solid rgba(29, 80, 162, 0.18);
  display: none;
}
@media (max-width: 900.98px) {
  .header-sp {
    display: block;
  }
}
.header-sp__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 12px;
}
.header-sp__logo img {
  height: 22px;
  display: block;
  width: auto;
}
.header-sp__hamburger {
  inline-size: 32px;
  block-size: 26px;
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.header-sp__hamburger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #113377;
  border-radius: 2px;
}
.header-sp__hamburger span:nth-child(1) {
  top: 4px;
}
.header-sp__hamburger span:nth-child(2) {
  top: 12px;
}
.header-sp__hamburger span:nth-child(3) {
  top: 20px;
}

/* ========== SP Drawer（左からスライド） ========== */
.header-sp-open {
  position: fixed;
  inset: 0;
  z-index: 9990;
  display: none;
}
@media (max-width: 900.98px) {
  .header-sp-open {
    display: block;
  }
}
.header-sp-open[hidden] {
  display: none !important;
}
.header-sp-open__panel {
  position: absolute;
  inset: 0 auto 0 0;
  inline-size: 100%;
  background: #fff;
  box-shadow: 6px 0 24px rgba(0, 0, 0, 0.15);
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
}
.header-sp-open__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.header-sp-open__logo img {
  height: 22px;
}
.header-sp-open__close {
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #113377;
  padding: 2px 6px;
}
.header-sp-open__links {
  list-style: none;
  padding: 0;
  background: white;
}
.header-sp-open__links li a {
  position: relative;
  display: grid;
  align-items: center;
  gap: 10px;
  padding: 16px 16px;
  border-bottom: 1px dotted #b7c2d6;
  text-decoration: none;
  color: #111;
}
.header-sp-open__links .txt-sm {
  font-weight: 700;
  font-size: 13px;
  color: #111;
}
.header-sp-open__links .txt-lg {
  font-weight: 900;
  font-size: 18px;
  color: #1D50A2;
}
.header-sp-open__links .only {
  font-weight: 800;
}
.header-sp-open__links li a span:last-child {
  color: #1D50A2;
  font-size: 22px;
  position: absolute;
  right: 20px;
}
.header-sp-open__ctaWrap {
  padding: 20px 16px 28px;
  background: #1D50A2;
  margin-top: auto;
}
.header-sp-open__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(180deg, #FF8C40 0%, #FF6B00 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/* 開いた状態（JSで .is-open を付与） */
.header-sp-open.is-open .header-sp-open__panel {
  transform: translateX(0);
  height: 100svh;
}
.header-sp-open.is-open .header-sp-open__overlay {
  opacity: 1;
}

.header-area {
  position: sticky;
  top: 0;
  z-index: 9980;
  background: #fff;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

/* 固定中の影（視認性UP） */
.header-area.is-elevated {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* 下方向スクロールで隠す */
.header-area.is-hidden {
  transform: translateY(-100%);
}

/* SPドロワー開いている間はヘッダーを固定表示にして隠さない */
.header-area.is-lock {
  transform: none !important;
}

/* =========================
   Sticky Header（501pxで発動）
   ========================= */
.header-area {
  position: relative; /* 初期は通常表示 */
  width: 100%;
  z-index: 9980;
  background: #fff;
  transition: box-shadow 0.3s ease;
  /* 501px以上になったらsticky */
  /* 上からスライド＋フェードイン */
}
.header-area.is-elevated {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.header-area.is-sticky {
  position: sticky;
  top: 0;
}
.header-area.is-animated {
  animation: headerSlideDown 0.6s ease forwards;
}

@keyframes headerSlideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
footer {
  background-color: white;
}
footer ul {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
footer ul li:nth-child(1) img {
  width: 70px;
}
footer ul li:nth-child(2) img {
  width: 150px;
}
footer .copy {
  text-align: center;
  margin-top: 52px;
}

/* ========== Main Visual ========== */
.mv {
  position: relative;
  color: #fff;
  z-index: 1;
  /* 背景 */
  /* 写真にうっすら乗るレイヤー（コントラスト調整） */
  /* 左カラム */
  /* 会社名ピル */
  /* タイトル */
  /* 実績 */
  /* 右：王冠バッジ */
  /* 底の飾り（必要なら） */
}
.mv__right-circle {
  width: clamp(13.75rem, 4.375rem + 16.67vw, 16.875rem);
  position: absolute;
  top: 100px;
  right: -30px;
}
@media (min-width: 1400px) {
  .mv__right-circle {
    max-width: 100% !important;
    right: clamp(-1.875rem, -28.125rem + 30vw, 9.375rem);
  }
}
@media (max-width: 1111.98px) {
  .mv__right-circle {
    right: 0;
  }
}
@media (max-width: 619.98px) {
  .mv__right-circle {
    display: none;
  }
}
.mv__img {
  max-width: 60%;
  margin: 10px auto 0;
}
@media (max-width: 1111.98px) {
  .mv__img {
    max-width: 80%;
  }
}
@media (max-width: 900.98px) {
  .mv__img {
    margin: 0 auto;
    max-width: 90%;
  }
}
.mv__img img.pc {
  display: block;
}
@media (max-width: 900.98px) {
  .mv__img img.pc {
    display: none;
  }
}
.mv__img img.sp {
  display: none;
}
@media (max-width: 900.98px) {
  .mv__img img.sp {
    display: block;
  }
}
.mv-sub__title {
  position: relative;
  margin-bottom: 50px;
}
.mv-sub__title::before {
  position: absolute;
  content: "";
  background-color: rgba(255, 239, 15, 0.85);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media (max-width: 900.98px) {
  .mv-sub__title::before {
    width: 100px;
    height: 100px;
    top: -30px;
  }
}
.mv-sub__title h2 {
  text-align: center;
  font-size: clamp(2.125rem, 0.625rem + 2.67vw, 2.625rem);
  font-weight: 500;
  color: #1D50A2;
  position: relative;
}
@media (max-width: 900.98px) {
  .mv-sub__title h2 {
    font-size: 18px;
  }
}
.mv-sub__img {
  max-width: 920px;
  margin: 50px auto 0;
}
.mv-sub__img img {
  margin-bottom: -10px;
  position: relative;
  z-index: -1;
}
.mv .cacheback {
  text-align: center;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
.mv .cacheback__title {
  font-size: clamp(1.625rem, 0.66rem + 1.39vw, 1.875rem);
}
@media (max-width: 743.98px) {
  .mv .cacheback__title {
    font-size: clamp(1.125rem, 0.581rem + 1.86vw, 1.625rem);
  }
}
@media (max-width: 389.98px) {
  .mv .cacheback__title {
    font-size: 16px;
  }
}
.mv .cacheback__price {
  font-size: clamp(1.625rem, 0.66rem + 1.39vw, 1.875rem);
  line-height: 1;
  margin-bottom: clamp(1.25rem, -1.163rem + 3.47vw, 1.875rem);
}
@media (max-width: 389.98px) {
  .mv .cacheback__price {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.mv .cacheback__price span {
  font-size: clamp(3.875rem, 1.462rem + 3.47vw, 4.5rem);
}
@media (max-width: 743.98px) {
  .mv .cacheback__price span {
    font-size: clamp(2.625rem, 1.265rem + 4.64vw, 3.875rem);
  }
}
@media (max-width: 389.98px) {
  .mv .cacheback__price span {
    font-size: 36px;
  }
}
.mv .cacheback__subtitle {
  position: relative;
  font-size: clamp(1.625rem, 0.66rem + 1.39vw, 1.875rem);
}
@media (max-width: 743.98px) {
  .mv .cacheback__subtitle {
    font-size: clamp(1.125rem, 0.581rem + 1.86vw, 1.625rem);
  }
}
@media (max-width: 389.98px) {
  .mv .cacheback__subtitle {
    font-size: 22px;
  }
}
.mv .cacheback__subtitle::before {
  position: absolute;
  content: "";
  background-image: url(../img/kv/cache-ribbon.png);
  width: 100%;
  height: 65px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  z-index: -1;
}
.mv__bg {
  position: relative;
  min-height: clamp(520px, 70vw, 720px);
  background: var(--mv-photo, url("../img/kv/bg.png")) center/cover no-repeat;
  overflow: hidden;
  z-index: -2;
  clip-path: ellipse(102% 90% at 50% 9%);
}
@media (min-width: 1400px) {
  .mv__bg {
    clip-path: ellipse(87% 90% at 50% 9%);
  }
}
@media (max-width: 1111.98px) {
  .mv__bg {
    clip-path: ellipse(120% 91% at 50% 9%);
  }
}
@media (max-width: 900.98px) {
  .mv__bg {
    clip-path: ellipse(123% 91% at 50% 9%);
  }
}
@media (max-width: 743.98px) {
  .mv__bg {
    clip-path: ellipse(132% 91% at 50% 9%);
  }
}
@media (max-width: 389.98px) {
  .mv__bg {
    min-height: 600px;
  }
}
.mv__bg::before {
  position: absolute;
  content: "";
  background-image: url(../img/kv/bg-human.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(36.875rem, 12.953rem + 34.48vw, 43.125rem);
  height: clamp(36.875rem, 12.953rem + 34.48vw, 43.125rem);
  bottom: -100px;
  right: clamp(6.25rem, -5.711rem + 17.24vw, 9.375rem);
}
@media (min-width: 1400px) {
  .mv__bg::before {
    right: clamp(8.75rem, -36.458rem + 51.67vw, 28.125rem);
  }
}
@media (max-width: 1111.98px) {
  .mv__bg::before {
    right: clamp(2.5rem, -5.498rem + 14.22vw, 4.375rem);
    width: clamp(31.875rem, 5.216rem + 47.39vw, 38.125rem);
    height: clamp(31.25rem, 4.591rem + 47.39vw, 37.5rem);
  }
}
@media (max-width: 900.98px) {
  .mv__bg::before {
    width: clamp(26.875rem, 5.548rem + 37.91vw, 31.875rem);
    height: clamp(27.5rem, 11.505rem + 28.44vw, 31.25rem);
  }
}
@media (max-width: 619.98px) {
  .mv__bg::before {
    width: 100%;
    height: 320px;
    left: 40px;
  }
}
@media (max-width: 619.98px) {
  .mv__bg::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 52vh;
    background-color: #1D50A2;
    opacity: 0.75;
    top: 0;
    clip-path: ellipse(122% 90% at 50% 9%);
  }
}
@media (max-width: 389.98px) {
  .mv__bg::after {
    height: 57vh;
  }
}
@media (max-width: 900.98px) {
  .mv__bg {
    --mv-photo: url("../img/kv/bg-sp.png");
  }
}
.mv__bg .img-line {
  position: absolute;
  bottom: 6px;
}
@media (max-width: 1111.98px) {
  .mv__bg .img-line {
    bottom: -1px;
  }
}
.mv__bg .img-line img {
  clip-path: ellipse(102% 90% at 50% 9%);
  width: 100%;
}
.mv__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.mv__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding-block: clamp(24px, 5vw, 48px);
  max-width: 1420px !important;
}
@media (min-width: 1400px) {
  .mv__inner {
    max-width: 100% !important;
  }
}
@media (min-width: 1400px) {
  .mv__inner .mv__left {
    margin-left: 5%;
  }
}
@media (max-width: 1111.98px) {
  .mv__inner {
    padding-top: 100px;
  }
}
@media (max-width: 900.98px) {
  .mv__inner {
    grid-template-columns: 1fr;
    padding-block: 28px;
    height: 80vh;
  }
}
@media (max-width: 389.98px) {
  .mv__inner {
    height: 90vh;
  }
}
.mv__left {
  /* 青い円形(楕円)を左に敷きたい場合は pseudo で */
  position: relative;
  z-index: 1;
  border-radius: 50%;
  background-color: #1D50A2;
  width: clamp(31.25rem, 7.118rem + 34.72vw, 37.5rem);
  height: clamp(31.25rem, 7.118rem + 34.72vw, 37.5rem);
  margin-top: -80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1111.98px) {
  .mv__left {
    width: clamp(25rem, -1.659rem + 47.39vw, 31.25rem);
    height: clamp(25rem, -1.659rem + 47.39vw, 31.25rem);
  }
}
@media (max-width: 743.98px) {
  .mv__left {
    width: clamp(21.875rem, 18.474rem + 11.6vw, 25rem);
    height: clamp(21.875rem, 18.474rem + 11.6vw, 25rem);
  }
}
@media (max-width: 619.98px) {
  .mv__left {
    background: none;
    width: 100%;
  }
}
@media (max-width: 389.98px) {
  .mv__left {
    margin-top: -90px;
  }
}
.mv__pill {
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1D50A2;
  border-radius: 999px;
  padding: 8px 34px;
  font-weight: 800;
  font-size: clamp(1.375rem, 0.925rem + 0.8vw, 1.625rem);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
}
@media (max-width: 900.98px) {
  .mv__pill {
    font-size: 14px;
  }
}
.mv__pill span {
  display: inline-block;
  letter-spacing: 0.2em;
}
@media (max-width: 900.98px) {
  .mv__pill {
    margin-inline: auto;
  }
}
.mv__title {
  margin: clamp(12px, 1.5vw, 16px) 0 8px;
  font-weight: 500;
  line-height: 1.25;
  font-size: clamp(2.375rem, -0.017rem + 3.45vw, 3rem);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #FFEF0F;
}
@media (max-width: 1111.98px) {
  .mv__title {
    font-size: clamp(2rem, -0.666rem + 4.74vw, 2.625rem);
  }
}
@media (max-width: 900.98px) {
  .mv__title {
    line-height: 1.5;
    font-size: clamp(1.25rem, 0.706rem + 1.86vw, 1.75rem);
  }
}
@media (max-width: 389.98px) {
  .mv__title {
    font-size: 18px;
  }
}
.mv .mv__dotted {
  /* 1200px → 900px にかけて 200px → 160px に縮む */
  width: clamp(160px, 106.7px + 4.44vw, 200px);
  height: 0;
  border-top: 4px dotted rgba(255, 255, 255, 0.8);
  /* 同レンジで margin-left も 35px → 48px に */
  margin: 0 auto 0 clamp(35px, 3.3px + 2.2vw, 48px);
}
@media (max-width: 900.98px) {
  .mv .mv__dotted {
    margin: -10px 10px 20px 47px;
    width: 110px;
  }
}
@media (max-width: 619.98px) {
  .mv .mv__dotted {
    display: none;
  }
}
.mv__achievements {
  display: none;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  list-style: none;
  padding: 0;
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 619.98px) {
  .mv__achievements {
    display: grid;
    grid-template-columns: auto;
    justify-items: center;
    max-width: 100%;
    margin-top: 20px;
    width: 100%;
  }
}
.mv__achievements .circle-box {
  width: 100%;
}
.mv__achievements .circle-box::before {
  content: none;
}
.mv__achievements .circle-box .circle__achievements {
  flex-direction: row;
  max-width: 100%;
  justify-content: center;
}
.mv__achievements .circle-box .circle__textbox {
  text-align: center;
  line-height: 1.2;
  position: relative;
  width: 50%;
}
.mv__achv {
  position: relative;
  text-align: center;
  padding: 14px 12px;
  /* 月桂樹アイコンを背景画像で */
}
@media (max-width: 900.98px) {
  .mv__achv {
    padding: 0;
  }
}
.mv__achv::before, .mv__achv::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: url("./assets/img/kv/laurel.svg") center/contain no-repeat;
  opacity: 0.9;
}
.mv__achv::before {
  left: 8px;
}
.mv__achv::after {
  right: 8px;
  transform: translateY(-50%) scaleX(-1);
}
.mv__achv .mv__achv-caption {
  display: block;
  font-weight: 700;
  font-size: clamp(12px, 0.7rem + 0.2vw, 14px);
  line-height: 1.4;
  opacity: 0.95;
}
.mv__achv .mv__achv-num {
  display: block;
  font-weight: 900;
  font-size: clamp(22px, 1.1rem + 1.4vw, 32px);
  line-height: 1.1;
  margin-top: 6px;
}
.mv__achv .mv__achv-num span {
  font-size: 1.2em;
}
.mv__achv .mv__achv-sup {
  display: block;
  margin-top: 2px;
  font-weight: 800;
  font-size: clamp(12px, 0.72rem + 0.18vw, 14px);
  opacity: 0.95;
}
.mv__badge {
  position: relative;
  align-self: flex-start;
  justify-self: flex-end;
  width: 320px;
}
@media (max-width: 900.98px) {
  .mv__badge {
    margin-top: 16px;
    width: 112px;
    height: 112px;
    position: initial;
  }
}
.mv__badge-crown {
  position: absolute;
  left: 50%;
  top: -12%;
  transform: translateX(-50%);
  width: 62%;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.15));
}
@media (max-width: 900.98px) {
  .mv__badge-crown {
    width: 112px;
    height: 112px;
    top: inherit;
    bottom: 5%;
    right: -10%;
    left: inherit;
  }
}
.mv__badge-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  /* 輪郭。画像でもOK */
  box-shadow: 0 0 0 10px #ffebc2 inset, 0 0 0 18px #f7c94e inset, 0 16px 28px rgba(0, 0, 0, 0.16);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.04));
  display: grid;
  place-items: center;
}
.mv .mv__badge-text {
  width: 66%;
  height: auto;
  z-index: 2;
}
.mv .mv__badge-wreath {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1;
  pointer-events: none;
}
.mv__bottom-deco {
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 120%;
  max-width: none;
  height: auto;
  pointer-events: none;
}

.circle-box {
  position: relative;
  margin-right: 30px;
}
@media (max-width: 619.98px) {
  .circle-box {
    margin-right: 0;
  }
}
.circle-box::before {
  position: absolute;
  content: "";
  top: -70px;
  right: -10px;
  background-color: #1D50A2;
  border-radius: 50%;
  width: clamp(13.75rem, 12.841rem + 4.55vw, 16.25rem);
  height: clamp(13.75rem, 12.841rem + 4.55vw, 16.25rem);
  opacity: 0.6;
  z-index: -1;
}
@media (max-width: 1111.98px) {
  .circle-box::before {
    top: -70px;
    right: -5px;
  }
}
@media (max-width: 900.98px) {
  .circle-box::before {
    right: -5px;
  }
}
@media (max-width: 619.98px) {
  .circle-box::before {
    display: none;
  }
}
.circle__achievements {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 65%;
  margin: 0 auto;
}
@media (max-width: 1111.98px) {
  .circle__achievements {
    max-width: 85%;
  }
}
.circle__textbox {
  text-align: center;
  line-height: 1.2;
  position: relative;
}
.circle__textbox::before {
  position: absolute;
  content: "";
  background-image: url(../img/kv/ranking-left.png);
  height: 90px;
  width: 31px;
  background-repeat: no-repeat;
  background-size: contain;
  top: 10%;
  left: -35px;
}
@media (max-width: 389.98px) {
  .circle__textbox::before {
    height: 73px;
    width: 26px;
  }
}
.circle__textbox::after {
  position: absolute;
  content: "";
  background-image: url(../img/kv/ranking-right.png);
  height: 90px;
  width: 31px;
  background-repeat: no-repeat;
  background-size: contain;
  top: 10%;
  right: -35px;
}
@media (max-width: 389.98px) {
  .circle__textbox::after {
    height: 73px;
    width: 26px;
  }
}
.circle__textbox p {
  font-size: 16px;
  line-height: 1.5;
}
.circle__textbox p.circle__number {
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  color: #FFEF0F;
}
.circle__textbox p.circle__number span {
  font-size: 42px;
}
@media (max-width: 1111.98px) {
  .circle__textbox p.circle__number span {
    font-size: clamp(1.625rem, -0.508rem + 3.79vw, 2.125rem);
  }
}
.circle__textbox p.circle__catch {
  line-height: 1.2;
  font-size: 20px;
}
.circle__dec {
  font-size: 11px;
  letter-spacing: 1px;
  max-width: 60%;
  margin: 7px auto 0;
}
@media (max-width: 1111.98px) {
  .circle__dec {
    max-width: 60%;
  }
}
@media (max-width: 619.98px) {
  .circle__dec {
    max-width: 100%;
    text-align: center;
  }
}

/* =========================
   Benefits Banner
   ========================= */
.b-benefits {
  position: relative;
  color: #1a1a1a;
  /* 薄い白ベールで背景を明るく */
  /* ========== Ribbon（上段の黄色帯） ========== */
  /* 左端固定の丸いバッジ（画像） */
  /* ========== 中段テキスト ========== */
  /* ========== ブランド名（テキスト版ロゴ風） ========== */
  /* ========== CTA ========== */
  /* ========== SP 最適化（768px以下） ========== */
}
.b-benefits__bg {
  position: relative;
}
.b-benefits__bg.section01 {
  background: var(--benefits-bg, url("../img/benefits/section01/benefits-bg.jpg")) center/cover no-repeat;
}
.b-benefits__bg.section01 img {
  max-width: 600px;
}
@media (max-width: 900.98px) {
  .b-benefits__bg.section01 img {
    max-width: 100%;
    position: inherit;
    left: inherit;
    width: 100px;
    margin-top: -30px;
  }
}
.b-benefits__bg.section01 .b-benefits__img img {
  width: 100%;
  margin: 0;
}
.b-benefits__bg.section01 .acc-toggle-wrap img {
  width: 17px;
  height: auto;
  margin-top: 5px;
  position: absolute;
  right: 40px;
}
.b-benefits__bg.section02 {
  background: var(--benefits-bg, url("../img/benefits/section02/benefits-bg.jpg")) center/cover no-repeat;
}
.b-benefits__bg.section02 img {
  max-width: 600px;
}
@media (max-width: 900.98px) {
  .b-benefits__bg.section02 img {
    max-width: 100%;
    position: inherit;
    left: inherit;
    width: 100px;
    margin-top: -30px;
  }
}
.b-benefits__bg.section02 .b-benefits__img img {
  width: 100%;
  margin: 0;
}
.b-benefits__bg.section02 .acc-toggle-wrap img {
  width: 17px;
  height: auto;
  margin-top: 5px;
  position: absolute;
  right: 40px;
}
.b-benefits__bg.section03 {
  background: var(--benefits-bg, url("../img/benefits/section03/benefits-bg.jpg")) center/cover no-repeat;
}
.b-benefits__bg.section03 img {
  max-width: 600px;
}
@media (max-width: 900.98px) {
  .b-benefits__bg.section03 img {
    max-width: 100%;
    position: inherit;
    left: inherit;
    width: 100px;
    margin-top: -30px;
  }
}
.b-benefits__bg.section03 .b-benefits__img img {
  width: 100%;
  margin: 0;
}
.b-benefits__bg.section03 .acc-toggle-wrap img {
  width: 17px;
  height: auto;
  margin-top: 5px;
  position: absolute;
  right: 40px;
}
.b-benefits__bg.section04 {
  background: var(--benefits-bg, url("../img/benefits/section04/benefits-bg.jpg")) center/cover no-repeat;
}
.b-benefits__bg.section04 img {
  max-width: 600px;
}
@media (max-width: 900.98px) {
  .b-benefits__bg.section04 img {
    max-width: 100%;
    position: inherit;
    left: inherit;
    width: 100px;
    margin-top: -30px;
  }
}
.b-benefits__bg.section04 .b-benefits__img img {
  width: 100%;
  margin: 0;
}
.b-benefits__bg.section04 .acc-toggle-wrap img {
  width: 17px;
  height: auto;
  margin-top: 5px;
  position: absolute;
  right: 40px;
}
.b-benefits__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}
.b-benefits__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(20px, 3vw, 36px);
  display: grid;
  gap: clamp(14px, 2.4vw, 20px);
  justify-items: center;
  text-align: center;
  padding-bottom: 50px;
}
@media (max-width: 900.98px) {
  .b-benefits__inner {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}
.b-benefits__ribbon {
  position: relative;
  background: #fff6cf; /* やさしい黄色 */
  border: 2px solid #f6dfa0;
  border-radius: 12px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  padding: clamp(10px, 1.6vw, 14px) clamp(16px, 3vw, 28px);
  min-height: 100px;
  width: min(980px, 92%);
  /* テキストを中央寄せ */
  display: flex;
  align-items: center;
  justify-content: center;
}
.b-benefits__badge {
  position: absolute;
  left: clamp(10px, 2vw, 20px);
  width: clamp(44px, 5.4vw, 64px);
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
  pointer-events: none; /* クリックを邪魔しない */
}
.b-benefits__ribbonText {
  margin: 0;
  font-weight: 500;
  font-size: clamp(1.75rem, 1rem + 1.33vw, 2rem);
  letter-spacing: 0.02em;
  color: #d33; /* 赤み */
  text-align: center;
}
.b-benefits__ribbonText strong {
  color: #d33;
}
@media (max-width: 900.98px) {
  .b-benefits__ribbonText strong {
    display: block;
  }
}
.b-benefits__price {
  font-weight: 900;
  font-size: clamp(2.625rem, 1.125rem + 2.67vw, 3.125rem); /* リボン内の数字だけ少し大きく */
  letter-spacing: 0.04em;
}
.b-benefits__lead {
  margin: 0;
  font-weight: 800;
  font-size: clamp(16px, 0.95rem + 0.5vw, 20px);
  color: #222;
}
@media (max-width: 900.98px) {
  .b-benefits__lead {
    font-size: 24px;
  }
}
.b-benefits__brand {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(8px, 1.6vw, 14px);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
}
.b-benefits__brandHome {
  font-size: clamp(26px, 1.35rem + 1vw, 36px);
  color: #1d3a8a; /* 暗めブルー */
}
.b-benefits__brandAlsok {
  font-size: clamp(28px, 1.5rem + 1.2vw, 42px);
  color: #1D50A2; /* コーポレートブルー */
  position: relative;
  font-style: italic;
}
.b-benefits__brandConnect {
  font-size: clamp(24px, 1.2rem + 0.8vw, 32px);
  color: #1d3a8a;
}
.b-benefits__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 1.4vw, 12px) clamp(14px, 2.2vw, 22px);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(14px, 0.9rem + 0.2vw, 16px);
  color: #fff;
  background: linear-gradient(180deg, #4F77CC 0%, #254B9E 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease, filter 0.15s ease;
}
@media (max-width: 900.98px) {
  .b-benefits__ribbon {
    width: 100%;
    padding-left: clamp(14px, 5vw, 24px); /* 左バッジ分の余白を増やす */
    min-height: 64px;
    flex-direction: column;
  }
}
@media (max-width: 900.98px) and (max-width: 900.98px) {
  .b-benefits__ribbon {
    border: 3px solid #FFEF0F;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 900.98px) {
  .b-benefits__badge {
    left: clamp(10px, 4vw, 16px);
    width: clamp(40px, 10vw, 56px);
  }
}

/* =========================
   Layout / Utility
   ========================= */
.l-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
}

/* =========================
   Section Base
   ========================= */
.c-section--bg-white {
  background: #fff;
}
.c-section__inner {
  padding-block: clamp(32px, 6vw, 64px);
}
.c-section__header {
  margin-bottom: clamp(20px, 4vw, 32px);
  text-align: center;
}
.c-section__title {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: clamp(22px, 3.4vw, 32px);
  color: #1D50A2;
  line-height: 1.5;
}
@media (max-width: 900.98px) {
  .c-section__title {
    font-size: 20px;
  }
}
.c-section__title-text span {
  font-weight: 700;
}
.c-section__title-accent {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: #FFEF0F;
  border-radius: 3px;
  content: "";
}
@media (max-width: 900.98px) {
  .c-section__title-accent {
    bottom: -10px;
  }
}

/* =========================
   Generic Card Grid
   ========================= */
.c-cardGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 28px);
  margin-top: 72px;
}
@media (max-width: 900.98px) {
  .c-cardGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 619.98px) {
  .c-cardGrid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Generic Card
   ========================= */
.c-card {
  position: relative;
  background: #fff;
  border: 2px solid #1D50A2;
  border-radius: 16px;
  padding: 24px 20px 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.c-card__badge {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #FFEF0F;
  border: 4px solid #fff;
  display: grid;
  place-items: center;
}
.c-card__badge-num {
  font-weight: 800;
  font-size: 26px;
  color: #1D50A2;
  line-height: 1;
}
.c-card__media {
  margin-top: 16px;
  margin-bottom: 24px;
  overflow: hidden;
  background: #f6f7fb;
}
.c-card__media img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-card__heading {
  font-size: clamp(1.125rem, 0.679rem + 0.93vw, 1.375rem);
  font-weight: 500;
  color: #222;
  line-height: 1.5;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 900.98px) {
  .c-card__heading {
    font-size: 22px;
  }
}
.c-card__text {
  font-size: clamp(0.875rem, 0.652rem + 0.46vw, 1rem);
  color: #030303;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: left;
  letter-spacing: 1.25px;
}
.c-card__note, .c-card__notes li {
  font-size: clamp(0.75rem, 0.527rem + 0.46vw, 0.875rem);
  color: #030303;
  line-height: 1.6;
  text-align: left;
  letter-spacing: 1.25px;
}
.c-card__notes {
  margin-top: 8px;
  padding-left: 0;
  list-style: none;
  text-align: left;
}

/* グリッド */
.c-tierGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 28px);
}
@media (max-width: 900.98px) {
  .c-tierGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 619.98px) {
  .c-tierGrid {
    grid-template-columns: 1fr;
  }
}

/* 1プランの箱 */
.c-tier {
  background: #ECEEFF;
  border-radius: 18px;
  padding: clamp(18px, 2.4vw, 24px);
  text-align: center;
  /* 内訳部分 */
}
.c-tier p {
  font-size: 14px;
  text-align: left;
  margin-top: 10px;
}
.c-tier strong {
  font-size: 14px;
  text-align: left;
  display: block;
}
.c-tier__text strong {
  font-size: 14px;
  text-align: center;
  display: block;
  margin-top: 15px;
}
.c-tier__title {
  font-weight: 500;
  font-size: clamp(1.125rem, 0.83rem + 0.7vw, 1.375rem);
  color: #222;
  margin: 0 0 16px;
}
.c-tier__title span {
  font-size: 16px;
}
.c-tier__panel {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: clamp(12px, 1.8vw, 16px);
  text-align: left;
}
.c-tier__panel + .c-tier__panel {
  margin-top: 14px;
}
@media (max-width: 900.98px) {
  .c-tier__panel {
    padding: 12px 15px;
  }
}
.c-tier__priceMain {
  color: #FF0000;
  font-weight: 500;
  font-size: clamp(1.25rem, 0.8rem + 1.6vw, 2rem);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.c-tier__priceUnit {
  font-weight: 500;
  font-size: 0.95em;
  margin-left: 0.15em;
}
.c-tier__meta {
  display: flex;
  gap: 24px;
  margin-top: 12px;
  /* 「内訳」ボックス */
  /* 内訳テーブル部分 */
}
.c-tier__meta .c-badge {
  flex-shrink: 0;
  border: 1.5px solid #1D50A2;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.9rem;
  font-weight: 700;
  background: #fff;
  line-height: 1.2;
  display: flex;
  align-items: center;
  min-width: 73px;
  justify-content: center;
}
.c-tier__meta-table {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 4px;
  font-size: clamp(0.875rem, 0.72rem + 0.4vw, 1rem);
}
.c-tier__meta-table dt {
  font-weight: 400;
  color: #222;
  display: flex;
  align-items: center;
}
.c-tier__meta-table dd {
  font-weight: 500;
  color: #222;
  text-align: right;
}
.c-tier__meta-table dd span {
  font-size: 20px;
}

.section04 .c-tier p {
  font-weight: bold;
}

/* ラベル×値の水平行 */
.c-kvRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.c-kvRow__label {
  position: relative;
  font-weight: 500;
  color: #222;
  font-size: clamp(1rem, 0.76rem + 0.6vw, 1.25rem);
  padding-bottom: 6px;
}
.c-kvRow__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(44px, 10vw, 72px);
  height: 4px;
  background: #FFEF0F;
  border-radius: 3px;
}
.c-kvRow__value .c-tier__priceMain {
  vertical-align: baseline;
}
.c-kvRow__value .c-tier__priceUnit {
  vertical-align: baseline;
}

/* 注意書き */
.c-noteList {
  margin-top: 14px;
  padding-left: 1.2em;
}
.c-noteList li {
  list-style: "※ ";
  color: #030303;
  font-size: clamp(0.75rem, 0.527rem + 0.46vw, 0.875rem);
  line-height: 1.7;
}

/* 吹き出し */
.cashback {
  text-align: center;
}
.cashback .c-speech {
  display: inline-block;
  margin: 18px auto 0;
  background: #FFEF0F;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 500;
  text-align: center;
  position: relative;
  color: #FF0000;
}
.cashback .c-speech span {
  font-size: 24px;
  font-weight: 600;
}
.cashback .c-speech::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
  border: 15px solid transparent;
  border-top-color: #FFEF0F;
}

.section04 .c-tier__title {
  min-height: 64px;
}

/* ===============================
   単一プラン横並びボックス
   =============================== */
.c-planBox {
  background: #ECEEFF;
  border-radius: 20px;
  padding: clamp(18px, 3.6vw, 32px);
  max-width: 818px;
  margin: 72px auto 0;
}
.c-planBox__title {
  text-align: center;
  font-weight: 500;
  font-size: clamp(1.25rem, 0.9rem + 1.2vw, 1.75rem);
  margin: 0 0 clamp(18px, 2.4vw, 24px);
  font-family: "Murecho", sans-serif;
}
.c-planBox__panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2.2vw, 24px);
}
@media (max-width: 619.98px) {
  .c-planBox__panels {
    grid-template-columns: 1fr;
  }
}

/* 白い内容パネル（左右の箱） */
.c-pricePanel {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: clamp(16px, 2.4vw, 22px);
}

/* ラベル下線（既存 .c-kvRow を流用） */
.c-kvRow__label {
  position: relative;
  font-weight: 500;
  font-size: clamp(1.05rem, 0.9rem + 0.5vw, 1.25rem);
  padding-bottom: 6px;
}
.c-kvRow__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(48px, 10vw, 84px);
  height: 4px;
  background: #FFEF0F;
  border-radius: 3px;
}
.c-kvRow__value .c-tier__priceMain {
  color: #e53935;
}

/* 右パネルの内訳（既存 .c-tier__meta を使う前提） */
.c-tier__meta {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
}
@media (max-width: 900.98px) {
  .c-tier__meta {
    align-items: normal;
  }
}
.c-tier__meta .c-badge {
  flex-shrink: 0;
  border: 1.5px solid #1D50A2;
  border-radius: 8px;
  padding: 8px 14px;
  background: #fff;
  font-weight: 500;
}
.c-tier__meta-table {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 8px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-size: clamp(0.95rem, 0.85rem + 0.25vw, 1.05rem);
}
.c-tier__meta-table dt {
  font-weight: 500;
  color: #222;
}
.c-tier__meta-table dd {
  font-weight: 500;
  color: #222;
  text-align: right;
  white-space: nowrap;
}

/* 金額の強調（サイズを大きめに） */
.c-tier__priceMain {
  font-size: clamp(1.6rem, 1.1rem + 2.2vw, 2.6rem);
  font-weight: 500;
}

.c-tier__priceUnit {
  font-weight: 500;
  margin-left: 0.1em;
}

/* 備考（少し詰める） */
.c-noteList--dense {
  margin-top: 12px;
}
.c-noteList--dense.c-notewidth {
  max-width: 818px;
  margin: 12px auto 0;
}
.c-noteList--dense li {
  margin: 2px 0;
}

/* =========================
   Testimonial / Quote Grid
   ========================= */
.c-quoteGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 28px);
  margin-top: 72px;
}
@media (max-width: 900.98px) {
  .c-quoteGrid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Generic Quote Card
   ========================= */
.c-quoteCard {
  position: relative;
  border: 2px solid #1D50A2;
  border-radius: 16px;
  background: #fff;
  padding: clamp(16px, 2.2vw, 22px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-start;
  -moz-column-gap: clamp(16px, 2.4vw, 28px);
       column-gap: clamp(16px, 2.4vw, 28px);
  /* 装飾：角の丸みを少し強調（任意） */
}
@media (max-width: 619.98px) {
  .c-quoteCard {
    grid-template-columns: 1fr;
    row-gap: 14px;
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
}
.c-quoteCard__title {
  font-weight: 500;
  color: #222;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 16px;
}
.c-quoteCard__text {
  color: #030303;
  font-size: clamp(0.875rem, 0.72rem + 0.4vw, 1rem);
  line-height: 1.75;
  margin: 0;
}
.c-quoteCard__avatar {
  width: 130px;
  height: auto; /* ← 高さ自動で比率維持 */
  border-radius: 50%; /* ← 丸く切り抜き */
  -o-object-fit: cover;
     object-fit: cover; /* ← 画像が歪まない */
  -o-object-position: center;
     object-position: center;
  justify-self: end;
}
@media (max-width: 619.98px) {
  .c-quoteCard__avatar {
    justify-self: center;
  }
}
.c-quoteCard--soft {
  border-radius: 20px;
}

/* =========================
Device Grid Layout
========================= */
.c-itemGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.6vw, 24px);
  margin-top: 72px;
  /* 最初の2つ（警備ユニット & スマホゲート）だけ特別な行に */
}
@media (max-width: 900.98px) {
  .c-itemGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 619.98px) {
  .c-itemGrid {
    grid-template-columns: 1fr;
  }
}
.c-itemGrid .c-item:first-child {
  grid-column: span 1; /* 左側 */
}
.c-itemGrid .c-item:nth-child(2) {
  grid-column: span 2; /* 右側で2カラム分の幅を取る */
}
@media (max-width: 900.98px) {
  .c-itemGrid .c-item:nth-child(2) {
    grid-column: inherit;
  }
}
.c-itemGrid.c-item-no .c-item:nth-child(2) {
  grid-column: inherit;
}
.c-itemGrid.c-item-desc .c-item:nth-child(1) .c-item__desc {
  min-height: 162px;
}
.c-itemGrid.c-item-desc .c-item:nth-child(2) .c-item__desc {
  min-height: 162px;
}
.c-itemGrid.c-item-desc .c-item:nth-child(3) .c-item__desc {
  min-height: 162px;
}
.c-itemGrid.c-item-desc .c-item:nth-child(5) .c-item__head {
  min-height: 54px;
  align-items: baseline;
}

/* =========================
Device Item
========================= */
.c-item {
  position: relative;
  background: #F7F8FF;
  border-radius: 15px;
  padding: clamp(14px, 2vw, 18px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  font-family: "Murecho", sans-serif;
  /* 番号バッジ */
  /* 見出し部分 */
  /* 画像（単体） */
  /* ギャラリー（2枚） */
  /* タグ（例：7台設置） */
}
.c-item__badge {
  position: absolute;
  top: 13px;
  left: 15px;
  inline-size: 36px;
  block-size: 36px;
  border-radius: 50%;
  background: #FFEF0F;
  display: grid;
  place-items: center;
}
@media (max-width: 900.98px) {
  .c-item__badge {
    top: 7px;
    inline-size: 46px;
    block-size: 46px;
  }
}
.c-item__badgeNum {
  font-weight: 800;
  color: #1D50A2;
  line-height: 1;
}
@media (max-width: 900.98px) {
  .c-item__badgeNum {
    font-size: 24px;
  }
}
.c-item__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 48px;
  margin-bottom: 8px;
}
@media (max-width: 900.98px) {
  .c-item__head {
    margin-left: 58px;
  }
}
.c-item__title {
  font-weight: 500;
  color: #1D50A2;
  font-size: clamp(1rem, 0.78rem + 0.55vw, 1.25rem);
  line-height: 1.4;
  min-height: 54px;
}
@media (max-width: 900.98px) {
  .c-item__title {
    font-size: 24px;
  }
}
.c-item__content {
  display: flex;
  align-items: center;
  gap: 24px;
}
.c-item__content.content-half {
  align-items: flex-start;
  margin-top: 25px;
}
.c-item__content.content-half .c-item__desc {
  width: 50%;
  margin-top: 0;
}
.c-item__desc {
  color: #030303;
  font-size: clamp(0.875rem, 0.75rem + 0.3vw, 0.9375rem);
  line-height: 1.8;
  margin: 6px 0 10px;
  letter-spacing: 1px;
  min-height: 62px;
  margin-top: 15px;
  display: inline-block;
}
@media (max-width: 900.98px) {
  .c-item__desc {
    font-size: 16px;
  }
}
.c-item__media {
  overflow: hidden;
}
.c-item__media img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 230px;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-item__media.half img {
  width: 50%;
  margin: 0 auto;
}
.c-item__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.c-item__gallery .c-item__media {
  border-radius: 10px;
  background: #fff;
}
.c-item__captionGroup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 6px;
}
.c-item__caption {
  font-size: 0.8125rem;
  color: #444;
}
.c-item__tag {
  margin-left: auto;
  padding: 6px 8px;
  background: #1D50A2;
  color: white;
  border-radius: 5px;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.2;
  min-width: 72px;
  text-align: center;
}

/* 備考 */
.c-itemNotes {
  margin-top: 16px;
  color: #030303;
  font-size: clamp(0.8125rem, 0.7rem + 0.25vw, 0.9375rem);
  line-height: 1.7;
}
.c-itemNotes li {
  list-style: "※ ";
}

/* グリッド全体 */
.c-flowGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.2vw, 28px);
  margin-top: 72px;
}
@media (max-width: 900.98px) {
  .c-flowGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 619.98px) {
  .c-flowGrid {
    grid-template-columns: 1fr;
  }
}

/* 1ステップのカード */
.c-flowCard {
  position: relative;
  background: #fff;
  border: 3px solid #1D50A2;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  text-align: center;
  font-family: "Murecho", sans-serif;
  /* STEPバー（上部の濃青帯） */
  /* 中身ラッパー */
  /* アイコン画像 */
  /* 見出し／本文 */
  /* PC時のみ、最後以外のカードに右向き矢印 */
}
.c-flowCard__stepBar {
  background: #1D50A2;
  color: #FFEF0F;
  font-weight: 500;
  font-size: clamp(0.9rem, 0.78rem + 0.35vw, 1.05rem);
  letter-spacing: 0.04em;
  padding: 0 10px 12px 10px;
  border-radius: 15px 15px 0 0;
}
.c-flowCard__stepBar span {
  font-size: 28px;
  margin-left: 5px;
}
.c-flowCard__body {
  padding: 28px 20px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  row-gap: clamp(12px, 1.5vw, 16px);
}
.c-flowCard__media {
  margin-inline: auto;
  max-width: min(220px, 80%);
}
.c-flowCard__media img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-flowCard__title {
  font-weight: 600;
  font-size: clamp(1.125rem, 0.679rem + 0.93vw, 1.375rem);
  line-height: 1.35;
  color: #111;
}
.c-flowCard__text {
  text-align: left;
  margin-inline: auto;
  max-width: 90%;
  font-size: clamp(0.9rem, 0.82rem + 0.3vw, 1rem);
  line-height: 1.9;
  color: #030303;
}
@media (min-width: 769px) {
  .c-flowCard:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 14px solid #1D50A2;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.12));
  }
}

/* =========================
   CTAセクション
   ========================= */
.c-cta {
  background: #1D50A2;
  padding: 10px 0 0 0;
  width: 100%;
  color: #fff;
  font-family: "Murecho", sans-serif;
  margin: 0 0 50px 0;
  /* 左右のイラスト */
  /* CTAボタン */
}
@media (max-width: 900.98px) {
  .c-cta {
    padding-bottom: 120px;
    padding-top: 50px;
  }
}
.c-cta .c-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4vw, 80px);
  position: relative;
}
@media (max-width: 900.98px) {
  .c-cta .c-cta__inner {
    text-align: center;
    gap: 24px;
    display: block;
    padding: 0 15px;
  }
}
.c-cta .c-cta__btnWrap p {
  margin-top: 10px;
  text-align: center;
}
.c-cta .c-cta__btnWrap p span.company-name {
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 619.98px) {
  .c-cta .c-cta__btnWrap p span.company-name {
    font-weight: 400;
  }
}
@media (max-width: 619.98px) {
  .c-cta .c-cta__btnWrap p span.company-tel {
    font-size: 24px;
  }
}
.c-cta .c-cta__img {
  width: clamp(120px, 18vw, 180px);
  height: auto;
}
.c-cta .c-cta__img img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 900.98px) {
  .c-cta .c-cta__img img {
    position: absolute;
    width: 100px;
    bottom: -120px;
  }
}
@media (max-width: 900.98px) {
  .c-cta .c-cta__img:first-child img {
    left: 15%;
  }
}
@media (max-width: 900.98px) {
  .c-cta .c-cta__img:last-child img {
    right: 15%;
  }
}
.c-cta .c-cta__btn {
  display: inline-block;
  background: linear-gradient(180deg, #FF8C40 0%, #FF6B00 100%);
  color: #fff;
  font-weight: 700;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.125rem);
  text-decoration: none;
  text-align: center;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  width: 450px;
  padding: 18px 20px;
  position: relative;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  font-size: 24px;
}
@media (max-width: 619.98px) {
  .c-cta .c-cta__btn {
    width: 100%;
  }
}
.c-cta .c-cta__btn::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  background-image: url(../img/arrow-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 8px;
}
.c-cta .c-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.c-cta .c-cta__btn:hover::after {
  transform: translate(5px, -50%);
}

/* CTAボタン */
.c-ctaBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 42px auto 0;
  padding: 18px 28px;
  min-width: min(90%, 440px);
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  background: linear-gradient(180deg, #ffa154 0%, #ef6b2e 100%);
  transition: transform 0.15s ease, filter 0.15s ease;
  min-height: 100px;
  position: relative;
}
@media (max-width: 900.98px) {
  .c-ctaBtn {
    min-height: 80px;
    min-width: 100%;
    font-size: 22px;
    margin-top: 24px;
  }
}
.c-ctaBtn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}
.c-ctaBtn::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  background-image: url(../img/arrow-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 8px;
}

/* =========================
   アンカーリンクボタン群
   ========================= */
.c-linkGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 24px);
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
.c-linkGrid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 900.98px) {
  .c-linkGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-linkGrid3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 619.98px) {
  .c-linkGrid {
    grid-template-columns: 1fr;
  }
  .c-linkGrid3 {
    grid-template-columns: 1fr;
  }
}

.c-section--bg-light {
  background: #F0F3F5;
}

/* =========================
   ボタン本体
   ========================= */
.c-linkBtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #FFEF0F;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  padding: clamp(16px, 2vw, 22px) clamp(10px, 2vw, 18px);
  text-decoration: none;
  transition: all 0.25s ease;
  font-family: "Murecho", sans-serif;
  position: relative;
}
.c-linkBtn__text {
  font-weight: 500;
  font-size: clamp(0.875rem, 0.75rem + 0.4vw, 1rem);
  color: #111;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-bottom: 4px;
}
@media (max-width: 900.98px) {
  .c-linkBtn__text {
    font-size: 16px;
  }
}
.c-linkBtn__title {
  color: #1D50A2;
  font-weight: 600;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  margin-bottom: 14px;
}
@media (max-width: 900.98px) {
  .c-linkBtn__title {
    font-size: 21px;
  }
}
.c-linkBtn__icon {
  background-image: url(../img/arrow-down.png);
  width: 20px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}
.c-linkBtn__border {
  width: 100%;
  border-bottom: 1px dotted #999;
  margin-bottom: 10px;
}

/* ===============================
   共通フォント設定
   =============================== */
body, .c-tier, .c-kvRow, .c-noteList, .c-speech, .c-ctaBtn {
  font-family: "Murecho", sans-serif;
}

.pc_br {
  display: block;
}
@media (max-width: 900.98px) {
  .pc_br {
    display: none;
  }
}

.sp_br {
  display: none;
}
@media (max-width: 900.98px) {
  .sp_br {
    display: block;
  }
}

img {
  width: 100%;
}

.text-center {
  text-align: center;
  color: #606060;
}

/* =========================
   トップへ戻るボタン
   ========================= */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(180deg, #4F77CC 0%, #254B9E 100%);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.back-to-top:hover {
  transform: translateY(-4px);
  filter: brightness(1.1);
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.acc-toggle-wrap {
  text-align: center;
  margin: 20px 0 12px auto;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px 10px 0 0;
  background: white;
  border: 2px solid #E8E9F6;
  position: absolute;
  bottom: -12px;
  right: 30px;
}
@media (max-width: 900.98px) {
  .acc-toggle-wrap {
    right: 0%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.acc-toggle-wrap img {
  width: 17px;
  height: auto;
  margin-top: 5px;
  position: absolute;
  right: 40px;
}

.acc-toggle-btn {
  gap: 8px;
  padding: 12px 0;
  font-weight: 800;
  cursor: pointer;
  color: #1D50A2;
  width: 100%;
}

/* アコーディオン（高さアニメーション） */
.acc-panel {
  overflow: hidden;
  max-height: 0; /* 初期は閉じる */
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.3s ease;
}

.acc-panel.is-open {
  /* max-height は JS で scrollHeight を設定し、開き切ったら auto 相当に */
  opacity: 1;
}/*# sourceMappingURL=style.css.map */