@charset "UTF-8";
/* =========================================
   Service Audit ─ サイト診断・改善サポート
   ========================================= */
.page-service-audit {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--prada-navy, #061e29);
  background: #fff;
  overflow-x: hidden;
}
.page-service-audit main {
  padding-top: 80px;
}
.page-service-audit {
  /* ─────────── 共通: セクション基本 ─────────── */
}
.page-service-audit section {
  padding: 60px 20px;
  position: relative;
}
@media (min-width: 900px) {
  .page-service-audit section {
    padding: 120px 40px;
  }
}
.page-service-audit {
  /* スクロールアニメーション基本 */
}
.page-service-audit [data-scroll] {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.page-service-audit [data-scroll].visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.page-service-audit {
  /* ─────────────── FV（他ページ共通HERO構成：背景画像＋ゴーストタイポ） ─────────────── */
}
.page-service-audit .audit-fv {
  position: relative;
  overflow: hidden;
  min-height: min(52vw, 560px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(90px, 12vw, 140px) clamp(24px, 6vw, 48px) clamp(50px, 7vw, 80px);
  background: var(--offwhite, #f3f4f4);
}
@media (max-width: 899px) {
  .page-service-audit .audit-fv {
    min-height: min(100vw, 520px);
  }
}
.page-service-audit .audit-fv {
  /* タブレット帯：中身に対して箱が大きすぎるため上下を圧縮 */
}
@media (min-width: 900px) and (max-width: 1199px) {
  .page-service-audit .audit-fv {
    min-height: min(46vw, 520px);
    padding-top: clamp(60px, 8vw, 110px);
    padding-bottom: clamp(36px, 5vw, 64px);
  }
}
.page-service-audit .audit-fv__ghost {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: clamp(70px, 9vw, 110px);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(6rem, 18vw, 11rem);
  letter-spacing: 0.02em;
  line-height: 1;
  color: rgba(6, 30, 41, 0.05);
  pointer-events: none;
  white-space: nowrap;
  margin: 0;
}
.page-service-audit .audit-fv__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-image: url("../images/audit-fv-heatmap.webp");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  mask-image: -webkit-gradient(linear, right top, left top, color-stop(65%, rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  mask-image: linear-gradient(to left, rgb(0, 0, 0) 65%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, color-stop(65%, rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(to left, rgb(0, 0, 0) 65%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 899px) {
  .page-service-audit .audit-fv__bg {
    width: auto;
    aspect-ratio: 4/5;
    height: 100%;
    top: 0;
    bottom: 0;
    background-image: url("../images/audit-fv-heatmap-sp.webp");
    background-position: center bottom;
    mask-image: -webkit-gradient(linear, right top, left top, color-stop(70%, rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
    mask-image: linear-gradient(to left, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: -webkit-gradient(linear, right top, left top, color-stop(70%, rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
    -webkit-mask-image: linear-gradient(to left, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
  }
}
.page-service-audit .audit-fv {
  /* テキスト側だけをふわっと明るくするスクリム */
}
.page-service-audit .audit-fv::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, rgba(243, 244, 244, 0.92)), color-stop(55%, rgba(243, 244, 244, 0.4)), color-stop(75%, rgba(243, 244, 244, 0)));
  background: linear-gradient(to right, rgba(243, 244, 244, 0.92) 30%, rgba(243, 244, 244, 0.4) 55%, rgba(243, 244, 244, 0) 75%);
}
@media (max-width: 899px) {
  .page-service-audit .audit-fv::after {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(243, 244, 244, 0.92)), color-stop(45%, rgba(243, 244, 244, 0.45)), color-stop(70%, rgba(243, 244, 244, 0)));
    background: linear-gradient(to bottom, rgba(243, 244, 244, 0.92) 10%, rgba(243, 244, 244, 0.45) 45%, rgba(243, 244, 244, 0) 70%);
  }
}
.page-service-audit .audit-fv__inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.page-service-audit .audit-fv__en {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  color: var(--prada-navy, #061e29);
  margin: 0 0 16px;
}
.page-service-audit .audit-fv__label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--prada-mint, #5f9498);
  margin: 0 0 26px;
}
.page-service-audit .audit-fv__tagline {
  font-family: "Klee One", serif;
  font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  line-height: 2;
  color: var(--prada-navy, #061e29);
  margin: 0;
}
.page-service-audit {
  /* ─────────────── PROBLEM ─────────────── */
}
.page-service-audit .audit-problem {
  background: var(--offwhite, #f3f4f4);
}
.page-service-audit .audit-problem__cards {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .page-service-audit .audit-problem__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .page-service-audit .audit-problem__cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.page-service-audit .audit-problem__card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  -webkit-box-shadow: 0 2px 12px rgba(6, 30, 41, 0.04);
          box-shadow: 0 2px 12px rgba(6, 30, 41, 0.04);
  -webkit-transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
}
.page-service-audit .audit-problem__card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 24px rgba(6, 30, 41, 0.1);
          box-shadow: 0 8px 24px rgba(6, 30, 41, 0.1);
}
.page-service-audit .audit-problem__card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--offwhite, #f3f4f4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-service-audit .audit-problem__card-icon i,
.page-service-audit .audit-problem__card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--prada-mint, #5f9498);
  stroke-width: 1.5;
}
.page-service-audit .audit-problem__card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--prada-navy, #061e29);
}
.page-service-audit .audit-problem__card-text {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(6, 30, 41, 0.88);
}
.page-service-audit {
  /* ─────────────── ABOUT HEATMAP ─────────────── */
}
.page-service-audit .audit-heatmap {
  background: #fff;
  /* ★追加：インタラクティブ体験エリア（カード説明の後） */
}
.page-service-audit .audit-heatmap__interactive {
  max-width: 1000px;
  margin: 60px auto 0;
  /* SP: 端に親指用の余白を確保（canvas上はスクロール不可のため） */
}
@media (max-width: 899px) {
  .page-service-audit .audit-heatmap__interactive {
    margin-left: 16px;
    margin-right: 16px;
  }
}
.page-service-audit .audit-heatmap__interactive {
  background: var(--offwhite, #f3f4f4);
  border: 1px solid rgba(95, 148, 152, 0.2);
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(6, 30, 41, 0.05);
          box-shadow: 0 4px 20px rgba(6, 30, 41, 0.05);
}
.page-service-audit .audit-heatmap__interactive .interactive-guide {
  text-align: center;
  padding: 28px 24px 26px;
  background: #fff;
  border-bottom: 1px solid rgba(95, 148, 152, 0.15);
}
@media (min-width: 900px) {
  .page-service-audit .audit-heatmap__interactive .interactive-guide {
    padding: 36px 40px 32px;
  }
}
.page-service-audit .audit-heatmap__interactive .interactive-guide .guide-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--prada-blue, #1e546c);
  margin-bottom: 8px;
}
.page-service-audit .audit-heatmap__interactive .interactive-guide .guide-label::before, .page-service-audit .audit-heatmap__interactive .interactive-guide .guide-label::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--prada-mint, #5f9498);
}
.page-service-audit .audit-heatmap__interactive .interactive-guide .guide-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.15rem, 2.6vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: var(--prada-navy, #061e29);
}
.page-service-audit .audit-heatmap__interactive .interactive-guide .guide-lead {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(6, 30, 41, 0.88);
  margin-bottom: 14px;
}
.page-service-audit .audit-heatmap__interactive .interactive-guide {
  /* ヒートマップ凡例（デモの実パレットと同じ色順） */
}
.page-service-audit .audit-heatmap__interactive .interactive-guide .guide-legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.page-service-audit .audit-heatmap__interactive .interactive-guide .guide-legend__bar {
  width: clamp(120px, 30vw, 220px);
  height: 10px;
  border-radius: 999px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(60, 130, 220)), color-stop(rgb(40, 190, 120)), color-stop(rgb(255, 205, 40)), to(rgb(210, 20, 58)));
  background: linear-gradient(to right, rgb(60, 130, 220), rgb(40, 190, 120), rgb(255, 205, 40), rgb(210, 20, 58));
}
.page-service-audit .audit-heatmap__interactive .interactive-guide .guide-legend__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(6, 30, 41, 0.75);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.page-service-audit .audit-heatmap__interactive .interactive-guide {
  /* 操作の流れ3チップ */
}
.page-service-audit .audit-heatmap__interactive .interactive-guide .guide-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 700px) {
  .page-service-audit .audit-heatmap__interactive .interactive-guide .guide-steps {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
  }
}
.page-service-audit .audit-heatmap__interactive .interactive-guide .guide-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: var(--offwhite, #f3f4f4);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--prada-navy, #061e29);
}
.page-service-audit .audit-heatmap__interactive .interactive-guide .guide-step__num {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--prada-mint, #5f9498);
}
.page-service-audit .audit-heatmap__interactive .interactive-guide .guide-arrow {
  color: var(--prada-mint, #5f9498);
  padding: 0 12px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (min-width: 700px) {
  .page-service-audit .audit-heatmap__interactive .interactive-guide .guide-arrow {
    -webkit-transform: none;
            transform: none;
  }
}
.page-service-audit .audit-heatmap__interactive {
  /* ガイド下のヒントピル（デモへの導線・画像には重ねない） */
}
.page-service-audit .audit-heatmap__interactive .interactive-guide .demo-hint {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 24px;
  background: var(--prada-navy, #061e29);
  color: #fff;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  -webkit-box-shadow: 0 4px 16px rgba(6, 30, 41, 0.25);
          box-shadow: 0 4px 16px rgba(6, 30, 41, 0.25);
  -webkit-animation: demoHintFloat 2.4s ease-in-out infinite;
          animation: demoHintFloat 2.4s ease-in-out infinite;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.page-service-audit .audit-heatmap__interactive .interactive-guide .demo-hint.is-hidden {
  opacity: 0;
}
.page-service-audit .audit-heatmap__interactive .interactive-guide .demo-hint i,
.page-service-audit .audit-heatmap__interactive .interactive-guide .demo-hint svg {
  width: 16px;
  height: 16px;
}
.page-service-audit .audit-heatmap__interactive .interactive-canvas-wrap {
  /* 背景に架空サイト（子ども英会話スクール）を敷き、
     触れた場所だけcanvasの熱色が重なる方式 */
  width: 100%;
  aspect-ratio: 2/3;
  max-height: 640px;
  background-color: #fff;
  background-image: url("../images/audit-demo-site-sp.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
@media (min-width: 900px) {
  .page-service-audit .audit-heatmap__interactive .interactive-canvas-wrap {
    aspect-ratio: 3/2;
    max-height: none;
    background-image: url("../images/audit-demo-site.jpg");
  }
}
.page-service-audit .audit-heatmap__interactive .interactive-canvas-wrap canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  cursor: crosshair;
  z-index: 10;
}
.page-service-audit {
  /* ─────────────── FLOW（シーディア型タイムライン） ─────────────── */
}
.page-service-audit .audit-flow {
  background: var(--offwhite, #f3f4f4);
}
.page-service-audit .audit-flow__steps {
  max-width: 720px;
  margin: 60px auto 0;
  list-style: none;
  padding: 0;
  /* SPでは幅を絞って左右バランスを取る */
}
@media (max-width: 899px) {
  .page-service-audit .audit-flow__steps {
    max-width: 560px;
  }
}
.page-service-audit .audit-flow__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding-bottom: 40px;
}
@media (min-width: 900px) {
  .page-service-audit .audit-flow__step {
    gap: 32px;
    padding-bottom: 56px;
  }
}
.page-service-audit .audit-flow__step:last-child {
  padding-bottom: 0;
}
.page-service-audit .audit-flow__step {
  /* 縦つなぎ線（最後のステップには出さない） */
}
.page-service-audit .audit-flow__step:not(:last-child) .audit-flow__step-visual::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 1px;
  margin-top: 10px;
  background: var(--prada-mint, #5f9498);
  opacity: 0.5;
}
.page-service-audit .audit-flow__step {
  /* 左列：丸枠アイコン＋つなぎ線 */
}
.page-service-audit .audit-flow__step-visual {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 56px;
          flex: 0 0 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 900px) {
  .page-service-audit .audit-flow__step-visual {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 72px;
            flex: 0 0 72px;
  }
}
.page-service-audit .audit-flow__step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--prada-mint, #5f9498);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 900px) {
  .page-service-audit .audit-flow__step-icon {
    width: 72px;
    height: 72px;
  }
}
.page-service-audit .audit-flow__step-icon i,
.page-service-audit .audit-flow__step-icon svg {
  width: 24px;
  height: 24px;
  color: var(--prada-blue, #1e546c);
  stroke-width: 1.5;
}
@media (min-width: 900px) {
  .page-service-audit .audit-flow__step-icon i,
  .page-service-audit .audit-flow__step-icon svg {
    width: 30px;
    height: 30px;
  }
}
.page-service-audit .audit-flow__step-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding-top: 4px;
}
@media (min-width: 900px) {
  .page-service-audit .audit-flow__step-body {
    padding-top: 10px;
  }
}
.page-service-audit .audit-flow__step-num {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--prada-blue, #1e546c);
  margin-bottom: 6px;
}
@media (min-width: 900px) {
  .page-service-audit .audit-flow__step-num {
    font-size: 1rem;
  }
}
.page-service-audit .audit-flow__step-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--prada-navy, #061e29);
  margin-bottom: 8px;
}
@media (min-width: 900px) {
  .page-service-audit .audit-flow__step-title {
    font-size: 1.25rem;
  }
}
.page-service-audit .audit-flow__step-text {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(6, 30, 41, 0.88);
}
.page-service-audit {
  /* ─────────────── REPORT SAMPLE ─────────────── */
}
.page-service-audit .audit-report {
  background: #fff;
}
.page-service-audit .audit-report__visual {
  max-width: 900px;
  margin: 60px auto 0;
  padding: 20px;
  background: var(--offwhite, #f3f4f4);
  border-radius: 8px;
}
.page-service-audit .audit-report__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  -webkit-box-shadow: 0 8px 30px rgba(6, 30, 41, 0.12);
          box-shadow: 0 8px 30px rgba(6, 30, 41, 0.12);
}
.page-service-audit {
  /* ─────────────── FEATURES（12項目タブ） ─────────────── */
}
.page-service-audit .audit-features {
  background: var(--offwhite, #f3f4f4);
}
.page-service-audit .audit-features__tabs {
  max-width: 1080px;
  margin: 0 auto 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1px;
  background: rgba(95, 148, 152, 0.2);
  padding: 1px;
  border-radius: 4px;
}
@media (min-width: 900px) {
  .page-service-audit .audit-features__tabs {
    margin-bottom: 48px;
  }
}
.page-service-audit .audit-features__tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 16px 12px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: "Noto Serif JP", serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(6, 30, 41, 0.6);
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 900px) {
  .page-service-audit .audit-features__tab {
    padding: 18px 20px;
    font-size: 0.98rem;
  }
}
.page-service-audit .audit-features__tab.is-active {
  background: var(--prada-navy, #061e29);
  color: #fff;
}
.page-service-audit .audit-features__tab-en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  margin-bottom: 4px;
  color: var(--prada-mint, #5f9498);
}
.page-service-audit .audit-features__tab.is-active .audit-features__tab-en {
  color: rgba(255, 255, 255, 0.7);
}
.page-service-audit .audit-features__content {
  max-width: 1080px;
  margin: 0 auto;
}
.page-service-audit .audit-features__content[hidden] {
  display: none;
}
.page-service-audit .audit-features__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media (min-width: 900px) {
  .page-service-audit .audit-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.page-service-audit .audit-features__item {
  background: #fff;
  border: 1px solid rgba(95, 148, 152, 0.15);
  border-radius: 10px;
  overflow: hidden;
}
.page-service-audit .audit-features__item-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}
.page-service-audit .audit-features__item-summary::-webkit-details-marker {
  display: none;
}
@media (min-width: 900px) {
  .page-service-audit .audit-features__item-summary {
    cursor: default;
    padding: 22px 22px 0;
  }
}
.page-service-audit .audit-features__item-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--prada-mint, #5f9498);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 38px;
}
.page-service-audit .audit-features__item-title {
  font-family: "Noto Serif JP", serif;
  font-size: 0.95rem;
  font-weight: 500;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.page-service-audit .audit-features__item-icon {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(95, 148, 152, 0.4);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--prada-mint, #5f9498);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 900px) {
  .page-service-audit .audit-features__item-icon {
    display: none;
  }
}
.page-service-audit .audit-features__item[open] .audit-features__item-icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.page-service-audit .audit-features__item-body {
  padding: 0 20px 20px;
}
@media (min-width: 900px) {
  .page-service-audit .audit-features__item-body {
    display: block !important;
    padding: 14px 22px 24px;
  }
}
.page-service-audit .audit-features__item-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--offwhite, #f3f4f4);
  border: 1px solid rgba(95, 148, 152, 0.15);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-service-audit .audit-features__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-service-audit .audit-features__item-img-placeholder {
  font-size: 0.72rem;
  color: rgba(6, 30, 41, 0.35);
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.6;
}
.page-service-audit .audit-features__item-lead {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--prada-blue, #1e546c);
  margin-bottom: 6px;
}
.page-service-audit .audit-features__item-text {
  font-size: 0.84rem;
  color: rgba(6, 30, 41, 0.78);
  line-height: 1.8;
}
.page-service-audit .audit-features__expand-btn {
  width: 100%;
  padding: 28px 20px;
  background: #fff;
  border: 1px dashed var(--prada-mint, #5f9498);
  border-radius: 8px;
  cursor: pointer;
  font-family: "Noto Serif JP", serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--prada-blue, #1e546c);
  letter-spacing: 0.06em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-service-audit .audit-features__expand-btn:hover {
  background: #fbfbfb;
}
.page-service-audit .audit-features__expand-btn small {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: var(--prada-mint, #5f9498);
  margin-bottom: 6px;
}
.page-service-audit .audit-features__expand-note {
  margin-top: 16px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(6, 30, 41, 0.55);
  line-height: 1.8;
}
.page-service-audit .audit-features__back-wrap {
  margin-top: 32px;
  text-align: center;
}
.page-service-audit .audit-features__back-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--prada-navy, #061e29);
  color: var(--prada-navy, #061e29);
  font-family: "Noto Serif JP", serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: 999px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-service-audit .audit-features__back-btn:hover {
  background: var(--prada-navy, #061e29);
  color: #fff;
}
.page-service-audit .audit-features__back-btn i,
.page-service-audit .audit-features__back-btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
}
.page-service-audit {
  /* ─────────────── CASE STUDY（BEFORE/AFTER） ─────────────── */
}
.page-service-audit .audit-case {
  background: #fff;
}
.page-service-audit .audit-case__slider {
  max-width: 900px;
  margin: 0 auto 28px;
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(95, 148, 152, 0.2);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-touch-action: none;
      touch-action: none;
}
.page-service-audit .audit-case__layer {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-service-audit .audit-case__layer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-service-audit .audit-case__layer--before {
  background: #e6e6e6;
}
.page-service-audit .audit-case__layer--after {
  background: linear-gradient(135deg, #dde8ea, #eef3f4);
  clip-path: inset(0 0 0 var(--reveal, 50%));
}
.page-service-audit .audit-case__layer-label {
  position: absolute;
  top: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 2px;
}
.page-service-audit .audit-case__layer--before .audit-case__layer-label {
  left: 18px;
  color: rgba(6, 30, 41, 0.6);
}
.page-service-audit .audit-case__layer--after .audit-case__layer-label {
  right: 18px;
  color: var(--prada-blue, #1e546c);
  border: 1px solid var(--prada-blue, #1e546c);
}
.page-service-audit .audit-case__layer-content {
  text-align: center;
  color: rgba(6, 30, 41, 0.4);
  font-family: "Noto Serif JP", serif;
  font-size: 0.92rem;
  padding: 30px;
}
.page-service-audit .audit-case__layer-content small {
  display: block;
  font-size: 0.72rem;
  margin-top: 8px;
  font-family: "Noto Sans JP", sans-serif;
}
.page-service-audit .audit-case__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  -webkit-box-shadow: 0 0 0 1px rgba(6, 30, 41, 0.2);
          box-shadow: 0 0 0 1px rgba(6, 30, 41, 0.2);
  z-index: 10;
  cursor: ew-resize;
}
.page-service-audit .audit-case__handle-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--prada-navy, #061e29);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
}
.page-service-audit .audit-case__note {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(6, 30, 41, 0.72);
}
.page-service-audit {
  /* ─────────────── RESULTS（成果メトリクス） ─────────────── */
}
.page-service-audit .audit-result {
  background: var(--offwhite, #f3f4f4);
}
.page-service-audit .audit-result__metrics {
  max-width: 900px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.page-service-audit .audit-result__metric {
  background: #fff;
  border: 1px solid rgba(95, 148, 152, 0.15);
  border-radius: 8px;
  padding: 20px 22px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: left;
  width: 100%;
  font-family: inherit;
}
@media (min-width: 900px) {
  .page-service-audit .audit-result__metric {
    padding: 24px 28px;
  }
}
.page-service-audit .audit-result__metric:hover {
  border-color: var(--prada-mint, #5f9498);
}
.page-service-audit .audit-result__metric.is-active {
  border-color: var(--prada-blue, #1e546c);
}
.page-service-audit .audit-result__metric-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.page-service-audit .audit-result__metric-head .audit-result__metric-toggle {
  margin-left: 4px;
  width: 30px;
  height: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--prada-mint, #5f9498);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  background: #fff;
  -webkit-transition: background 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 900px) {
  .page-service-audit .audit-result__metric-head {
    gap: 18px;
  }
}
.page-service-audit .audit-result__metric-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--prada-mint, #5f9498);
  width: 32px;
}
.page-service-audit .audit-result__metric-label {
  font-family: "Noto Serif JP", serif;
  font-size: 0.95rem;
  font-weight: 500;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 900px) {
  .page-service-audit .audit-result__metric-label {
    font-size: 1rem;
  }
}
.page-service-audit .audit-result__metric-arrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--prada-blue, #1e546c);
  padding: 5px 12px;
  border: 1px solid var(--prada-blue, #1e546c);
  border-radius: 2px;
  white-space: nowrap;
}
.page-service-audit .audit-result__metric-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page-service-audit .audit-result__metric-track {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 140px;
  height: 6px;
  background: rgba(95, 148, 152, 0.15);
  border-radius: 3px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-service-audit .audit-result__metric-fill-before {
  height: 100%;
  background: rgba(6, 30, 41, 0.25);
}
.page-service-audit .audit-result__metric-fill-after {
  height: 100%;
  background: var(--prada-blue, #1e546c);
}
.page-service-audit .audit-result__metric-values {
  font-size: 0.82rem;
  color: rgba(6, 30, 41, 0.85);
  min-width: 140px;
  text-align: right;
}
.page-service-audit .audit-result__metric-values .after {
  color: var(--prada-blue, #1e546c);
  font-weight: 600;
}
.page-service-audit .audit-result__metric-detail {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(95, 148, 152, 0.15);
  font-size: 0.86rem;
  line-height: 1.85;
  color: rgba(6, 30, 41, 0.78);
  display: none;
}
.page-service-audit .audit-result__metric.is-active .audit-result__metric-detail {
  display: block;
}
.page-service-audit .audit-result__metric.is-active .audit-result__metric-toggle {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: var(--prada-blue, #1e546c);
  color: #fff;
}
.page-service-audit .audit-result__sample-note {
  max-width: 900px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(6, 30, 41, 0.72);
}
.page-service-audit {
  /* ─────────────── PRICE（矢印バナー型・A/B対等） ─────────────── */
}
.page-service-audit .audit-price {
  background: #fff;
}
.page-service-audit .audit-price__plans {
  max-width: 1000px;
  margin: 0 auto 48px;
  /* 1カラム時に横へ伸びすぎないように */
}
@media (max-width: 899px) {
  .page-service-audit .audit-price__plans {
    max-width: 560px;
  }
}
.page-service-audit .audit-price__plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .page-service-audit .audit-price__plans {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
}
.page-service-audit .audit-price__plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* ペナント型バナー：下辺全体が中央へ下がる浅いV字 */
}
.page-service-audit .audit-price__plan-banner {
  --arrow: 22px;
  position: relative;
  z-index: 1;
  padding: 20px 20px calc(16px + var(--arrow));
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--arrow)), 50% 100%, 0 calc(100% - var(--arrow)));
}
.page-service-audit .audit-price__plan {
  /* A：mintパールグラデ×navy文字（radialハイライト＋照り返し） */
}
.page-service-audit .audit-price__plan--a .audit-price__plan-banner {
  background: radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 55%), radial-gradient(circle at 78% 115%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 45%), linear-gradient(135deg, #7bacb1 0%, #5f9498 100%);
}
.page-service-audit .audit-price__plan--a .audit-price__plan-label,
.page-service-audit .audit-price__plan--a .audit-price__plan-name {
  color: var(--prada-navy, #061e29);
}
.page-service-audit .audit-price__plan {
  /* B：navyパールグラデ×白文字（radialハイライト＋照り返し） */
}
.page-service-audit .audit-price__plan--b .audit-price__plan-banner {
  background: radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 55%), radial-gradient(circle at 78% 115%, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 45%), linear-gradient(135deg, #26607b 0%, #1e546c 60%, #143f54 100%);
}
.page-service-audit .audit-price__plan--b .audit-price__plan-label,
.page-service-audit .audit-price__plan--b .audit-price__plan-name {
  color: #fff;
}
.page-service-audit .audit-price__plan-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  margin-bottom: 4px;
}
.page-service-audit .audit-price__plan-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.page-service-audit .audit-price__plan {
  /* offwhiteカラムカード */
}
.page-service-audit .audit-price__plan-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--offwhite, #f3f4f4);
  margin-top: -22px;
  padding: 50px 24px 32px;
}
@media (min-width: 900px) {
  .page-service-audit .audit-price__plan-body {
    padding: 58px 32px 40px;
  }
}
.page-service-audit .audit-price__plan-sub {
  font-size: 0.88rem;
  text-align: center;
  color: var(--prada-blue, #1e546c);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.page-service-audit .audit-price__plan-amount {
  text-align: center;
  margin-bottom: 10px;
}
.page-service-audit .audit-price__plan-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--prada-navy, #061e29);
}
@media (min-width: 900px) {
  .page-service-audit .audit-price__plan-num {
    font-size: 3.2rem;
  }
}
.page-service-audit .audit-price__plan-tax {
  font-size: 0.76rem;
  color: rgba(6, 30, 41, 0.6);
  margin-left: 6px;
}
.page-service-audit .audit-price__plan {
  /* 行＝小ラベル→値（中央揃え縦積み） */
}
.page-service-audit .audit-price__plan-rows {
  margin: 0 0 28px;
}
.page-service-audit .audit-price__plan-rows > div {
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid rgba(95, 148, 152, 0.35);
}
.page-service-audit .audit-price__plan-rows dt {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: rgba(6, 30, 41, 0.6);
  margin-bottom: 6px;
}
.page-service-audit .audit-price__plan-rows dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--prada-navy, #061e29);
}
.page-service-audit .audit-price__plan {
  /* ボタンは両プラン共通のbtn-cinematic（差をつけない） */
}
.page-service-audit .audit-price__plan-cta {
  margin-top: auto;
  text-align: center;
}
.page-service-audit .audit-price__plan-cta .btn-cinematic {
  min-width: auto;
  width: 100%;
  max-width: 320px;
}
.page-service-audit .audit-price__addon {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 24px;
  background: var(--offwhite, #f3f4f4);
  border-radius: 12px;
}
@media (min-width: 900px) {
  .page-service-audit .audit-price__addon {
    padding: 48px 60px;
  }
}
.page-service-audit .audit-price__addon-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--prada-navy, #061e29);
  text-align: center;
}
.page-service-audit .audit-price__addon-lead {
  font-size: 0.88rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 24px;
  color: rgba(6, 30, 41, 0.88);
}
.page-service-audit .audit-price__addon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 600px) {
  .page-service-audit .audit-price__addon-list {
    grid-template-columns: repeat(2, auto);
    -webkit-column-gap: 48px;
       -moz-column-gap: 48px;
            column-gap: 48px;
  }
}
.page-service-audit .audit-price__addon-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.6;
}
.page-service-audit .audit-price__addon-list li i,
.page-service-audit .audit-price__addon-list li svg {
  width: 18px;
  height: 18px;
  color: var(--prada-mint, #5f9498);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  stroke-width: 2;
}
.page-service-audit {
  /* ─────────────── FAQ ─────────────── */
}
.page-service-audit .audit-faq {
  background: var(--offwhite, #f3f4f4);
}
.page-service-audit .audit-faq__list {
  max-width: 800px;
  margin: 60px auto 0;
}
.page-service-audit {
  /* FAQアコーディオン（Serviceページと同仕様） */
}
.page-service-audit .faq-item {
  border: 1px solid var(--offwhite, #f3f4f4);
  background: #ffffff;
  margin-bottom: 12px;
}
.page-service-audit .faq-item__q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.95rem, 1.7vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--prada-navy, #061e29);
  text-align: left;
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.page-service-audit .faq-item__q:hover {
  color: var(--prada-red, #d2143a);
}
.page-service-audit .faq-item__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: var(--prada-mint, #5f9498);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq-item__q.is-active .page-service-audit .faq-item__icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.page-service-audit .faq-item__a {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}
.page-service-audit .faq-item__a p {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  line-height: 2;
  color: var(--prada-navy, #061e29);
  border-top: 1px solid var(--offwhite, #f3f4f4);
  padding: 16px 20px 20px;
  margin: 0;
}
.page-service-audit {
  /* FAQクロージング：最後のひと押し */
}
.page-service-audit .audit-faq__closing {
  margin-top: 56px;
  text-align: center;
}
.page-service-audit .audit-faq__closing-text {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--prada-navy, #061e29);
  margin-bottom: 28px;
}
.page-service-audit {
  /* 中央揃え説明文の折り返し最適化（非対応ブラウザでは無視される） */
}
.page-service-audit .desc-text,
.page-service-audit .guide-lead,
.page-service-audit .audit-price__addon-lead,
.page-service-audit .audit-faq__closing-text {
  text-wrap: balance;
}
.page-service-audit {
  /* ─────────────── CTA ─────────────── */
  /* ─────────────── 簡易CONTACT（Serviceページと同仕様） ─────────────── */
}
.page-service-audit .service-contact {
  background: var(--prada-navy, #061e29);
  padding: clamp(40px, 5vw, 60px) 0 clamp(70px, 10vw, 110px);
}
.page-service-audit .service-contact__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 48px);
}
.page-service-audit .service-contact__intro {
  text-align: center;
}
.page-service-audit .service-contact__intro .section-header {
  margin-top: 0;
  padding-top: 0;
}
.page-service-audit .section-header--dark .section-en {
  color: var(--offwhite, #f3f4f4);
}
.page-service-audit .service-contact__lead {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  line-height: 2.1;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  margin: 18px 0 0;
}
.page-service-audit .service-contact__form-wrap {
  margin-top: clamp(36px, 5vw, 48px);
}
.page-service-audit .service-contact__form label {
  display: block;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 8px;
  text-align: left;
}
.page-service-audit .service-contact__form input,
.page-service-audit .service-contact__form select,
.page-service-audit .service-contact__form textarea {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  padding: 14px;
  margin-bottom: 20px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.page-service-audit .service-contact__form input::-webkit-input-placeholder, .page-service-audit .service-contact__form select::-webkit-input-placeholder, .page-service-audit .service-contact__form textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.page-service-audit .service-contact__form input::-moz-placeholder, .page-service-audit .service-contact__form select::-moz-placeholder, .page-service-audit .service-contact__form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.page-service-audit .service-contact__form input:-ms-input-placeholder, .page-service-audit .service-contact__form select:-ms-input-placeholder, .page-service-audit .service-contact__form textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.page-service-audit .service-contact__form input::-ms-input-placeholder, .page-service-audit .service-contact__form select::-ms-input-placeholder, .page-service-audit .service-contact__form textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.page-service-audit .service-contact__form input::placeholder,
.page-service-audit .service-contact__form select::placeholder,
.page-service-audit .service-contact__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.page-service-audit .service-contact__form input:focus,
.page-service-audit .service-contact__form select:focus,
.page-service-audit .service-contact__form textarea:focus {
  outline: none;
  border-color: var(--prada-mint, #5f9498);
}
.page-service-audit .service-contact__form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: rgba(255, 255, 255, 0.92);
}
.page-service-audit .service-contact__form select option {
  color: var(--prada-navy, #061e29);
}
.page-service-audit .service-contact__select-wrap {
  position: relative;
}
.page-service-audit .service-contact__select-wrap select {
  cursor: pointer;
  padding-right: 40px;
}
.page-service-audit .service-contact__select-arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  pointer-events: none;
}
.page-service-audit .service-contact__req {
  color: var(--prada-mint, #5f9498);
  margin-left: 4px;
}
.page-service-audit .service-contact__submit {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 48px auto 0;
  background: var(--prada-mint, #5f9498);
  color: #fff;
  border: 1px solid var(--prada-mint, #5f9498);
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.95rem, 1.7vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  padding: 14px 24px;
  cursor: pointer;
  -webkit-transition: background 0.3s ease, border-color 0.3s ease;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.page-service-audit .service-contact__submit:hover {
  background: var(--prada-red, #d2143a);
  border-color: var(--prada-red, #d2143a);
}

/* デモのヒントピル浮遊アニメ */
@-webkit-keyframes demoHintFloat {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
}
@keyframes demoHintFloat {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
}