body {
    background-color: #121212;
    color: #f3f3f3;
    font-family: 'IBM Plex Sans JP', 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden; /* 横スクロールを防止 */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #1d1d1d;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box; /* はみ出し防止 */
}

header h1 {
    margin: 0;
    font-size: 2em; /* デフォルトのフォントサイズ */
    white-space: nowrap; /* テキストの改行を防ぐ */
}

/* モバイル表示用スタイル */
@media (max-width: 767px) {
    header h1 {
        font-size: 1.5em; /* モバイル表示用にフォントサイズを小さく */
    }
}

.icon {
    background-color: #333;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.video-section {
    position: relative;
    text-align: center;
    margin: 20px;
}

video {
    width: 100%;
    height: 33vh; /* 画面の縦幅の1/3 */
    display: block; /* 動画プレーヤーの非表示 */
}

#muteButton {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #f3f3f3;
    font-size: 24px;
    cursor: pointer;
}

.content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
    flex: 1;
}

.content h2 {
    margin: 0;
    padding: 10px;
    transition: color 0.3s, border-bottom 0.3s;
    border-bottom: 2px solid #00000000;
}

.content h2:hover {
    color: #ffcc00;
    background-color: #161616;
    border-bottom: 2px solid #ffcc00;
}

main {
    flex: 1;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #1d1d1d;
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: auto;
    box-sizing: border-box; /* はみ出し防止 */
}

.profile-section {
    padding: 20px;
    background-color: #161616;
    color: #f3f3f3;
}

.profile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.profile-image img {
    width: 100%;
    max-width: 33vh;
    height: auto;
    object-fit: cover;
}

.profile-details {
    text-align: center;
    font-size: 1.4em; /* テキストのサイズを大きく */
}

.profile-details p {
    margin: 0;
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.profile-details p strong {
    font-size: 1.2em; /* キーのサイズを小さく */
    margin-right: 10px; /* キーと値の間にスペースを追加 */
}

.profile-description {
    padding: 10px;
    background-color: #333;
    border-radius: 10px;
}

/* デスクトップ用スタイル */
@media (min-width: 768px) {
    .profile-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .profile-image img {
        width: 33vh; /* 画面の縦幅の1/3 */
        max-width: none;
    }

    .profile-details {
        text-align: left;
    }
}

a {
    color: inherit; /* 親要素の色を継承 */
    text-decoration: none; /* 下線を削除 */
}

a:hover {
    color: #ffcc00; /* ホバー時の色を変更 */
}

.notice-section {
    padding: 20px;
    background-color: #161616;
    color: #f3f3f3;
}

.notice-content {
    margin-top: 20px;
}

.double-underline {
    border-bottom: 3px double #f3f3f3;
    padding-bottom: 5px;
}

.notice-content h3 {
    margin-top: 20px;
    font-size: 1.2em;
    border-bottom: 1px solid #f3f3f3;
    padding-bottom: 5px;
}

.notice-content ol {
    list-style-type: decimal;
    padding-left: 20px;
}

.notice-content ol li {
    margin-bottom: 10px;
}

.notice-content p {
    margin-bottom: 10px;
}

.video-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.video-content iframe {
    width: 100%;
    max-width: 1000px;
    height: 60vh; /* 画面の縦幅の60% */
    max-height: 60vh; /* 画面の縦幅の60% */
    border: none;
}

.links-section {
    margin: 20px 0;
}

.links-content {
    display: flex;
    justify-content: center;
    align-items: center; /* 中央揃え */
    gap: 20px;
    margin-top: 10px;
}

.video-section h2, .links-section h2 {
    margin-top: 20px;
    font-size: 1.5em;
    border-bottom: 1px solid #f3f3f3;
    padding-bottom: 10px;
    text-align: center; /* 中央揃え */
}

.link-icon {
    display: flex;
    align-items: center; /* 中央揃え */
}

.link-icon img {
    width: auto;
    height: 5.5vh;
    object-fit: contain; /* アイコンのアスペクト比を保つ */
}

.link-icon img[alt="X"], .link-icon img[alt="Instagram"] {
    width: auto; /* XとInstagramのアイコンを少し小さくする */
    height: 3vh;
}

.video-container {
    position: relative;
    width: 100%;
    height: 33vh;
}

.video-container video {
    width: 100%;
    height: 100%;
    pointer-events: none; /* ポインターイベントを無効化 */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.links-section h2 {
    margin-top: 20px;
    font-size: 1.5em;
    border-bottom: 1px solid #f3f3f3;
    padding-bottom: 10px;
    text-align: center; /* 中央揃え */
    width: fit-content; /* コンテンツの幅に合わせる */
    margin-left: auto; /* 左右中央揃え */
    margin-right: auto; /* 左右中央揃え */
}

.video-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    margin-top: 2px;
    flex-wrap: wrap; /* モバイル表示での折り返しを有効化 */
}

.video-title {
    color: #f3f3f3;
    font-size: 0.9em;
    text-align: center;
    margin-top: 2px;
}

.video-link {
    color: #f3f3f3;
    font-size: 0.9em;
    text-decoration: none;
    text-align: center;
    margin-top: 2px;
}

.video-link:hover {
    text-decoration: underline;
}

/* モバイル表示用スタイル */
@media (max-width: 767px) {
    .video-info {
        flex-direction: column; /* モバイル表示で縦並びにする */
        align-items: flex-start; /* 左寄せにする */
    }
}

.video-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1vh;
    margin-top: 1px;
    flex-wrap: wrap; /* モバイル表示での折り返しを有効化 */
}

