@charset "UTF-8";

/* CSS　Document */

/* ---------------------------------------
PC用レイアウト（768px以上スクリーン）
---------------------------------------*/

/* body全体の初期スタイル調整 */

/* ========================================
CSS 変数
======================================== */
:root {
  --primary: #132b88;
  --primary-dark: #002a6e;
  --accent: #00b4d8;
  --orange: #ff8c00;
  --orange-hover: #faad50;
  --bg-light: #f0f6ff;
  --text: #1a1a2e;
  --text-sub: #b8bfdb;
  --white: #ffffff;
  --card-shadow: 0 4px 24px rgba(0, 63, 158, 0.1);
  --radius: 12px;
}

/* ========================================
リセット・共通
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  /* doraever/style.css の body { font-size: 15px } を打ち消す
     （em 計算が外注デザインカンプ通りになるように） */
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
  padding: 0;
  background: var(--white);
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  transition: all 0.25s ease;
}

.container {
  /* doraever/style.css の .container { width: 1170px } を打ち消す */
  width: auto;
  max-width: 1080px;
  padding: 0 30px;
  margin: 0 auto;
}

/* doraever/style.css の clearfix擬似要素を打ち消す
   （flex container 内で空のflex itemとして扱われ、レイアウトが崩れる） */
.container::before,
.container::after {
  content: none;
  display: none;
}

.section-padding {
  padding: 90px 0;
}
.bg-light {
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.section-title-en {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-sub);
  letter-spacing: 0.02em;
}

.section-title span {
  display: block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 20px auto 0;
}

/* SP：改行しない */
.sp-br {
  display: none;
}

/* 電話番号装飾 */
a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
  /* doraever/style.css の html { font-size: 10px } を打ち消す
     （rem 計算が外注デザインカンプ通りになるように） */
  font-size: 16px;
}

/* ========================================
CTAボタン
======================================== */
.btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.btn-microcopy {
  align-self: center;
  background: var(--white);
  color: var(--orange);
  border: 2px solid var(--orange);
  padding: 6px 17px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: -10px;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: var(--orange);
  color: var(--white);
  padding: 24px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 5px 5px 10px rgba(255, 140, 0, 0.35);
  letter-spacing: 0.05em;
  border: none;
  gap: 10px;
  cursor: pointer;
}
.btn:hover {
  background: var(--orange-hover);
  box-shadow: 5px 5px 10px rgba(255, 140, 0, 0.45);
}
.btn::after {
  content: none;
}
.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 2px solid var(--white);
  border-radius: 50%;
  padding: 4px;
}
.btn-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

/* PC：スマホ用ボタンを非表示 */
.fv-btn-sp {
  display: none;
}

/* スマホ用固定CTA */
.fixed-cta-sp {
  display: none; /* PCでは非表示 */
}

/* 480px以下のみ改行 */
.sp-br-sm {
  display: none;
}

/* ========================================
ヘッダー
======================================== */
header {
  background: var(--white);
  border-bottom: 1px solid #e0eaf8;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.header-logo {
  width: 120px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-contact {
  line-height: 1.4;
}

.header-tel {
  display: flex;
}

.header-tel img {
  width: 28px;
  margin-left: -7px;
}

.header-tel-num {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8em;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.header-contact p {
  font-size: 0.88em;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: background 0.25s ease;
}

.header-btn:hover {
  background: var(--orange-hover);
}

/* ========================================
ファーストビュー
======================================== */
.fv {
  background-image: url("/assets/web/images/lp_unsoul_whitelabel/fv-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 0 60px;
  position: relative;
  overflow: hidden;
}
.fv::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.fv-flex {
  display: flex;
  justify-content: space-between;
  gap: 38px;
  margin-top: 40px;
}

.fv-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fv-sub {
  width: 90%;
}

.fv-image {
  flex: 0 0 510px;
  display: flex;
  align-items: center;
}

.fv-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.fv-subcopy {
  font-weight: 500;
  margin-left: 6.5px;
  line-height: 1.6;
  font-size: 1.2rem;
}

/* ========================================
悩みセクション
======================================== */

.problem {
  background: var(--bg-light);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%);
  padding-bottom: 120px;
}

.problem-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.problem-item {
  background: var(--white);
  border: 1px solid #e0eaf8;
  border-radius: var(--radius);
  padding: 38px 20px 24px;
  margin-top: 30px;
  text-align: center;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: calc(33.333% - 14px);
  position: relative;
}

/* チェックアイコン */
.problem-item::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
}

.problem-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.problem-item p {
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
}

.problem-item02 {
  margin: 70px 0 50px 0;
  text-align: center;
  font-weight: 500;
}

.problem-item02 .highlight {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary);
  margin: 10px 0;
}

