/* ベーススタイル */
body {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f7f9;
}

/* 📌 中央寄せを確実にする設定 📌 */
.container {
    max-width: 500px; 
    margin: 0 auto; 
    padding: 10px 0;
    padding-bottom: 120px;
}

/* 資料画像 */
.slide-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    /* ★修正: リンクのない画像はここでデフォルトマージンを持つ★ */
    margin-bottom: 10px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- リンクコンテナの基礎設定 --- */
.container a {
    display: block; 
    text-decoration: none; 
    color: inherit;
    /* ★重要: <a>タグにマージンを持たせるため、imgタグの10pxを打ち消す★ */
    margin-bottom: -20px; 
}

/* 汎用マージンクラス: <a>タグに適用し、間隔を広げる */
.image-link-container.u-mb-lg, 
.u-mb-lg {
    margin-bottom: 20px; /* 最終的なマージン (例: 44px) */
}

/* リンク内の画像リセット*/
.container a img.slide-image {
    vertical-align: top;
    margin-bottom: 0 !important;
     /* <a>タグがマージンを持つため、画像のマージンは消す */
}

/* --- モーダルウィンドウ（オーバーレイ）のスタイル --- */
.modal {
    position: fixed; 
    z-index: 100; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9); 
    display: none;
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto; 
    padding: 10px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    position: relative;
    border-radius: 8px;
}

.modal-content iframe {
    display: block;
    margin: 0 auto;
    aspect-ratio: 4 / 3; 
    width: 100%;
    height: 600px; 
}

.close-button {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    position: absolute;
    top: -40px; 
    right: 0px;
    cursor: pointer;
    z-index: 101;
}
.close-button:hover,
.close-button:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

/* --- 📌 追従ボタン/CTAのスタイル --- */
.fixed-button-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 90; 
    padding: 20px 10px; 
    background: #ffffff; 
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    text-align: center; 
    margin: 0; 
}

/* 追従ボタン (<a>タグ) の設定 */
.fixed-button-container .seminar-button {
    margin: 0 auto; 
    width: 50%; /* 画面幅の95%を使用（左右途切れ防止） */
    max-width: 600px; /* 👈 PC表示で幅広くなりすぎないよう制限（復活させます） */
    height: auto;
    padding: 20px 20px; /* 上下のパディングを少し増やして高さを出す */
    background-color: #e54c3c; /* 赤みのあるオレンジ */
    box-shadow: 0 7px 0 0 #a3411b, /* 濃いオレンジで7pxの厚み */
                0 5px 15px rgba(0, 0, 0, 0.2); /* 浮き出し効果 */
                
    border-radius: 8px;
    display: flex; /* アイコン配置のため flex を使用 */
    align-items: center;
    justify-content: center; /* 中央揃え */
    text-align: center;
    margin-bottom: 0 !important; /* 影の調整はコンテナ側で行います */
    text-decoration: none !important; 
    color: #fff !important; 
}

.fixed-button-container .button-text-top {
    /* 「ご予約は1分で完了！」部分 */
    color: #fff;
    font-size: 1.4em;
    font-weight: bold;
    display: block;
    line-height: 1.4;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.fixed-button-container .button-text-bottom {
    /* 「クリックしてオンライン合同説明会...」部分 */
    color: #fff;
    font-size: 1.2em;
    font-weight: 700; /* 太字を強調 */
    display: block;
}

/* ▷ アイコンを右側に移動させるための微調整 */
.fixed-button-container .arrow-icon {
    margin-left: 5px;
}

/* ... (seminar-buttonのコアスタイルは省略) ... */

/* --- 📌 レスポンシブ対応の整理 📌 --- */

.container img.slide-image:last-of-type {
    margin-bottom: 40px;
}
/* 📌 追従ボタンの下にコンテンツが隠れないようにマージンを追加 */
/* 追従ボタンが邪魔しないよう、既存の40pxを上書きして大きな値を設定します */
.container img.slide-image:last-child {
    margin-bottom: 10px !important;
}

@media (max-width: 600px) {
    .container {
        max-width: 600px;
        padding: 10px 10px;
    }
    
    .fixed-button-container {
        padding: 5px 0;
        background: transparent; /* または transparent */
        box-shadow: none;
    }

    /* 追従ボタン本体の調整 */
    .fixed-button-container .seminar-button {
        width: 95%; 
        margin: 0 auto; /* 中央揃え */
        border-radius: 0px; 
        padding: 15px 10px;
        display: block;
        flex-direction: row; /* 横並びを維持 */
        /*align-items: center;
        justify-content: space-between;
        text-align: left; */
    }
    
    .seminar-button-text {
        flex-grow: 1; /* 残りのスペースをすべて占有 */
        text-align: center; /* テキストを中央寄せ */
        padding: 0 10px;
    }

    .fixed-button-container .button-text-top {
        /* スマホでは「ご予約は1分で完了！」を小さく表示 */
        font-size: 0.9em;
        display: block; 
        margin-bottom: 3px;
    }
    
    .fixed-button-container .button-text-bottom {
        /* メインCTAを強調 */
        font-size: 1.1em; 
    }
    
    /* アイコンのスタイル調整（HTMLにアイコンが必要） */
    .fixed-button-container .arrow-icon {
        /* 右側の矢印アイコンを大きく表示 */
        font-size: 1em;
        margin-left: 0;
        line-height: 1;
    }
    
    /* 左側のカレンダーアイコン用のクラス（HTMLに別途追加が必要） */
    .fixed-button-container .calendar-icon {
        font-size: 1.8em;
        margin-right: 5px;
        line-height: 1;
    }

    /* その他スマホ調整 */
    .modal-content {
        width: 95%; 
        margin: 5% auto;
        padding: 5px;
    }
    
    .modal-content iframe {
        height: 400px; 
    }
    
    .close-button {
        top: -30px;
        right: 5px;
        font-size: 30px;
    }
}