@charset "utf-8";
/* CSS Document */

/*--------------------------
	共通の設定 /iPhone 320px(縦)からの設定 /
-------------------------- */
html{
	font-size: 62.5%;/*初期値16px/62.5%＝10px＝1rem*/
}
body{
    background-color: #ffffff;/*#b0c4de*/
    color: #333333;
    font-family:'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
    font-size: 1.4rem;
    line-height: 1.5em;
}

header{
    width: 100%;
    height: 100vh;/*600pxから変更*/
    position: relative;
}
header p{
    font-family: 'Kaisei Decol', serif;
    font-size: 2.4rem;
    font-weight: bold;
    color: #ffffff;
    /*可読性を高めるため文字を縁取り*/
    text-shadow: 2px 2px 2px #cd5c5c, -2px -2px 2px #cd5c5c,
              -2px 2px 2px #cd5c5c, 2px -2px 2px #cd5c5c,
              0px 2px 2px #cd5c5c,  0px -2px 2px #cd5c5c,
              -2px 0px 2px #cd5c5c, 2px 0px 2px #cd5c5c;
}

/*タイトルのアニメーション*/
#copy{
    margin: 0;
    position: absolute;
    top: 100px;
    left: 30px;
    line-height: 2.0em;
    opacity: 0;/*最初は非表示にしておくため*/
    animation: fadeIn 5s ease 1s 1 forwards;
}
#shop_name{
    margin: 0;
    position: absolute;
    top: 200px;
    left: 30px;
    line-height: 2.0em;
    opacity: 0;/*最初は非表示にしておくため*/
    animation: fadeIn 5s ease 2s 1 forwards;
}
@keyframes fadeIn { /*コピーと店名共通*/
  0% {opacity: 0} /*アニメーション開始時は不透明度0%*/
  100% {opacity: 1} /*アニメーション終了時は不透明度100%*/
}

/*===スクロールを促すための矢印====*/
/*スクロールダウン全体の場所*/
.scrolldown{
    /*描画位置*/
	position:absolute;
	bottom:1%;
	right:5%;
    /*矢印の動き1秒かけて永遠にループ*/
	animation: arrowmove 3s ease-in-out infinite;
}
/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }
/*Scrollテキストの描写*/
.scrolldown span{
    /*描画位置*/
	position: absolute;
	left:-25px;/*★★％での設定が必要か確認（このままだとわずかに移動する）★★*/
	bottom:10px;
    /*テキストの形状*/
	color: #ffffff;
	font-size: 0.7rem;
    font-weight: bold;
	letter-spacing: 0.2em;
	/*縦書き設定*/
	writing-mode: vertical-rl;
}
/* 矢印の描写 */
.scrolldown:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: -6px;/*★★％での設定が必要か確認（このままでも問題なさそう）★★*/
    /*矢印の形状*/
    width: 2px;/*★★％での設定が必要か確認（このままでも問題なさそう）★★*/
    height: 20px;
    background: #ffffff;
    transform: skewX(-31deg);
}
.scrolldown:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	right:0;
    /*矢印の形状*/
	width:2px;/*★★％での設定が必要か確認（このままでも問題なさそう）★★*/
	height: 100px;
	background:#ffffff;
}

/*グローバルナビ*/
/*spのg_nav設定（open状態）*/
.toggleWrap {
	background-color: rgba(21,21,21,0.7);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 1000;
}
.mainNav{
    position: absolute;
    z-index: 2000;
    top:40%;/*初期値50%から変更して少し上に表示*/
    left:50%;
    transform: translate(-50%,-50%);
}
.mainNav li {
	list-style-type: none;
    text-align: center;
}
.navItem {
	font-family: 'Kaisei Decol', serif;
	color: #ffffff;/*#b0c4de*/
	text-decoration: none;
	padding:5px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
    font-size: 1.6rem;
	font-weight: bold;
}
.navItem:hover {
	color: #cd5c5c;
	font-weight: bold;
}

/*spのg_nav設定（hidden状態）*/
.hide {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}
.animation {
    transition-property:visibility;
    transition-duration: .5s;
    transition-timing-function: ease-in;
}
.no-scroll {
    overflow: hidden;
}

/*ハンバーガーアイコンの描写*/
.trigger, .trigger span {
	display: inline-block;
	transition: all .4s;
}
.trigger {
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;/*幅を固定しておきたいので％にはしない*/
    height:50px;
    background-color: #2a4743;
    border-radius: 5px;
    }
