@charset "UTF-8";
:root {
  --color-1: #002F6C;
  --color-2: #7F0800;
  --color-3: #767171;
}

/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  min-width: auto !important;
}

/* ━━━━━━━━━━━━━━━━

 ■ユーティリティ

━━━━━━━━━━━━━━━━ */
/**
 * Display
 */
/*==================================
* media
==================================*/
@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none !important;
  }
}

@media print {
  .l-footer__sp-menu {
    display: none;
  }
}
/**
 * Margin
 */
.u-mr-5 {
  margin-right: 5px !important;
}

.u-mr-10 {
  margin-right: 10px !important;
}

.u-ml-5 {
  margin-left: 5px !important;
}

.u-ml-10 {
  margin-left: 10px !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

/**
 * Padding
 */
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pd-0 {
  padding: 0 !important;
}

/**
 * Text
 */
/*==================================
* マーカー
==================================*/
.u-text-marker {
  background: linear-gradient(transparent 70%, #FFF799 70%);
}

/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */
/**
 * Block
 */
/*==================================
* コンテナ
==================================*/
.c-block {
  margin: 0 auto;
  padding: 30px 0;
}

@media screen and (min-width: 768px) {
  .c-block {
    max-width: 1140px;
  }
}
/**
 * Button
 */
/*==================================
* Button Container
==================================*/
.c-button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 24px 0 0 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-button-container {
    padding: 44px 0 0 0;
  }
}

/*==================================
* Button
==================================*/
.c-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 15px 40px;
  border-radius: 8px;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 2.6vw, 16px);
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.c-button svg {
  flex-shrink: 0;
}

/*
　Solid variants (共通)
================================*/
.c-button--primary,
.c-button--secondary,
.c-button--tertiary,
.c-button--line,
.c-button--gold {
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  text-decoration: none !important;
  transition: all 0.3s ease;
}
.c-button--primary:hover,
.c-button--secondary:hover,
.c-button--tertiary:hover,
.c-button--line:hover,
.c-button--gold:hover {
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.c-button--primary {
  background: var(--color-1);
}
.c-button--primary:hover {
  background: color-mix(in srgb, var(--color-1), black 20%);
}

.c-button--secondary {
  background: var(--color-2);
}
.c-button--secondary:hover {
  background: color-mix(in srgb, var(--color-2), black 20%);
}

.c-button--tertiary {
  background: #627786;
}
.c-button--tertiary:hover {
  background: #556976;
}

.c-button--line {
  background: #05A348;
}
.c-button--line:hover {
  background: #048F3F;
}

.c-button--gold {
  background: #DAA929;
}
.c-button--gold:hover {
  background: color-mix(in srgb, #DAA929, black 20%);
}

/*
　Ghost variant
================================*/
.c-button--ghost {
  padding: 13px 38px;
  color: #fff !important;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-decoration: none !important;
  transition: all 0.3s ease;
}
.c-button--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/*
　Outline variant
================================*/
.c-button-outline--primary {
  padding: 13px 30px;
  border: 2px solid var(--color-1);
  background: #fff;
  color: var(--color-1) !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  will-change: transform;
}
.c-button-outline--primary:hover {
  color: #fff !important;
  background: var(--color-1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/*=================================

* Case（事例カード）

=================================*/
.c-case__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .c-case__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-case__card {
  padding: 26px 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #E7EDF2;
  transition: all 0.25s ease;
}
.c-case__card:hover {
  border-color: #DCE5EC;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.08);
  transform: translateY(-2px);
}
.c-case__card-label {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 14px;
  font-family: "Arial", sans-serif;
  font-size: clamp(15px, 2.6vw, 16px);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-1);
  background: #EDF3F8;
  border-radius: 9999px;
}
.c-case__card-title {
  margin-bottom: 20px;
  font-size: clamp(18px, 2.6vw, 19px);
  font-weight: 700;
  color: var(--color-1);
  line-height: 1.5;
}
.c-case__card-dl {
  font-size: clamp(15px, 2.6vw, 16px);
  line-height: 1.7;
}
.c-case__card-dl dt {
  display: inline-block;
  margin-top: 16px;
  margin-bottom: 8px;
  padding: 3px 12px;
  font-size: clamp(13px, 2.6vw, 14px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #8B5A3C;
  background: #F7ECE8;
  border-radius: 9999px;
}
.c-case__card-dl dt:first-child {
  margin-top: 0;
}
.c-case__card-dl dt:nth-of-type(2) {
  color: var(--color-1);
  background: #EDF3F8;
}
.c-case__card-dl dd {
  color: #333;
}
.c-case__link {
  margin-top: 48px;
  text-align: center;
}

/*=================================

* Case Card（ケースカード）
* ヘッダー付きカード。色バリエーション対応
* --primary（ネイビー） / --accent（オレンジ）

=================================*/
.c-case-card__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .c-case-card__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}
.c-case-card__card {
  background: #fff;
  border: 1px solid #E7EDF2;
  border-radius: 6px;
  box-shadow: 0 3px 14px rgba(47, 94, 134, 0.1);
  overflow: hidden;
}
.c-case-card__card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--color-1); /* デフォルト: primary */
}
.c-case-card__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  /* SVGと画像(img)の両方に対応・中央配置 */
}
.c-case-card__card-icon svg, .c-case-card__card-icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  /* 画像が黒などで見えにくい場合は、filter: invert(1); などで白くすることも可能です */
}
.c-case-card__card-title {
  font-size: clamp(17px, 2.6vw, 19px);
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
.c-case-card__card-body {
  padding: 20px 22px 24px;
}
.c-case-card__card-text {
  font-size: clamp(15px, 2.6vw, 16px);
  line-height: 1.7;
  color: #333;
}
.c-case-card {
  /* ---- カラーバリエーション ---- */
  /* Primary（ネイビー）: デフォルト */
}
.c-case-card--primary .c-case-card__card-header {
  background: var(--color-1);
}
.c-case-card {
  /* Accent（オレンジ） */
}
.c-case-card--accent .c-case-card__card-header {
  background: var(--color-2);
}

/*=================================

* Compare（比較テーブル）
* 2列・3列どちらにも対応

=================================*/
.c-compare__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.c-compare__table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  table-layout: fixed;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(44, 95, 124, 0.06);
}
.c-compare__table thead th {
  padding: 16px 20px;
  font-size: clamp(17px, 2.6vw, 19px);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}
