@charset "UTF-8";

body{
	margin: 0;
    padding: 0;
	font-family: 'メイリオ','Hiragino Kaku Gothic Pro','sans-serif';
    color: #fff;
    background-color: #3E1900;
    min-height: 100vh;
}
.site{
    background-color: #000;
    height: 80px;
    margin-bottom: 15px;
}
.site h1{
    font-size: 30px;
    text-align: center;
}
.site h1 a{
    display: block;
    color: #fff;
    text-decoration: none;
}
.site h1 span{
    font-size: 15px;
    font-weight: normal;
}
picture img{
    width: 100%;
}
.subPix img{
    display: block;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
}
main h1{
    padding-left: 10px;
    font-size: 24px;
}
h2{
    margin-top: 0;
    color: #4a4a4a;
    background-color: #BFAA98;
    padding-left: 10px;
    font-size: 20px;
}
h3{
    padding-left: 10px;
    background-color: #336666;
    font-size: 16px;
}
h4{
    margin: 0 0 10px;
    padding-left: 10px;
}
p{
    padding: 0 10px;
}
/*ナビゲーション*/
.page-btn{
    display: none;
}
.open .page-nav{
    display: block;
    background-color: rgba(0,0,0,0.8)
}
.page-nav ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.page-nav ul:first-child{
    margin-bottom: 30px;
}
.page-nav ul li:first-child{
    margin-bottom: 10px;
}
.page-nav li{
    font-size: 20px;
    margin-left: 5px;
}
.page-nav a{
    display: block;
    padding: 14px 25px;
    border-bottom: solid 1px #505050;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}
.fa-square-full{
    font-size: 12px;
    margin-right: 10px;
    vertical-align:middle;
}
/*フッター*/
footer{
    color: #000;
    background-color: #F2D3A1;
    text-align: center;
    font-size: 14px;
    font-style: italic;
}
/***********index.html***********/
.news h3{
    font-size: 18px;
    background-color: transparent;
}
.news ul{
    padding: 0 30px;
    border-top: solid 1px #eeeeee;
    border-bottom: solid 1px #eeeeee;
}
.news ul li{
    padding: 7px 0;
    list-style: none;
}
.news ul li a{
    text-decoration: none;
    color: #ffffff;
}
.fa-chevron-right{
    margin-right: 15px;
}
.news time{
    margin-right: 20px;
}
/***********access.html***********/
/*テーブル*/
table{
    border-collapse: collapse;
    margin: 10px auto;
    width: 95%;
}
table,th,td{
    border: solid 1px #aaa;    
    font-size: 14px;
}
table th{
    text-align: left;
    background-color: #535353;
}
table td{
    text-align: right;
}
th,td{
    padding: 10px;
}
/*グーグルマップ*/
.gmap{
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}
.gmap iframe{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
/***********course.html***********/
/*テーブル*/
.price_basic th{
    width: 250px;
}
.price_option th{
    width: 140px;
}
/***********merchandise.html***********/
.merchandise{
    margin-bottom: 10px;
}
.merchandise p a{
    color: #b3b3ff;
}
/***********reputation.html***********/
.reputation{
    margin-bottom: 20px;
    border-bottom: solid 1px #aaa;
}
.reputation:last-child{
    border: none;
}
.reputation .fa-square-full{
    color: #ff6600;
    display: inline;
}
.reputation p{
    margin: 0 0 10px;
    padding: 0 10px 0 35px;
}
/*********************グリッド*********************/
/*#########画面幅1140px以上#########*/
body{
    display: grid;
    grid-template-columns: 1fr 260px 20px 880px 1fr;
    grid-template-rows: auto 1fr auto;
}
/*ヘッダー*/
.site{
    grid-column-start: 1;
    grid-column-end: -1;
    grid-row-start: 1;
}
/*メインコンテンツ*/
main{
    grid-column-start: 4;
    grid-row-start: 2;
}
.gmap{
    margin: 0 10px;
}
/*ボタン*/
.page-btn,
.page-btn-close{
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    align-self: center;
    padding: 20px;
    border: none;
    background-color: transparent;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}
.page-btn-close{
    display: none;
}
.open .page-btn{
    display: none;
}
.open .page-btn-close{
    display: none;
}
/*ナビゲーション*/
.page-nav{
    grid-column-start: 2;
    grid-row-start: 2;
    z-index: 100;
    display: block;
}

/*フッター*/
footer{
    grid-column-start: 1;
    grid-column-end: -1;
    grid-row-start: -2;
}
/***merchandise.html***/
.merchandise{
    display: grid;
    grid-template-columns: 2fr 8fr;
    grid-template-rows: auto auto;
}
.merchandise h3{
    grid-column-start: 1;
    grid-column-end: -1;
    grid-row-start: 1;
    margin: 0;
}
.merchandise img{
    grid-column-start: 1;
    grid-row-start: 2;
    width: 100%;
}
.merchandise .description{
    grid-column-start: 2;
    grid-row-start: 2;
}
.merchandise p{
    margin: 0;
    padding: 0 15px;
}
.merchandise p:not(:last-child){
    margin-bottom: 15px;
}

/*#########画面幅1139px以下#########*/
@media(max-width:1139px){
    body{
        grid-template-columns: [left] 0px [main] 1fr [main-end] 0px [right];
    }
    .site{
        margin-bottom: 0;
    }
    main{
        grid-column-start: main;
    }
    .page-btn{
        display: block;
    }
    .page-btn-close{
        display: none;
    }
    .open .page-btn{
        display: none;
    }
    .open .page-btn-close{
        display: block;
    }
    .open .page-nav{
        display: block;
    }        
    .page-nav{
        grid-column-start: main;
        display: none;
    }
    picture img{
        width: 100%;
    }
}

/*#########画面幅750px以下#########*/
@media(max-width:750px){
    .subPix img{
        display: none;
    }
    h2{
        font-size: 16px;
        margin-bottom: 0;
    }
    .gmap{
        margin: 0;
    }
    /*お知らせ*/
    /*テーブル*/
    .price_option{
        border: none;
        border-bottom: 1px solid #aaa;
    }
    .price_option th,.price_option td{
        border-bottom:none;
    }
    .price_basic th, .price_basic td{
        font-size: 13px;
        padding: 5px 10px;
    }
    .access th, .access td,
    .price_option th, .price_option td,
    .price_aroma th, .price_aroma td{
        font-size: 13px;
        padding: 5px 10px;
    }
    /*merchandise.htmlの写真を消去*/
    picture#merchandise{
        display: none;
    }
    /*フッター*/
    footer p{
        font-size: 13px;
    }
}