
.container-6 {
    max-width: 1100px;
    margin:  auto;
 
 }


.space {
    padding-top: 200px;
}



.section-title p{
    font-size: 1.5em;


}


.synopsis {
    display: flex;
    padding-left: 80px;
    margin-bottom: 100px;

}

.synopsis img {
  
    width: 100%;
    height: 100%;
    object-fit: cover;

}


.synopsis-text {
    background-color: rgba(0, 0, 0, 0.5);
    color: #ddc79b; 
    width: 60%;
    margin: 0 50px;
    padding: 0px 30px;
}

.synopsis-text h3 {
    font-size: 1.5em;
    font-weight: normal;
    border-bottom: #ddc79b solid 1px;
    width: 70%;
}

.mv-contents {
    position: relative;
    width: 80%;
    margin: auto;
    padding-top: 45%; /* 16:9の比率 */
    margin-bottom: 100px;
}

.mv-contents iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}




.album-list{
    display: flex;
    justify-content: center;
}


.album-setlist {
    display: flex;
    flex-direction: row-reverse;
    align-items: start;
    width: 50%;
    color: #ddc79b;
    padding-top: 85px;
    margin-left: 50px;
}

.setlist-item {
    display: flex;
    flex-direction: column;
    width: 2em;
    justify-content: center;
}

.setlist-number {
text-align: center;
margin-bottom: 5px;
}

.setlist-title {
    writing-mode: vertical-rl;
}

.setlist-item:nth-child(4){
    color: #b11e0d; /* ハイライトカラー */
    
}


.album-list-right {
    width: 50%;
    color: #ddc79b;
    text-align: center;
    margin-right: 100px;
    
}





.albumlinks {
    color: #ddc79b;
    border: #ddc79b solid 1px;
    width: 60%;
    padding: 10px;
    margin: auto;
    margin-bottom: 10px; /* 下に余白を追加 */
    transition: all 0.3s ease-in-out;
}


.albumlinks:hover {
    background-color: rgba(0, 0, 0, 0.7);
    border: #b11e0d solid 1px;
    color: #b11e0d;
}

.albumsubtitle {
    font-size: 1.25em;
    transform: scaleX(0.6);
    white-space: nowrap; /* 改行を禁止 */
    overflow: hidden; /* 必要ならオーバーフローを隠す */
    text-overflow: ellipsis; /* 省略記号(...)をつける場合 */
}




.albumtitle {
    font-size: 1.5em;
}



.album-list-right img{
    width: 60%;
    height: auto;
}

.photo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* 正方形グリッド */
    max-width: 1000px;
    margin: auto;
    gap: 5px;
}

.photo-list img {
    width: calc(100% - 10px); /* 余白分を差し引く */
    height: auto; /* 高さを自動調整 */
    aspect-ratio: 1 / 1; /* 正方形を維持 */
    object-fit: cover;
    border: 4px solid #b11e00; /* 赤い枠線 */
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    box-sizing: border-box; /* 画像のサイズ調整 */
    margin-top: 10px;
}



.photo-list img:hover {
    transform: scale(1.2);
}


/* モーダル（拡大表示） */
#photo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* 背景を暗くする */
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

/* モーダル内のコンテンツ（画像と説明文を縦に配置） */
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 80%;
    max-height: 80%;
}

/* モーダル画像 */
#photo-modal-img {
    width: auto;
    height: auto;
    max-width: 80vw; /* 画面サイズに収める */
    max-height: 70vh;
    object-fit: contain;
    border: 4px solid #b11e00; /* 赤枠 */
    display: block;
}

/* 説明文を画像の下に固定 */
#photo-modal-caption {
    color: #ddc79b;
    font-size: 1.2em;
    margin-top: 10px;
    text-align: center;
    max-width: 80%;
}

/* 閉じるボタン */
.photo-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 100px;
    color: #b11e00;
    cursor: pointer;
}

/* ナビゲーションボタン */
.photo-modal-nav {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.photo-modal-nav span {
    font-size: 40px;
    color: #ddc79b;
    cursor: pointer;
    padding: 10px;
}

#photo-prev { margin-left: 20px; }
#photo-next { margin-right: 20px; }


.boundary2 {
    max-width: 1100px;
    margin: auto;
}

.boundary2 img {
    width: 100%;
    margin-bottom: 50px;
    margin-top: 50px;
 
}