.c-compare__table tbody td {
  padding: 16px 20px;
  font-size: clamp(16px, 2.6vw, 17px);
  line-height: 1.6;
  border-bottom: 1px solid #D4DCE4;
  vertical-align: middle;
}
.c-compare__table tbody tr:last-child td {
  border-bottom: none;
}
.c-compare {
  /* ---- ヘッダー列 ---- */
}
.c-compare__th-label {
  background: #D4DCE4;
  color: #35414A;
  width: 20%;
}
.c-compare__th-primary {
  background: var(--color-1);
  color: #fff;
}
.c-compare__th-secondary {
  background: var(--color-2);
  color: #fff;
}
.c-compare__th-tertiary {
  background: #7B8F6B;
  color: #fff;
}
.c-compare {
  /* ---- ボディ列 ---- */
}
.c-compare__td-label {
  background: #E7EDF2;
  font-weight: 700;
  color: #35414A;
  text-align: center;
}
.c-compare__td-primary {
  background: color-mix(in srgb, var(--color-1), White 90%);
  text-align: center;
}
.c-compare__td-secondary {
  background: color-mix(in srgb, var(--color-2), White 90%);
  text-align: center;
}
.c-compare__td-tertiary {
  background: #F0F3EC;
  background: color-mix(in srgb, #7B8F6B, White 90%);
  text-align: center;
}
.c-compare {
  /* ---- バッジ ---- */
}
.c-compare__badge {
  display: inline-block;
  margin-bottom: 4px;
  padding: 2px 10px;
  font-size: clamp(13px, 2.6vw, 14px);
  font-weight: 700;
  border-radius: 9999px;
  letter-spacing: 0.04em;
}
.c-compare__badge--good {
  color: #fff;
  background: var(--color-1);
}
.c-compare__badge--neutral {
  color: #4F5A64;
  background: #D4DCE4;
}
.c-compare {
  /* ---- 注釈カード ---- */
}
.c-compare__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 30px auto 0;
  padding: 14px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #E7EDF2;
  box-shadow: 0 1px 3px rgba(44, 95, 124, 0.06);
  max-width: 530px;
}
@media (min-width: 768px) {
  .c-compare__note {
    gap: 20px;
    margin: 40px auto 0;
    padding: 20px;
  }
}
.c-compare__note-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .c-compare__note-icon {
    width: 55px;
    height: 55px;
  }
}
.c-compare__note-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-compare__note-title {
  font-size: clamp(17px, 2.6vw, 20px);
  font-weight: 700;
  color: var(--color-1);
  margin-bottom: 2px;
}
.c-compare__note-text {
  font-size: clamp(15px, 2.6vw, 16px);
  line-height: 1.7;
  color: #333;
}
.c-compare {
  /* ---- ボタンリンク ---- */
}
.c-compare__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .c-compare__links {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
}

/*=================================

* Contact (共通コンポーネント)

=================================*/
.c-contact {
  padding: 80px 12px;
  background: linear-gradient(180deg, #031A36 0%, #1c304a 100%);
}
@media (min-width: 768px) {
  .c-contact {
    padding: 100px 12px;
  }
}
.c-contact__desc {
  text-align: center;
  font-size: clamp(16px, 2.6vw, 18px);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
  line-height: 1.8;
}
.c-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 480px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .c-contact__grid {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1140px;
  }
  .c-contact__grid__col4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: 1250px;
  }
  .c-contact__grid__col4 .c-button {
    padding: 15px 35px;
  }
}
.c-contact__tel, .c-contact__sell, .c-contact__inquiry, .c-contact__line {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .c-contact__tel, .c-contact__sell, .c-contact__inquiry, .c-contact__line {
    padding: 30px 20px;
  }
}
.c-contact__method-label {
  display: block;
  font-size: clamp(15px, 2.6vw, 17px);
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.c-contact__tel-num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
}
.c-contact__tel-num a {
  font-size: 27px;
  font-weight: 800;
  font-family: "Century Gothic", "Arial", sans-serif;
  color: #fff;
  letter-spacing: 0.02em;
  text-decoration: none !important;
}
.c-contact__business-hours, .c-contact__note {
  display: block;
  margin-top: 14px;
  line-height: 1.6;
  font-size: clamp(14px, 2.6vw, 16px);
  color: rgba(255, 255, 255, 0.85);
}
.c-contact__tel .c-contact__note {
  margin-top: 5px;
}
.c-contact__store-name {
  font-size: clamp(17px, 2.6vw, 19px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.c-contact__store-address {
  font-size: clamp(14px, 2.6vw, 16px);
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}
.c-contact {
  /* LINE チャネル */
}
.c-contact__line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 40px;
  font-size: clamp(15px, 2.6vw, 16px);
  font-weight: 700;
  color: #fff !important;
  background: #05A348;
  border-radius: 8px;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.c-contact__line-btn:hover {
  background: #048a3d;
  transform: translateY(-2px);
}
.c-contact__line-btn svg {
  flex-shrink: 0;
}
.c-contact__promise {
  margin-top: 32px;
  text-align: center;
}
.c-contact__promise-title {
  font-size: clamp(16px, 2.6vw, 18px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 16px;
}
.c-contact__promise-list {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.c-contact__promise-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: clamp(15px, 2.6vw, 16px);
  color: rgba(255, 255, 255, 0.74);
}
.c-contact__promise-list li svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: #E3A391;
}
@media (min-width: 768px) {
  .c-contact__promise-list li svg {
    margin-top: 6px;
  }
}

/*=================================

* CTA Band (共通コンポーネント)

=================================*/
.c-cta-band {
  padding: 55px 12px;
  text-align: center;
  background: #EDF3F8;
}
@media (min-width: 768px) {
  .c-cta-band {
    padding: 70px 12px;
  }
}
.c-cta-band--dark {
  background: linear-gradient(135deg, color-mix(in srgb, var(--color-1), black 30%) 0%, color-mix(in srgb, var(--color-1), black 30%) 100%);
  color: #fff;
}
.c-cta-band--dark .c-button-outline--primary {
  padding: 16px 30px;
}
.c-cta-band--dark .c-button-outline--primary:hover {
  color: var(--color-1) !important;
  background: #f5f5f5;
}
.c-cta-band--dark .c-cta-band__text {
  color: #fff;
}
.c-cta-band__text {
  margin-bottom: 20px;
  font-size: clamp(19px, 2.6vw, 25px);
  font-weight: 700;
  line-height: 1.8;
  color: #35414A;
}
.c-cta-band__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .c-cta-band__actions {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
}
.c-cta-band__micro {
  margin-top: 16px;
  font-size: clamp(14px, 2.6vw, 15px);
  opacity: 0.7;
}

/*=================================

* CTA AI査定 (共通コンポーネント)

=================================*/
.c-cta-ai-satei {
  position: relative;
  padding: 40px 24px 28px;
  background: #fff;
  border: 1px solid #E7EDF2;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .c-cta-ai-satei {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    align-items: start;
    -moz-column-gap: 32px;
         column-gap: 32px;
    padding: 40px 34px 32px;
  }
}
.c-cta-ai-satei__title {
  margin-bottom: 8px;
  font-size: clamp(20px, 2.6vw, 22px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-1);
}
@media (min-width: 768px) {
  .c-cta-ai-satei__title {
    grid-column: 1;
  }
}
.c-cta-ai-satei__text {
  font-size: clamp(16px, 2.6vw, 17px);
  line-height: 1.7;
  color: #333;
}
@media (min-width: 768px) {
  .c-cta-ai-satei__text {
    grid-column: 1;
  }
}
.c-cta-ai-satei__action {
  margin-top: 15px;
  text-align: center;
}
@media (min-width: 768px) {
  .c-cta-ai-satei__action {
    grid-column: 2;
    grid-row: 1/-1;
    align-self: end;
    margin-top: 0;
  }
}
.c-cta-ai-satei__button {
  display: inline-block;
  padding: 12px 20px;
  font-size: clamp(16px, 2.6vw, 17px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-1) !important;
  background: #fff;
  border: 2px solid var(--color-1);
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
}
@media (min-width: 768px) {
  .c-cta-ai-satei__button {
    min-width: 250px;
  }
}
.c-cta-ai-satei__button:hover {
  color: #fff !important;
  background: var(--color-1);
}

/*=================================

* FAQ (共通コンポーネント)

=================================*/
.c-faq {
  padding: 80px 12px;
}
@media (min-width: 768px) {
  .c-faq {
    padding: 100px 12px;
  }
}
.c-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.c-faq__item {
  background: #fff;
  border: 1px solid #E7EDF2;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.c-faq__item:hover {
  border-color: #EDF3F8;
}
.c-faq__item[open] {
  border-color: var(--color-1);
  box-shadow: 0 2px 12px rgba(44, 95, 124, 0.1);
}
.c-faq__item[open] .c-faq__question::after {
  transform: rotate(-135deg);
}
.c-faq__question {
  display: flex;
  align-items: self-start;
  padding: 20px 48px 20px 24px;
  font-size: clamp(16px, 2.6vw, 17px);
  font-weight: 600;
  color: #35414A;
  cursor: pointer;
  position: relative;
  list-style: none;
}
.c-faq__question::-webkit-details-marker {
  display: none;
}
.c-faq__question::before {
  content: "Q.";
  flex-shrink: 0;
  margin-right: 12px;
  font-family: "Arial", sans-serif;
  font-size: clamp(17px, 2.6vw, 19px);
  font-weight: 700;
  color: var(--color-1);
}
.c-faq__question::after {
  content: "";
  position: absolute;
  top: 42%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #7C8894;
  border-bottom: 2px solid #7C8894;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.c-faq__answer {
  padding: 0 24px 20px;
}
.c-faq__answer p {
  font-size: clamp(16px, 2.6vw, 17px);
  color: #333;
  line-height: 1.6;
  padding-left: 28px;
  position: relative;
}
.c-faq__answer p::before {
  content: "A.";
  position: absolute;
  left: 0;
  font-family: "Arial", sans-serif;
  font-size: clamp(17px, 2.6vw, 19px);
  font-weight: 700;
  color: var(--color-2);
}

/*=================================

* Flow（〇〇の流れ）

=================================*/
.c-flow {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.c-flow::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #DCE5EC;
}
@media (min-width: 768px) {
  .c-flow::before {
    left: 28px;
  }
}
.c-flow__step {
  display: flex;
  gap: 15px;
  padding: 24px 0;
  position: relative;
}
@media (min-width: 768px) {
  .c-flow__step {
    gap: 28px;
    padding: 28px 0;
  }
}
.c-flow__step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-1);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 21px;
  font-weight: 700;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px #F7F9FA;
}
@media (min-width: 768px) {
  .c-flow__step-num {
    width: 55px;
    height: 55px;
    font-size: 25px;
    box-shadow: 0 0 0 7px #F7F9FA;
  }
}
.c-flow__step-body {
  padding-top: 4px;
}
@media (min-width: 768px) {
  .c-flow__step-body {
    padding-top: 12px;
  }
}
.c-flow__step-title {
  margin-bottom: 8px;
  font-size: clamp(19px, 2.6vw, 22px);
  font-weight: 700;
  color: var(--color-1);
}
.c-flow__step-text {
  font-size: clamp(15px, 2.6vw, 16px);
  line-height: 1.75;
  color: #333;
}
.c-flow__link {
  margin-top: 48px;
  text-align: center;
}

