@charset "UTF-8";

/* =======================================
  選ばれる3つの理由セクション
======================================= */
.reasons-feature-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0px 0;
    /* 上下の余白 */
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 50px;
}
/* 最後のアイテム以外に、下に余白を設ける */
.feature-item:not(:last-child) {
    margin-bottom: 80px;
}
/* 2番目のアイテムを左右反転させる */
.feature-item.reverse {
    flex-direction: row-reverse;
}
.feature-text {
    flex: 1;
    /* テキストエリアの幅を柔軟に */
}
.feature-image {
    flex-basis: 45%;
    /* 画像エリアの基本幅を指定 */
    max-width: 480px;
}
.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(45, 54, 84, 0.1);
    display: block;
}
/* --- テキスト部分のスタイル --- */
.feature-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.feature-number {
    font-size: 72px;
    font-weight: 800;
    color: #e23a4d;
    /* 赤色 */
    line-height: 0.8;
    font-family: 'Lato', sans-serif;
}
.feature-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 !important;
}
.feature-lead {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
    color: #333;
    margin: 0 0 15px 0;
    border-left: 4px solid #e23a4d;
    /* 赤色の左ボーダー */
    padding-left: 15px;
}
.feature-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}
/* --- solution-highlight ボックス内のスタイル調整 --- */
.solution-highlight {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #e23a4d;
    margin: 25px 0;
}
.solution-highlight h4 {
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 17px;
    font-weight: bold;
}
.solution-highlight ul {
    list-style-type: none;
    /* デフォルトの黒丸を消す */
    padding-left: 0;
    margin: 0;
}
.solution-highlight li {
    font-size: 15px;
    color: #333;
    padding-left: 20px;
    /* アイコン分のスペース */
    position: relative;
}
.solution-highlight li:not(:last-child) {
    margin-bottom: 10px;
}
/* 箇条書きのアイコン */
.solution-highlight li::before {
    content: '\f071';
    /* Font Awesomeの警告アイコン */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #e23a4d;
    position: absolute;
    left: 0;
    top: 2px;
}
.solution-highlight strong {
    color: #e23a4d;
    font-weight: bold;
}
/* ヘッダーの下線対策 */
.feature-title.no-underline,
.feature-title.no-underline::after {
    border: none !important;
    padding: 0 !important;
    content: none !important;
}
/* --- レスポンシブ (スマホ表示) --- */
@media screen and (max-width: 767px) {
    .feature-item,
    .feature-item.reverse {
        flex-direction: column;
        /* 縦積みに変更 */
        gap: 30px;
    }
    .feature-item:not(:last-child) {
        margin-bottom: 60px;
    }
    .feature-header {
        margin-bottom: 15px;
    }
    .feature-number {
        font-size: 56px;
    }
    .feature-title {
        font-size: 22px;
    }
    .feature-lead {
        font-size: 17px;
    }
}

/* =======================================
  チェックポイントリストのスタイル
======================================= */
.checkpoint-list {
    list-style-type: none; /* デフォルトの黒丸を削除 */
    padding-left: 0;
    margin: 25px 0 0 -20px; /* 上に余白を設定 */
}

.checkpoint-list li {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    padding-left: 28px; /* アイコン用のスペース */
    position: relative;
}

.checkpoint-list li:not(:last-child) {
    margin-bottom: 15px; /* 各項目の下の余白 */
}

/* チェックマークアイコン */
.checkpoint-list li::before {
    content: '\f00c'; /* Font Awesomeのチェックアイコン */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #e23a4d; /* テーマカラーの赤 */
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 18px;
}

.checkpoint-list li strong {
    font-weight: 700;
    color: #333;
}

