@charset "UTF-8";

/* ============================================================
   CMO代行サービスページ 専用スタイル

   ※ すべてのセレクタを .cmo 配下に限定しているため、
     このファイルが他ページのデザインに影響することはありません。
     （ヘッダーの白背景のみ、このページ限定で上書きしています）
============================================================ */

/* ------------------------------------------------------------
   ヘッダーの背景を白にする
   ※ このファイルは aeo-geo ページでのみ読み込まれるため、
     他ページのヘッダーには影響しません
------------------------------------------------------------ */
header {
  background: #fff;
  box-shadow: 0 1px 12px rgba(20, 35, 60, 0.08);
}

/* ------------------------------------------------------------
   基本設定・変数
------------------------------------------------------------ */
.cmo {
  --cmo-blue: #2a5cb8;
  --cmo-blue-deep: #12326b;
  --cmo-cyan: #35c8e0;
  --cmo-purple: #7b3fe4;
  --cmo-text: #3d4553;
  --cmo-sub: #6b7482;
  --cmo-line: #e3e8ef;
  --cmo-gray: #f6f8fb;
  --cmo-shadow: 0 6px 24px rgba(30, 50, 90, 0.08);
  --cmo-shadow-hover: 0 14px 34px rgba(30, 50, 90, 0.14);
  --cmo-grad: linear-gradient(
    90deg,
    var(--cmo-purple) 0%,
    var(--cmo-cyan) 100%
  );

  color: var(--cmo-text);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  overflow-x: hidden;
}

.cmo *,
.cmo *::before,
.cmo *::after {
  box-sizing: border-box;
}

.cmo-inner {
  width: 90%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cmo-sp {
  display: none;
}

.cmo-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.cmo a:focus-visible,
.cmo summary:focus-visible {
  outline: 3px solid var(--cmo-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ------------------------------------------------------------
   ヘッダーの背景を白にする（このページのみ）
------------------------------------------------------------ */
header {
  background: #fff;
  box-shadow: 0 1px 12px rgba(20, 35, 60, 0.08);
}

/* ------------------------------------------------------------
   スクロール表示アニメーション
   ※ JSが有効なときだけ適用されるため、
     JSが動かない環境でもコンテンツは必ず表示されます
------------------------------------------------------------ */
.cmo--reveal [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}

.cmo--reveal [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ------------------------------------------------------------
   ① ファーストビュー
------------------------------------------------------------ */
.cmo-fv {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 660px;
  padding: 180px 0 110px;
  overflow: hidden;
}

.cmo-fv__bg {
  position: absolute;
  inset: 0;
  background-color: #0f2340;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.cmo-fv__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(8, 18, 40, 0.9) 0%,
    rgba(8, 18, 40, 0.74) 42%,
    rgba(8, 18, 40, 0.36) 78%,
    rgba(8, 18, 40, 0.22) 100%
  );
}

.cmo-fv__inner {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}

.cmo-fv__eyebrow {
  display: inline-block;
  margin: 0 0 22px;
  padding: 7px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
}

.cmo-fv__title {
  margin: 0 0 26px;
  color: #fff;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.045em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.cmo-fv__def {
  position: relative;
  max-width: 700px;
  margin: 0 0 22px;
  padding: 18px 24px;
  border-left: 3px solid var(--cmo-cyan);
  border-radius: 0 10px 10px 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  color: #fff;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.95;
}

.cmo-fv__lead {
  max-width: 700px;
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 2.05;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

/* ------------------------------------------------------------
   共通ボタン
------------------------------------------------------------ */
.cmo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 330px;
  padding: 21px 38px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--cmo-purple) 0%,
    var(--cmo-blue) 52%,
    var(--cmo-cyan) 100%
  );
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(42, 92, 184, 0.3);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease;
}

.cmo-btn:hover,
.cmo-btn:focus {
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(42, 92, 184, 0.38);
  filter: brightness(1.06);
}

.cmo-btn__arrow {
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.28s ease;
}

.cmo-btn:hover .cmo-btn__arrow {
  transform: translateX(6px);
}

.cmo-btn--white {
  background: #fff;
  color: var(--cmo-blue);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.2);
}

.cmo-btn--white:hover,
.cmo-btn--white:focus {
  color: var(--cmo-blue);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
}

