@charset "utf-8";

body{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color:#333;
}

/*
h1{
    text-align: center;
}

.class_description{
    width: 70%;
    margin: 0 auto;
    margin-bottom: 10px;
}

.class_description > a:hover{
    border-bottom: 2px solid;
}

.class_description > a{
    border-radius: 10%;
    text-decoration: none;
    color:#333;
}

*/


.class_card{
    width: 70%;
    margin: 0 auto;
}
/* 狭いブラウザとタブレット向け */
@media (max-width: 1020px) and (min-width: 768px) {
}
/* スマホ向け */
@media (max-width: 767px) {
/*
    .class_description{
        width: 100%;
    }
*/
    .class_card{
        width: 100%;
    }
}

.class_name{
    font-size: 16pt;
    text-align: center;
    background-color:bisque;
/*
    background-color: aquamarine;
*/
}

.schedule_list{
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
    flex-direction: column;
/*
    flex-wrap: wrap;
    justify-content:center;
*/
}

.schedule_item{
    display: flex;
    padding-left: 10px;
    padding-bottom: 10px;
    flex-direction: column;
/*
    flex-wrap: wrap;
    margin-left: 10px;
    margin-right: 10px;
*/
}

.schedule_item_info{
    margin-right: 10px;
}

.class_contact, .place_name, .class_time, .class_prof{
    font-size: 14pt;
    margin-bottom: 5px;
}

.class_desc{
    font-size: 14pt;
    color: red;
    margin-bottom: 5px;
}

.place_name{
    margin-top: 10px;
}

.place_map{
    width:800px;
    height:400px;
    margin-bottom: 5px;
}

.class_calendar{
    width:800px;
    height:800px;
    margin-bottom: 5px;
}

/* 狭いブラウザとタブレット向け */
@media (max-width: 1020px) and (min-width: 768px) {
}
/* スマホ向け */
@media (max-width: 767px) {
    .place_map{
        /*スマホサイズになったら横幅を親要素に合わせる*/
        display: block;
        width:100%;

        height:400px;
    }
    .class_calendar{
        /*スマホサイズになったら横幅を親要素に合わせる*/
        display: block;
        width:100%;

        height:400px;
    }
}
