/* --- 共通レイアウト --- */
body {
    font-family: sans-serif;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
    line-height: 1.6;
}

header {
    text-align: center;
    border-bottom: 2px solid #333;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.profile-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 1px solid #ccc;
}

nav { margin-top: 15px; }
nav a {
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
    color: #0066cc;
}
nav a:hover { text-decoration: underline; }

section {
    margin-bottom: 60px;
    padding-top: 20px;
}

h1 { font-size: 24px; margin-top: 10px; }
h2 {
    border-left: 5px solid #333;
    padding-left: 10px;
    font-size: 20px;
}

footer {
    text-align: center;
    font-size: 12px;
    color: #777;
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

/* --- 外部リンクのお作法 --- */
a[target="_blank"]::after {
    content: " ↗";
    font-size: 0.8em;
    color: #666;
}

/* --- Worksページ用 --- */
.work-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ccc;
}
.work-title { font-size: 18px; font-weight: bold; }
.lyric-link {
    margin-left: 10px;
    font-size: 14px;
    color: #cc0000;
    text-decoration: none;
    font-weight: bold;
}
.lyric-link:hover { text-decoration: underline; }

/* --- 歌詞ページ用 --- */
.meta-info {
    color: #666;
    font-size: 14px;
    margin: 10px 0;
}

.listen-box { margin: 20px 0; }
.listen-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}
.listen-btn:hover { background: #444; }

.listen-btn-yt {
    display: inline-block;
    padding: 8px 16px;
    background: #FF0000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}
.listen-btn-yt:hover { background: #FF0033; }

.lyrics {
    font-size: 16px;
    line-height: 1.8;
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #eee;
    white-space: pre-wrap;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}
.back-link:hover { text-decoration: underline; }

/* --- プロフィールページ用テーブル --- */
.profile-table {
    width: 100%;
    border-collapse: collapse; /* 枠線の隙間をなくす */
    margin-top: 20px;
    font-size: 15px;
}

.profile-table th {
    width: 120px; /* 阿部寛サイトへのリスペクトで120pxに設定 */
    text-align: left;
    vertical-align: top;
    padding: 15px 10px 15px 0;
    border-bottom: 1px dotted #ccc;
    color: #666;
    font-weight: normal;
}

.profile-table td {
    padding: 15px 0;
    border-bottom: 1px dotted #ccc;
    vertical-align: top;
}