/* ------------------------------------------------------------
   パンくずリスト
------------------------------------------------------------ */
.cmo-breadcrumb {
  padding: 20px 0 0;
  background: #fff;
}

.cmo-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  line-height: 1.8;
  color: var(--cmo-sub);
}

.cmo-breadcrumb li + li::before {
  content: "›";
  margin: 0 10px;
  color: #b9c1cc;
}

.cmo-breadcrumb a {
  color: var(--cmo-sub);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cmo-breadcrumb a:hover {
  color: var(--cmo-blue);
  text-decoration: underline;
}

/* ------------------------------------------------------------
   セクション共通
------------------------------------------------------------ */
.cmo-sec {
  padding: 104px 0;
}

.cmo-sec--gray {
  background: var(--cmo-gray);
}

.cmo-sec__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}

.cmo-sec__en {
  margin: 0;
  color: var(--cmo-blue);
  font-size: 46px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-align: center;
}

.cmo-sec__line {
  width: 90px;
  height: 3px;
  margin: 12px 0 0;
  padding: 0;
  border: none;
  border-radius: 2px;
  opacity: 1;
  background: var(--cmo-grad);
}

.cmo-sec__ja {
  margin: 20px 0 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-align: center;
}

/* ------------------------------------------------------------
   ② よくある課題
------------------------------------------------------------ */
.cmo-problems {
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.cmo-problem {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 14px;
  padding: 24px 28px;
  border: 1px solid var(--cmo-line);
  border-radius: 14px;
  background: #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cmo-problem:last-child {
  margin-bottom: 0;
}

.cmo-problem:hover {
  transform: translateX(4px);
  box-shadow: var(--cmo-shadow);
}

.cmo-problem__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  padding: 5px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(123, 63, 228, 0.12) 0%,
    rgba(53, 200, 224, 0.2) 100%
  );
  color: var(--cmo-blue);
}

.cmo-problem__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.cmo-problem__text {
  font-size: 15.5px;
  line-height: 1.95;
}

.cmo-problem__text strong {
  font-weight: 700;
  color: var(--cmo-blue);
}

.cmo-problems__conclusion {
  margin: 44px 0 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: center;
}