/*=================================

* Info Grid（アイコン+タイトル+リスト カード）

=================================*/
.c-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .c-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-info-grid__card {
  padding: 24px 25px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #E7EDF2;
  transition: all 0.25s ease;
}
.c-info-grid__card:hover {
  border-color: #a3bcd1;
  box-shadow: 0 1px 3px rgba(44, 95, 124, 0.06);
}
.c-info-grid__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
  color: var(--color-1);
  background: #EDF3F8;
  border-radius: 50%;
}
.c-info-grid__card-icon img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-info-grid__card-title {
  margin-bottom: 16px;
  font-size: clamp(19px, 2.6vw, 22px);
  font-weight: 700;
  color: var(--color-1);
  text-align: center;
  line-height: 1.4;
}
.c-info-grid__card-list {
  list-style: none;
}
.c-info-grid__card-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: clamp(16px, 2.6vw, 17px);
  line-height: 1.7;
  color: #333;
}
.c-info-grid__card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #DCE5EC;
  border-radius: 50%;
}
.c-info-grid__card-list li:last-child {
  margin-bottom: 0;
}
.c-info-grid__card-text {
  font-size: clamp(15px, 2.6vw, 16px);
  line-height: 1.7;
  color: #333;
}
.c-info-grid__note {
  margin-top: 32px;
  font-size: clamp(15px, 2.6vw, 16px);
  line-height: 1.8;
  color: #7C8894;
}
.c-info-grid__link {
  margin-top: 48px;
  text-align: center;
}

/*=================================

* Num Card（ナンバーカード）
* 番号＋タイトル＋テキストの強調カード

=================================*/
.c-num-card__grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 860px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .c-num-card__grid {
    gap: 50px;
  }
}
.c-num-card__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 15px;
  padding: 20px 17px;
  background: #F7FAFD;
  border-radius: 6px;
  border: 1px solid #E7EDF2;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .c-num-card__card {
    padding: 32px 36px;
    gap: 0 32px;
  }
}
.c-num-card__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(47, 94, 134, 0.12);
  border-color: #a3bcd1;
}
.c-num-card__card-num {
  grid-row: span 2;
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: #9EB0C0;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .c-num-card__card-num {
    align-items: center;
    padding-top: 0;
    font-size: 64px;
  }
}
.c-num-card__card-title {
  margin-bottom: 8px;
  font-size: clamp(18px, 3vw, 21px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-1);
}
.c-num-card__card-text {
  font-size: clamp(15px, 2.6vw, 16px);
  line-height: 1.7;
  color: #333;
}

/*
　紹介-01
================================*/
.c-introduction-01 {
  width: 90%;
  max-width: 800px;
  margin: 48px auto 0;
}

.c-introduction-01__image img {
  display: block;
  width: clamp(120px, 20.8333333333vw, 160px);
  height: clamp(120px, 20.8333333333vw, 160px);
  margin: 0 auto 10px auto;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-introduction-01__image p {
  font-size: clamp(14px, 2.6vw, 15px);
  color: #4F5A64;
  text-align: center;
  line-height: 1.3;
}

.c-introduction-01__image p:last-child {
  font-size: clamp(16px, 2.6vw, 18px);
  font-weight: 700;
  color: var(--color-1);
}

.c-introduction-01__text__inner {
  position: relative;
  display: inline-block;
  margin-top: 30px;
  padding: 20px 15px;
  border: 1px solid #D4DCE4;
  border-radius: 10px;
  background-color: #fff;
  text-align: left;
  font-size: clamp(16px, 2.6vw, 17px);
  font-weight: 400;
  line-height: 1.8;
  color: #4F5A64;
}

.c-introduction-01__text__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-style: solid;
  border-width: 0 10px 20px 10px;
  border-color: transparent transparent #D4DCE4;
  translate: -50% -100%;
}

.c-introduction-01__text__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-style: solid;
  border-width: 0 7.8px 15.5px 7.8px;
  border-color: transparent transparent #fff;
  translate: -50% -100%;
}

.c-introduction-01__text h2 {
  margin-bottom: 10px;
  font-size: clamp(21px, 3.125vw, 25px);
  text-align: center;
  font-weight: bold;
  color: var(--color-1);
  line-height: 1.3;
}

.c-introduction-01__text p {
  line-height: 1.7;
}

