@charset "UTF-8";

body {
    font-size: 32px;
    text-align: center;
    background: #f8dd83;
}

h1{
    padding: 3% 2%;
    background: #E06A3B;
    font-size: 48px;
    font-weight: bold;
}

h2{
    padding: 3% 2%;
    font-size: 42px;
    font-weight: bold;
    background: #8BA7D5;
}

h3{
    background: #DEE735;
    padding: 10px;
}

#access{
    border: 1px solid #000;
    display: flex;
    justify-content: space-around;
    padding: 3% 3% 5%;
}

#map{
    max-width:650px;
    border: 5px solid #000;
    width: 80%;
}
#map iframe{
    width: 100%;
}

#text{
    display: flex;
    /* justify-content: center; */
    align-items: center;
}
#text ul{
    text-align: left;
}
#text ul li{
    line-height: 1.5;
}
/* カレンダー */

#calender{
    display: flex;
    flex-wrap: wrap;
}

#calender section{
    margin: 10px;
}

#calendar h1 {
    font-size: 18px;
}

#calendar table {
    border-spacing: 0;
    border-collapse: collapse;
    margin: 30px auto;
    width: 80%;
}

#calendar td {
    border: 1px solid #ddd;
    padding: 5px 12px;
    text-align: center;
}

#calendar td:first-child {
    color: red;
}

#calendar td:last-child {
    color: royalblue;
}

#calendar td.is-disabled {
    color: #ccc;
}

button{
    margin: 10px;
    border: 2px solid #000;
    border-radius: 5px;
    padding: 5px;
}


/* レスポンシブでアクセスを立て並びに変更 */

@media screen and (max-width:840px) {
    #access{
        flex-flow: column;
    }
    #map,#text{
        margin: 0 auto;
    }
    #calendar table {
        font-size: 24px;
    }
}
@media screen and (max-width:640px) {
    
    #calendar table {
        font-size: 20px;
    }

}
