
.award {
    padding: 20px;
    padding-top: 60px;
    margin: 0;
}

.movie-container {
    display: flex;
    justify-content: center;
}

.contents {
    background-color:#444
}

.contents h1 {
    padding: 0;
}

.contents h2 {
    padding-left: 20px;
    color:#f1f1f1
}

.contents h3 {
    margin: 10px;
    font-size: 16px;
    color:#f1f1f1
}

.contents p {
    padding-left: 20px;
    padding-right: 20px;
    line-height: 2;
    color:#f1f1f1
}

.contents img {
    width: 100%; /* 親要素の幅に合わせる */
    max-width: 100vw; /* ビューポート幅を超えないようにする */
    height: auto;
}

.view {
    display: flex;
    margin-bottom: 8px;
}

.view img {
    width: 50%; /* 2列に分けるために幅を50%に設定し、間隔を考慮 */
    max-width: 50vw; /* 最大幅を設定（必要に応じて調整） */
    height: auto; /* 高さを自動調整 */
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    margin: 20px 0;
    gap: 20px;
}

.tab-button {
    font-size: 13px;
    background-color: #f1f1f1;
    border: none;
    padding: 0px 20px;
    cursor: pointer;
}

.tab-button:hover {
    background-color: #ddd;
}

.tab-content {
    display: none; /* 初期状態で非表示 */
}

.tab-content.active {
    display: block; /* activeクラスが付いている場合表示 */
}