@charset "UTF-8";
article, aside, details, figcaption, figure, header, hgroup, menu, nav, section {
	display: block;
}

/* レスポンシブで中央揃え、暖色系で柔らかいデザイン */
body {
    font-family: Arial, sans-serif;
    background-color: wheat; /* wheat */
    color: #996666; /* 暖色系のテキストカラー */
    font-size: 16px;
    text-align: center; /* 中央揃え */
}

.movie {
    position: relative;
    width: 100%;
    height: 60vh;
    padding-top: 30%;
}

.movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.title {
    font-size: 2rem;
    color: #007bff;
}

.back {
    font-size: 14px;
    font-family: "Arial";
}

h2 {
    text-align: center;
    background-color: #cf9156; /* 暗めの色 */
    color: #fff; /* テキストカラーを白に設定 */
    padding: 10px; /* 余白を追加して装飾 */
    border-radius: 5px; /* 角丸にする */

}

.button001 a,
.button002 a {
    background: #555; /* より濃い灰色 */
    border-radius: 5px;
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.3s;
    width: 200px; /* ボタンの幅を揃える */
}

.button001 a:hover,
.button002 a:hover {
    background: #0056b3;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#thumbnail-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.thumbnail {
    margin: 5px;
    border: 2px solid #007bff;
    border-radius: 5px;
}

@media (max-width: 1000px) {
    body {
        font-size: 18px;
    }

    .button001 a,
    .button002 a {
        width: 60%; /* ボタンの横幅を60%にする */
        padding: 20px 40px; /* パディングを大きくしてボタンの縦幅と文字を大きくする */
        font-size: 60px; /* 文字の大きさを倍にする */
        margin: 10px 0; /* マージンを調整 */
    }
    
}
