@charset "utf-8";
/* CSS Document */
/*リセット*/
*{
	margin: 0;
	padding: 0;
    font-weight: normal;
}

img{
    display: block;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
    color: inherit;
}

/*共通*/
body{
    background: #121211;
    color: #f0f0f0;
    font-family: 'Noto Serif', 'Noto Serif JP', serif;
    font-size: 16px;
    line-height: 1.8em;
}

.logo:hover{
    opacity: 0.7;
    transition: 0.2s;
}

/*シグネチャー　ヘッダーリンク*/
#food #gnav ul li:nth-child(3) a{
    color: #f7153a;
}

/*ヘッダーナビゲーション*/
header{
    width: 100%;
    height: 100px;
    position: fixed;
    background: #121211;
    z-index: 1;
}

#gnav{
    width: 1140px;
    margin: 0 auto;
}

#gnav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#gnav ul img{
    padding-top: 5px;
}

#gnav ul li a:hover{
	color: #f7153a;
	transition: 0.2s;
}

/*トップイメージ*/
#top_img{
    padding-top: 100px;
}

/*メインコンテンツ*/
main{
    width: 1000px;
	margin: 0 auto;
}

/*コンテンツタイトル*/
#contents_title{
	margin-top: 80px;
	margin-bottom: 120px;
    text-align: center;
}

#contents_title h1{
    margin-bottom: 80px;
	font-size: 40px;
	position: relative;
}

#food #contents_title h1::before{
	content:"";
	display: inline-block;
	width: 200px;
	height: 280px;
	background: url("../img/ashirai_img01.png");
	position: absolute;
	z-index: -1;
	top: -32px;
	right: 0;
}

#experience #contents_title h1::before{
	content:"";
	display: inline-block;
	width: 200px;
	height: 280px;
	background: url("../img/ashirai_img02.png");
	position: absolute;
	z-index: -1;
	top: -32px;
	right: 0;
}

#food #contents_title h1::after{
	content: "";
	display: block;
	position: absolute;
	width: 150px;
	height: 2px;
	background: #f0f0f0;
	top: auto;
	left: 0;
	right: 0;
	bottom: -24px;
	margin: auto;
}

#experience #contents_title h1::after{
	content: "";
	display: block;
	position: absolute;
	width: 250px;
	height: 2px;
	background: #f0f0f0;
	top: auto;
	left: 0;
	right: 0;
	bottom: -24px;
	margin: auto;
}

/*SHOP コンテンツ*/
.shop{
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
}

.shop01,
.shop03{
    flex-direction: row-reverse;
}

/*SHOP テキスト*/
.shop_textblock{
    width: 490px;
}

.shop h2{
	padding: 0 65px;
	font-size: 32px;
	display: table;
	position: relative;
	margin: 30px auto 40px;
}

.shop h2::before{
	content: "";
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	background: #f80028;
	top: 0;
	left: 0;
}

.shop h2::after{
	content: "";
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	background: #f80028;
	top: 0;
	right: 0;
}

.shop_text1{
    margin-bottom: 40px;
}

.shop_text2{
    font-size: 14px;
}

.shop_text2 table{
    border-collapse: collapse;
}

.shop_text2 table th{
    text-align: left;
}

/*SHOP 画像*/
.shop_imgblock{
    width: 464px;
    padding-top: 100px;
    box-sizing: border-box;
}

.shop_s_img_flex{
    margin-top: 13px;
    display: flex;
    justify-content: space-between;
}

/*フッター*/
footer{
	background: url("../img/footer_bg.png") top center;
	height: 500px;
	margin: 0 auto;
	padding-top: 350px;
	color: #121211;
	text-align: center;
	vertical-align: bottom;
	box-sizing: border-box;
	object-fit: cover;
}

footer img{
	display: inline;
}

small{
    display: block;
}