.trigger span {
	position: absolute;
	left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #ffffff;
  	width: 45%;
}
.trigger span:nth-of-type(1) {
	top: 15px;
}
.trigger span:nth-of-type(2) {
	top: 23px;
}
.trigger span:nth-of-type(3) {
	top: 31px;
}
.trigger.active span:nth-of-type(1) {
	top: 18px;
    left: 14px;
    transform: translateY(6px) rotate(-45deg);
    width: 45%;
}
.trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.trigger.active span:nth-of-type(3) {
	top: 30px;
    left: 14px;
    transform: translateY(-6px) rotate(45deg);
    width: 45%;
}

/*=====トップへ戻るボタン=====*/
#pagetop{
    width: 50px;/*幅を固定しておきたいので％にはしない*/
    height: 50px;
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    background-color: #2a4743;
    position: fixed;
    right: 10px;
    bottom: 100px;
    cursor: pointer;
}
.topicon{
    color:#ffffff;
	font-size: 1.7em;/*フォントオーサムのアイコンのサイズ*/
}
#pagetop span{
    display: block;
    color: #ffffff;
    font-size: 1.5rem;/*「top」の文字のサイズ*/
    font-weight: bold;
    line-height: 0.9rem;
}
/*下線を取るにはa要素に直接text-decoration: noneを設定*/
#pagetop a{
    text-decoration: none;
}

/*=====本文ここから=====*/
#about {
    width: 100%;/*375px/375px*/
    padding: 20px 10px;
    line-height: 1.7em;
}
#about h1{
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.8em;
    margin-bottom: 10px;
}
#about span{
	background:linear-gradient(transparent 70%, #cd5c5c 100%);
}

h2{
    width: 100%;
	font-family: 'Pangolin', cursive;
	font-size: 1.6rem;
    line-height: 3.0em;
    background-color:#2a4743;
	color: #ffffffcc;
    padding-left: 8px;
}

/*==アコーディオンパネルの設定==*/
/*アコーディオン全体*/
.accordion-area{
    /*background-color:#798799;*/
    /*color: #333333;*/
    list-style: none;
    width: 100%;/*96%から変更*/
    max-width: 900px;
    margin: 0px auto 10px;
    padding-bottom: 10px;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1.4rem;
    font-weight: bold;
    padding: 10px 0 10px 35px;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333333;
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg); 
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
	transform: rotate(45deg);
}
.title.close::after{
	transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    /*background: #b0c4de;*/
    font-size:1.4rem;
	margin:0 2% 10px 2%;
    padding: 5px 2% 5px 2% ;
}
/*==アコーディオンパネルの設定 ここまで==*/

#menu_photo{
    width: 100%;/*375px/375px*/
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
/*イメージには直接幅を指定しない。ｐ要素に指定する。*/
#menu_photo p{
    width: 25.6%;/*96px/375px*/
    margin-top: 20px;
    margin-bottom: 20px;
}
/*メニュー写真をふわふわ動かすアニメーション*/
#menu_photo :nth-of-type(odd){
animation-name:fuwafuwa;   /*アニメーション名の指定*/
animation-delay:3s;   /*アニメーションの開始時間指定*/
animation-duration: 4s;   /*アニメーション動作時間の指定*/
animation-timing-function: ease-in-out;  /*アニメーションの動き指定（徐々に早く）*/
animation-iteration-count: infinite; 
}
#menu_photo :nth-of-type(even){
animation-name:fuwafuwa;   /*アニメーション名の指定*/
animation-delay:4s;   /*アニメーションの開始時間指定*/
animation-duration: 4s;   /*アニメーション動作時間の指定*/
animation-timing-function: ease-in-out;  /*アニメーションの動き指定（徐々に早く）*/
animation-iteration-count: infinite; 
}
@keyframes fuwafuwa {
0% {transform: translateY(0);}
50% {transform: translateY(-10px);}
100% {transform: translateY(0);}
}

#menu li{
    width: 100%;/*375px/375px*/
}
#menu li:nth-child(odd){
    line-height: 1.5em;
    /*background-color: #b0c4de;*/
    /*color:#333333;*/
    padding: 10px;
}
#menu li:nth-child(even){
    width: 20%;
    margin: 20px auto;
}
#menu span{
    width: 100%;/*375px/375px*/
    line-height: 3.0em;
    display: block;
    text-align: right;
    margin-bottom: 20px;
}
#menu span a:link{
        color:#cd5c5c;
        }
#menu span a:visited{
        color:#333333;
        }
#menu span a:hover{
        color:#333333;
        }
    
