/* --- トップページ専用スタイル --- */

/* ページ全体の背景や余白を制御するコンテナ */
.content_main_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 100px;
}

/* コンテンツ選択エリア（2×2のグリッド） */
.content_options_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 選択肢カード*/
.content_card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

/* ホバー時の挙動 */
.content_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 200, 233, 0.2);
    border-color: #00C8E9;
}

.content_card_h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}

/* タイトル下の装飾線 */
.content_card_h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background-color: #00C8E9;
    border-radius: 2px;
}

.content_card_p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1; /* ボタンの位置を下揃えにする */
}

/* ボタン */
.content_btn_box {
    background-color: #00C8E9;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 200px;
    margin: 0 auto;
    border: none;
    cursor: pointer;
}

.content_btn_link {
    display: block;
    padding: 15px 0;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

.content_btn_box:hover {
    background-color: #00a3bf;
    box-shadow: 0 5px 15px rgba(0, 200, 233, 0.4);
}

/* レスポンシブ */
@media (max-width: 850px) {
    .content_options_container {
        grid-template-columns: 1fr;
    }
    .content_hero_h1 {
        font-size: 2rem;
    }
    .content_card {
        padding: 30px 20px;
    }
}