.cmo-problems__conclusion strong {
  background: var(--cmo-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.12em;
}

/* ------------------------------------------------------------
   ③ 3つの選択肢（比較表）
------------------------------------------------------------ */
.cmo-scroll-hint {
  display: none;
  margin: 0 0 12px;
  color: var(--cmo-sub);
  font-size: 12px;
  text-align: center;
}

.cmo-compare-wrap {
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.cmo-compare {
  width: 100%;
  min-width: 720px;
  margin: 0;
  border-collapse: separate;
  border-spacing: 8px 12px;
}

.cmo-compare thead th {
  padding: 0 0 4px;
  color: var(--cmo-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  white-space: nowrap;
}

.cmo-compare thead th:first-child {
  width: 210px;
}

.cmo-compare tbody th {
  width: 210px;
  padding: 0 16px 0 0;
  text-align: left;
  vertical-align: middle;
}

.cmo-compare__name {
  display: block;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.cmo-compare__cost {
  display: block;
  margin-top: 3px;
  color: var(--cmo-sub);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.6;
}

.cmo-compare__bar {
  padding: 26px 20px;
  border-radius: 14px;
  background: #eceff4;
  color: var(--cmo-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  vertical-align: middle;
}

.cmo-compare__bar--none {
  background: transparent;
  border: 1px dashed #c4ccd6;
  color: #9aa4b1;
}

.cmo-compare__bar--ours {
  background: linear-gradient(
    100deg,
    rgba(123, 63, 228, 0.1) 0%,
    rgba(53, 200, 224, 0.16) 100%
  );
  border: 1.5px solid var(--cmo-cyan);
  color: var(--cmo-blue-deep);
  font-weight: 700;
}

.cmo-compare__row--ours th .cmo-compare__name {
  color: var(--cmo-blue);
}

/* ③ 締めの強調ボックス */
.cmo-callout {
  position: relative;
  margin-top: 56px;
  padding: 44px 34px;
  border-radius: 22px;
  background: linear-gradient(118deg, #0f2340 0%, #1d3f77 58%, #1f6f97 100%);
  text-align: center;
  overflow: hidden;
}

.cmo-callout::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -8%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(53, 200, 224, 0.28) 0%,
    rgba(53, 200, 224, 0) 68%
  );
  pointer-events: none;
}

.cmo-callout__small {
  position: relative;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  letter-spacing: 0.06em;
}

.cmo-callout__text {
  position: relative;
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.045em;
}

/* ------------------------------------------------------------
   ④ 私たちがやる6つのこと
------------------------------------------------------------ */
.cmo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cmo-card {
  display: flex;
  flex-direction: column;
  padding: 34px 28px 30px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--cmo-shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cmo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--cmo-shadow-hover);
}

.cmo-card__head {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cmo-line);
}

.cmo-card__icon {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  padding: 12px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(123, 63, 228, 0.1) 0%,
    rgba(53, 200, 224, 0.18) 100%
  );
  color: var(--cmo-blue);
}

.cmo-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.cmo-card__title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.cmo-card__num {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--cmo-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cmo-card__text {
  margin: 0;
  color: var(--cmo-sub);
  font-size: 14px;
  line-height: 2;
}

.cmo-card__text a {
  color: var(--cmo-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cmo-card__text a:hover {
  color: var(--cmo-cyan);
}

/* ------------------------------------------------------------
   ⑤ 料金
------------------------------------------------------------ */
.cmo-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.cmo-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 44px 28px 38px;
  border: 1px solid var(--cmo-line);
  border-radius: 20px;
  background: #fff;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cmo-plan:hover {
  transform: translateY(-5px);
  box-shadow: var(--cmo-shadow-hover);
}

.cmo-plan--recommend {
  border-color: transparent;
  outline: 2px solid var(--cmo-blue);
  outline-offset: -2px;
  box-shadow: 0 10px 34px rgba(42, 92, 184, 0.17);
}

.cmo-plan__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 6px 20px;
  border-radius: 999px;
  background: var(--cmo-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  white-space: nowrap;
}

.cmo-plan__name {
  margin: 0 0 16px;
  color: var(--cmo-blue);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.cmo-plan__desc {
  flex-grow: 1;
  margin: 0 0 26px;
  color: var(--cmo-sub);
  font-size: 14px;
  line-height: 1.85;
}

.cmo-plan__price {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--cmo-line);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.cmo-plan__price-label {
  display: block;
  margin-bottom: 6px;
  color: var(--cmo-sub);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.cmo-plan__unit {
  margin-left: 3px;
  font-size: 17px;
}

.cmo-plans__tax {
  margin: 20px 0 0;
  color: var(--cmo-sub);
  font-size: 12.5px;
  text-align: right;
}

/* ⑤ 比較ボックス */
.cmo-vs {
  margin-top: 44px;
}

.cmo-vs__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: 0 0 14px;
  padding: 22px 28px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.8;
}

.cmo-vs__item:last-child {
  margin-bottom: 0;
}

.cmo-vs__item--other {
  border: 1px dashed #c4ccd6;
  background: transparent;
  color: var(--cmo-sub);
}

.cmo-vs__item--ours {
  border: 1.5px solid var(--cmo-cyan);
  background: linear-gradient(
    100deg,
    rgba(123, 63, 228, 0.08) 0%,
    rgba(53, 200, 224, 0.14) 100%
  );
  color: var(--cmo-blue-deep);
  font-weight: 700;
}

.cmo-vs__label {
  flex-shrink: 0;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.cmo-vs__item--other .cmo-vs__label {
  background: #eceff4;
  color: var(--cmo-sub);
}

.cmo-vs__item--ours .cmo-vs__label {
  background: var(--cmo-blue);
  color: #fff;
}

/* ------------------------------------------------------------
   ⑥ 始め方（縦フロー）
------------------------------------------------------------ */
.cmo-flow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.cmo-flow__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 26px;
  padding: 24px 30px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--cmo-shadow);
}

.cmo-flow__item:last-child {
  margin-bottom: 0;
}

.cmo-flow__item::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 51px;
  width: 2px;
  height: 18px;
  background: #c9d3e0;
}

.cmo-flow__item:last-child::after {
  display: none;
}

.cmo-flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cmo-grad);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.cmo-flow__body {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 12px;
}

.cmo-flow__label {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.cmo-flow__note {
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--cmo-gray);
  color: var(--cmo-sub);
  font-size: 12.5px;
  line-height: 1.6;
}

/* ------------------------------------------------------------
   ⑦ なぜロックスライフなのか
------------------------------------------------------------ */
.cmo-reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.cmo-reason {
  padding: 38px 32px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--cmo-shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cmo-reason:hover {
  transform: translateY(-5px);
  box-shadow: var(--cmo-shadow-hover);
}

.cmo-reason__num {
  margin: 0 0 16px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  background: var(--cmo-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cmo-reason__title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.03em;
}

.cmo-reason__text {
  margin: 0;
  color: var(--cmo-sub);
  font-size: 14px;
  line-height: 2;
}

.cmo-reason__text a {
  color: var(--cmo-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cmo-reason__text a:hover {
  color: var(--cmo-cyan);
}

/* ------------------------------------------------------------
   ⑧ お客様の声
------------------------------------------------------------ */
.cmo-voice {
  max-width: 900px;
  margin: 0 auto;
}

.cmo-voice__inner {
  position: relative;
  margin: 0;
  padding: 52px 48px 40px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--cmo-shadow);
}

/* .cmo-voice__inner::before {
  content: "“";
  position: absolute;
  top: 14px;
  left: 34px;
  color: rgba(42, 92, 184, 0.14);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 96px;
  line-height: 1;
  pointer-events: none;
} */

.cmo-voice__pull {
  position: relative;
  margin: 0 0 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--cmo-line);
  color: var(--cmo-blue-deep);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.035em;
}

.cmo-voice__body p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 2.1;
  color: var(--cmo-text);
}

.cmo-voice__list {
  margin: 0 0 22px;
  padding: 22px 26px;
  border-radius: 12px;
  /* background: var(--cmo-gray); */
  list-style: none;
}

.cmo-voice__list li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--cmo-sub);
}

