@charset "UTF-8";

/* talent_top.html 固有のスタイル */

/* wrapper内の要素の開始位置をリセットして高さを揃える */
.wrapper {
    align-items: flex-start; /* 上端を揃える */
}

aside, main {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* 表題：余白をゼロにして左のCATEGORYと位置を合わせる */
.section-title-main {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-main);
    padding: 0 0 10px 0; /* 文字の上の余白をなくす */
    margin: 0 0 20px 0;  /* 下方向のみ余白を持たせる */
    border-bottom: 2px solid var(--accent-color);
    line-height: 1.2;
}

.content-box {
    padding: 0 10px;
    margin-bottom: 30px;
}

.list-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.list-item img {
    margin-right: 10px;
    flex-shrink: 0;
}

/* リンク：太文字を解除し、下線を表示 */
.list-item a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: normal;
}

.list-item a:hover {
    text-decoration: none;
}

/* 説明テキスト */
.description {
    font-size: 0.9rem;
    color: #666;
    margin: -10px 0 20px 25px;
    line-height: 1.5;
}