    
    .block1 {
        background: radial-gradient(at 20% 10%, #F4F4ED 27%, #CCCCBC 150%);
        text-align: center;
        padding: 40px 10px;
    }
    .block1_txt1 {
        font-family: "Noto Serif JP", serif;
        position: relative;
        text-align: center;
        color: #132B72;
        font-size: 32px;
        letter-spacing: .08em;
        line-height: 1.39;
        margin: 0 0 32px;
        padding: 0 0 4px;
    }
    .block1_txt1::before {
        content: "";
        position: absolute;
    	left: 50%;
    	bottom: 0;
    	transform: translateX(-50%);
    	-webkit-transform: translateX(-50%);
    	-ms-transform: translateX(-50%);
    	width: 182px;
    	height: 2px;
    	background: linear-gradient(90deg, #E4CE9D 0%, #96783F 100%);
    }
    .block1_txt2 {
        color: #132B72;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: .08em;
        margin: 0;
    }
    .flow2_wrap {
        text-align: center;
        padding: 30px 15px;
    }
    .flow2_img1 {
        margin: 0 0 20px;
    }
    .flow2_txt1 {
        color: #132B72;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: .08em;
        margin: 0 0 20px;
    }
    .btnstyle3 img {
        box-shadow: 0 4px 6px rgba(0,0,0,.29);
        border-radius: 999px;
    }
    

/* ----- ↓↓↓ ポップアップ関連のスタイル【最終版】ここから ↓↓↓ ----- */

/* ポップアップのコンテナ（画面全体を覆う親要素） */
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px 0; /* 上下に見切れないように余白を追加 */
}

/* 背景の半透明オーバーレイ */
.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

/* 白い枠のコンテナ（ポップアップ本体） */
.popup-content {
    position: relative;
    width: 500px;
    max-width: 90%;
    background-color: #fff;
    border-radius: 12px; /* 少し角丸を強くする */
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    overflow: hidden; /* コンテナからはみ出す要素を隠し、角丸を適用 */
    z-index: 1001;
    animation: fadeIn 0.3s ease-out;
}

/* メインの画像（CTAボタンではない方） */
.popup-content > img {
    display: block;
    width: 100%;
    height: auto;
}

/* 閉じるボタン */
.popup-close {
    position: absolute;
    /* 位置をコンテナの内側に変更 */
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.5); /* 背景色を少しつけて見やすく */
    border-radius: 50%;
    color: #fff; /* 文字色を白に */
    font-size: 24px;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s;
    z-index: 1002;
}

.popup-close:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* CTAボタン */
.info__btn {
    width: 100%;
    padding: 5% 5%;
}

.info__btn img {
    display: block;
    width: 100%;
    height: auto;
}

/* ポップアップ表示時のフェードインアニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* ----- ↑↑↑ ポップアップ関連のスタイル【最終版】ここまで ↑↑↑ ----- */