/* =======================================
  メインCTA
======================================= */
/* === CTAコンテナ全体 === */
.ultimate-cta-host {
    padding: 80px 20px;
    background-color: #FDFBF8;
}
.ultimate-cta-container {
    max-width: 1020px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 24px;
    border: 1px solid #F3ECE2;
    box-shadow: 0 25px 60px -15px rgba(100, 80, 60, 0.12);
    display: flex;
    align-items: center;
    padding: 40px 0;
}
/* === 担当者紹介エリア === */
.ultimate-cta-person {
    flex: 0 0 220px;
    text-align: center;
    border-right: 1px solid #F3ECE2;
    padding: 0 40px;
}
/* person-image のサイズを指定 */
.person-image {
    width: 160px;
    height: 160px;
    margin: 0 auto 15px auto;
}
/* img タグにスタイルを適用 */
.person-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* 円形にする */
    /* object-fit: cover を使用することで、
     もし画像が正方形でなくてもコンテナに収まるように
     （今回は「四角にトリミングする」前提、念のためカバーを維持）*/
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(45, 54, 84, 0.1);
}
.person-title {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}
.person-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 5px 0 0 0;
}
/* === コンテンツエリア === */
.ultimate-cta-content {
    flex: 1;
    padding: 0 50px;
}
.ultimate-cta-title {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 15px 0 !important;
    line-height: 1.5;
    color: #333;
    text-align: left;
}
.ultimate-cta-title .highlight {
    color: #D9534F;
}
.ultimate-cta-text {
    font-size: 16px;
    color: #555;
    margin: 0 0 25px 0;
    line-height: 1.8;
    text-align: left;
}
/* === ボタンエリア === */
.ultimate-cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 0 0 20px 0;
}
.ultimate-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.ultimate-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.ultimate-cta-button i {
    font-size: 20px;
    margin-right: 12px;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}
.ultimate-cta-button.primary {
    background: linear-gradient(135deg, #D9534F 0%, #C9302C 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(217, 83, 79, 0.3);
}
.ultimate-cta-button.primary:hover {
    box-shadow: 0 8px 25px rgba(217, 83, 79, 0.4);
}
.ultimate-cta-button.secondary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2c3e50;
    border: 2px solid #e9ecef;
    position: relative;
}
.ultimate-cta-button.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217, 83, 79, 0.05) 0%, rgba(217, 83, 79, 0.1) 100%);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.ultimate-cta-button.secondary:hover {
    border-color: #D9534F;
    color: #2c3e50;
}
.ultimate-cta-button.secondary:hover::before {
    opacity: 1;
}
.button-text-wrapper {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
}
.button-main-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}
.button-sub-text {
    font-size: 14px;
    line-height: 1.3;
    margin-top: 4px;
    display: block;
    opacity: 0.9;
}
.ultimate-cta-button.secondary .button-sub-text {
    font-weight: 700;
    color: #D9534F;
    font-size: 15px;
}
.pc-only {
    display: block;
}
.sp-only {
    display: none;
}
/* === フッターエリア === */
.ultimate-cta-footer {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    font-size: 14px;
    color: #4b5563;
}
.info-text {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}
.info-text strong {
    font-weight: 700;
}
/* プライバシーマークのアイコンサイズを調整 */
.privacy-mark-icon {
    width: 30px;
    height: auto;
    flex-shrink: 0;
    /* 縮まないように設定 */
}

/* === レスポンシブ === */
@media (max-width: 1024px) {
    .ultimate-cta-container {
        flex-direction: column;
        padding: 40px;
    }
    .ultimate-cta-person {
        flex: 1 1 auto;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 0 0 30px 0;
        margin-bottom: 30px;
    }
    .ultimate-cta-content {
        padding: 0;
    }
    .ultimate-cta-title,
    .ultimate-cta-text {
        text-align: center;
    }
    .ultimate-cta-footer {
        justify-content: center;
    }
}
@media (max-width: 767px) {
    .ultimate-cta-host {
        padding: 60px 0;
        background-color: #fff;
    }
    .ultimate-cta-container {
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
        padding: 40px 20px;
    }
    .ultimate-cta-title {
        font-size: 24px;
    }
    .ultimate-cta-buttons {
        grid-template-columns: 1fr;
    }
    .ultimate-cta-footer {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    }
    .button-text-wrapper {
        text-align: center;
    }
    .ultimate-cta-button {
        padding: 18px 20px;
    }
}