@media screen and (min-width: 768px) {
  .c-introduction-01 {
    display: flex;
  }
  .c-introduction-01__image img {
    width: clamp(140px, 15.7894736842vw, 160px);
    height: clamp(140px, 15.7894736842vw, 160px);
  }
  .c-introduction-01__text {
    margin-left: 30px;
  }
  .c-introduction-01__text__inner {
    margin-top: 0;
    margin-left: 20px;
    padding: 20px 24px;
  }
  .c-introduction-01__text__inner::before {
    top: 50%;
    left: 0;
    border-width: 11.5px 20px 11.5px 0;
    border-color: transparent #D4DCE4 transparent transparent;
    translate: -100% -50%;
  }
  .c-introduction-01__text__inner::after {
    top: 50%;
    left: 0;
    border-width: 9.2px 16px 9.2px 0;
    border-color: transparent #fff transparent transparent;
    translate: -100% -50%;
  }
  .c-introduction-01__text h2 {
    font-size: 24px;
    text-align: left;
  }
  .c-introduction-01__text p {
    font-size: clamp(15px, 2.6vw, 16px);
  }
}
/*=================================

* Page Title（ページヒーロー）

=================================*/
.c-page-title {
  position: relative;
  padding: 50px 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
@media (min-width: 768px) {
  .c-page-title {
    padding: 120px 0;
  }
}
.c-page-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(3, 26, 54, 0.65), rgba(3, 26, 54, 0.55));
  /*background: linear-gradient(rgba(11, 60, 93, 0.65), rgba(11, 60, 93, 0.55));*/
  z-index: 1;
}
.c-page-title__inner {
  position: relative;
  z-index: 2;
}
.c-page-title__heading {
  margin-bottom: 16px;
  font-size: 25px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .c-page-title__heading {
    margin-bottom: 24px;
    font-size: clamp(35px, 4vw, 49px);
  }
}
.c-page-title__text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}
@media (min-width: 768px) {
  .c-page-title__text {
    font-size: clamp(16px, 1.5vw, 17px);
  }
}
.c-page-title {
  /* 実績バッジ */
}
.c-page-title__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .c-page-title__badges {
    gap: 12px;
    margin-top: 28px;
  }
}
.c-page-title__badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .c-page-title__badge {
    padding: 8px 22px;
    font-size: 15px;
  }
}
.c-page-title {
  /* CTAボタン群 */
}
.c-page-title__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .c-page-title__cta {
    flex-direction: row;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
  }
}
.c-page-title__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 280px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  border-radius: 6px;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .c-page-title__cta-btn {
    width: auto;
    min-width: 200px;
    padding: 15px 28px;
    font-size: 16px;
  }
}
.c-page-title__cta-btn svg {
  flex-shrink: 0;
}
.c-page-title__cta-btn {
  /* 電話ボタン */
}
.c-page-title__cta-btn--tel {
  color: #fff !important;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.c-page-title__cta-btn--tel:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}
.c-page-title__cta-btn {
  /* フォームボタン（標準） */
}
.c-page-title__cta-btn--form {
  color: #fff !important;
  background: var(--color-2);
  border: 2px solid var(--color-2);
  box-shadow: 0 2px 8px rgba(33, 33, 33, 0.3);
}
.c-page-title__cta-btn--form:hover {
  background: #750404;
  border: 2px solid #750404;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(33, 33, 33, 0.4);
}
.c-page-title__cta-btn {
  /* 無料査定ボタン（ゴールド） */
}
.c-page-title__cta-btn--sell {
  color: #fff !important;
  background: #e0b232;
  border: 2px solid #e0b232;
  box-shadow: 0 2px 8px rgba(244, 197, 66, 0.3);
}
.c-page-title__cta-btn--sell:hover {
  background: #c99b2c;
  border: 2px solid #c99b2c;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(244, 197, 66, 0.4);
}
.c-page-title__cta-btn {
  /* 査定ボタン */
}
.c-page-title__cta-btn--satei {
  color: #fff !important;
  background: var(--color-1);
  border: 2px solid var(--color-1);
  box-shadow: 0 2px 8px rgba(33, 33, 33, 0.3);
}
.c-page-title__cta-btn--satei:hover {
  background: #002466;
  border: 2px solid #002466;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(33, 33, 33, 0.4);
}
.c-page-title__cta-btn {
  /* LINEボタン */
}
.c-page-title__cta-btn--line {
  color: #fff !important;
  background: #05A348;
  border: 2px solid #05A348;
  box-shadow: 0 2px 8px rgba(5, 163, 72, 0.3);
}
.c-page-title__cta-btn--line:hover {
  background: #048a3d;
  border: 2px solid #048a3d;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(5, 163, 72, 0.4);
}

/*=================================

* Plan Card（プランカード）
* ラベル＋タイトル＋テキスト＋ボタン
* おすすめバッジ（--featured）対応

=================================*/
.c-plan-card__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1140px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .c-plan-card__list {
    flex-direction: row;
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-plan-card__card {
  position: relative;
  padding: 40px 24px 28px;
  background: #fff;
  border: 1px solid #E7EDF2;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .c-plan-card__card {
    display: grid;
    align-items: start;
    align-content: space-between;
    padding: 40px 34px 32px;
  }
}
.c-plan-card__card--featured {
  border-color: var(--color-1);
  border-width: 1.5px;
  background: #F7FAFD;
}
.c-plan-card__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  font-size: clamp(13px, 2.6vw, 14px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: #7C8894;
  border-radius: 9999px;
  white-space: nowrap;
}
.c-plan-card__badge--accent {
  background: var(--color-2);
}
.c-plan-card__label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 14px;
  max-width: -moz-max-content;
  max-width: max-content;
  font-size: clamp(14px, 2.6vw, 15px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-1);
  background: #EDF3F8;
  border-radius: 6px;
}
.c-plan-card__title {
  margin-bottom: 8px;
  font-size: clamp(17px, 2.6vw, 18px);
  font-weight: 700;
  line-height: 1.5;
  color: #354B5E;
}
.c-plan-card__text {
  font-size: clamp(15px, 2.6vw, 16px);
  line-height: 1.7;
  color: #333;
}
.c-plan-card__action {
  margin-top: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .c-plan-card__action {
    margin-top: 20px;
  }
}
.c-plan-card__button {
  display: inline-block;
  padding: 12px 20px;
  width: 100%;
  font-size: clamp(14px, 2.6vw, 15px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-1) !important;
  background: #fff;
  border: 2px solid var(--color-1);
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
  box-sizing: border-box;
}
.c-plan-card__button:hover {
  color: #fff !important;
  background: var(--color-1);
}

