/* 共通スタイルやセクション固有のスタイル (ここから) */
/* =================================================== */

/* section全体のパディング */
.problem-solution-section,
.reasons-section,
.flow-section,
.cases-section,
.cta-section {
    padding: 40px 0; /* 上下の余白 */
    background-color: #ffffff; /* デフォルトの背景色 */
}
/* コンテナ（任意：ページの最大幅と中央寄せ用） */
.container { /* 全体で使うコンテナも考慮 */
    max-width: 1320px; /* 最大幅 */
    margin: 0 auto; /* 中央寄せ */
    padding: 0 15px; /* 左右の余白（スマホ対応） */
}
/* セクションタイトル */
.section-title {
    text-align: center;
    margin-bottom: 40px; /* タイトルの下の余白 */
    font-size: 2em; /* タイトル文字サイズ */
    color: #333; /* タイトル文字色 */
}

/* problem-solution-section */
.problem-solution-section {
    background-color: #ffffff; /* 背景色 */
}
.problem-cards {
    display: flex;
    flex-wrap: wrap; /* 画面が小さい場合に折り返す */
    justify-content: center; /* 中央寄せ */
    gap: 20px; /* 各カード間の隙間 */
}
.problem-card {
    flex: 0 0 calc(25% - 20px * 3 / 4); /* 4分割 - gapの調整 */
    text-align: center;
    padding: 15px;
    box-sizing: border-box; /* paddingとborderをwidthに含める */
    background-color: #f9f9f9; /* カードの背景色 */
    border-radius: 8px; /* 角丸 */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* 軽い影 */
    min-width: 200px; /* カードの最小幅（スマホ対応で折り返した際など） */
}
.problem-card .card-icon {
    color: #004080; /* アイコンの色 */
    margin-bottom: 15px; /* アイコンの下の余白 */
    display: flex; /* アイコンやテキストを中央に配置するためにflexboxを使用 */
    justify-content: center;
    align-items: center;
}
.problem-card .card-icon img {
    max-width: 100%; /* 親要素の幅を超えない */
    height: auto; /* アスペクト比を維持 */
    display: block; /* 画像の下の余白をなくす */
    object-fit: contain; /* 画像がはみ出さずに表示されるように調整 */
}
.problem-card .card-icon .icon-text {
    font-size: 3em; /* テキストアイコンのサイズ */
    line-height: 1; /* 行の高さを調整 */
}
.problem-card h3 {
    font-size: 1.3em;
    color: #004080;
    margin-bottom: 10px;
}
.problem-card p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.6;
}

/* ==================================== */
/* メインビジュアルの修正 (ctaボタン文字色・幅影響対応) */
/* ==================================== */
.main-visual {
    /* ここに背景画像や高さなどの基本的なスタイルを設定する場合がある */
    /* 今回はdivのインラインスタイルで設定されているため、直接は指定しない */
}

.main-visual > div { /* メインビジュアル内のスタイルが適用されているdiv */
    /* 既存のインラインスタイルを上書きまたは追加 */
    display: flex;
    flex-direction: column; /* 要素を縦並びにする */
    align-items: center; /* 中央寄せ */
    justify-content: center; /* 中央寄せ */
    height: 400px; /* 例: メインビジュアルの高さを指定。インラインスタイルと競合する可能性あり */
    min-height: 300px; /* 最小高さ */
    padding: 20px;
    /* 背景画像、背景サイズ、テキスト色はインラインスタイルで設定されているため、ここでは省略 */
    /* background-image: url('...'); background-size: cover; color: white; text-align: center; */
}

.main-visual h1 {
    font-size: 2.5em;
    text-shadow: 2px 2px 4px #000;
    margin-bottom: 20px;
}

.main-visual p {
    font-size: 1.2em;
    text-shadow: 1px 1px 2px #000;
    margin-bottom: 30px;
}

.main-visual .cta-buttons-wrapper { /* 2つのボタンを囲むwrapper */
    display: flex;
    flex-direction: column; /* ボタンを縦並びにする */
    gap: 15px; /* ボタン間の間隔 */
    margin-top: 20px; /* メインテキストからの間隔 */
    width: 100%; /* 親要素の幅に合わせる */
    max-width: 500px; /* ボタンの最大幅を制限 */
}