/* =======================================
  汎用比較レイアウト (Problem & Solution)
 ◆なぜ、コノイエなら解決できるのかセクション
  特徴：
  - PCでは左右2カラム、スマホでは縦積みになるレスポンシブ対応
  - 汎用的なクラス名でサイト内のどこでも再利用可能
  - 外部CSSの影響を受けにくい独立したスタイル設計
======================================= */
/* --- 全体コンテナ --- */
.comparison-layout {
    display: flex;
    align-items: stretch;
    /* ボックスの高さを自動で揃える */
    gap: 20px;
    margin: 40px auto;
    max-width: 1100px;
    padding: 0 20px;
}
/* --- 左右のボックス共通スタイル --- */
.comparison-box {
    border-radius: 12px;
    padding: 24px 30px;
    width: 100%;
    flex: 1;
    /* 親要素のスペースを均等に分け合う */
}
.comparison-box__header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
/* h3タグのスタイルを完全に上書きし、外部からの影響を遮断 */
h3.comparison-box__title {
    line-height: 1.5;
    margin: 0;
    font-weight: bold;
    color: #333333;
	padding: 0;
}
.comparison-box__icon {
    font-size: 28px;
    margin-right: 16px;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
    /* アイコンが縮まないようにする */
}
.comparison-box__content p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}
.comparison-box__content p+p {
    margin-top: 1em;
}
/* --- 【左カラム】問題提起サイド --- */
.problem-side {
    background-color: #f8f8f8;
    border: 2px dashed #cccccc;
}
.problem-side .comparison-box__icon {
    color: #e6b400;
    /* 黄色の警告アイコン */
}
.problem-side strong {
    background: linear-gradient(transparent 60%, #e0e0e0 60%);
}
/* --- 【中央】転換の矢印 --- */
.comparison-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* 矢印コンテナが縮まないようにする */
}
.comparison-arrow img {
    width: 50px;
    height: auto;
}
/* --- 【右カラム】解決策サイド --- */
.solution-side {
    background-color: #ffffff;
    border: none;
    box-shadow: 0 8px 30px rgba(0, 43, 85, 0.12);
    /* 上質に見える影 */
}
.solution-side .main-message {
    margin-top: 20px;
}
.solution-side .comparison-box__icon {
    color: #005A9C;
    /* 信頼の青アイコン */
}
.solution-side strong {
    background: linear-gradient(transparent 60%, rgba(0, 90, 156, 0.15) 60%);
}
/* --- プロフィールブロックのスタイル --- */
.profile-block {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
    /* 柔らかい境界線 */
}
.profile-block__photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
}
.profile-block__info p {
    margin: 0;
    line-height: 1.6;
}
.profile-block__name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}
.profile-block__title {
    font-size: 14px;
    color: #555;
}
/* --- レスポンシブデザイン (767px以下のスクリーン幅で適用) --- */
.sp-only {
    display: none;
}
@media screen and (max-width: 767px) {
    .comparison-layout {
        flex-direction: column;
        /* 縦積みに変更 */
        gap: 15px;
        padding: 0 15px;
    }
    .comparison-box {
        padding: 20px;
    }
    .comparison-arrow {
        margin: 10px 0;
        align-self: center;
        /* コンテナ内で中央に配置 */
        transform: rotate(90deg);
    }
    /* スマホでは見出しサイズを少し小さくしてバランスを取る */
    .comparison-box__title {
        font-size: 20px !important;
        /* 両方のタイトルサイズを統一 */
    }
    /* SP用の改行を表示 */
    .sp-only {
        display: block;
    }
}
/* =======================================
  売却事例のご紹介セクション
  特徴：
  - 背景に4つの円形の写真とバブルを出す
  - 縦に3列事例ブロック
======================================= */
/* SWELLブロックに追加したクラス */
.bg-bubbles-section {
    position: relative;
    background-color: #f7fafd;
    overflow: hidden;
}
/* 
  ::beforeで左側の2つのバブル（岡田様＋装飾円）を生成
*/
.bg-bubbles-section::before {
    content: '';
    position: absolute;
    z-index: 0;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    top: 15%;
    left: -80px;
    background-image: url('https://ugahome.will-college.co.jp/wp/wp-content/uploads/2025/04/takizawa06.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 250px 350px 0 50px rgba(59, 130, 246, 0.1);
}
/* 
  ::afterで右側の2つのバブル（チーム写真＋装飾円）を生成
*/
.bg-bubbles-section::after {
    content: '';
    position: absolute;
    z-index: 0;
    /* チーム写真の円の設定 */
    width: 400px;
    height: 400px;
    border-radius: 50%;
    bottom: 5%;
    right: 20px;
    background-image: url('https://ugahome.will-college.co.jp/wp/wp-content/uploads/2025/05/nagahata04.jpg');
    background-size: cover;
    background-position: 75% center;
    /* yオフセットを大きなマイナス値にすることで、円をコンテンツの上部へ移動させます */
    /* これにより、隠れることなく装飾として機能します */
    box-shadow: -400px -550px 0 50px rgba(59, 130, 246, 0.1);
}
/* コンテンツエリアを前面に表示 */
.bg-bubbles-section .swell-block-fullWide__inner {
    position: relative;
    z-index: 1;
}
/* 事例カードのスタイル */
.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.case-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(45, 54, 84, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.case-header {
    padding: 20px 25px;
    color: #fff;
}
.case-header.color-1 {
    background: #3171CA;
}
.case-header.color-2 {
    background: #0154AC;
}
.case-header.color-3 {
    background: #01348A;
}
.case-number {
    font-size: 13px;
    font-weight: 700;
    opacity: 0.8;
    margin-bottom: 8px;
    display: block;
}
.case-study-grid .case-card .case-header h3.case-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 !important;
    padding: 0 !important;
    color: #fff;
}
.case-body {
    padding: 25px;
    min-height: 280px;
}
.case-story:first-child {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #d1d5db;
}
.case-study-grid .case-card .case-body .story-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
}
.story-title.before {
    color: #4b5563;
}
.story-title.after {
    color: #e23a4d;
}
.story-icon {
    font-size: 20px;
    margin-right: 10px;
    width: 24px;
    text-align: center;
}
.story-text {
    font-size: 15px;
    line-height: 1.8;
    color: #374151;
    margin: 0;
}
.story-text strong {
    color: #e23a4d;
}
.case-footer {
    padding: 0 25px 25px 25px;
    margin-top: auto;
}
.case-result {
    background-color: #F3F5FF;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-bottom: 20px;
}
.case-result.gain {
    background-color: #F3F5FF;
}
.result-label {
    display: block;
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 4px;
}
.result-price {
    font-size: 40px;
    font-weight: 800;
    color: #e23a4d;
    line-height: 1;
    font-family: 'Lato', sans-serif;
}
.result-price .unit {
    font-size: 18px;
    font-weight: 700;
    margin-left: 4px;
    font-family: inherit;
}
.voice-text {
    font-size: 15px;
    line-height: 1.7;
    color: #4B5563;
    margin: 0;
    padding: 16px;
    background-color: #F9FAFB;
    border-left: 4px solid #D1D5DB;
    border-radius: 0 8px 8px 0;
}
/* --- レスポンシブ --- */
@media screen and (max-width: 960px) {
    .case-study-grid {
        display: flex;
        flex-direction: column;
    }
    .case-body {
        min-height: auto;
    }
    .bg-bubbles-section::before,
    .bg-bubbles-section::after {
        display: none;
    }
}
@media screen and (max-width: 767px) {
    .case-title {
        font-size: 20px;
    }
    .result-price {
        font-size: 36px;
    }
}