/*=================================

* Reason（〇〇の理由）

=================================*/
.c-reason__grid {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
@media (min-width: 768px) {
  .c-reason__grid {
    gap: 76px;
  }
}
.c-reason__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 768px) {
  .c-reason__card {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
.c-reason__card-number {
  position: absolute;
  top: -25px;
  left: -10px;
  font-family: "Noto Serif JP", serif;
  font-size: 80px;
  font-weight: 700;
  color: #9EB0C0;
  line-height: 1;
  opacity: 0.9;
  z-index: 3;
}
@media (min-width: 768px) {
  .c-reason__card-number {
    font-size: 100px;
    top: -40px;
  }
}
.c-reason__card-img {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 10px;
}
.c-reason__card-img img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: transform 0.6s ease;
}
.c-reason__card:hover .c-reason__card-img img {
  transform: scale(1.03);
}
.c-reason__card-body {
  position: relative;
  z-index: 2;
}
.c-reason__card-title {
  margin-bottom: 16px;
  font-size: clamp(21px, 4vw, 25px);
  font-weight: 700;
  color: var(--color-1);
  line-height: 1.5;
}
.c-reason__card-text {
  font-size: clamp(16px, 2.6vw, 17px);
  line-height: 1.8;
  color: #333;
}
@media (min-width: 768px) {
  .c-reason__card--reverse .c-reason__card-img {
    order: 2;
  }
  .c-reason__card--reverse .c-reason__card-body {
    order: 1;
  }
  .c-reason__card--reverse .c-reason__card-number {
    left: auto;
    right: -12px;
  }
}

/**
 * Section Header
 */
/*==================================
* Section Header
==================================*/
.c-section-header {
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .c-section-header {
    margin-bottom: 80px;
  }
}
.c-section-header__en {
  display: block;
  margin-bottom: 6px;
  color: var(--color-1);
  font-family: "Arial", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.c-section-header__main {
  color: #1F2A33;
  font-size: clamp(21px, 2.5vw, 30px);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.c-section-header p {
  margin-top: 8px;
  color: #333;
  font-size: clamp(16px, 2.5vw, 17px);
}
.c-section-header--light {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .c-section-header--light {
    margin-bottom: 40px;
  }
}
.c-section-header--light .c-section-header__en {
  color: rgba(255, 255, 255, 0.75);
}
.c-section-header--light .c-section-header__main {
  color: #fff;
}

/*
　システム標準-H2
================================*/
h2.tit {
  margin: 0 auto 30px auto;
  padding: 5px 8px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
  color: #333;
  background-color: transparent !important;
}

/* PC */
@media screen and (min-width: 768px) {
  h2.tit {
    max-width: 1140px;
    margin: 0 auto 50px auto;
    font-size: clamp(24px, 2.6315789474vw, 30px);
  }
}
/*
　システム標準-H3
================================*/
h3.tit {
  position: relative;
  border-bottom: 4px solid #ccc;
  margin: 0 0 20px 0;
  padding: 15px 10px 15px 0;
  font-size: 1.1rem;
  background: transparent;
  text-shadow: none;
  border-top: none;
}

h3.tit:after {
  position: absolute;
  bottom: -4px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 4px;
  background-color: var(--color-1);
}

/* PC */
@media screen and (min-width: 768px) {
  h3.tit {
    max-width: 1140px;
    margin: 0 auto 40px auto;
    padding: 0 0 10px 0;
    font-size: 1.3rem;
  }
}
/*
　シンプル-01・中央寄せ
================================*/
.c-title-01 {
  width: 90%;
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  color: #000;
  margin: 0 auto 30px auto;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-01 {
    width: 100%;
    font-size: 2.5rem;
  }
}
/*
　シンプル-02・テキストカラー
================================*/
.c-title-02,
.c-title-02--color-2 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  color: var(--color-1);
  margin-bottom: 30px;
}

.c-title-02--color-2 {
  color: var(--color-2);
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-02,
  .c-title-02--color-2 {
    font-size: clamp(40px, 4.649122807vw, 53px);
    margin-bottom: 50px;
  }
}
/*
　ルビ付き-01
================================*/
.c-title-ruby-01 {
  margin: 0 auto 20px auto;
  text-align: center;
}

.c-title-ruby-01 h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.c-title-ruby-01 span {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-title-ruby-01 span:before,
.c-title-ruby-01 span:after {
  content: "";
  width: 2em;
  border-top: 1px solid;
}

.c-title-ruby-01 span:before {
  margin-right: 0.7em;
}

.c-title-ruby-01 span:after {
  margin-left: 0.7em;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-01 {
    margin: 0 auto 50px auto;
  }
  .c-title-ruby-01 h2 {
    font-size: 2.5rem;
    margin-bottom: 7px;
  }
  .c-title-ruby-01 span {
    font-size: 1.2rem;
  }
}
/*
　ルビ付き-02
================================*/
.c-title-ruby-02 {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: 1px solid #333;
  margin-bottom: 30px;
  padding: 30px 0 10px 0;
}

.c-title-ruby-02 span {
  position: relative;
  line-height: 1.5;
  z-index: 2;
}

.c-title-ruby-02::before {
  content: attr(data-en);
  position: absolute;
  top: 20px;
  left: 10px;
  color: rgba(15, 10, 50, 0.1);
  font-size: 2rem;
  font-weight: bold;
  font-family: "Arial", sans-serif;
  z-index: 1;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-02 {
    font-size: 3rem;
    margin-bottom: 50px;
  }
  .c-title-ruby-02::before {
    top: 0;
    left: 20px;
    font-size: 4.3rem;
  }
}
/*
　ルビ付き-03
================================*/
.c-title-ruby-03 {
  width: 90%;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  color: var(--color-1);
  margin: 0 auto 30px auto;
}

.c-title-ruby-03 span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-03 {
    width: 100%;
    font-size: 2.3rem;
    line-height: 1.5;
    margin: 0 auto 45px auto;
  }
}
/*
　ルビ付き-04
================================*/
.c-title-ruby-04 {
  width: 90%;
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
  margin: 0 auto 30px auto;
}

.c-title-ruby-04::first-letter {
  color: var(--color-1);
}

.c-title-ruby-04 span {
  display: block;
  font-size: 16px;
  font-weight: normal;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-04 {
    width: 100%;
    font-size: 2.8rem;
    line-height: 1.4;
    margin: 0 auto 45px auto;
  }
  .c-title-ruby-04 span {
    font-size: 18px;
  }
}
/*
　ルビ付き-05
================================*/
.c-title-ruby-05 {
  margin-bottom: 20px;
}

.c-title-ruby-05 span {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
}

.c-title-ruby-05 h2 {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
}

.c-title-ruby-05 h2:before {
  content: "";
  width: 1.5em;
  border-top: 1px solid;
  margin-right: 0.5em;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-05 {
    margin-bottom: 50px;
  }
  .c-title-ruby-05 span {
    font-size: 40px;
  }
  .c-title-ruby-05 h2 {
    font-size: 18px;
    margin-bottom: 7px;
  }
}
/*
　ルビ付き-06
================================*/
.c-title-ruby-06 {
  width: 90%;
  margin: 0 auto 30px auto;
  text-align: center;
  line-height: 1.4;
}

.c-title-ruby-06 h2 {
  font-size: 26px;
  font-weight: bold;
  color: #333;
}

.c-title-ruby-06 span::first-letter {
  color: var(--color-1);
}

.c-title-ruby-06 span {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-06 {
    width: 100%;
    margin: 0 auto 45px auto;
  }
  .c-title-ruby-06 h2 {
    font-size: 34px;
  }
  .c-title-ruby-06 span {
    font-size: 20px;
  }
}
/*
　下線付き-01
================================*/
.c-title-border-01 {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  width: 90%;
  margin: 0 auto 50px auto;
}

.c-title-border-01::after {
  content: "";
  display: block;
  position: absolute;
  width: 45px;
  left: calc(50% - 30px);
  bottom: -15px;
  border: 2px solid var(--color-1);
  border-radius: 50px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-border-01 {
    width: 100%;
    font-size: 2.3rem;
    line-height: 1.4;
    margin: 0 auto 70px auto;
  }
}
/*
　番号付き-01
================================*/
.c-title-count-01 {
  position: relative;
  height: 100px;
  margin-right: 100px;
  padding: 20px 0 10px 15px;
  color: #fff;
  background: var(--color-1);
  box-sizing: border-box;
  margin-bottom: 50px;
  font-weight: 900;
  font-size: 22px;
}

.c-title-count-01:after {
  position: absolute;
  top: 0;
  right: -60px;
  width: 0;
  height: 0;
  content: "";
  border-width: 100px 60px 0 0;
  border-style: solid;
  border-color: var(--color-1) transparent transparent transparent;
}

.c-title-count-01 span {
  font-size: 50px;
  position: absolute;
  bottom: 0;
  right: -100px;
  display: block;
  padding-left: 16px;
  color: var(--color-1);
  font-family: "Arial", "Noto Sans JP", sans-serif;
  font-weight: 700;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-count-01 {
    margin-right: 120px;
    margin-bottom: 60px;
    padding: 20px 0 10px 20px;
    font-size: 40px;
    font-size: clamp(33px, 3vw, 40px);
  }
  .c-title-count-01 span {
    font-size: 63px;
    top: 0;
    right: -120px;
    padding-top: 10px;
  }
}
/*
　番号付き-02
================================*/
.c-title-count-02 {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  padding: 10px 0;
}

.c-title-count-02 p {
  font-size: clamp(35px, 9vw, 100px);
  font-weight: bold;
  color: var(--color-1);
  font-family: "Arial", sans-serif;
}

.c-title-count-02 h2 {
  margin-left: 3%;
  line-height: 1.4;
  font-size: clamp(20px, 6vw, 41px);
  font-weight: 900;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-count-02 {
    align-items: center;
    padding: 0;
  }
  .c-title-count-02 p {
    margin-top: -2.4%;
    margin-bottom: -2.7%;
    font-size: clamp(130px, 17vw, 205px);
  }
  .c-title-count-02 h2 {
    margin-left: 40px;
    font-size: clamp(30px, 3.5vw, 45px);
  }
}
/*
　付箋風-01
================================*/
.c-title-label-01 {
  font-size: 1.2rem;
  font-weight: bold;
  background-color: #f8f8f8;
  border-left: 15px solid var(--color-1);
  margin: 0 0 15px 0;
  padding: 15px 10px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-label-01 {
    font-size: 2rem;
    padding: 11px 10px 11px 20px;
    letter-spacing: 0.04em;
  }
}
/*
　背景カラー-01
================================*/
.c-title-bg-01,
.c-title-bg-01--color-2,
.c-title-bg-01--sm,
.c-title-bg-01--color-2--sm {
  margin-bottom: 30px;
  padding: 15px;
  background: var(--color-1);
}

.c-title-bg-01 h2,
.c-title-bg-01--color-2 h2,
.c-title-bg-01--sm h2,
.c-title-bg-01--color-2--sm h2,
.c-title-bg-01 h3,
.c-title-bg-01--color-2 h3,
.c-title-bg-01--sm h3,
.c-title-bg-01--color-2--sm h3 {
  font-size: clamp(27px, 4.1666666667vw, 32px);
  color: #fff;
  font-weight: 900;
  line-height: 1.5;
}

.c-title-bg-01--color-2,
.c-title-bg-01--color-2--sm {
  background: var(--color-2);
}

.c-title-bg-01--sm,
.c-title-bg-01--color-2--sm {
  padding: 10px;
}

.c-title-bg-01--sm h2,
.c-title-bg-01--color-2--sm h2,
.c-title-bg-01--sm h3,
.c-title-bg-01--color-2--sm h3 {
  font-size: clamp(20px, 3.2552083333vw, 25px);
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-bg-01,
  .c-title-bg-01--color-2,
  .c-title-bg-01--sm,
  .c-title-bg-01--color-2--sm {
    margin-bottom: 50px;
    padding: 30px 0;
    text-align: center;
  }
  .c-title-bg-01 h2,
  .c-title-bg-01--color-2 h2,
  .c-title-bg-01--sm h2,
  .c-title-bg-01--color-2--sm h2,
  .c-title-bg-01 h3,
  .c-title-bg-01--color-2 h3,
  .c-title-bg-01--sm h3,
  .c-title-bg-01--color-2--sm h3 {
    font-size: clamp(32px, 6.5104166667vw, 50px);
    letter-spacing: 0.05em;
  }
  .c-title-bg-01--sm,
  .c-title-bg-01--color-2--sm {
    padding: 15px;
  }
  .c-title-bg-01--sm h2,
  .c-title-bg-01--color-2--sm h2,
  .c-title-bg-01--sm h3,
  .c-title-bg-01--color-2--sm h3 {
    font-size: clamp(25px, 3.90625vw, 30px);
  }
}
/*
　誘導型-01
================================*/
.c-title-induction-01 {
  width: 100%;
  padding-bottom: 35px;
  box-sizing: content-box;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%, 0 0);
  background-color: var(--color-1);
}

.c-title-induction-01__inner {
  display: flex;
  align-items: center;
  align-content: flex-start;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
  padding: 4% 0 2% 0;
}

.c-title-induction-01__inner h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
}