.cmo-voice__list li::before {
  content: "";
  position: absolute;
  top: 1.05em;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cmo-cyan);
}

.cmo-voice__cite {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--cmo-line);
  text-align: right;
}

.cmo-voice__cite cite {
  font-style: normal;
}

.cmo-voice__company {
  display: block;
  color: var(--cmo-sub);
  font-size: 13.5px;
  line-height: 1.7;
}

.cmo-voice__person {
  display: block;
  margin-top: 2px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.7;
}

/* ------------------------------------------------------------
   ⑨ FAQ（アコーディオン）
------------------------------------------------------------ */
.cmo-faq {
  max-width: 900px;
  margin: 0 auto;
}

.cmo-faq__item {
  margin-bottom: 16px;
  border: 1px solid var(--cmo-line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.cmo-faq__item:last-child {
  margin-bottom: 0;
}

.cmo-faq__item[open] {
  border-color: rgba(42, 92, 184, 0.3);
  box-shadow: 0 6px 22px rgba(30, 50, 90, 0.09);
}

.cmo-faq__q {
  position: relative;
  display: block;
  padding: 25px 64px 25px 60px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.03em;
  cursor: pointer;
  list-style: none;
  transition: background 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.cmo-faq__q::-webkit-details-marker {
  display: none;
}

.cmo-faq__q:hover {
  background: var(--cmo-gray);
}

.cmo-faq__q::before {
  content: "Q";
  position: absolute;
  top: 23px;
  left: 26px;
  color: var(--cmo-blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.cmo-faq__q::after {
  content: "";
  position: absolute;
  top: 33px;
  right: 28px;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--cmo-blue);
  border-bottom: 2px solid var(--cmo-blue);
  transform: rotate(45deg);
  transform-origin: center;
  transition:
    transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    top 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cmo-faq__item[open] .cmo-faq__q::after {
  top: 38px;
  transform: rotate(-135deg);
}

.cmo-faq__a {
  position: relative;
  padding: 2px 30px 30px 60px;
}

.cmo-faq__a::before {
  content: "A";
  position: absolute;
  top: 0;
  left: 26px;
  color: var(--cmo-cyan);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
}

.cmo-faq__a p {
  margin: 0;
  color: var(--cmo-sub);
  font-size: 15px;
  line-height: 2.1;
}

/* ------------------------------------------------------------
   ⑩ 下部CTA
------------------------------------------------------------ */
.cmo-cta {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(118deg, #0f2340 0%, #1d3f77 55%, #1f6f97 100%);
  text-align: center;
  overflow: hidden;
}

.cmo-cta::before {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -6%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(53, 200, 224, 0.22) 0%,
    rgba(53, 200, 224, 0) 70%
  );
  pointer-events: none;
}

.cmo-cta .cmo-inner {
  position: relative;
}

.cmo-cta__lead {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.cmo-cta__text {
  margin: 0 0 40px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: 0.04em;
}

/* ============================================================
   タブレット（1024px以下）
============================================================ */
@media screen and (max-width: 1024px) {
  .cmo-fv {
    min-height: 580px;
    padding: 160px 0 90px;
  }
  .cmo-fv__title {
    font-size: 36px;
  }

  .cmo-sec {
    padding: 84px 0;
  }
  .cmo-sec__en {
    font-size: 38px;
  }

  .cmo-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .cmo-reasons {
    grid-template-columns: 1fr 1fr;
  }
  .cmo-callout__text {
    font-size: 21px;
  }
  .cmo-voice__inner {
    padding: 46px 36px 36px;
  }
  .cmo-voice__pull {
    font-size: 20px;
  }
}

/* ============================================================
   スマートフォン（767px以下）
============================================================ */
@media screen and (max-width: 767px) {
  .cmo {
    font-size: 15px;
  }
  .cmo-pc {
    display: none;
  }
  .cmo-sp {
    display: inline;
  }

  /* ① FV */
  .cmo-fv {
    min-height: 0;
    padding: 128px 0 74px;
  }
  .cmo-fv__overlay {
    background: linear-gradient(
      170deg,
      rgba(8, 18, 40, 0.88) 0%,
      rgba(8, 18, 40, 0.78) 55%,
      rgba(8, 18, 40, 0.7) 100%
    );
  }
  .cmo-fv__eyebrow {
    margin-bottom: 18px;
    padding: 6px 14px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  .cmo-fv__title {
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 1.6;
  }
  .cmo-fv__def {
    margin-bottom: 18px;
    padding: 15px 18px;
    font-size: 13.5px;
    line-height: 1.9;
  }
  .cmo-fv__lead {
    margin-bottom: 30px;
    font-size: 13.5px;
    line-height: 2;
  }

  /* ボタン */
  .cmo-btn {
    width: 100%;
    min-width: 0;
    padding: 18px 20px;
    font-size: 14.5px;
  }

  /* セクション */
  .cmo-sec {
    padding: 66px 0;
  }
  .cmo-sec__head {
    margin-bottom: 38px;
  }
  .cmo-sec__en {
    font-size: 31px;
  }
  .cmo-sec__ja {
    margin-top: 16px;
    font-size: 15px;
  }

  /* ② 課題 */
  .cmo-problem {
    gap: 14px;
    margin-bottom: 12px;
    padding: 20px 20px;
  }
  .cmo-problem__icon {
    width: 24px;
    height: 24px;
    padding: 4px;
  }
  .cmo-problem__text {
    font-size: 14.5px;
    line-height: 1.9;
  }
  .cmo-problems__conclusion {
    margin-top: 34px;
    font-size: 16.5px;
    line-height: 1.95;
  }

  /* ③ 比較表 */
  .cmo-scroll-hint {
    display: block;
  }
  .cmo-compare {
    min-width: 620px;
    border-spacing: 6px 10px;
  }
  .cmo-compare thead th {
    font-size: 12.5px;
  }
  .cmo-compare thead th:first-child,
  .cmo-compare tbody th {
    width: 150px;
  }
  .cmo-compare__name {
    font-size: 15px;
  }
  .cmo-compare__cost {
    font-size: 11.5px;
  }
  .cmo-compare__bar {
    padding: 20px 14px;
    font-size: 13.5px;
    line-height: 1.65;
  }

  .cmo-callout {
    margin-top: 40px;
    padding: 32px 22px;
  }
  .cmo-callout__small {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .cmo-callout__text {
    font-size: 18px;
    line-height: 1.8;
  }

  /* ④ カード */
  .cmo-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cmo-card {
    padding: 28px 24px 24px;
  }
  .cmo-card__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    padding: 11px;
  }
  .cmo-card__title {
    font-size: 16px;
  }

  /* ⑤ 料金 */
  .cmo-plans {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cmo-plan {
    padding: 38px 24px 32px;
  }
  .cmo-plan__name {
    font-size: 19px;
  }
  .cmo-plan__price {
    font-size: 34px;
  }
  .cmo-plans__tax {
    text-align: center;
  }

  .cmo-vs {
    margin-top: 34px;
  }
  .cmo-vs__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 22px;
    font-size: 14px;
    line-height: 1.85;
  }

  /* ⑥ 始め方 */
  .cmo-flow__item {
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px 22px;
  }
  .cmo-flow__item::after {
    bottom: -20px;
    left: 43px;
    height: 16px;
  }
  .cmo-flow__num {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
  .cmo-flow__label {
    font-size: 15.5px;
  }
  .cmo-flow__note {
    font-size: 11.5px;
    padding: 2px 10px;
  }

  /* ⑦ 理由 */
  .cmo-reasons {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cmo-reason {
    padding: 30px 26px;
  }
  .cmo-reason__num {
    font-size: 32px;
  }
  .cmo-reason__title {
    font-size: 17px;
  }

  /* ⑧ お客様の声 */
  .cmo-voice__inner {
    padding: 44px 24px 30px;
    border-radius: 18px;
  }
  .cmo-voice__inner::before {
    top: 10px;
    left: 18px;
    font-size: 74px;
  }

  /* ============================================================
   修正パッチ v2
   テーマ側の指定に確実に勝たせるため、
   このページ限定で !important を使用しています。
   （.cmo 配下だけに閉じているため、他ページには影響しません）
============================================================ */

  /* ------------------------------------------------------------
   1. ボタンの文字色
------------------------------------------------------------ */
  .cmo a.cmo-btn,
  .cmo a.cmo-btn:link,
  .cmo a.cmo-btn:visited,
  .cmo a.cmo-btn:hover,
  .cmo a.cmo-btn:focus,
  .cmo a.cmo-btn:active {
    color: #ffffff !important;
    text-decoration: none !important;
  }

  /* ボタンの中の文字・矢印は、ボタン本体の色を受け継ぐ */
  .cmo a.cmo-btn > span {
    color: inherit !important;
  }

  /* 下部CTAの白いボタンだけは青文字にする */
  .cmo a.cmo-btn--white,
  .cmo a.cmo-btn--white:link,
  .cmo a.cmo-btn--white:visited,
  .cmo a.cmo-btn--white:hover,
  .cmo a.cmo-btn--white:focus,
  .cmo a.cmo-btn--white:active {
    color: #2a5cb8 !important;
  }

  /* ------------------------------------------------------------
   2. リストの中央配置
------------------------------------------------------------ */

  /* ② よくある課題 */
  .cmo ul.cmo-problems {
    max-width: 880px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    list-style: none !important;
  }

  /* ⑥ 始め方 */
  .cmo ol.cmo-flow {
    max-width: 720px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    list-style: none !important;
  }

  /* ⑧ お客様の声の中の箇条書き */
  .cmo ul.cmo-voice__list {
    margin: 0 0 22px !important;
    padding: 22px 26px !important;
    list-style: none !important;
  }

  /* パンくずリスト */
  .cmo nav.cmo-breadcrumb ol {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  @media screen and (max-width: 767px) {
    .cmo ul.cmo-voice__list {
      padding: 18px 20px !important;
    }
  }

  /* ============================================================
   ⑧ お客様の声（v3）
   装飾を最小限にし、文章の可読性を最優先した構成
============================================================ */

  .cmo-voice {
    max-width: 880px;
    margin: 0 auto;
  }

  .cmo-voice__inner {
    position: relative;
    margin: 0;
    padding: 0;
    border: 1px solid var(--cmo-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--cmo-shadow);
    overflow: hidden;
  }

  上端のアクセントライン .cmo-voice__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--cmo-grad);
  }

  /* ---------- 上部：話し手 ---------- */
  .cmo-voice__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 48px 26px;
  }

  .cmo-voice__cite {
    display: block;
    font-style: normal;
  }

  .cmo-voice__company {
    display: block;
    color: var(--cmo-sub);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.04em;
  }

  .cmo-voice__person {
    display: block;
    margin-top: 4px;
    color: var(--cmo-text);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }

  唯一の引用符 .cmo-voice__mark {
    flex-shrink: 0;
    margin-top: -14px;
    color: rgba(42, 92, 184, 0.14);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 78px;
    line-height: 1;
    user-select: none;
    pointer-events: none;
  }

  /* ---------- 本文 ---------- */
  .cmo-voice__content {
    padding: 0 48px 44px;
  }

  .cmo-voice__pull {
    margin: 0 0 30px;
    color: var(--cmo-blue-deep);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.035em;
  }

  .cmo-voice__body p {
    margin: 0 0 22px;
    color: var(--cmo-text);
    font-size: 15px;
    line-height: 2.15;
  }

  .cmo-voice__body > p:last-child {
    margin-bottom: 0;
  }

  /* ---------- 「例えば」 ---------- */
  .cmo-voice__examples {
    margin: 30px 0;
    padding: 0 0 0 22px;
    border-left: 2px solid var(--cmo-line);
    background: none;
  }

  .cmo-voice__examples-label {
    margin: 0 0 14px !important;
    color: var(--cmo-sub);
    font-size: 12px !important;
    font-weight: 700;
    line-height: 1.6 !important;
    letter-spacing: 0.14em;
  }

  .cmo ul.cmo-voice__list {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .cmo ul.cmo-voice__list li {
    position: relative;
    margin: 0 0 12px !important;
    padding: 0 0 0 20px !important;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
    color: var(--cmo-sub);
    font-size: 14.5px;
    line-height: 1.9;
    list-style: none !important;
  }

  .cmo ul.cmo-voice__list li:last-child {
    margin-bottom: 0 !important;
  }

  .cmo ul.cmo-voice__list li::before {
    content: "";
    position: absolute;
    top: 0.82em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cmo-cyan);
  }

  /* ---------- スマートフォン ---------- */
  @media screen and (max-width: 767px) {
    .cmo-voice__inner {
      border-radius: 16px;
    }

    .cmo-voice__head {
      gap: 14px;
      padding: 26px 24px 20px;
    }
    .cmo-voice__company {
      font-size: 12px;
    }
    .cmo-voice__person {
      font-size: 15.5px;
    }
    .cmo-voice__mark {
      margin-top: -10px;
      font-size: 54px;
    }

    .cmo-voice__content {
      padding: 0 24px 32px;
    }
    .cmo-voice__pull {
      margin-bottom: 24px;
      font-size: 17.5px;
      line-height: 1.8;
    }
    .cmo-voice__body p {
      margin-bottom: 20px;
      font-size: 14px;
      line-height: 2.05;
    }

    .cmo-voice__examples {
      margin: 26px 0;
      padding-left: 18px;
    }
    .cmo-voice__examples-label {
      margin-bottom: 12px !important;
      font-size: 11.5px !important;
    }
    .cmo ul.cmo-voice__list li {
      margin-bottom: 11px !important;
      padding-left: 18px !important;
      font-size: 13.5px;
      line-height: 1.85;
    }
    .cmo ul.cmo-voice__list li::before {
      top: 0.78em;
      width: 5px;
      height: 5px;
    }
  }

  /* ============================================================
   FVボタンの文字色を白にする（専用クラス）
============================================================ */
  a.cmo-btn-fv,
  a.cmo-btn-fv:link,
  a.cmo-btn-fv:visited,
  a.cmo-btn-fv:hover,
  a.cmo-btn-fv:focus,
  a.cmo-btn-fv:active,
  a.cmo-btn-fv span,
  a.cmo-btn-fv:link span,
  a.cmo-btn-fv:visited span,
  a.cmo-btn-fv:hover span,
  a.cmo-btn-fv:focus span,
  a.cmo-btn-fv:active span,
  a.cmo-btn-fv .cmo-btn__arrow {
    color: #ffffff !important;
    text-decoration: none !important;
  }
}

/* ============================================================
   ⑤ 料金プラン 金額表示（AEOページと統一）
============================================================ */

.cmo .cmo-plan__price {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--cmo-line);
  text-align: center;
}

.cmo .cmo-plan__price-label {
  display: block;
  margin-bottom: 4px;
  color: var(--cmo-sub);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.cmo .cmo-plan__price-num {
  display: block;
  color: var(--cmo-text);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.cmo .cmo-plan__unit {
  margin-left: 3px;
  font-size: 17px;
}

.cmo .cmo-plan__price-ask {
  display: block;
  padding: 14px 0;
  color: var(--cmo-text);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .cmo .cmo-plan__price-num {
    font-size: 30px;
  }

  .cmo .cmo-plan__price-ask {
    padding: 10px 0;
    font-size: 15px;
  }
}