/* =======================================
  事例カード プロフィール追加分
======================================= */
.case-header {
    padding: 25px 30px; /* 内側の余白を調整 */
}

/* プロフィール全体のコンテナ */
.case-profile {
    display: flex;
    align-items: center;
    gap: 15px; /* 写真とテキストの間隔 */
    margin-bottom: 20px; /* プロフィールとタイトルの間隔 */
}

/* プロフィール写真 */
.profile-photo img {
    width: 60px;
    height: 60px;
    border-radius: 50%; /* 円形にする */
    object-fit: cover; /* 画像の比率を保ったままトリミング */
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* プロフィール情報（名前とエリア） */
.profile-info p {
    margin: 0;
    color: #fff;
    line-height: 1.4;
}

.profile-name {
    font-size: 17px;
    font-weight: bold;
}

.profile-area {
    font-size: 14px;
    opacity: 0.9; /* 少しだけ透明に */
}

/* 既存タイトルの調整 */
.case-title {
    color: #fff !important; /* 背景色に負けないように白文字を維持 */
}

/* =======================================
  ご利用の流れセクション（アイコンつき）
======================================= */
.process-flow-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.process-timeline {
    position: relative;
    padding: 20px 0;
}
/* 全体を貫く縦線は削除 */
.process-timeline::before {
    display: none;
}
.process-step {
    display: flex;
    position: relative;
    padding-left: 90px;
    align-items: center;
}
.process-step:not(:last-child) {
    padding-bottom: 50px;
}
/* 各ステップ間を繋ぐ線を疑似要素で描画 */
.process-step::before,
.process-step::after {
    content: '';
    position: absolute;
    left: 35px;
    width: 3px;
    background-color: #e5e7eb;
    z-index: 0;
}
.process-step::before {
    top: 0;
    height: 50%;
}
.process-step::after {
    bottom: 0;
    height: 50%;
}
/* 最初のステップの上線と、最後のステップの下線を消す */
.process-step:first-child::before,
.process-step:last-child::after {
    display: none;
}
.step-icon-wrapper {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}
.step-number {
    font-size: 13px;
    font-weight: 700;
    color: #9ca3af;
    margin-bottom: 10px;
    position: absolute;
    top: -28px;
    white-space: nowrap;
}
.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #0154AC;
    color: #fff;
    font-size: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
}
.process-step:last-child .step-icon {
    background-color: #e23a4d;
}
.step-content {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    width: 100%;
}
.step-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0 !important;
}
.step-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}
/* --- レスポンシブ（修正版） --- */
@media screen and (max-width: 767px) {
    .process-timeline {
        padding-left: 0px;
    }
    .process-step {
        padding-left: 60px;
        align-items: flex-start;
    }
    /* スマホ版での線の位置調整 */
    .process-step::before,
    .process-step::after {
        left: 20px;
        /* アイコンの中心に合わせる */
    }
    /* スマホ版：最初のステップの線調整 */
    .process-step:first-child::before {
        display: block;
        /* 表示する */
        top: 20px;
        /* アイコンの下から開始 */
        height: calc(100% - 20px);
    }
    /* スマホ版：最後のステップの線調整 */
    .process-step:last-child::after {
        display: none;
        /* 非表示のまま */
    }
    /* スマホ版：中間ステップの線調整 */
    .process-step:not(:first-child):not(:last-child)::before {
        top: 0;
        height: 20px;
        /* アイコンの中心まで */
    }
    .process-step:not(:first-child):not(:last-child)::after {
        top: 20px;
        /* アイコンの中心から開始 */
        bottom: auto;
        height: calc(100% - 20px);
    }
    /* 2番目以降のステップの上線 */
    .process-step:not(:first-child)::before {
        display: block;
        top: 0;
        height: 20px;
        /* アイコンの中心まで */
    }
    /* 最後以外のステップの下線 */
    .process-step:not(:last-child)::after {
        display: block;
        top: 20px;
        /* アイコンの中心から */
        bottom: auto;
        height: calc(100% - 20px);
    }
    .step-icon-wrapper {
        position: absolute;
        left: 0;
        top: 0;
        transform: none;
    }
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .step-number {
        position: static;
        text-align: center;
        width: 50px;
        margin-bottom: 8px;
    }
    .step-title {
        font-size: 18px;
    }
    .step-description {
        font-size: 15px;
    }
}

/* =======================================
  よくある質問（開閉式）
======================================= */

/*FAQアコーディオン化*/
.swell-block-faq dd {
  display: none;
  padding: 0 15px;
}

.swell-block-faq .active dd {
  display: block;
}

.swell-block-faq .faq_q {
  position: relative;
  cursor: pointer;
  padding-right: 30px;
}

.swell-block-faq .faq_q::after {
  content: '＋';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

.swell-block-faq .active .faq_q::after {
  content: '－';
}