/* commons */
body{ 
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #fffef2;
}

@media screen and (max-width: 750px) {
    body{ 
        font-family: 'Noto Sans JP', sans-serif;
    }
}

*{
    box-sizing: border-box;
}

p{
    font-size:18px;
    font-size: clamp(14px, 2.3vw, 18px);
    line-height: 1.8;
}

a{
    text-decoration: none;
}

.flex-image-2{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:0 12px;
    margin-bottom: 1.8em;
}
.flex-image-2 figure{
    width:calc(50% - 12px);
    margin-bottom: 0 !important;
}
.flex-image-2 figure img{
    width:100%;
    height:auto;
}

@media screen and (max-width: 750px) {
    .flex-image-2{
        display:block;
    }
    .flex-image-2 figure{
        width:100%;
    }
}




.wrapper{
    width:100%;
    max-width:1050px;
    margin:0 auto;
    padding:20px 0 60px;
}

@media screen and (max-width: 1050px) {
    .wrapper{
        max-width:none;
        padding:20px 20px;
    }
}

header .logo{
    max-width:200px;
    margin-bottom:40px;
}

header .logo img{
    width:100%;
    height:auto;
    /*image-rendering: -webkit-optimize-contrast;*/
}

header h1{
    line-height: 1.25;
    font-weight: bold;
    font-size: 32px;
    margin: 16px 0;
}

header .date-tags {
    line-height: 0.8;
    text-align: right;
    margin-bottom: 1em;
}

main .eyecatch{
    margin-bottom:1.8em;
}

main .eyecatch figure img{
    width:100%;
    height:auto;
}

main p.catch{
    margin-bottom:1.8em;
}

main .course{
    border:3px solid #949495;
    padding: 1.2em 1em;
    margin-bottom:1.8em;
}

main .course h2{
    font-size:18px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 1.8em;
}

main .course p{
    text-align: center;
}

main .course p a{
    color:#000;
    font-size:22px;
    padding-bottom:2px;
    border-bottom:1px solid #000;
}

main .guide{
    margin-bottom:1.8em;
}

main .guide figure{
    margin-bottom:1.8em;
}

main .guide figure img{
    width:100%;
    height:auto;
}

main .guide h2{
    font-size: clamp(20px, 2.3vw, 25px);
    margin-bottom: 1.62em;
}

main .guide p{
    margin-bottom:1.8em;
}

main .guide h3{
    font-size: 20px;
    padding: 9px 10px;
    margin-bottom: 1.62em;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
}

main .guide .map{
    display:flex;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
    gap:0 30px;
    margin-bottom: 1.8em;
    padding: 1.2em 1em;
    border-radius: 4px;
    border:3px solid #949495;
}

main .guide .map figure{
    width:calc(38% - 30px);
    margin-bottom:0;
}
main .guide .map .contents{
    width:calc(62% - 30px);
}

@media screen and (max-width: 750px) {
    main .guide .map{
        display:block;
    }
    main .guide .map figure,
    main .guide .map .contents{
        width:100%;
    }
    main .guide .map figure{
        margin-bottom:1em;
    }
}

main .guide .map h4{
    font-size: clamp(14px, 2.3vw, 18px);
    font-weight: normal;
    margin-bottom:1.8em;
}

main .guide .map p{
    font-size: clamp(12px, 2.3vw, 13px);
    margin-bottom:1.8em;
}

main .guide .map .googlemap{
    margin-bottom:1.8em;
}

main .guide .map .googlemap iframe{
    max-width:100%;
}

main .guide .map .googlemap-button{
    background-color:#333333;
    border-radius: 20px;
}

main .guide .map .googlemap-button a{
    text-align: center;
    font-size: clamp(14px, 2.3vw, 18px);
    font-weight: bold;
    display:block;
    color:#fff;
    padding: 14px 20px;
    position:relative;
}

main .guide .map .googlemap-button a:after{
    content: "";
    background-image: url(../images/angle-right-solid.svg);
    fill: #fff;
    color:#fff;
    width:10px;
    height:17px;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 20px;
    margin-right: 12px;
    transition: all .2s ease;
} 

main .guide .map .googlemap-button a:hover:after{
    margin-right: 8px;
}

footer .link-box ul{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:0 16px;
    list-style-type: none;
    margin:4em 0 1.8em;
}

@media screen and (max-width: 750px) {
    footer .link-box ul{
        display: block;
    }
}

footer .link-box ul li{
    width:240px;
    background-color:#fff;
    text-align: center;
    border :1px solid #aa8f63;
}

@media screen and (max-width: 750px) {
    footer .link-box ul li{
        margin: auto;
    }
    footer .link-box ul li:first-child{
        margin:0 auto 16px;
    }
}

footer .link-box ul li a{
    display:block;
    width:100%;
    color:#aa8f63;
    padding:20px 0;
}

footer .copy{
    font-size:13px;
    text-align: center;
}