.problem-item02-text {
  font-size: 1.2rem;
}

.problem-point-list {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  gap: 16px;
}

.problem-endcopy {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary);
  margin: 10px 0;
  text-align: center;
}

.inline-logo {
  display: inline-block;
  height: 3.5em;
  width: auto;
  margin: 0 10px;
  vertical-align: -20%;
}

/* ========================================
解決策セクション
======================================== */
.solution {
  background-image: url("/assets/web/images/lp_unsoul_whitelabel/solution-bg.webp");
  background-size: cover;
  background-position: center;
  margin-top: -140px;
}

.solution-title {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--white);
  margin: 110px 0 20px;
  text-align: center;
}

.solution-sub {
  color: var(--white);
  text-align: center;
  font-size: 1.2rem;
}

/* ========================================
解決策セクション　比較カード
======================================== */
.solution-compare {
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin-top: 50px;
}

.solution-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 25px 25px;
  box-shadow: var(--card-shadow);
}

.solution-card-tag {
  display: inline-block;
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.solution-card-tag-before {
  background: #eef0f8;
  color: var(--primary);
  font-size: 1rem;
  display: flex;
  justify-content: center;
}

.solution-card-tag-after {
  background: var(--orange);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  justify-content: center;
}

.solution-card-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 12px;
  text-align: center;
}

.solution-card-title-after {
  color: var(--orange);
}

.solution-card-sub {
  font-weight: 500;
  color: var(--text);
  margin-top: 20px;
  text-align: center;
}

.solution-card-image {
  padding: 10px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.car-icon {
  width: 100%;
  height: auto;
  display: block;
}

.car-legend {
  display: flex;
  gap: 16px;
  align-items: center;
}

.car-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--text);
}

.car-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.car-legend-dot-active {
  background: var(--primary);
}

.car-legend-dot-inactive {
  background: #c0c8e0;
}

.car-legend-dot-after {
  background: var(--orange);
}

.solution-card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.solution-card-list li {
  font-weight: 500;
  color: var(--text);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.solution-card-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.7rem;
  top: 5px;
}

.solution-card-list-after li::before {
  color: var(--orange);
}

.solution-compare-arrow {
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-compare-arrow svg {
  width: 48px;
  height: 48px;
  color: var(--white);
}

/* ========================================
CTAエリア
======================================== */

.cta-area {
  background-image: url("/assets/web/images/lp_unsoul_whitelabel/cta-bg.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
}

.cta-area .btn {
  padding: 24px 100px 24px 100px;
}

/* ========================================
特徴セクション
======================================== */

.features {
  background-image: url("/assets/web/images/lp_unsoul_whitelabel/features_bg.webp");
  background-size: cover;
  background-position: center;
}

/* 上部：運SOULの説明 */
.features-intro {
  margin-bottom: 60px;
  text-align: center;
}

.features-intro-content {
  flex: 1;
}

.features-intro-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.features-intro-text {
  line-height: 1.8;
  margin-bottom: 50px;
  font-size: 1.2rem;
  font-weight: 500;
}

.features-intro-func {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 1000px;
  margin: 0 auto;
}

.features-func-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features-func-item {
  background: var(--white);
  border: 1.5px solid #d0e4f8;
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.features-func-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-func-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.features-func-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.features-func-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.features-func-text {
  font-weight: 500;
  color: var(--text);
}

.features-intro-image {
  flex: 0 0 200px;
  text-align: center;
}

.features-intro-image img {
  max-width: 480px;
}

/* 下部：01〜03 */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 1000px;
  margin: 0 auto;
}

.features-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid #d0e4f8;
  padding: 40px;
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  gap: 50px;
}

.features-item:nth-child(even) {
  flex-direction: row-reverse;
}

.features-item:nth-child(even) .features-num {
  text-align: right;
}

.features-item-content {
  flex: 1;
}

.features-item-content-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.features-num {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--text-sub);
  line-height: 1;
  margin-bottom: 8px;
}

.features-item-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.features-item-text {
  line-height: 1.8;
  font-weight: 500;
  text-align: justify;
}

.features-item-image {
  max-width: 310px;
  display: flex;
  justify-content: flex-end;
}

/* ========================================
提供価値セクション
======================================== */

.value {
  background: var(--white);
}

.value-intro-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 500;
  text-align: center;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.value-item {
  background: var(--white);
  border: 1px solid #e0eaf8;
  border-radius: var(--radius);
  padding: 38px 20px 24px;
  margin-top: 30px;
  text-align: center;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: calc(33.333% - 14px);
  position: relative;
}

.value-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.value-item-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.value-item-text {
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
  text-align: left;
}

/* ========================================
判断材料セクション
======================================== */
.judgment {
  background: var(--bg-light);
  clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
  padding-bottom: 120px;
}