.c-title-induction-01 span {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-induction-01__inner {
    max-width: 1140px;
    padding: 25px 0 20px 0;
  }
  .c-title-induction-01__inner h2 {
    line-height: 1.3;
    font-size: clamp(36px, 2vw, 40px);
  }
  .c-title-induction-01__inner span {
    font-size: clamp(42px, 5vw, 53px);
  }
}
/*=================================

* Trouble（お悩みカード）
* 左: ダーク強調カード(span2) + 右: 通常カード×4
* 参考: 不動産①テンプレート p-troubles

=================================*/
.c-trouble__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 601px) {
  .c-trouble__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 901px) {
  .c-trouble__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-trouble {
  /* ---- 通常カード（共通ベース） ---- */
}
.c-trouble__card {
  padding: 25px;
  background: #fff;
  border: 1px solid #E7EDF2;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .c-trouble__card {
    padding: 28px;
  }
}
.c-trouble__card:hover {
  transform: translateY(-4px);
  border-color: var(--color-1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.c-trouble {
  /* ---- 強調カード ---- */
}
.c-trouble__card--highlight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  color: #fff;
  background: linear-gradient(135deg, #3F5A6E 0%, #354B5E 100%);
  border: none;
  grid-column: span 1;
}
@media (min-width: 901px) {
  .c-trouble__card--highlight {
    justify-content: center;
    grid-row: span 2;
  }
}
.c-trouble__card--highlight:hover {
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(47, 94, 134, 0.25);
}
.c-trouble__card--highlight .c-trouble__icon {
  color: rgba(255, 255, 255, 0.9);
}
.c-trouble__card--highlight .c-trouble__title {
  color: #fff;
}
.c-trouble__card--highlight .c-trouble__text {
  color: rgba(255, 255, 255, 0.85);
}
.c-trouble {
  /* ---- バッジ ---- */
}
.c-trouble__badge {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 4px 12px;
  font-size: clamp(13px, 2.6vw, 14px);
  font-weight: 700;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
.c-trouble {
  /* ---- カードヘッダー（アイコン＋タイトル横並び） ---- */
}
.c-trouble__card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.c-trouble {
  /* ---- アイコン ---- */
}
.c-trouble__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: #354B5E; /* インラインSVG用 */
  -o-object-fit: contain;
     object-fit: contain; /* img要素用 */
}
@media (min-width: 768px) {
  .c-trouble__icon {
    width: 45px;
    height: 45px;
  }
}
.c-trouble {
  /* ---- タイトル ---- */
}
.c-trouble__title {
  font-size: clamp(18px, 2.6vw, 20px);
  font-weight: 700;
  line-height: 1.5;
  color: #354B5E;
}
.c-trouble {
  /* ---- テキスト ---- */
}
.c-trouble__text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/*=================================

* Voice (お客様の声 共通コンポーネント)

=================================*/
.c-voice__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .c-voice__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-voice__card {
  padding: 28px 24px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #E7EDF2;
  transition: all 0.25s ease;
}
.c-voice__card:hover {
  box-shadow: 0 1px 3px rgba(44, 95, 124, 0.06);
}
.c-voice__card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F5F7F9;
}
.c-voice__card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.c-voice__card-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-voice__card-meta {
  flex: 1;
  min-width: 0;
}
.c-voice__card-name {
  display: block;
  font-size: clamp(16px, 2.6vw, 17px);
  font-weight: 700;
  color: var(--color-1);
}
.c-voice__card-type {
  display: block;
  font-size: clamp(13px, 2.6vw, 14px);
  color: #7C8894;
}
.c-voice__card-title {
  margin-bottom: 12px;
  font-size: clamp(16px, 2.6vw, 17px);
  font-weight: 700;
  color: var(--color-1);
  line-height: 1.5;
}
.c-voice__card-text {
  font-size: clamp(15px, 2.6vw, 16px);
  line-height: 1.8;
  color: #333;
}

/*=================================

* Service Pack（独自サービス紹介：画像+バッジ+テキストカード）

=================================*/
.c-service-pack {
  background: #EDF3F8;
}
.c-service-pack__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .c-service-pack__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}
.c-service-pack__card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.c-service-pack__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(47, 94, 134, 0.15);
}
.c-service-pack__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.c-service-pack__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.c-service-pack__card:hover .c-service-pack__img img {
  transform: scale(1.05);
}
.c-service-pack__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--color-1);
  border-radius: 4px;
}
.c-service-pack__body {
  padding: 20px 24px 24px;
}
.c-service-pack__title {
  margin-bottom: 10px;
  font-size: clamp(17px, 2.6vw, 18px);
  font-weight: 700;
  line-height: 1.5;
  color: #354B5E;
}
.c-service-pack__text {
  font-size: clamp(15px, 2.6vw, 16px);
  line-height: 1.7;
  color: #333;
}

