/* topics.css */

/* === タイトルエリア === */
.topics-hero {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 18.17%;
    overflow: hidden;
    background-color: transparent;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}
/* 背景画像 */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}
/* テキスト（画像の上に重ねる - ユーザー指定スタイル適用） */
.hero-text-new {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    color: white;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 800;
    font-size: 41px; 
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1); 
    z-index: 10;
}

/* スマホ用調整 */
@media (max-width: 640px) {
    .topics-hero {
        padding-bottom: 40%;
    }
    /* スマホではタイトル文字を非表示 */
    .hero-text-new {
        display: none;
    }
}

/* リンクカード */
.topic-link-card {
    background-color: white;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    min-height: 60px;
}
.topic-link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-color: #e5e7eb;
    background-color: #f9fafb;
}

/* 見出しデザイン */
.section-title {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #374151;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}