#access .address{
    /*background-color: #b0c4de;*/
    /*color: #333333;*/
    padding: 10px;
}
#access .map{
    position: relative;
    width: 100%;/*375px/375px*/
    height: 0;
    padding-top: 75%;/*比率を４：３に固定*/
}
#access iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*フッター*/
footer {
    width: 100%;/*375px/375px*/
    padding-top: 20px;
    text-align: center;
    font-size: 0.8em;
    line-height: 1.5em;
}
footer svg{
    width:80px;
    fill:#cd5c5c;
    margin-bottom: 10px;
}
footer span{
    font-size: 1.2em;
    font-weight: bold;
}
.btmsns{
    width: 120px;/*幅を固定しておきたいので％にはしない*/
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}
.btmsns li{
    margin: 5px;
}
.btmsns li a:link{
    color:#333333;
}
.btmsns li a:visited{
    color:#162533;
}
.btmsns li a:hover{
    color:#162533;
}
.copyright{
    font-size: 0.8em;
    text-align: center;
    margin:0 0 10px 0;
}

.korokoro {
    width: 25px;
    animation: korokoro 8s ease-in-out 0s infinite alternate;
}

@keyframes korokoro {
    100% { transform: translateX(290px) rotate(1080deg); }
}

/*--------------------------
	タブレット/ iPad 768px(縦)から1023pxまでの設定 /
-------------------------- */

@media screen and (min-width:768px){
	/*TB用のCSSをここに記述*/
    body{
        font-size: 1.6rem;
        line-height: 1.7em;
    }
    
    /*g_nav*/
    /*heightをつけることによって、全面覆っていたWrapを小さくする*/
    .toggleWrap {
        background-color: rgba(21,21,21,0.2);
        position: fixed;
        height: 50px;
        }
    .mainNav {
        display: flex;
        justify-content: center;
        position: absolute;
        z-index: 2000;
        top: 1px;
        right: 5%;
        left:auto;
        transform: none;
        }
    .mainNav li {
        width: 25%;
        padding: 5px;
        display: inline-block;
        }
    .navItem{
        color: #fff;
        text-shadow: 2px 2px 2px #333, -2px -2px 2px #333,
              -2px 2px 2px #333, 2px -2px 2px #333,
              0px 2px 2px #333,  0px -2px 2px #333,
              -2px 0px 2px #333, 2px 0px 2px #333;
        }
    .animation {
        transition: none;
        }
    /*spで非表示にしていたg_navを表示させる*/
    .hide {
        opacity: 1;
        visibility: visible;
    }
    /*tb/pcでハンバーガーiconを消す*/
    #toggle {
        display: none;
    }
    	
	/*見出しの設定*/
	h2{
        width: 26.666%;/*100px/375px*/
        height: 100px;
        line-height: 3rem;
        font-size: 2.0rem;
        padding: 10px;
        margin-left: 5.333%;
    }

 	/*見出しの装飾*/
	h2::before {
        position: absolute;
        top: -7px;
        left: -7px;
        width: 26.666%;
        height: 100px;
        margin-left:5.333%;
        content: '';
        border: 4px solid #6a4928;
	}
	h2::first-letter{
		font-size:3rem;
    }
    
    #about{
        margin: 20px 0;
    }
    #whatsnew{
        display: flex;
        margin: 50px 0;
    }
	#whatsnew ul{
		width: 60.784%;/*620px/1020px*/
        margin: 0 auto;
	}
    
    /*メニュー写真の設定*/
	#menu_photo{
        margin: 20px 0;
        flex-wrap: nowrap;
    }    
    #menu_photo p{
        width: 12.5%;/*96px/768px*/
    }
    
    /*メニューの設定*/
    #menu .menu_list{
        margin: 50px 0;
    }
    #menu .menu_list ul{
        width: 89.215%;/*910px/1020px*/
        margin-top: 10px;
        margin-left:5.333%;
        display: flex;
        flex-wrap: wrap;
    }
    #menu .menu_list li:nth-of-type(odd){
        width: 63.725%;/*650px/1020px*/
        height: 150px;
        margin: 10px 0;
    }
    #menu .menu_list li:nth-of-type(even){
       margin: 15px auto;
    }
        
    #access .access_list{
        margin: 7px 0 20px;
    }
    #access .access_info{
        display: flex;
    }
    #access .address{
        width: 40%;
        margin:10px 0.980% 10px 5.333% ;
    }
    #access .map_wrap{
        position: relative;
        width: 60%;
        margin: 10px 0.980%;
    }
    
    .footer{
        display: flex;
        justify-content: center;
        align-items: center;
    }
	footer span{
		margin: 0 10px;
	}
}

/*--------------------------
	PC /1024px以上の設定/
-------------------------- */
@media screen and (min-width:1024px) {
/*PC用のCSSをここに記述*/
	main{
    width: 75%;/*768px/1024px*/
    margin: 0 auto;
    }
}

