@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap");

body {
    background-color: #5f5858;
    margin: 0;
    font-family: 'Dela Gothic One', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#mainnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
    z-index: 1000;
    font-size: 24px; /* PCとスマホで見やすいサイズに調整 */
}

#mainnav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

#mainnav a:hover {
    text-decoration: underline;
}

.context {
    text-align: center;
    width: 100%;
    padding-top: 70px; /* ナビゲーションが固定されているため */
}

.context h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 100;
    margin-bottom: 30px;
}

.context h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 100;
}

.context p {
    color: #fff;
    font-size: 30px;
}

.context a {
    color: #ffffff;
    font-size: 30px;
    text-decoration: none;
}

.context a:hover {
    color: rgb(105, 105, 105);
}

img {
    display: block;
    margin: auto;
    max-width: 100%; /* 画像のサイズが画面幅を超えないように調整 */
    height: auto;
}

.akiyama, .sinonome, .bibibasu, .tukimura, .hujita, .kyouyama, .ryugeki {
    background-color: #ddd;
    margin: 20px auto;
    padding: 15px;
    border-radius: 10px;
    width: 80%;
}

.kazusa{
    width: 375px;
    height: 500px;
}

.kisaki{
    width: 225px;
    height: 500px;
}

.akiyama { background-color: #DDAACC; }
.sinonome { background-color: #CCAA88; }
.bibibasu { background-color: #00bb9c; }
.tukimura { background-color: #0c7bbb; }
.hujita { background-color: #f8c112; }
.kyouyama { background-color: #cd67cb; }
.ryugeki { background-color: #383838; }

footer {
    width: 100%;
    color: #fff;
    padding: 20px;
    font-size: 18px;
    text-align: center;
}

.tugi a {
    color: #a99062;
    font-size: 30px;
    text-decoration: none;
}

.tugi a:hover {
    color: rgb(33, 33, 33);
}

/* スマートフォン用のスタイル調整 */
@media screen and (max-width: 768px) {
    #mainnav {
        font-size: 18px;
    }

    .context h1 {
        font-size: 24px;
    }

    .context h2 {
        font-size: 20px;
    }

    .context p, .context a, footer {
        font-size: 16px;
    }

    .akiyama, .sinonome, .bibibasu, .tukimura, .hujita, .kyouyama, .ryugeki {
        width: 90%; /* より狭い画面幅に対応 */
    }

    .tugi a {
        font-size: 18px;
    }
}