.main-visual .cta-buttons-wrapper > div { /* 個々のボタンの背景となるdiv */
    flex: 0 0 auto; /* 内容に基づいて幅が伸縮する */
    min-width: 300px; /* ボタンの最小幅 */
    max-width: 500px; /* ボタンの最大幅 */
    width: auto; /* 幅を内容に合わせて自動調整（重要） */
    padding: 0; /* aタグにpaddingを移動させるため、ここでは0に */
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* ホバーアニメーション */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* ボタンに影 */
    cursor: pointer; /* カーソルをポインターに */
    /* 背景色はインラインスタイルで指定されているため、ここでは省略 */
    /* background-color: #004080; or #4CAF50; */
}

.main-visual .cta-buttons-wrapper > div:hover {
    transform: translateY(-3px); /* ホバーで少し浮き上がる */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* ホバーで影を強調 */
}

/* メインビジュアルのCTAボタンのリンクスタイルを修正 */
.main-visual .cta-buttons-wrapper div a { /* div の中の a タグをターゲット */
    color: white; /* リンクの文字色を白に強制 */
    text-decoration: none; /* リンクの下線を削除 */
    display: flex; /* aタグをFlexboxにして内部テキストを中央に */
    flex-direction: column; /* テキストが縦並びになるように */
    justify-content: center; /* 垂直方向中央寄せ */
    align-items: center; /* 水平方向中央寄せ */
    width: 100%; /* 親divの幅いっぱいに広げる */
    height: 100%; /* 親divの高さいっぱいに広げる */
    line-height: 1.5; /* 行の高さを調整 */
    text-align: center; /* テキストの中央寄せ */
    padding: 15px 20px; /* インラインスタイルで指定されていたpaddingをこちらに移動 */
    box-sizing: border-box; /* paddingを含めて幅を計算 */
}

.main-visual .cta-buttons-wrapper div a:hover {
    color: #f0f0f0; /* ホバー時に少し明るいグレーに変化させる例 */
}

.main-visual .cta-buttons-wrapper div a strong { /* div > a > strong をターゲット */
    color: inherit; /* 親要素（aタグ）の文字色を継承 */
    font-weight: bold; /* boldは維持 */
}

/* ==================================== */
/* reasons-section の修正 */
/* ==================================== */
.reasons-section {
    background-color: #ffffff; /* デフォルトの背景色 */
}
.reasons-section .reasons-section-inner { /* 全体をラップするdiv */
    padding: 20px;
    background-color: #f4f4f4; /* 背景色をCSSで指定 */
}
.reasons-section .reason-item { /* 各理由のアイテム */
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 20px; /* 画像とテキスト間の隙間 */
    flex-wrap: wrap; /* スマホで折り返す */
}
.reasons-section .reason-item:first-of-type { /* 最初のアイテムだけmargin-topを小さくするなどの調整 */
    margin-top: 20px;
}

/* 画像が右、テキストが左になるように反転させるクラス */
.reasons-section .reason-item-reverse {
    flex-direction: row-reverse; /* 左右を反転 */
}

.reasons-section .reason-image {
    width: 45%;
    flex-shrink: 0; /* 縮まない */
    max-width: 500px; /* 画像の最大幅を制限 */
    box-sizing: border-box; /* paddingなど考慮 */
}
.reasons-section .reason-image img {
    width: 100%;
    height: auto;
    display: block;
}
.reasons-section .reason-text {
    width: 55%;
    box-sizing: border-box;
}
.reasons-section h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}
.reasons-section p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