/*
　ブログリスト-02
================================*/
.c-blog-list-02 {
  margin-bottom: 40px;
}

.c-blog-list-02 li {
  max-width: 400px;
  margin: 0 auto 50px auto;
}

.c-blog-list-02 li:last-child {
  border-bottom: none;
}

.c-blog-list-02 li a {
  display: block;
  text-decoration: none;
}

.c-blog-list-02__image img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}

.c-blog-list-02__content {
  padding-top: 10px;
  padding-bottom: 10px;
}

.l-section--gray .c-blog-list-02__content,
.l-section--blue .c-blog-list-02__content,
.l-section--yellow .c-blog-list-02__content {
  padding-left: 8px;
  padding-right: 8px;
}

.c-blog-list-02__content__inner {
  padding-bottom: 10px;
}

.c-blog-list-02__content__date {
  color: #666;
}

.c-blog-list-02__content__title {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: bold;
  color: var(--color-1);
  font-weight: bold;
}

.c-blog-list-02__content__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: #333;
}

.c-blog-list-02__tag span {
  display: inline-block;
  margin-bottom: 5px;
  padding: 5px 10px;
  font-size: 14px;
  color: #fff !important;
  background-color: var(--color-2);
}

/* PC */
@media screen and (min-width: 768px) {
  .c-blog-list-02 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1140px;
    margin: 0 auto;
  }
  .c-blog-list-02::after {
    content: "";
    display: block;
    width: 31%;
  }
  .c-blog-list-02 li {
    width: 31%;
    margin: 0 0 50px 0;
    border-bottom: none;
  }
  .c-blog-list-02 a:hover {
    opacity: 0.7;
  }
}
/*
　会社概要
================================*/
.c-company-lp h2 {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--color-1);
  margin-bottom: 20px;
}

.c-company-lp__lead {
  width: 90%;
  margin: 0 auto 50px auto;
}

.c-company-lp__lead p {
  line-height: 1.6;
}

.c-company-lp__content {
  max-width: 450px;
  margin: 0 auto;
}

.c-company-lp__content__detail {
  margin-bottom: 30px;
}

.c-company-lp__content__detail dl > div {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  margin-top: 0;
  margin-bottom: 0;
  border-top: dotted 1px #aca9a9;
}

.c-company-lp__content__detail dl > div:last-child {
  border-bottom: dotted 1px #aca9a9;
}

.c-company-lp__content__detail dt {
  width: 25%;
  padding: 13px 5px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}

.c-company-lp__content__detail dd {
  width: 73%;
  margin-left: 0;
  padding: 13px 5px 13px 20px;
  font-size: 16px;
  font-weight: bold;
}

.c-company-lp__content__image {
  text-align: center;
}

.c-company-lp__content__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 25px;
}

.c-company-lp__map {
  height: 250px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-company-lp h2 {
    font-size: clamp(35px, 3.0701754386vw, 35px);
  }
  .c-company-lp__lead {
    margin-bottom: 60px;
    text-align: center;
  }
  .c-company-lp__lead p {
    font-size: clamp(16px, 1.5789473684vw, 18px);
    line-height: 1.6;
  }
  .c-company-lp__content {
    display: flex;
    justify-content: space-between;
    max-width: 1140px;
    padding: 0 8px;
  }
  .c-company-lp__content__detail {
    width: 55%;
    margin-bottom: 0;
  }
  .c-company-lp__content__detail dt {
    width: 22%;
    padding: 16px 5px;
    font-size: clamp(16px, 1.4912280702vw, 17px);
  }
  .c-company-lp__content__detail dd {
    width: 70%;
    padding: 16px 5px 16px 20px;
    font-size: clamp(16px, 1.4912280702vw, 17px);
  }
  .c-company-lp__content__image {
    width: 40%;
  }
  .c-company-lp__content__image img {
    display: block;
    margin-bottom: 0;
  }
  .c-company-lp__map {
    width: 100%;
    height: 450px;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */
/**
 * Section
 */
/*==================================
* Section
==================================*/
.l-section {
  padding: 80px 12px;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding: 100px 12px;
  }
}

.l-section--gray {
  background: #F5F7F9;
}

.l-section__container {
  padding: 0 8px;
}
@media screen and (min-width: 768px) {
  .l-section__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
  }
}

.l-section__container--md {
  padding: 0 12px;
}
@media screen and (min-width: 768px) {
  .l-section__container--md {
    max-width: 1100px;
    padding: 0;
  }
}

.l-section__container--lg {
  padding: 0 8px;
}
@media screen and (min-width: 1000px) {
  .l-section__container--lg {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .l-section__container--narrow {
    max-width: 800px;
  }
}

/**
 * Header
 */
/*==================================
* Header
==================================*/
header {
  margin-bottom: 0;
}

.l-header-lp {
  position: relative;
  height: 64px;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .l-header-lp {
    height: 72px;
  }
}
.l-header-lp__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 3px rgba(44, 95, 124, 0.06);
}
.l-header-lp__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  margin: 0 auto;
  padding: 0 16px 0 12px;
}
@media screen and (min-width: 768px) {
  .l-header-lp__inner {
    height: 72px;
    padding: 0 20px;
  }
}
.l-header-lp__logo {
  margin: 0 auto 0 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--color-1);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.l-header-lp__logo img {
  height: 32px;
  width: auto;
  display: block;
}
@media (min-width: 860px) {
  .l-header-lp__logo img {
    height: clamp(30px, 2.6315789474vw, 38px);
  }
}
.l-header-lp__nav {
  display: none;
}
@media screen and (min-width: 1000px) {
  .l-header-lp__nav {
    display: flex;
    align-items: center;
    gap: 15px;
  }
}
@media (min-width: 850px) {
  .l-header-lp__nav {
    gap: 24px;
  }
}
.l-header-lp__nav a {
  font-size: clamp(14px, 2.6vw, 15px);
  font-weight: 600;
  color: #4F5A64 !important;
  transition: color 0.25s ease;
  text-decoration: none !important;
}
.l-header-lp__nav a:hover {
  color: var(--color-1) !important;
}
.l-header-lp__contact {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header-lp__contact {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 30px;
  }
}
.l-header-lp__tel-number {
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Arial", "Century Gothic", sans-serif;
  color: var(--color-1) !important;
  text-decoration: none !important;
}
@media (min-width: 850px) {
  .l-header-lp__tel-number {
    display: flex;
    font-size: clamp(18px, 2.6vw, 22px);
  }
}
.l-header-lp__cta-button {
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  border-radius: 5px;
  transition: background 0.25s ease;
  text-decoration: none !important;
}
@media screen and (min-width: 768px) {
  .l-header-lp__cta-button {
    display: inline-flex;
  }
}
.l-header-lp__cta-button {
  /* 電話ボタン（プライマリ） */
}
.l-header-lp__cta-button--tel {
  background: var(--color-1);
}
.l-header-lp__cta-button--tel:hover {
  background: color-mix(in srgb, var(--color-1), black 20%);
}
.l-header-lp__cta-button {
  /* LINE相談ボタン（グリーン） */
}
.l-header-lp__cta-button--line {
  background: #05A348;
}
.l-header-lp__cta-button--line:hover {
  background: color-mix(in srgb, #05A348, black 20%);
}
.l-header-lp__cta-button {
  /* 無料相談ボタン（オレンジ） */
}
.l-header-lp__cta-button--form {
  background: var(--color-2);
}
.l-header-lp__cta-button--form:hover {
  background: color-mix(in srgb, var(--color-2), black 20%);
}
.l-header-lp__cta-button {
  /* 無料査定ボタン（ゴールド） */
}
.l-header-lp__cta-button--sell {
  background: #DAA929;
}
.l-header-lp__cta-button--sell:hover {
  background: color-mix(in srgb, #DAA929, black 20%);
}
.l-header-lp__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: 20px;
  padding: 4px;
}
@media screen and (min-width: 1000px) {
  .l-header-lp__hamburger {
    display: none;
  }
}
.l-header-lp__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-1);
  border-radius: 1px;
  transition: 0.25s ease;
}
.l-header-lp__hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.l-header-lp__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.l-header-lp__hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.l-header-lp__mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background: #fff;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1000px) {
  .l-header-lp__mobile-menu {
    display: none;
  }
}
.l-header-lp__mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
}
.l-header-lp__mobile-nav {
  padding: 40px 24px;
}
.l-header-lp__mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-header-lp__mobile-nav li {
  border-bottom: 1px solid rgba(44, 95, 124, 0.1);
}
.l-header-lp__mobile-nav a {
  display: block;
  padding: 20px 0;
  color: #35414A;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.l-header-lp__mobile-nav .l-header-lp__mobile-cta {
  margin-top: 20px;
  padding: 18px;
  text-align: center;
  color: #fff !important;
  border-radius: 8px;
  border-bottom: none;
  /* 無料相談ボタン（オレンジ） */
}
.l-header-lp__mobile-nav .l-header-lp__mobile-cta--form {
  background: var(--color-2);
}
.l-header-lp__mobile-nav .l-header-lp__mobile-cta {
  /* 無料査定ボタン（ゴールド） */
}
.l-header-lp__mobile-nav .l-header-lp__mobile-cta--sell {
  background: #f4c542;
}
.l-header-lp__spacer {
  height: 64px;
}
@media screen and (min-width: 768px) {
  .l-header-lp__spacer {
    height: 72px;
  }
}
.l-header-lp__page-title {
  padding: 10px 8px;
  font-size: 13px;
}
@media (min-width: 769px) {
  .l-header-lp__page-title {
    max-width: 1140px;
    margin: 0 auto;
    padding: 10px 8px;
    font-size: 14px;
  }
}

