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

@media screen and (min-width: 992px) {


/*==========共通==========*/
/*
@font-face {
   font-family: 'Sawarabi Mincho';
   src: url('../fonts/SawarabiMincho-Regular.ttf') format('truetype');
}

@font-face {
   font-family: 'Bentham';
   src: url('../fonts/Bentham-Regular.ttf') format('truetype');
}

@font-face {
   font-family: 'EB Garamond';
   src: url('../fonts/EBGaramond-VariableFont/wght.ttf') format('truetype');
}*/


	body{
		background-color: #fff; /*マルシェ対応*/
	}

	.clear{
		clear: both;
	}

	.pc_none{
		display: none;
	}

	.br-pc {
		display:none;
	}

	.mgt50{
		margin-top: 50px;
	}

	.mgt100{
		margin-top: 100px;
	}

	.mgt150{
		margin-top: 150px;
	}

	.mgt200{
		margin-top: 200px;
	}

	.mgb20{
		margin-bottom: 20px;
	}

	.mgb50{
		margin-bottom: 50px;
	}

	.mgb100{
		margin-bottom: 100px;
	}

	.pdb50{
		padding-bottom: 50px;
	}

	.pdl_100{
		padding-left: 100px;
	}

	a.anchor{
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

	/*--上へ戻る--*/
	#page_top{
		width: 50px;
		height: 50px;
		position: fixed;
		right: 30px;
		/*bottom: 0*/
		background: #C4972F;
		opacity: 0.6;
		border-radius: 50%;
	}

	#page_top a{
		position: relative;
		display: block;
		width: 50px;
		height: 50px;
		text-decoration: none;
	}

	#page_top a:hover{
		position: relative;
		display: block;
		width: 50px;
		height: 50px;
		text-decoration: none;
		box-shadow: 2px 2px 4px -1px #999;
		background: #C4972F;
		border-radius: 50%;
	}

	#page_top a::before{
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
		content: '\f102';
		font-size: 25px;
		color: #fff;
		position: absolute;
		width: 25px;
		height: 25px;
		top: -5px;
		bottom: 0;
		right: 0;
		left: 0;
		margin: auto;
		text-align: center;
	}

	/*==========ヘッダー==========*/

	.site-header{
		background: #fff;
		width: 100%;
		padding: 50px 0;
		margin: 0 auto;
	}

	.header-logo{
		width: 190px;
		margin: 0 auto;
	}

	h1.header-logo img{
		width: 100%;
	}

	#reserved{
		background: #000;
		box-shadow: -2px 2px 4px -1px #ccc;
		width: 100px;
		height: 100px;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 1000;
		cursor: pointer;
	}

	#reserved a{
		display: flex;
		align-items: center;
		margin: 0 auto;
		width: 100px;
		height: 100px;
	}

	#reserved a:hover{
		background: #000;
	    align-items: center;
		transition: 0.3s;
	}

	.reserved_link{
		text-align: center;
		width: 100%;
	}

	#reserved img{
		width: 50px;
	}

	#reserved p{
		color: #fff;
		font-family: 'Bentham', serif;
		font-size: 14px;
		text-align: center;
		margin: 10px 0 0 0;
	}

	/*--ナビゲーションメニュー--*/
	.menu {
		position: relative;
		width: 90%;
		height: 50px;
		max-width: 800px;
		margin: 50px auto 0;
	}

	.menu > li {
		float: left;
		width: 20%; /* グローバルナビ5つの場合 */
		height: 50px;
		line-height: 50px;
		text-align: center;
		/*background: rgb(29, 33, 19);*/
	}

	.menu > li a {
		display: block;
		color: #C4972F;
		font-size: 14px;
	}

	.menu > li a:hover {
		color: #fff;
	}

	ul.menu__second-level {
		visibility: hidden;
		opacity: 0;
		z-index: 1;
	}

	ul.menu__third-level {
		visibility: hidden;
		opacity: 0;
	}

	ul.menu__fourth-level {
		visibility: hidden;
		opacity: 0;
	}

	.menu > li:hover {
		background: #eee;
		-webkit-transition: all .5s;
		transition: all .5s;
	}

	.menu__second-level li {
		border-top: 1px solid #ccc;
	}

	.menu__third-level li {
		border-top: 1px solid #ccc;
	}

	.menu__second-level li a:hover {
		background: #111;
	}

	.menu__third-level li a:hover {
		background: #2a1f1f;
	}

	.menu__fourth-level li a:hover {
		background: #1d0f0f;
	}

	/* 下矢印 */
	.init-bottom:after {
		content: '';
		display: inline-block;
		width: 6px;
		height: 6px;
		margin: 0 0 0 15px;
		border-right: 1px solid #fff;
		border-bottom: 1px solid #fff;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	/* floatクリア */
	.menu:before,
	.menu:after {
		content: " ";
		display: table;
	}

	.menu:after {
		clear: both;
	}

	.menu {
		*zoom: 1;
	}

	/*--階層ドロップダウン--*/
	.menu > li.menu__multi {
		position: relative;
	}

	li.menu__multi ul.menu__second-level {
		position: absolute;
		top: 40px;
		width: 100%;
		background: #eee;
		-webkit-transition: all .2s ease;
		transition: all .2s ease;
	}

	li.menu__multi:hover ul.menu__second-level {
		top: 50px;
		visibility: visible;
		opacity: 1;
	}

	li.menu__multi ul.menu__second-level li {
		position: relative;
	}

	li.menu__multi ul.menu__second-level li:hover {
		background: #111;
	}

	li.menu__multi ul.menu__second-level li ul.menu__third-level {
		position: absolute;
		top: -1px;
		left: 100%;
		width: 100%;
		background: #eee;
		-webkit-transition: all .2s ease;
		transition: all .2s ease;
	}

	li.menu__multi ul.menu__second-level li:hover ul.menu__third-level {
		visibility: visible;
		opacity: 1;
	}

	li.menu__multi ul.menu__second-level li ul.menu__third-level li {
		position: relative;
	}

	li.menu__multi ul.menu__second-level li ul.menu__third-level li:hover {
		background: red;
	}

	li.menu__multi ul.menu__second-level li ul.menu__third-level li ul.menu__fourth-level {
		position: absolute;
		top: -1px;
		left: 100%;
		width: 100%;
		background: #ccc;
		-webkit-transition: all .2s ease;
		transition: all .2s ease;
	}

	li.menu__multi ul.menu__second-level li ul.menu__third-level li:hover ul.menu__fourth-level {
		visibility: visible;
		opacity: 1;
	}

	.init-right:after {
		content: '';
		display: inline-block;
		width: 6px;
		height: 6px;
		margin: 0 0 0 15px;
		border-right: 1px solid #555;
		border-top: 1px solid #555;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	/*==========スライダー==========*/

	#slide {
		width:100%;
		height:50vw;
		margin: 0 auto 0;
		position:relative;
	}

	#slide ul { /* ADD */
		margin: 0;
		padding: 0;
	}

	#slide li { /* ADD */
		display: block;
		width: 100%;
		height: 100%;
	}

	#slide img {
		width: 100%;
		max-width: 100%;
		height: auto;
		position:absolute;
		left:0;
		top:-200px;
	}

	/*==========フッター==========*/

	footer {
		background-color: #F8F6F1;
		color: #000;
		font-size: 14px;
	}

	.footer_contents{
		margin: 0 auto;
		padding: 100px 0;
		width: 1024px;
		max-width: 90%;
		display: flex;
		justify-content: space-between;
	}

	.fotter_info{
		text-align: left;
	}

	.footer_address{
		display: block;
		padding: 0 0 20px 0;
	}

	.tel{
		display: block;
		padding: 0 0 10px 0;
	}

	.attention{
		font-size: 12px;
		display: block;
		padding: 0 0 20px 0;
	}

	.copyright{
		display: block;
	}

	.icon{
		margin: 20px 0;
		display: flex;
		justify-content: space-between;
		width: 80px;
	}

	.icon img{
		width: 30px;
		height: 30px;
	}

	.footer_logo{
		text-align: right;
		margin: 50px 0;
	}

	.footer_logo img{
		width: 120px;
	}


	/*==========ファーストビュー==========*/

	#first_wrapper{
		width: 100%;
		background: url("../images/recruit_top.png") no-repeat left top;
		background-size: cover;
		height: 300px;
	}

	#first_wrapper_dinner{ /*ディナーコースA*/
		width: 100%;
		background: url("../images/menu_top_05.png") no-repeat left center;
		background-size: cover;
		height: 300px;
	}

	#first_wrapper_dinner02{ /*ディナーコースB*/
		width: 100%;
		background: url("../images/menu_top_02.png") no-repeat left center;
		background-size: cover;
		height: 300px;
	}

	#first_wrapper_dinner03{ /*ディナーフリーフローA*/
		width: 100%;
		background: url("../images/menu_top_07.png") no-repeat left center;
		background-size: cover;
		height: 300px;
	}

	#first_wrapper_dinner04{ /*ディナーフリーフローB*/
		width: 100%;
		background: url("../images/menu_top_06.png") no-repeat left bottom;
		background-size: cover;
		height: 300px;
	}

	#first_wrapper_dinner05{ /*ディナーアラカルト*/
		width: 100%;
		background: url("../images/menu_top_01.png") no-repeat left center;
		background-size: cover;
		height: 300px;
	}

	#first_wrapper_drink{
		width: 100%;
		background: url("../images/menu_top_09.png") no-repeat left center;
		background-size: cover;
		height: 300px;
	}

	#first_wrapper_lunch{ /*ランチコース*/
		width: 100%;
		background: url("../images/menu_top_03.png") no-repeat left center;
		background-size: cover;
		height: 300px;
	}

	#first_wrapper_lunch02{ /*ランチフリーフロー*/
		width: 100%;
		background: url("../images/menu_top_07.png") no-repeat left bottom;
		background-size: cover;
		height: 300px;
	}

	#first_wrapper_lunch03{ /*ランチアラカルト*/
		width: 100%;
		background: url("../images/menu_top_04.png") no-repeat left center;
		background-size: cover;
		height: 300px;
	}

	#first_wrapper_reserved{ /*貸切A*/
		width: 100%;
		background: url("../images/menu_top_10.png") no-repeat left center;
		background-size: cover;
		height: 300px;
	}

	#first_wrapper_reserved02{ /*貸切B*/
		width: 100%;
		background: url("../images/menu_top_11.png") no-repeat left center;
		background-size: cover;
		height: 300px;
	}

	#first_wrapper_reserved03{ /*貸切C*/
		width: 100%;
		background: url("../images/menu_top_12.png") no-repeat left center;
		background-size: cover;
		height: 300px;
	}

	#first_wrapper_contact{ /*お問い合わせ*/
		width: 100%;
		background: url("../images/menu_top_08.png") no-repeat left center;
		background-size: cover;
		height: 300px;
	}


	#first_wrapper_xmas{ /*クリスマスコース*/
		width: 100%;
		background: url("../images/menu_top_xmas.png") no-repeat left center;
		background-size: cover;
		height: 300px;
	}

	 /* マルシェ対応 */
	#first_wrapper_osozai{
		width: 100%;
		background: url("../images/osozai.jpg") no-repeat left center;
		background-size: cover;
		height: 300px;
	}

	#first_wrapper_vegetables{
		width: 100%;
		background: url("../images/vegetables.jpg") no-repeat left center;
		background-size: cover;
		height: 300px;
	}

	#first_wrapper_wine{
		width: 100%;
		background: url("../images/wine.jpg") no-repeat left center;
		background-size: cover;
		height: 300px;
	}

	#first_wrapper_pasta{
		width: 100%;
		background: url("../images/pasta.jpg") no-repeat left center;
		background-size: cover;
		height: 300px;
	}

	#first_wrapper_others{
		width: 100%;
		background: url("../images/others.jpg") no-repeat left center;
		background-size: cover;
		height: 300px;
	}

	#first_wrapper_gallery{
		width: 100%;
		background: url("../images/gallery.jpg") no-repeat left center;
		background-size: cover;
		height: 300px;
	}

	#first_wrapper_takeout{
		width: 100%;
		background: #000;
		height: 150px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	#first_wrapper_takeout p{
		color: #fff;
		font-size: 40px;
		text-align: center;
	}
	

	.photo_align {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 0 auto 100px;
	}

	.photo_align li:nth-child(4n) {
		margin: 0;
	}

	.photo_align li:nth-child(n+4) {
		margin: 2%  0 0 0;
	}

	@media screen and (min-width: 900px) {
		.photo_img_box {
			overflow: hidden;
			width: 32%;
			height: 280px;
			border: 10px solid #ffffff;
			box-shadow: 0 0 5px #cccccc;
			box-sizing: border-box;
		}
	}

	@media screen and (max-width: 899px) {
		.photo_img_box {
			overflow: hidden;
			width: 32%;
			height: 250px;
			border: 10px solid #ffffff;
			box-shadow: 0 0 5px #cccccc;
			box-sizing: border-box;
		}
	 }

	.photo_img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.veg_text_center {
		color: #555;
		text-align: center;
		line-height: 2.3em;
	}
	/*==========コンテンツボディー==========*/

	 #main_contents {
		max-width: 1024px;
		width: 90%;
		margin: 0 auto;
	}

	.contents_box{
		max-width: 1024px;
		width: 90%;
		margin: 100px auto;
	}

	/*==========下層ページ パンくず==========*/
	.cp_breadcrumb *, .cp_breadcrumb *:after, .cp_breadcrumb *:before {
		-webkit-box-sizing: border-box;
				box-sizing: border-box;
	}

	.cp_breadcrumb {
		margin: 1em auto;
		/* padding: 1em 2em; */
		/* background-color: #3949AB; */
		color: #555555;
		border-radius: 0.5em;
		width: 100%;
	}

	.cp_breadcrumb a {
		text-decoration: none;
		color: #555555;
		font-size: 12px;
	}

	.cp_breadcrumb .breadcrumbs {
		padding-left: 0;
		margin-top: 0;
		margin-bottom: 0;
		list-style: none;
		display: flex;
		flex-wrap: wrap;
	}

	.cp_breadcrumb li {
		display: inline-block;
		position: relative;
		padding-right: calc(16px + 8px);
		margin-right: 8px;
		color: #555555;
		font-size: 12px;
	}

	.cp_breadcrumb li::before {
		content: '＞';
		width: 1em;
		height: 1em;
		line-height: 1;
		text-align: center;
		font-size: 1em;
		color: inherit;
		position: absolute;
		top: 50%;
		right: 0;
		-webkit-transform: translateY(-50%);
				transform: translateY(-50%);
	}

	.cp_breadcrumb li:last-child {
		margin-right: 0;
		padding-right: 0;
		color: #555555;
		font-size: 12px;
	}

	.cp_breadcrumb li:last-child::before {
		content: normal;
	}

	/*==========h2設定==========*/

	h2.page_title{
		margin: 50px auto;
	}

	/*==========コンセプト==========*/

	p.concept_txt{
		color: #555;
		font-family: "Sawarabi Mincho";
		line-height: 2em;
		margin: 50px 0;
		text-align: center;
	}

	p.concept_txt a {
		text-decoration: underline;
		color: #999;
	}


	.win {
    /* Windows (全バージョン)のみ */
		font-weight: bold;
}

	/*==========トップメニュー==========*/

	.top_menu{
		background: #fff; /*マルシェ対応*/
		box-shadow: 1px 1px 4px -1px #999;
		width: 100%;
		height: 300px;
		margin: 50px 0 0;
		display: flex;
		justify-content: space-between;
	}

	.top_menu_left{
		width: 50%;
		display: flex;
	    align-items: center;
	}

	p.menu_content{
		font-family: 'Bentham', serif;
		font-size: 25px;
		text-align: center;
		width: 100%;
	}

	.menu_line{
		display: block;
		border-bottom: 1px solid #000;
		padding: 0 0 20px 0;
		width: 100px;
		text-align: center;
		margin: 0 auto 20px;
	}

	.menu_time{
		font-family: 'EB Garamond', serif;
	}

	.menu_line_none{
		display: block;
		width: 100px;
		text-align: center;
		margin: 0px auto;
	}

	.top_menu_right{
		width: 50%;
		display: flex;
	    align-items: center;
	}

	.top_menu_btn{
		width: 100%;
	}

	a.cp_btn {
		display: block;
		position: relative;
		width: 160px;
		padding: 0.8em;
		text-align: center;
		text-decoration: none;
		color: #fff;
		border:1px solid #000;
		background: #000;
		overflow: hidden;
		z-index: 1 !important;
		margin: 10px auto;
	}

	a.cp_btn:after {
		content:"";
		position: absolute;
		top: 50%;
		left: 50%;
		height: 0;
		width: 100%;
		background : #fff;
		opacity: 0;
		transform: translateX(-50%) translateY(-50%) rotate(45deg);
		transition: 0.3s;
		z-index: -1;
	}

	a.cp_btn:hover {
		color: #000;
	}

	a.cp_btn:hover:after {
		height: 250%;
		opacity: 1;
	}

	a.cp_btn:active:after {
		height: 350%;
		opacity: 1;
	}

	/*==========ショップ==========*/

	#shop{
		margin: 0 auto;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		width: 50%;
	}

	#shop img{
		width: 100%;
	}

	#shop p{
		margin: 0 auto;
		color: #fff;
		font-size: 30px;
		position: absolute;
	}

	#shop a:hover{
		opacity: 0.5;
	}

	/*==========トップニュース==========*/

	#news_list{
		border-top: 1px solid #C4972F;
		border-bottom: 1px solid #C4972F;
		padding: 20px;
		margin: 30px auto 0;
	}

	#news_list a{
		color: #555;
		text-decoration: underline;
		font-size: 14px;
	}

	#news_list a:hover{
		color: #555;
		text-decoration: underline;
	}

	#news_list dl{
		display: flex;
		justify-content: flex-start;
		color: #555;
		line-height: 3em;
	}

	#news_list dl dt{
		margin: 0 50px 0 0;
	}

	.news_purple{
		color: #c088ff;
		display: block;
	}

	.news_orange{
		color: #FF8C00;
		display: block;
	}

	/*==========トップアクセス==========*/

	#map{
		margin: 50px 0 100px 0;
	}

	.access_info{
		margin: 50px auto;
		display: flex;
		justify-content: space-between;
		width: 100%;
	}

	.access_info_left{
		width: 60%;
	}

	.access_info_right{
		width: 40%;
	}

	p.access_txt{
		color: #555;
		font-family: "Sawarabi Mincho";
		line-height: 1.8em;
	}

	.shop_name{
		font-size: 20px;
		display: block;
	}

	.access_block{
		display: block;
		padding: 0 0 30px 0;
	}

	a.cp_btn02 {
		display: block;
		position: relative;
		width: 330px;
		padding: 0.8em;
		text-align: center;
		text-decoration: none;
		color: #555;
		border:1px solid #555;
		background: #fff;
		overflow: hidden;
		z-index: 1 !important;
	}

	a.cp_btn02:after {
		content:"";
		position: absolute;
		top: 50%;
		left: 50%;
		height: 0;
		width: 100%;
		background : #555;
		opacity: 0;
		transform: translateX(-50%) translateY(-50%) rotate(45deg);
		transition: 0.3s;
		z-index: -1;
	}

	a.cp_btn02:hover {
		color: #fff;
	}

	a.cp_btn02:hover:after {
		height: 250%;
		opacity: 1;
	}

	a.cp_btn02:active:after {
		height: 350%;
		opacity: 1;
	}

	/*==========トップページギャラリー==========*/

	.insta_widget{
		margin: 50px auto 0;
		width: 100%;
	}

	.goto_insta{
		margin: 50px auto 0;
		width: 100%;
		text-align: center;
	}

	a.cp_btn04 {
		display: block;
		position: relative;
		width: 330px;
		padding: 1.2em;
		text-align: center;
		text-decoration: none;
		color: #555;
		border:1px solid #ccc;
		background: #fff;
		overflow: hidden;
		z-index: 1 !important;
		margin: 0 auto;
	}

	a.cp_btn04:after {
		content:"";
		position: absolute;
		top: 50%;
		left: 50%;
		height: 0;
		width: 100%;
		background : #555;
		opacity: 0;
		transform: translateX(-50%) translateY(-50%) rotate(45deg);
		transition: 0.3s;
		z-index: -1;
	}

	a.cp_btn04:hover {
		color: #fff;
	}

	a.cp_btn04:hover:after {
		height: 250%;
		opacity: 1;
	}

	a.cp_btn04:active:after {
		height: 350%;
		opacity: 1;
	}

	/*==========トップページリクルート==========*/

	#recruit{
		background: url(../images/recruit_back.png);
		background-size: cover;
		background-repeat: no-repeat;
		width: 100%;
		height: 313px;
	}

	#recruit .inner{
		/*min-width: 1024px;*/
		width: 90%;
		margin: 0 auto;
		padding: 50px 0;
		text-align: center;
	}

	h2.top_recruit{
		color: #fff;
	}

	a.cp_btn03 {
		display: block;
		position: relative;
		width: 330px;
		padding: 1.2em;
		text-align: center;
		text-decoration: none;
		color: #555;
		/*border:1px solid #555;*/
		background: #fff;
		overflow: hidden;
		z-index: 1 !important;
		margin: 50px auto;
	}

	a.cp_btn03:after {
		content:"";
		position: absolute;
		top: 50%;
		left: 50%;
		height: 0;
		width: 100%;
		background : #555;
		opacity: 0;
		transform: translateX(-50%) translateY(-50%) rotate(45deg);
		transition: 0.3s;
		z-index: -1;
	}

	a.cp_btn03:hover {
		color: #fff;
	}

	a.cp_btn03:hover:after {
		height: 250%;
		opacity: 1;
	}

	a.cp_btn03:active:after {
		height: 350%;
		opacity: 1;
	}

	/*==========新卒採用==========*/

	#hiring-new-graduates{
		border: 1px solid #C4972F;
		font-family: "Sawarabi Mincho";
		width: 100%;
		padding: 30px 0;
	}

	#hiring-new-graduates p{
		color: #C4972F;
		text-align: center;
	}

	p.our_works{
		color: #555555;
		margin: 100px auto;
		text-align: center;
	}

	p.our_works .top{
		display: block;
		padding: 0;
		font-size: 20px;
	}

	p.our_works .middle{
		display: block;
		padding: 20px 0;
		font-size: 30px;
	}

	p.our_works .bottom{
		display: block;
		padding: 0;
		font-size: 16px;
		line-height: 2em;
	}

	#recruitment{
		background: url("../images/recruitment.png");
		height: 300px;
		width: 100%;
		position: relative;
	}

	#recruitment .title{
		color: #fff;
		font-size: 20px;
		text-align: center;
		padding: 45px 0;
		background: #C4972F;
		width: 120px;
		position: absolute;
		bottom: -30px;
		left: 50px;
	}

	.recruitment_info{
		margin: 100px auto;
		width: 95%;
	}

	.recruitment_info table{
		width: 100%;
	}

	.recruitment_info table th{
		border-top: 1px solid #CCCCCC;
		border-bottom: 1px solid #CCCCCC;
		color: #555555;
		line-height: 1.4em;
		padding: 30px 0;
		text-align: left;
		width: 30%;
	}

	.recruitment_info table td{
		border-top: 1px solid #CCCCCC;
		border-bottom: 1px solid #CCCCCC;
		color: #555555;
		line-height: 1.4em;
		padding: 30px 0;
		text-align: left;
		width: 70%;
	}

	.sub_txt{
		display: block;
		line-height: 1.6em;
		font-size: 13px;
	}

	.cp_h3title {
		color: #555;
		font-size: 30px;
		text-align: left;
		padding: .3em;
		border-bottom: 3px double #C4972F;
		width: 95%;
	}

	.recruit_button{
		margin: 50px auto;
		text-align: center;
	}

	.recruit_button a{
		color: #C4972F;
		font-family: 'Sawarabi Mincho', sans-serif;
	}

	.recruit_button a:hover{
		color: #C4972F;
	}


	.cp_button11 {
		font-family: 'Sawarabi Mincho', sans-serif;
		font-size: 20px;
		width: 50%;
		margin: 0.4em;
		padding: 1em;
		line-height: 1.4;
		cursor: pointer;
		user-select: none;
		transition: background-color 0.3s;
		-webkit-transform: translateZ(0);
				transform: translateZ(0);
		text-decoration: none;
		color: #C4972F;
		border: 1px solid #C4972F;
		background: transparent;
		box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	}
	.cp_button11:before {
		position: absolute;
		top: -16px;
		right: -16px;
		bottom: -16px;
		left: -16px;
		content: '';
		-webkit-transition-duration: 0.3s;
				transition-duration: 0.3s;
		-webkit-transition-property: top right bottom left;
				transition-property: top right bottom left;
		opacity: 0;
		border: 4px solid rgba(196,151,47,0.5);
	}
	.cp_button11:hover:before {
		top: -8px;
		right: -8px;
		bottom: -8px;
		left: -8px;
		opacity: 1;
	}
	.cp_button11:active {
		color: #ffffff;
		background-color: #C4972F;
	}
	.cp_button11:active:before {
		top: -17px;
		right: -17px;
		bottom: -17px;
		left: -17px;
	}
	.cp_button11:hover,
	.cp_button11:focus {
		color: #C4972F;
		border: 1px solid #C4972F;
	}

	/*==========フォーム==========*/

	#formWrap {
		padding: 0 0 100px 0;
	}

	.warning {
		font-size: 12px;
		padding: 0 0 40px 0;
		line-height: 1.6em;
	}

	table.contactTable {
		width: 100%;
	}

	table.contactTable th {
		text-align: left;
		padding: 40px 0 30px 0px;
		vertical-align: top;
		width: 300px;
	}

	table.contactTable td {
		padding: 30px 0 50px 30px;
		text-align: left;
	}

	textarea {
		resize: none;
	}

	.input_form01 {
	    border: 1px solid #707070;
		width: 98%;
		height: 50px;
		padding-left: 10px;
		margin-bottom: 5px;
		font-size: 16px;
	}

	.input_form02 {
	    border: 1px solid #707070;
		width: 98%;
		height: 300px;
		padding-left: 10px;
		padding-top: 10px;
		font-size: 16px;
	}

	.button_submit {
		border: 0;
		border-radius: 5px;
		cursor:pointer;
		-webkit-appearance: none;
		background-color: #C4972F;
		width: 300px;
		height: 50px;
		color: #FFFFFF;
		font-size: 20px;
		font-family: "Sawarabi Mincho";
		text-align: center;
	}

	.but_center {
		text-align: center;
	}

	.button_submit:hover {
		background-color: #EABC54;
		-webkit-appearance: none;
	}

	/* 禁止カーソル */
	.button_submit[type="submit"][disabled]{
		background:#DCDCDC;
		cursor:not-allowed; /* 禁止カーソル */
	}
	/* 禁止カーソル */

	/*　お問い合わせのエラーmsg　*/
	input.input_form01.error {
		border-width:2px;
		border-style:solid;
		border-color: #ff0000;
		background:#FFE6E7;
	}

	textarea.input_form02.error {
		border-width:2px;
		border-style:solid;
		border-color: #ff0000;
		background:#FFE6E7;
	}

	label.error {
		 color: #ff0000;
		 background:none;
		 border-style:none;
		 border-width:none;
		 padding-left: 10px;
	}

	/*==========メニューページ==========*/

	h2.xmas{
		font-family: 'Playfair Display', serif;
		font-weight: bold;
		font-size: 40px;
		padding: 0;
		color: #C4972F;
		text-align: left;
		margin: 50px auto;
		line-height: 1.5em;
	}

	h3.menu_list{
		color: #555555;
		font-size: 25px;
		font-family: "Sawarabi Mincho";
		line-height: 2em;
		text-align: left;
		border-bottom: 1px solid #555;
		margin: 100px 0 0;
	}

	/*h3.menu_list::before{
		content: url(../images/menu_list.png);
		padding: 0 15px 0 0;
		position: relative;
		top: 10px;
		left: 0;
	}*/

	h3.menu_list::before{
		content: '';
		display: inline-block;
		width: 20px;
		height: 30px;
		background: url(../images/menu_list.png);
		background-size: contain;
		background-repeat: no-repeat;
		padding: 0 15px 0 0;
		position: relative;
		top: 10px;
		left: 0;
	}

	h3.menu_list .small{
		font-size: 18px;
	}

	h3.menu_list .small02{
		font-size: 18px;
	}

	.menu_block{
		margin: 50px 0 100px;
		width: 100%;
	}

	.menu_contents{
		color: #555;
		text-align: left;
		line-height: 2.3em;
	}

	.indent{
		padding: 0 0 0 15px;
	}

	.menu_attention{
		color: #555;
		text-align: center;
		line-height: 2em;
	}

	.menu_block table{
		width: 100%;
	}

	.menu_block table td:first-child{
		color: #555;
		line-height: 25px;
		padding: 0 0 30px;
		width: 90%;
		text-align: left;
	}

	.menu_block table td:last-child {
		color: #6C6C6C;
		line-height: 25px;
		padding: 10px 0 3px 0;
		text-align: right;
	}

	.block_02{
		display: block;
		margin: 0 0 30px;
	}

	.pace-running .wrap {
	   display:none;
	}

	.introduction {
		padding: 20px 0;
	}

	.anniversary {
		padding-top: 20px;
	}

	.course_name {
		text-align: center;
	}

	/*==========TAKE OUTページ==========*/

	#takeout_menu_pc{
		font-family: 'Noto Sans JP', sans-serif;
        width: 90%;
        max-width: 1280px;
        margin: 100px auto 0;
	}


	#takeout_menu{
		font-family: 'Noto Sans JP', sans-serif;
        width: 90%;
        max-width: 1280px;
        margin: 50px auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
	}

	.take_menu{
		width: 30%;
		height: auto;
		margin: 25px 0;
	}

	#takeout_menu::after{
		display: block;
		content:"";
		width: 30%;
	}

	.menu_photo{
		margin: 0 auto 20px;
	}

	.menu_photo img{
		width: 100%;
	}

	.menu_text{
		text-align: center;
	}

	p.menu_name{
		font-size: 16px;
		margin: 0 0 10px 0;
	}

	p.menu_price{
		font-size: 25px;
	}

	/*--サイドメニュー--*/

	#side_menu{
		font-family: 'Noto Sans JP', sans-serif;
		margin: 100px auto;
		width: 100%;
		max-width: 1024px;
	}

	#side_menu .title{
		font-size: 35px;
		margin: 50px auto;
		text-align: center;
	}

	#side_menu .sub_title{
		font-size: 16px;
		text-align: center;
		display: block;
		margin: 20px auto;
	}

	#side_menu .detail{
		width: 100%;
		max-width: 700px;
		margin: 0 auto;
	}

	#side_menu .detail dl{
		margin: 20px auto;
	}

	#side_menu .detail dt{
		text-align: left;
		float: left;
	}

	#side_menu .detail dt::before{
		content: "●";
		padding-right: 5px;
		font-size: 0.5em;
		vertical-align: bottom;
		line-height: 1.8em;
	}

	#side_menu .detail dd{
		text-align: right;
		margin: 20px 0;
	}


	/*
	#side_menu .detail p.detail_menu{
		line-height: 40px;
	}

	#side_menu .detail p.detail_price{
		font-size: 25px;
	}*/

	/*--デザート各種--*/

	#dessert_menu{
		font-family: 'Noto Sans JP', sans-serif;
		background: #F8F6F1;
		width: 100%;
		padding: 50px 0;
	}

	#dessert_menu .title{
		text-align: center;
		font-size: 30px;
	}

	#dessert_menu .dessert_detail{
		margin: 50px auto 0;
		text-align: center;
		width: 100%;
	}

	#dessert_menu .dessert_detail .detail_menu{
		line-height: 30px;
		margin: 0 0 20px 0;
	}

	#dessert_menu .dessert_detail .detail_menu .contents{
		display: block;
	}

	#dessert_menu .dessert_detail .detail_menu .contents::before{
		content: "●";
		padding-right: 5px;
		font-size: 0.5em;
		vertical-align: bottom;
	}

	#dessert_menu .dessert_detail .detail_price{
		font-size: 25px;
	}

	/*--コンプリートセット--*/

	#complete_set{
		font-family: 'Noto Sans JP', sans-serif;
		background: url(../images/complete_back02.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		margin: 0 auto;
		padding: 50px 0;
		text-align: center;
	}

	#complete_set .title{
		font-size: 35px;
		color: #7E4400;
	}

	#complete_set .sub_title{
		font-size: 16px;
		margin: 20px auto 0;
		display: block;
		line-height: 30px;
		color: #000;
	}

	#complete_set .complete_detail{
		margin: 50px auto;
		line-height: 50px;
	}

	#complete_set .complete_detail p.detail_menu{
		color: #7E4400;
		font-size: 25px;
	}

	#complete_set .complete_detail p.detail_menu .contents{
		display: block;
	}

	#complete_set .complete_detail p.detail_menu .contents::before{
		content: "●";
		padding-right: 5px;
		font-size: 0.5em;
		vertical-align: bottom;
	}

	#complete_set .complete_detail p.detail_menu .base{
		font-size: 18px;
		display: block;
	}

	#complete_set .complete_detail .detail_price{
		color: #7E4400;
		font-size: 30px;
	}

	/*--イタリア料理屋さんのまかないパスタ--*/

	#makanai_pasta{
		font-family: 'Noto Sans JP', sans-serif;
		background: url(../images/makanai_back.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		margin: 0 auto 50px;
		padding: 50px 0;
		text-align: center;
	}

	#makanai_pasta .title{
		color: #7E4400;
		font-size: 25px;
		margin: 0 auto 20px;
	}

	#makanai_pasta p.description{
		line-height: 30px;
		margin: 0 auto 20px;
	}

	#makanai_pasta p.amount{
		color: #7E4400;
		font-size: 25px;
		margin: 20px auto;
	}

	#makanai_pasta p.amount .under{
		background: linear-gradient(transparent 70%, #FF4B15 30%);
	}

	#makanai_pasta .oilbase{
		background: #C49F74;
		border-radius: 10px;
		width: 600px;
		padding: 20px 0;
		color: #fff;
		line-height: 35px;
		margin: 50px auto 0;
	}

	#makanai_pasta .oilbase .contents{
		display: block;
	}

	#makanai_pasta .oilbase .contents::before{
		content: "●";
		padding-right: 5px;
		font-size: 0.5em;
		vertical-align: bottom;
	}

	#makanai_pasta .oilbase .contents .space{
		margin-left: 20px;
	}

	p.attention{
		font-family: 'Noto Sans JP', sans-serif;
		margin: 0 auto 100px;
		width: 90%;
		max-width: 1024px;
		font-size: 16px;
	}


		/*==========SHOPページ==========*/

		#shop_main{
			font-family: 'Noto Sans JP', sans-serif;
			width: 90%;
			max-width: 1280px;
			margin: 100px auto 0;
		}
	
		.shop_photo{
			margin: 0 auto 20px;
		}
	
		.shop_photo img{
			width: 100%;
		}
	
		.shop_text{
			margin: 50px auto 50px;
			display: flex;
			justify-content: space-between;
			line-height: 2.3em;
		}
	
		.shop_info{
			width: 100%;
		}
	
		.shop_info dt{
			float: left;
			line-height: 30px;
			width: 200px;
		}

		.shop_info dt:before {
			content: '■';
			margin: 0 5px 0 0;
		  }

		.shop_info dd{
			line-height: 30px;
			color: #707070;
			display: block;
			padding-left: 200px;
		}
	
		.shop_sns{
			margin: 0 auto 50px;
			width: 100%;
		}

		.shop_sns img{
			width: 5%;
		}

		#shop_access{
			font-family: 'Noto Sans JP', sans-serif;
			width: 90%;
			max-width: 1280px;
			margin: 50px auto 0;
		}
	
	}


	@media screen and (min-width: 768px) and (max-width: 991px) {

	/*--コンプリートセット--*/

	#complete_set{
		font-family: 'Noto Sans JP', sans-serif;
		background: url(../images/complete_back02.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		margin: 0 auto;
		padding: 50px 0;
		text-align: center;
	}

	#complete_set .title{
		font-size: 35px;
		color: #7E4400;
	}

	#complete_set .sub_title{
		font-size: 16px;
		margin: 20px auto 0;
		display: block;
		line-height: 30px;
		color: #000;
	}

	#complete_set .complete_detail{
		margin: 50px auto;
		line-height: 50px;
	}

	#complete_set .complete_detail p.detail_menu{
		color: #7E4400;
		font-size: 25px;
	}

	#complete_set .complete_detail p.detail_menu .contents{
		display: block;
	}

	#complete_set .complete_detail p.detail_menu .contents::before{
		content: "●";
		padding-right: 5px;
		font-size: 0.5em;
		vertical-align: bottom;
	}

	#complete_set .complete_detail p.detail_menu .base{
		font-size: 18px;
		display: block;
	}

	#complete_set .complete_detail .detail_price{
		color: #7E4400;
		font-size: 30px;
	}
		
}

@media screen and (min-width: 768px) and (max-width: 991px) { 

	.tab_none{
		display: none;
	}

}