.judgment-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
}

.judgment-item {
  background: var(--white);
  border: 1.5px solid #d0e4f8;
  border-radius: var(--radius);
  padding: 20px;
}

.judgment-item-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  line-height: 1.5;
}

.judgment-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5;
  margin: 30px 12px;
  text-align: center;
}

.judgment-note {
  text-align: center;
  margin-top: 10px;
}

/* ========================================
3つの使い方セクション
======================================== */
.step {
  background: var(--white);
}

.step-intro-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 500;
  text-align: center;
}

.step-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.step-item {
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.step-item:nth-child(even) {
  flex-direction: row-reverse;
}

.step-item:nth-child(even) .step-num {
  text-align: right;
}

.step-item-content {
  flex: 1;
}

.step-item-content-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.step-num {
  background: var(--primary);
  color: var(--white);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 12px;
  border-radius: 50px;
}

.step-item-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.5;
}

.step-item-text {
  font-weight: 500;
  color: var(--text);
  line-height: 1.8;
  text-align: left;
}

.step-item-image {
  display: flex;
  justify-content: flex-end;
}

.step-item-image img {
  max-width: 500px;
  height: auto;
}

/* ========================================
成果と実績セクション
======================================== */
.achievement {
  background-image: url(/assets/web/images/lp_unsoul_whitelabel/achive_bg.webp);
  background-size: cover;
  background-position: center;
}

.achievement-block {
  margin-top: 60px;
  text-align: center;
}

