/*学校の様子共通書式*/
#gakko-no-yosu-h1 {
    text-align: center;
    font-size: 50px;
    margin: 50px 100px 50px 100px;  
}

#gakko-no-yosu {
    margin-left: 50px;
    margin-right: 50px;
    padding-bottom: 100px;
}

#gakko-no-yosu p {
    text-indent: 1em;
    margin-top: 0;
    margin-bottom: 0;
}

#gakko-no-yosu p.margin-bottom {
    margin-bottom: 1em;
}

.gakko-no-yosu-photo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 50px 0 80px 0;
}

.gakko-no-yosu-photo > div {
    text-align: center;
    flex-basis: calc(33.33% - 10px); /* 1行に3枚の写真を配置 */
    margin-left: 5px;
    margin-right: 5px;
}

.gakko-no-yosu-photo img {
    height: 215px;
    object-fit: cover; /* 画像のアスペクト比を保持しつつフィットさせる */
}

.gakko-no-yosu-photo img.h180 {
    height: 180px;
}

.gakko-no-yosu-photo img.h200 {
    height: 200px;
}

.gakko-no-yosu-photo img.h250 {
    height: 250px;
}

.gakko-no-yosu-photo img.h300 {
    height: 300px;
}

.gakko-no-yosu-photo img.h350 {
    height: 350px;
}

.gakko-no-yosu-photo img.h400 {
    height: 400px;
}

.gakko-no-yosu-photo img.h500 {
    height: 500px;
}

.gakko-no-yosu-photo img.h600 {
    height: 600px;
}

.gakko-no-yosu-photo img.h700 {
    height: 700px;
}

.gakko-no-yosu-photo span {
    display: block;
}

.center {
    text-align: center;
    margin-bottom: 0;
}

/*学校の様子セレクト画面*/
#gakko-no-yosu-select {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

#gakko-no-yosu-select > div {
    flex-basis: 21%;
}

#gakko-no-yosu-select ul {
    padding: 0;
    margin: 0 0 50px 0;
    width: 100%; 
}

#gakko-no-yosu-select li {
    display: flex;
    align-items: center;
    justify-content: left;
    height: 60px;
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
    list-style: none;
    background-color: #ffe8e8;
    border: solid 1px #c0c0c0;  
}

#gakko-no-yosu-select a {
    text-decoration: none;
    color: #000000;
    display: block;
    padding-left: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 35px;
    width: 100%;
    background-image: url("../../img/arrow.png");
    background-repeat: no-repeat;
    background-position: 97% center;
}

#gakko-no-yosu-select a:hover {
    text-decoration: underline;
    background-color: #ffffff;
}

/* 画面幅が767px以下のとき */
@media screen and (max-width: 767px) {
    /* スマートフォン用のスタイルを指定する */
    /* PC用ナビゲーション非表示 */

    #gakko-no-yosu-h1 {
        font-size: 20px;
        margin: 30px 10px 30px 10px;
    }  

    #gakko-no-yosu {
        margin-left: 30px;
        margin-right: 30px;
    }
    
    .gakko-no-yosu-photo {
        flex-direction: column;
        margin: 30px -15px 30px -15px;
    }

    .gakko-no-yosu-photo > div {
        width: 100%;
        margin-bottom: 30px;
    }

    .gakko-no-yosu-photo img {
        height: auto;
        width: 100%;
    }

    .gakko-no-yosu-photo img.h180 {
        height: auto;
    }
    
    .gakko-no-yosu-photo img.h200 {
    }
    
    .gakko-no-yosu-photo img.h250 {
        height: auto;
    }
    
    .gakko-no-yosu-photo img.h300 {
        height: auto;
    }
    
    .gakko-no-yosu-photo img.h350 {
        height: auto;
    }
    
    .gakko-no-yosu-photo img.h400 {
        height: auto;
    }

    .gakko-no-yosu-photo img.h500 {
        height: auto;
    }
    
    .gakko-no-yosu-photo img.h600 {
        height: auto;
    }

    .gakko-no-yosu-photo img.h700 {
        height: auto;
    }

    .gakko-no-yosu-photo img.tatemuki {
        width: 70%;
    }

    /*学校の様子セレクト画面*/
    #gakko-no-yosu-select {
        flex-direction: column;
    }

    #gakko-no-yosu-select > div {
        flex-basis: 10%;
    }


}