/**
 * Footer
 */
/*==================================
* Footer
==================================*/
footer {
  width: auto;
  border-top: none;
}

.l-footer-lp {
  background: #EDF3F8;
  color: #4F5A64;
  padding: 48px 16px 24px;
}
.l-footer-lp__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.l-footer-lp__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .l-footer-lp__top {
    flex-direction: row;
    justify-content: space-between;
  }
}
.l-footer-lp__logo {
  margin-bottom: 16px;
}
.l-footer-lp__logo img {
  height: 40px;
  width: auto;
  display: block;
}
.l-footer-lp__info {
  font-size: clamp(14px, 2.6vw, 15px);
  line-height: 1.8;
}
.l-footer-lp__nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .l-footer-lp__nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
.l-footer-lp__nav-title {
  font-size: clamp(15px, 2.6vw, 16px);
  font-weight: 700;
  color: var(--color-1);
  margin-bottom: 12px;
}
.l-footer-lp__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-footer-lp__nav-list li {
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .l-footer-lp__nav-list li {
    margin-bottom: 5px;
  }
}
.l-footer-lp__nav-list a {
  font-size: clamp(14px, 2.6vw, 15px);
  color: #4F5A64 !important;
  text-decoration: none !important;
  transition: color 0.25s ease;
}
.l-footer-lp__nav-list a:hover {
  color: #1F2A33 !important;
}

/*==================================
* Copyright
==================================*/
.copyright {
  padding: 8px 0 55px 0 !important;
  color: #35414A;
  background-color: #DCE5EC !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
@media screen and (min-width: 768px) {
  .copyright {
    padding: 8px 0 8px 0 !important;
  }
}

/*==================================
* ページの先頭へ
==================================*/
.btn__page_top {
  position: fixed;
  right: 10px;
  bottom: 50px;
  font-size: 19.2px;
  line-height: 19.2px;
  background: #fff;
  color: #737373;
  padding: 13px;
  border: solid 1px;
  border-radius: 50%;
  box-shadow: 0 2px 10px -6px rgba(0, 0, 0, 0.5), 0 3px 10px -4px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  cursor: pointer;
}
.btn__page_top.is-show {
  display: block;
  opacity: 1;
  visibility: visible;
}
.btn__page_top i {
  font-size: 19.2px;
  opacity: 1;
  margin: 0;
}
.btn__page_top span {
  display: none;
}
@media screen and (max-width: 767px) {
  .btn__page_top {
    display: none !important;
  }
}

/**
 * Float CTA (PC右サイドバー)
 */
/*==================================
* Side Float
==================================*/
.l-float-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: none;
  flex-direction: column;
  gap: 2px;
}
@media screen and (min-width: 768px) {
  .l-float-cta {
    display: flex;
  }
}
.l-float-cta__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  padding: 14px 0;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none !important;
  line-height: 1.3;
  transition: background 0.25s ease;
}
.l-float-cta__item:first-child {
  border-radius: 8px 0 0 0;
}
.l-float-cta__item:last-child {
  border-radius: 0 0 0 8px;
}
.l-float-cta__item svg {
  width: 22px;
  height: 22px;
  margin-bottom: 4px;
}
.l-float-cta__item--tel {
  background: #213140;
}
.l-float-cta__item--tel:hover {
  background: color-mix(in srgb, #213140, black 20%);
}
.l-float-cta__item--mail {
  background: var(--color-2);
}
.l-float-cta__item--mail:hover {
  background: color-mix(in srgb, var(--color-2), black 20%);
}
.l-float-cta__item--satei {
  background: var(--color-1);
}
.l-float-cta__item--satei:hover {
  background: color-mix(in srgb, var(--color-1), black 20%);
}
.l-float-cta__item--visit {
  background: #627786;
}
.l-float-cta__item--visit:hover {
  background: #556976;
}
.l-float-cta__item--line {
  background: #05A348;
}
.l-float-cta__item--line:hover {
  background: color-mix(in srgb, #05A348, black 20%);
}

/**
 * SP Bar (SP固定ボトムバー)
 */
/*==================================
* Fixed Bottom Bar
==================================*/
.l-sp-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  background: #fff;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.l-sp-bar.is-visible {
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .l-sp-bar {
    display: none;
  }
}
.l-sp-bar__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 700;
}
.l-sp-bar__item svg {
  width: 18px;
  height: 18px;
}
.l-sp-bar__item--tel {
  background: #213140;
  color: #fff !important;
  text-decoration: none !important;
}
.l-sp-bar__item--mail {
  background: var(--color-2);
  color: #fff !important;
  text-decoration: none !important;
}
.l-sp-bar__item--satei {
  background: var(--color-1);
  color: #fff !important;
  text-decoration: none !important;
}
.l-sp-bar__item--line {
  background: #05A348;
  color: #fff !important;
  text-decoration: none !important;
}

/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */
/*=================================

* 相続ページ p-souzoku

=================================*/
/*
　CTA Band（ボタン文字サイズ拡大）
=================================*/
.p-souzoku-cta .c-button,
.p-souzoku-cta .c-button-outline--primary {
  font-size: clamp(17px, 2.6vw, 19px);
  padding: 18px 36px;
}