.achievement-label {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 4px 18px;
  font-size: 1.5em;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 20px;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.achievement-item {
  background: var(--white);
  border: 1px solid #e0eaf8;
  border-radius: var(--radius);
  padding: 16px 16px;
  min-height: 280px;
  text-align: center;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

/* アイコン用スペース */
.achievement-icon {
  width: 200px;
}

.achievement-text {
  font-size: 1.5em;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
}

.achievement-num01 {
  display: inline-block;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 2.5em;
  font-weight: 900;
  color: var(--orange);
  line-height: 0.5;
}

.achievement-rate {
  display: flex;
  align-items: center;
  gap: 6px;
}

.achievement-num-before {
  font-size: 2em;
  color: var(--primary);
  margin-top: 10px;
}

.achievement-num-after {
  font-size: 3.2em;
  color: var(--orange);
}

.achievement-rate-arrow {
  font-size: 0.85rem;
  color: var(--primary);
  align-self: center;
}

.achievement-num-md {
  font-size: 1.3em;
  margin-top: 8px;
}

.achievement-num02 {
  display: inline-block;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 2.5em;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.achievement-arrow {
  font-size: 1rem;
  color: var(--primary);
  margin: 0 10px;
}

.achievement-sup {
  font-size: 0.6em;
  vertical-align: super;
  font-weight: 500;
}

.achievement-notes {
  margin: 16px auto;
  max-width: 900px;
  text-align: left;
  font-size: 1em;
  line-height: 1.8;
}

/* ========================================
フローセクション
======================================== */
.flow-list {
  max-width: 680px;
  margin: 0 auto;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.flow-item {
  display: flex;
  align-items: center;
  background: var(--bg-light);
  border-radius: var(--radius);
  position: relative;
}
.flow-num {
  background: var(--primary);
  color: var(--white);
  width: 90px;
  min-width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  padding: 24px 0;
  text-align: center;
  line-height: 1.2;
  border-radius: var(--radius) 0 0 var(--radius);
}
.flow-body {
  flex: 1;
  padding: 20px 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.flow-icon {
  width: 120px;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}
.flow-icon img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.flow-item {
  position: relative;
}

/* STEP間の縦線 */
.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 40px;
  width: 10px;
  height: 20px;
  background: #b8bfdb;
  z-index: 1;
}

/* ========================================
お客様の声セクション
======================================== */
.voice-grid {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  justify-content: center;
}

.voice-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 40px 20px 32px;
  text-align: center;
  flex: 0 0 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.voice-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
}

.voice-avatar img {
  width: 140px;
  max-width: 140px;
  object-fit: cover;
}

.voice-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.5;
}

.voice-body {
  color: var(--text);
  font-weight: 500;
  line-height: 1.8;
  text-align: justify;
}

.voice-meta {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 0 12px 0 12px;
  font-weight: 500;
  align-self: flex-start;
  margin: 20px -20px -32px;
}

/* ========================================
特典セクション
======================================== */
.benefit-box {
  background: linear-gradient(135deg, #0cb0da 0%, #0c7ae6 30%, #0c44f2 100%);
  color: var(--white);
  box-shadow: var(--card-shadow);
  padding: 56px 48px;
  border-radius: var(--radius);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.benefit-box h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.benefit-box > img {
  max-width: 480px;
  width: 100%;
  margin-bottom: 16px;
}

.benefit-box > p {
  margin-bottom: 28px;
  font-size: 1.2rem;
  font-weight: 500;
}

.benefit-list {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.benefit-list img {
  max-width: 260px;
  height: auto;
}

/* ========================================
FAQセクション
======================================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--white);
  border: 1px solid #d8e8f8;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.faq-q {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.2em;
  color: var(--primary);
  background: var(--bg-light);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.faq-q::before {
  content: "Q";
  color: var(--white);
  background: var(--primary);
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-top: 1px;
}
.faq-a {
  padding: 18px 22px;
  font-weight: 500;
  border-top: 1px solid #e8f0fa;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}
.faq-a::before {
  content: "A";
  color: var(--white);
  background: var(--orange);
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-top: 1px;
}

/* ========================================
お問い合わせフォーム
======================================== */

.contact-title {
  color: var(--white);
}

.contact-section {
  background-image: url(/assets/web/images/lp_unsoul_whitelabel/contact_bg.webp);
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 90px 0;
}

.contact-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 50px 50px;
  max-width: 900px;
  margin: 50px auto 0;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.contact-box form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-row {
  display: flex;
  gap: 24px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.contact-field-full {
  flex: 1 1 100%;
}

.contact-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-required {
  background: #e63946;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.contact-box form input,
.contact-box form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #d0dff0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--bg-light);
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-box form input:focus,
.contact-box form textarea:focus {
  border-color: var(--primary);
  background: var(--white);
}

.contact-box form input::placeholder,
.contact-box form textarea::placeholder {
  color: #b0bcd4;
}

.contact-box form textarea {
  resize: vertical;
}

.contact-submit {
  margin-top: 8px;
}

.contact-btn {
  width: 100%;
  padding: 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
}

.contact-btn:hover {
  background: #0b4fcd;
}

.contact-note {
  color: var(--text);
  text-align: left;
  line-height: 2;
}

.contact-tel {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 60px 0 20px;
}

.contact-tel-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-tel-num {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8em;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

/* ========================================
フッター
======================================== */
footer {
  background: #13162b;
  color: var(--white);
  padding: 44px 0 24px;
  font-size: 0.88rem;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}
.footer-logo {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #8fa8cc;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-copy {
  text-align: center;
  font-size: 0.78rem;
  padding-top: 20px;
}

/* アニメーション初期状態 */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

/* 表示されたとき */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
モーダル
======================================== */
.step-item-image,
.features-intro-image img {
  cursor: zoom-in;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  background: rgba(0, 0, 0, 0.8);
}

.modal-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.modal-overlay.active .modal-inner {
  opacity: 1;
  transform: scale(1);
}

.modal-inner img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

/* 初期状態で空のimgを非表示 */
#modalImage[src=""] {
  display: none;
}

.modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

/* ========================================
レスポンシブ
======================================== */

/* ----------------------------------------
タブレット小（1024px以下）
---------------------------------------- */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  /* 改行する */
  .sp-br {
    display: block;
  }

  /* 480px以下のみ改行 */
  .sp-br-sm {
    display: none;
  }

  /* 共通 */
  .container {
    padding: 0 30px;
  }

  .section-padding {
    padding: 60px 30px;
  }

  /* ヘッダー */
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  /* ファーストビュー */
  .fv {
    padding: 30px 0 50px;
    background-image: url(/assets/web/images/lp_unsoul_whitelabel/fv-bg-tb.webp);
  }

  .fv-image {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 10px;
  }

  .fv-flex {
    flex-direction: column;
    gap: 24px;
    margin-top: 0;
  }

  .fv-content {
    margin-top: 0;
    gap: 16px;
  }

  .fv-content img {
    max-width: 75%;
    margin: 0 auto;
  }

  .fv-image {
    flex: none;
    width: 75%;
    margin: 0 120px;
  }

  .fv-subcopy {
    text-align: center;
    margin-left: 0;
  }

  .fv-btn-pc {
    display: none;
  }

  .fv-btn-sp {
    display: flex;
    width: 100%;
    align-items: center;
    margin: 0 auto;
    padding: 0 50px;
  }

  /* 悩みセクション */

  .problem-endcopy {
    font-size: 1.5rem;
    margin: 10px 0 60px;
  }

  .inline-logo {
    height: 3em;
  }

  .problem-item02 .highlight {
    font-size: 1.5rem;
  }

  /* 解決策セクション */
  .solution-title {
    font-size: 1.5rem;
    margin: 140px 0 20px;
  }

  .solution-card-title {
    font-size: 1.5rem;
  }

  /* 特徴セクション */
  .features-intro {
    text-align: left;
    margin-bottom: 40px;
  }

  .features-intro-func,
  .features-list {
    width: 100%;
  }

  .features-intro-title {
    font-size: 1.3rem;
    text-align: center;
  }

  .features-intro-text {
    text-align: center;
    font-size: 1.2rem;
  }

  .features-intro-func {
    flex-direction: column;
    width: 100%;
  }

  .features-item {
    padding: 30px;
    gap: 33px;
  }

  .features-func-title {
    font-size: 1.3rem;
  }

  /* 提供価値セクション */
  .value-item-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.5;
  }

  .value-item {
    padding: 38px 15px 24px;
  }

  /* 判断材料セクション */
  .judgment {
    padding-bottom: 120px;
  }

  .judgment-grid {
    flex-wrap: wrap;
  }

  /* 3つの使い方セクション */

  .step-item {
    flex-direction: column !important;
    padding: 30px;
  }

  /* 成果と実績 */
  .achievement-icon {
    width: 100%;
    max-width: 160px;
  }

  .achievement-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* お客様の声 */
  .voice-grid {
    flex-direction: column;
    width: 500px;
    margin: 40px auto;
  }

  .voice-card {
    flex: 0;
  }

  /* 特典セクション */
  .benefit-list img {
    max-width: 226px;
    height: auto;
  }

  .benefit-list {
    gap: 0px;
  }
}

/* ----------------------------------------
タブレット小（768px以下）
---------------------------------------- */
@media (max-width: 768px) {
  /* SP：改行する */
  .sp-br {
    display: block;
  }

  /* 480px以下のみ改行 */
  .sp-br-sm {
    display: none;
  }

  /* ファーストビュー */
  .fv {
    padding: 30px 0 50px;
    background-image: url(/assets/web/images/lp_unsoul_whitelabel/fv-bg-tb.webp);
  }

  .fv-flex {
    flex-direction: column;
    gap: 24px;
    margin-top: 0;
  }

  .fv-content {
    margin-top: 0;
    gap: 16px;
  }

  .fv-content img {
    max-width: 75%;
    margin: 0 auto;
  }

  .fv-image {
    flex: none;
    width: 75%;
    margin: 0 auto;
  }

  .fv-subcopy {
    text-align: center;
    margin-left: 0;
    font-size: 1rem;
  }

  .fv-btn-pc {
    display: none;
  }

  .fv-btn-sp {
    display: flex;
    width: 100%;
    align-items: center;
    margin: 0 auto;
    padding: 0 50px;
  }

  /* ボタン */
  .btn {
    padding: 28px 35px;
    width: 100%;
    justify-content: center;
  }

  .btn-wrap {
    width: 100%;
    padding: 0 50px;
  }

  /* 悩みセクション */
  .problem {
    clip-path: polygon(0 0, 100% 0, 100% 94%, 50% 100%, 0 94%);
    padding-bottom: 100px;
  }

  .problem-grid {
    gap: 16px;
  }

  .problem-item {
    width: calc(50% - 8px); /* 2列 */
    padding: 32px 14px 20px;
    margin-top: 20px;
  }

  .problem-item img {
    width: 80px;
    height: 80px;
  }

  .problem-item02 {
    margin: 60px 0 30px;
  }

  .problem-item02 .highlight {
    font-size: 1.2rem;
  }

  .problem-endcopy {
    font-size: 1.3rem;
  }

  .inline-logo {
    height: 2.5em;
  }

  /* 解決策セクション */
  .solution {
    margin-top: -80px;
  }

  .solution-title {
    font-size: 1.3rem;
    margin: 80px 0 16px;
  }

  .solution-sub {
    font-size: 1rem;
  }

  .solution-compare {
    flex-direction: column;
    gap: 16px;
    margin: 60px 40px 0;
  }

  .solution-compare-arrow {
    transform: rotate(90deg);
    flex: 0 0 auto;
  }

  .solution-card-title {
    font-size: 1.4rem;
  }

  /* CTAエリア */
  .cta-area {
    padding: 60px 20px;
  }

  /* 特徴セクション */
  .features-intro {
    text-align: left;
    margin-bottom: 40px;
  }

  .features-intro-title {
    font-size: 1.3rem;
    text-align: center;
  }

  .features-intro-text {
    text-align: center;
    font-size: 1rem;
  }

  .features-intro-func {
    flex-direction: column;
    width: 100%;
  }

  .features-func-title {
    font-size: 1.3rem;
  }

  .features-intro-image {
    margin: 10px 0 30px;
  }

  .features-intro-image img {
    max-width: 640px;
  }

  .features-list {
    width: 100%;
    gap: 40px;
    padding: 0 30px;
  }

  .features-item {
    flex-direction: column !important;
    gap: 24px;
    padding: 30px;
  }

  .features-item:nth-child(even) .features-num {
    text-align: left;
  }

  .features-item-title {
    font-size: 1.4rem;
  }

  .features-item-image {
    max-width: 100%;
    width: 100%;
    justify-content: center;
  }

  /* 提供価値セクション */
  .value-item {
    width: calc(33.333% - 14px);
    padding: 20px;
  }

  .value-item-title {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .value-intro-text {
    font-size: 1rem;
  }

  .value-grid {
    gap: 15px;
  }

  /* 判断材料セクション */
  .judgment {
    clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
    padding-bottom: 100px;
  }

  .judgment-grid {
    gap: 12px;
  }

  .judgment-item {
    flex: 1;
    padding: 15px;
  }

  .judgment-item-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .judgment-text {
    font-size: 1.1rem;
  }

  /* 3つの使い方セクション */
  .step-item-image img {
    max-width: 480px;
  }

  .step-intro-text {
    font-size: 1rem;
  }

  .step-item {
    flex-direction: column !important;
    padding: 30px;
  }

  .step-item-text {
    text-align: justify;
  }

  /* 成果と実績 */
  .achievement-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .achievement-label {
    font-size: 1.3rem;
  }

  .achievement-item {
    min-height: 200px;
  }

  .achievement-item:last-child {
    grid-column: 1 / 3;
    width: 50%;
    margin: 0 auto;
  }

  .achievement-icon {
    width: 140px;
  }

  .achievement-text {
    font-size: 1.2rem;
  }

  .achievement-num-after {
    font-size: 3.2rem;
  }

  .achievement-notes {
    margin: 16px 0;
  }

  /* フローセクション */
  .flow-list {
    max-width: 100%;
    margin: 50px 30px 0;
  }

  .flow-num {
    padding: 16px 0;
  }

  .flow-body {
    font-size: 1.2rem;
    padding: 16px;
  }

  .flow-icon img {
    width: 70px;
    height: 70px;
  }

  /* お客様の声 */
  .voice-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 50px;
  }

  .voice-card {
    flex: none;
    width: 100%;
    max-width: 500px;
  }

  /* 特典セクション */
  .benefit-box {
    padding: 40px 20px;
  }

  .benefit-box h2 {
    font-size: 1.5rem;
  }

  .benefit-list {
    flex-wrap: wrap;
  }

  .benefit-list img {
    max-width: 275px;
    width: 100%;
  }

  /* FAQセクション */
  .faq-list {
    max-width: 100%;
  }

  /* お問い合わせフォーム */
  .contact-box {
    padding: 32px 20px;
    margin-top: 32px;
  }

  .contact-row {
    flex-direction: column;
    gap: 20px;
  }

  .contact-tel {
    font-size: 1.4rem;
    margin: 40px 0 20px;
  }

  .contact-tel-container {
    gap: 8px;
  }

  .contact-tel-num {
    font-size: 1.4rem;
  }

  /* フッター */
  .footer-flex {
    align-items: center;
    text-align: center;
    flex-direction: column;
  }

  .footer-links {
    justify-content: center;
  }
}

/* ----------------------------------------
スマートフォン（480px以下）
---------------------------------------- */
@media (max-width: 480px) {
  /* SP：改行する */
  .sp-br-sm {
    display: block;
  }

  /* 480px以下のみ改行 */
  .sp-br {
    display: none;
  }

  /* 共通 */
  .container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }

  .section-title-en {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .section-title span {
    width: 35px;
  }

  .section-padding {
    padding: 40px 0 60px;
  }

  /* ヘッダー */
  header {
    padding: 10px 0;
  }

  .header-logo {
    width: 80px;
  }

  .header-contact {
    margin-right: -8px;
  }

  .header-tel img {
    width: 22px;
  }

  .header-tel-num {
    font-size: 1.3rem;
  }

  .header-btn {
    display: none;
  }

  .header-contact p {
    font-size: 0.75em;
  }

  /* FVセクション */
  .fv {
    padding: 20px 0 50px;
    background-image: url(/assets/web/images/lp_unsoul_whitelabel/fv-bg-sp.webp);
  }

  .fv-content {
    gap: 6px;
  }

  .fv-content img {
    max-width: 100%;
    margin: 0 auto;
  }

  .fv-image {
    flex: none;
    width: 100%;
    margin: 0 12px;
  }

  /* ボタン */
  .btn {
    font-size: 1.1rem;
    gap: 5px;
    padding: 18px 0px;
    text-align: center;
  }

  .cta-area .btn {
    padding: 16px;
  }

  .btn-wrap {
    padding: 0 8px;
  }

  .btn-microcopy {
    font-size: 1rem;
    text-align: center;
    padding: 7px;
  }

  .btn-icon {
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    padding: 2px;
  }

  /* 悩みセクション */
  .problem {
    clip-path: polygon(0 0, 100% 0, 100% 98%, 50% 100%, 0 98%);
  }

  .problem-item {
    width: 100%;
    margin: 15px;
  }

  .problem-item img {
    width: 100px;
    height: 100px;
  }

  .problem-item02 {
    margin: 40px 0 30px;
  }

  .problem-item02-text {
    font-size: 1rem;
  }

  .inline-logo {
    height: 3.5em;
    vertical-align: -15%;
  }

  .problem-endcopy {
    font-size: 1.1rem;
    margin-bottom: 60px;
  }

  /* 解決策セクション */
  .solution-title {
    font-size: 1.2rem;
    margin: 90px 0 16px;
  }

  .solution-compare {
    margin: 40px 5px 20px;
    gap: 5px;
  }

  .solution-card {
    padding: 15px;
  }

  .solution-card-list {
    gap: 5px;
  }

  .solution-card-title {
    font-size: 1.2rem;
  }

  .solution-card-sub {
    margin-top: 12px;
  }

  /* 特徴セクション */
  .features-intro-title {
    font-size: 1.2rem;
  }

  .features-intro-image img {
    max-width: 300px;
  }

  .features-func-container {
    gap: 12px;
  }

  .features-func-item {
    padding: 15px;
    margin: 0 15px;
    gap: 10px;
  }

  .features-func-title {
    font-size: 1.3rem;
  }

  .features-intro {
    text-align: left;
    margin-bottom: 0px;
  }

  .features-intro-text {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .features-intro-func {
    gap: 25px;
  }

  .features-intro-image {
    margin: 10px 0;
  }

  .features-list {
    gap: 30px;
    padding: 0;
  }

  .features-item {
    padding: 20px 15px;
  }

  .features-num {
    font-size: 3.5rem;
    margin-bottom: 0px;
  }

  .features-item-content-inner {
    flex-wrap: nowrap;
    gap: 15px;
    margin-bottom: 0px;
  }

  .features-item {
    gap: 16px;
  }

  .features-item-title {
    font-size: 1.3rem;
  }

  .features-item-image {
    max-width: 80%;
    width: 80%;
  }

  /* 提供価値セクション */
  .value-item {
    width: 100%;
    padding: 15px;
    margin: 0px 15px;
  }

  .value-intro-text {
    margin-bottom: 20px;
  }

  /* 判断材料セクション */
  .judgment {
    clip-path: polygon(0 0, 100% 0, 100% 94%, 50% 100%, 0 94%);
  }

  .judgment-grid {
    flex-direction: column;
  }

  .judgment-text {
    margin: 20px 0;
  }

  .judgment-note {
    font-size: 0.9rem;
    text-align: left;
    margin-bottom: 20px;
  }

  .judgment-item {
    margin: 0px 15px;
  }

  /* 3つの使い方セクション */
  .step-item-image img {
    max-width: 280px;
  }

  .step-grid {
    margin-top: 0px;
    gap: 0px;
  }

  .step-item {
    gap: 30px;
    padding: 20px 15px;
  }

  .step-item-content-inner {
    flex-wrap: nowrap;
    gap: 15px;
  }

  .step-item-title {
    font-size: 1.2rem;
  }

  .step-num {
    width: 40px;
    height: 40px;
  }

  /* 成果と実績 */
  .achievement-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 0 15px;
  }

  .achievement-block {
    margin-top: 40px;
    text-align: center;
  }

  .achievement-label {
    font-size: 1.2rem;
  }

  .achievement-item:last-child {
    width: 100%;
    grid-column: auto;
  }

  .achievement-item {
    padding: 18px;
  }

  .achievement-num-after {
    font-size: 3rem;
  }

  .achievement-notes {
    font-size: 0.9rem;
  }

  /* フローセクション */
  .flow-list {
    margin: 30px 0 0;
  }

  .flow-num {
    width: 60px;
    min-width: 60px;
    font-size: 1rem;
  }

  .flow-body {
    font-size: 1.05rem;
    line-height: 1.4;
    padding: 6px 0 6px 12px;
  }

  .flow-icon {
    width: 60px;
    min-width: 60px;
    padding: 0 6px;
  }

  .flow-icon img {
    width: 44px;
    height: 44px;
  }

  .flow-item:not(:last-child)::after {
    left: 25px;
  }

  /* お客様の声 */

  .voice-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 290px;
    margin: 30px auto;
  }

  .voice-card {
    padding: 18px 18px 30px;
  }

  .voice-avatar img {
    width: 120px;
    max-width: 120px;
  }

  .voice-avatar {
    width: 120px;
    height: 120px;
  }

  .voice-title {
    font-size: 1.2rem;
  }

  .voice-meta {
    padding: 8px 8px;
    margin: 10px -20px -32px;
    font-size: 0.9rem;
  }

  /* 特典 */
  .benefit-box {
    padding: 16px;
  }

  .benefit-box h2 {
    margin: 15px 0;
  }

  .benefit-list {
    gap: 0px;
  }

  .benefit-list img {
    max-width: 210px;
  }

  .benefit-box > p {
    margin: 16px 0;
    font-size: 1rem;
  }

  /*よくある質問*/

  .faq-q {
    font-size: 1rem;
    padding: 15px;
  }

  .faq-a {
    padding: 15px;
  }

  .faq-list {
    gap: 15px;
  }

  /* お問い合わせ */
  .contact-box {
    padding: 24px 16px;
  }

  .contact-note {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .contact-tel {
    font-size: 1.25rem;
  }

  .contact-tel-container {
    flex-direction: column;
    gap: 0;
  }

  /* フッター */
  footer {
    background: #13162b;
    color: var(--white);
    padding: 40px 0 80px;
    padding-bottom: 100px;
    font-size: 0.88rem;
  }

  .footer-flex {
    gap: 12px;
    margin-bottom: 4px;
  }

  /* スマホ用固定CTA */
  .fixed-cta-sp {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background-image: url(/assets/web/images/lp_unsoul_whitelabel/cta-bg.webp);
    background-size: cover;
    background-position: center;
    z-index: 99;
  }

  .fixed-cta-sp.visible {
    opacity: 1;
    pointer-events: auto;
  }

  .fixed-cta-sp .btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1.1rem;
  }
}

/* ============================================
   layout-lpテンプレート由来の不要要素を非表示
   ============================================ */
#colophon {
  display: none;
}

/* ============================================
   個人情報保護方針モーダル + 注釈
   （lp_recruitから移植）
   ============================================ */
.terms_notes-text {
  margin: 0 auto 2em;
  text-align: center;
  font-size: 14px;
  max-width: 550px;
  padding: 0 10px;
  color: #333;
}

.terms_notes-text span.js-modal-open {
  color: #0000EE;
  text-decoration: underline;
  cursor: pointer;
}

/* 個人情報保護方針モーダル本体
   ※ Bootstrap.js の .modal クラスと衝突するため独自命名 */
.lp-privacy-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.lp-privacy-modal.active {
  display: block;
}

.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.lp-privacy-modal .modal-content {
  position: relative;
  background: #fff;
  max-width: 850px;
  width: 90%;
  margin: 50px auto;
  padding: 40px 30px;
  border-radius: 8px;
  z-index: 1;
  max-height: 85vh;
  overflow: hidden;
  color: #333;
  text-align: left;
}

.lp-privacy-modal .modal-xmark {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.lp-privacy-modal .modal-xmark span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
}

.lp-privacy-modal .modal-xmark span:nth-child(1) {
  transform: rotate(45deg);
}

.lp-privacy-modal .modal-xmark span:nth-child(2) {
  transform: rotate(-45deg);
}

#terms {
  height: 60vh;
  background: #f5f5f5;
  padding: 15px 15px 50px;
  overflow-x: hidden;
  overflow-y: scroll;
  font-size: 14px;
  color: #333;
  text-align: left;
}

#terms p.terms_company {
  text-align: right;
}

#terms h2 {
  font-size: 18px;
  margin: 0 0 15px;
  text-align: center;
}

#terms h3 {
  font-size: 15px;
  margin: 15px 0 5px;
  font-weight: bold;
}

#terms ul {
  padding-left: 1.5em;
}

#terms .document {
  margin: 20px 0 0;
}

/* 同意して送信ボタン（disabled状態） */
.contact-btn[disabled],
.contact-btn:disabled {
  background: #b0bcd4;
  cursor: not-allowed;
  opacity: 0.7;
}

/* ============================================
   doraever/style.css の a:hover, a:focus による
   文字色変化・下線を打ち消す
   （`a:hover { color: #1d6fa5; text-decoration: underline; }` を上書き）
   ============================================ */
.btn:hover,
.btn:focus,
.header-btn:hover,
.header-btn:focus,
.contact-btn:hover,
.contact-btn:focus,
.thanks-btn:hover,
.thanks-btn:focus,
.footer-links a:hover,
.footer-links a:focus {
  text-decoration: none;
}

.btn:hover,
.btn:focus,
.header-btn:hover,
.header-btn:focus,
.contact-btn:hover,
.contact-btn:focus,
.thanks-btn:hover,
.thanks-btn:focus {
  color: var(--white);
}