.video-title {
    color: #f3f3f3;
    font-size: 0.9em;
    text-align: center;
    margin: 1px;
    display: flex;
    align-items: center; /* アイコンとテキストを中央揃え */
}

.video-title::before {
    content: "♪"; /* 曲名の左に「♪」を付与 */
    margin-right: 5px; /* 曲名との間にスペースを追加 */
}

.video-link {
    color: #f3f3f3;
    font-size: 0.9em;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    margin: 1px;
}

.video-link:hover {
    text-decoration: underline;
}

/* モバイル表示用スタイル */
@media (max-width: 767px) {
    .video-info {
        flex-direction: column; /* モバイル表示で縦並びにする */
        align-items: flex-start; /* 左寄せにする */
    }
}

.video-section-title {
    color: #f3f3f3;
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 10px; /* タイトルと動画の間にスペースを追加 */
}

/* モバイル表示用スタイル */
@media (max-width: 767px) {
    .video-section-title {
        font-size: 1.2em; /* フォントサイズを小さく */
        margin-bottom: 5px; /* タイトルと動画の間のスペースを減らす */
    }
}

/* ここから追加部分 */
/* 歌唱実績セクションのスタイル */
.achievements-section {
    margin: 20px 0;
}

.achievements-section h2 {
    margin-top: 20px;
    font-size: 1.5em;
    border-bottom: 1px solid #f3f3f3;
    padding-bottom: 10px;
    text-align: center; /* 中央揃え */
    width: fit-content; /* コンテンツの幅に合わせる */
    margin-left: auto; /* 左右中央揃え */
    margin-right: auto; /* 左右中央揃え */
}

.achievements-content {
    padding: 20px;
}

.achievement-item {
    background-color: #161616;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.achievement-item h3 {
    margin: 0;
    padding-bottom: 10px;
    font-size: 1.3em;
    border-bottom: 1px solid #f3f3f3;
}

.achievement-item p {
    margin: 10px 0;
    font-size: 1em;
}

.achievement-item p strong {
    display: inline-block;
    width: 250px;
}

.achievement-item a {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .achievement-item p strong {
        width: 100%;
        margin-bottom: 5px;
    }
}