/* ==================================== */
/* flow-section */
/* ==================================== */
.flow-section .section-content {
    text-align: center;
    padding: 20px;
}
.flow-section .flow-cards {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    flex-wrap: wrap; /* スマホで折り返す */
    gap: 20px; /* カード間の隙間 */
}
.flow-section .flow-card {
    width: 48%; /* 2列表示 */
    box-sizing: border-box;
}
.flow-section .flow-card h3 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 10px;
}
.flow-section .flow-card p {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
    font-weight: bold;
}
.flow-section .flow-card .flow-image-wrapper {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    background-color: white;
}
.flow-section .flow-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==================================== */
/* cases-section */
/* ==================================== */
.cases-section {
    background-color: #f4f4f4;
}
.cases-section .section-content {
    padding: 20px;
    background-color: #f4f4f4; /* インラインスタイルを上書き */
}
.cases-section .case-cards {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    flex-wrap: wrap; /* スマホで折り返す */
    gap: 20px; /* カード間の隙間 */
}
.cases-section .case-card {
    width: 30%; /* 3列表示 */
    border: 1px solid #ccc;
    padding: 10px;
    background-color: white;
    box-sizing: border-box;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.cases-section .case-card img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}
.cases-section .case-card h4 {
    font-size: 1.1em;
    color: #004080;
    margin-bottom: 8px;
}
.cases-section .case-card p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.5;
}

/* ==================================== */
/* CTAセクションの修正 */
/* ==================================== */
.cta-section .cta-content { /* cta-section内のdiv要素 */
    text-align: center;
    padding: 40px;
    background-color: #004080;
    color: white;
    border-radius: 8px; /* 角丸を追加 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* 影を追加 */
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    color: white;
    margin-bottom: 25px;
}

.cta-section .cta-button { /* 「３分で完了！」ボタンのdiv */
    background-color: #FFA500;
    padding: 20px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    margin-top: 20px;
    font-size: 140%;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease; /* ホバーアニメーション */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* ボタンに影 */
}
.cta-section .cta-button:hover {
    background-color: #e69500; /* ホバーで少し濃く */
    transform: translateY(-2px); /* 少し浮き上がる */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* ホバーで影を強調 */
}


/* ==================================== */
/* レスポンシブ対応 */
/* ==================================== */
@media (max-width: 992px) {
    .problem-card {
        flex: 0 0 calc(50% - 20px / 2); /* 2列表示 */
    }
    .reasons-section .reason-item,
    .reasons-section .reason-item-reverse {
        flex-direction: column; /* 縦並び */
        text-align: center;
        gap: 15px; /* 縦並び時の隙間 */
    }
    .reasons-section .reason-image,
    .reasons-section .reason-text {
        width: 100%; /* 全幅に */
        padding: 0; /* パディングをリセット */
        max-width: 500px; /* 最大幅 */
    }
    .reasons-section .reason-image {
        margin-bottom: 0; /* 縦並びなのでflexのgapで管理 */
    }
    .reasons-section .reason-item-reverse .reason-image {
        order: -1; /* 画像を上に移動 */
    }
}

@media (max-width: 768px) {
    .problem-card {
        flex: 0 0 100%; /* 1列表示 */
    }
    .section-title {
        font-size: 1.8em;
    }
    .main-visual h1 {
        font-size: 2em;
    }
    .main-visual p {
        font-size: 1em;
    }
    /* メインビジュアルのボタン（スマホ） */
    .main-visual .cta-buttons-wrapper {
        gap: 10px;
    }
    .main-visual .cta-buttons-wrapper > div {
        min-width: unset;
        width: 90%;
        max-width: 350px; /* スマホでの最大幅 */
        font-size: 110%; /* スマホでは少し小さく */
    }
    .main-visual .cta-buttons-wrapper div a {
        padding: 12px 15px; /* スマホでのパディング */
    }

    .flow-section .flow-cards,
    .cases-section .case-cards {
        flex-direction: column; /* 縦並び */
        align-items: center; /* 中央寄せ */
    }
    .flow-section .flow-card,
    .cases-section .case-card {
        width: 90%; /* 全幅に */
        max-width: 400px; /* 最大幅 */
    }
    .reasons-section h3,
    .flow-section h3 {
        font-size: 1.3em;
    }
    .cases-section h4 {
        font-size: 1em;
    }
    .cta-section .cta-content {
        padding: 30px 15px;
    }
    .cta-section .cta-button {
        font-size: 120%;
        padding: 15px 15px;
    }
}

/* `wp-block-spacer`のデフォルトを無効化し、必要であれば調整 */
.wp-block-spacer {
    height: 30px !important; /* 適度な余白に調整 */
