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

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/*----------------------------------------
Reset
----------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
	font-size: 62.5%; /*10px 以下のsize指定はrem*/
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin: 0;
}

body {
  min-height: 100vh;
  line-height: 1.0;
}

h1, h2, h3, h4,
button, input, label {
  line-height: 1.0;
}

input, button,
textarea, select {
  font: inherit;
}

:target {
  scroll-margin-block: 5ex;
}

ol,ul {
  list-style: none;
	margin: 0;
	padding: 0;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

hr {
	display:block;
	height:1px;
	border:0;
	border-top:1px solid #cccccc;
	margin:10px 0;
	padding:0;
}

del {
  text-decoration: line-through;
}

/*----------------------------------------
Common
----------------------------------------*/

html {
  overflow-y: scroll;
}

body {
	background:url("/images/nb_bg01.jpg") repeat;
  font-family: 'Noto Sans JP', 'Noto Sans', sans-serif;
	color: #003912;
	font-size: 1.4rem;
  font-weight: 400;
	position: relative;
}
@media(max-width: 767px){
  body{
		padding:50px 0 65px;
	}
}

a:link,
a:visited{
	color: #003912;
	text-decoration:underline;
}

img{
	vertical-align: bottom;
}

.pc_none{
	display: none;
}
.sp_none{
	display: block;
}
@media(max-width: 767px){
	.pc_none{
		display: block;
	}
	.sp_none{
		display: none;
	}
}

@media(min-width: 767px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}

.mb100{
	margin-bottom: 100px;
}

/*----------------------------------------
Header
----------------------------------------*/
#header_fixed{
	display:none;
}
#header_fixed{
	width: 100%;
	height: 110px;
	background: radial-gradient(circle, rgba(160, 35, 34, 1), rgba(118, 1, 6, 1) 65%);
	position: fixed;
	top: 0px;
	z-index: 10000;
}
#header {
	width: 1000px;
	height: 110px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#header .sp_reserve{
	display: none;
}
#header .btn_menu{
	display: none;
}
nav.pc{
	height: 100px;
}
nav.pc .fbox{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 0 3px;
}
nav.pc .fbox .lang a:hover img{
	opacity: 0.8;
}
nav.pc ul{
	display: table;
}
nav.pc ul li{
	display: table-cell;
	font-size: 1.2rem;
	text-align: center;
	white-space: nowrap;
	border-right: 1px solid #fff;
	vertical-align: middle;
}
nav.pc ul li span{
	display: block;
	font-size: 1.0rem;
	padding: 5px 0 0;
	margin: 0;
}
nav.pc ul li:nth-of-type(1){
	border-left:1px solid #fff;
}
nav.pc ul li:nth-last-of-type(1){
	border: none;
	padding-left: 10px;
}
nav.pc ul li a{
	display:block;
	padding: 10px 10px;
	color:#fff !important;
	text-decoration: none !important;
}
nav.pc ul li:nth-last-of-type(1) a{
	padding: 0;
}
nav.pc ul li a:hover{
	background-color: #b33b40;
	text-decoration: none;
}
nav.pc ul li:nth-last-of-type(1) a:hover{
	background-color: #a02322;
}
nav.pc ul li:nth-last-of-type(1) a:hover img{
	opacity: 0.8;
}
nav.sp{
	display: none;
}
#header_fixed .caution{
	width:100%;
	height: 30px;
	background-color: #003912;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 1.2rem;
}
#header_fixed .caution em{
	color: #ff0000;
	font-style: normal;
}

@media screen and (max-width: 768px){
	#header_fixed{ 
		display:block;
		height: 50px;
	}
	#header {
		width: 100%;
		height: 50px;
		padding: 0;
		display: block;
		position: relative
	}
	#header h1{
		padding: 5px 10px;
	}
	#header h1 img{
		width: auto;
		height: 40px;
	}
	#header .sp_reserve{
		display: block;
		position: absolute;
		top:8px;
		right: 60px;
	}
	#header .sp_reserve img{
		width:161px;
		height: 34px;
	}
	#header .btn_menu{
		display: block;
		width:50px;
		height: 50px;
		cursor: pointer;
		position: absolute;
		top:0;
		right: 0;
		z-index: 110;
	}
	#header .btn_menu span{
		position: absolute;
		left: 5px;
		width: 40px;
		height: 2px;
		background-color: #fff;
	}
	#header .btn_menu,
	#header .btn_menu span{
		display: inline-block;
  	transition: all .5s;
	}
	#header .btn_menu span:nth-of-type(1) {
		top: 10px;
	}
	#header .btn_menu span:nth-of-type(2) {
		top: 20px;
	}
	#header .btn_menu span:nth-of-type(3) {
		top: 30px;
	}
	#header .btn_menu.open span:nth-of-type(1) {
		transform: translateY(10px) rotate(45deg);
	}
	#header .btn_menu.open span:nth-of-type(2) {
		opacity: 0;
	}
	#header .btn_menu.open span:nth-of-type(3) {
		transform: translateY(-10px) rotate(-45deg);
	}
	#header .btn_menu::after{
		content: 'MENU';
		width: 40px;
		color: #fff;
		font-size: 1.0rem;
		display: block;
		text-align: center;
		position: absolute;
		bottom:3px;
		left: 5px;
	}
	#header .btn_menu.open::after{
		content: 'CLOSE';
	}
	nav.pc{
		display: none;
	}
	nav.sp{
		position: absolute;
		z-index: 100;
		top: 50px;
		left: 0;
		width: 100%;
		display: none;
	}
	nav.sp ul{
		width: 100%;
		background: radial-gradient(circle, rgba(160, 35, 34, 1), rgba(118, 1, 6, 1) 65%);
		border-top: 1px solid #fff;
		border-bottom: 1px solid #fff;
		padding: 0 0 10px;
	}
	nav.sp ul li{
		font-size: 1.4rem;
		text-align: left;
		border-bottom: 1px solid #fff;
	}
	nav.sp ul li a{
		display:block;
		width: 100%;
		padding: 15px 20px;
		color:#fff !important;
		text-decoration: none !important;
	}
	nav.sp ul li.tel{
		border:none;
		padding: 10px 0 0;
		text-align: center;
	}
	nav.sp ul li.tel a{
		padding: 5px 10px;
	}
	nav.sp ul li.tel span{
		display: inline-block;
		background: url("../images/icon_tel.png") left center no-repeat;
		background-size: contain;
		font-family: 'Noto Serif', 'Noto Serif JP', serif;
		font-size: 2.6rem;
		text-align: center;
		padding: 0 10px 0 20px;
	}
	nav.sp ul li.tel i{
		font-style: normal;
		font-size: 1.0rem;
	}
	#header_fixed .caution{
		font-size: 1.0rem;
	}
}

/*pc_header*/

#pc_header{
	width:100%;
	background: radial-gradient(circle, rgba(160, 35, 34, 1), rgba(118, 1, 6, 1) 65%);
}
#pc_header .fbox{
	width: 1000px;
	height: 60px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#pc_header > p{
	padding: 6px 0;
}
#pc_header .fbox .btn{
	padding: 7px 0;
}
#pc_header .fbox .btn a:hover img{
	opacity: 0.8;
}

@media screen and (max-width: 768px){
	#pc_header{
		display: none;
	}
}

/*----------------------------------------
Footer
----------------------------------------*/
footer{
	width: 100%;
	background: radial-gradient(circle, rgba(160, 35, 34, 1), rgba(118, 1, 6, 1) 65%);
	color: #fff;
}
#footer {
	width: 1000px;
	margin: 0 auto;
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#footer .logo{
}
footer .copy{
	width: 100%;
	font-size: 1.2rem;
	text-align: center;
	padding: 0 0 10px;
}
footer .company{
  width: 100%;
	font-size: 1.2rem;
  text-align: center;
  padding: 0 0 20px;
}
footer .company a:link,
footer .company a:visited{
	color: #fff;
  text-decoration: none;
}
footer .company a:hover{
  opacity: 0.7;
}
#sp_contact{
	display: none;
}

@media screen and (max-width: 768px){
	footer{
		background: #fff;
	}
	#footer {
		display: none;
	}
	footer .copy{
		color: #003912;
		padding: 30px 0 10px;
	}
	footer .company{
		color: #003912;
		padding: 0 0 30px;
	}
	footer .company a:link,
	footer .company a:visited{
		color: #003912;
	}
	#sp_contact{
		box-sizing: border-box;
		width: 100%;
		height: 65px;
		background: radial-gradient(circle, rgba(160, 35, 34, 1), rgba(118, 1, 6, 1) 65%);
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 1000;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#sp_contact li{
		padding: 5px;
	}
	#sp_contact li img{
		width: auto;
		height: 55px;
	}
}

@media screen and (max-width: 386px){
	#sp_contact li img{
		width: 100%;
		height: auto;
	}
}

/*----------------------------------------
Pagetop
----------------------------------------*/

.pagetop {
	width: 52px;
	height: 52px;
	background: #fff;
	border-radius: 50%;
	display: none;
	position: fixed;
	bottom: 30px;
	right: 10px;
	z-index: 1000;
}
.pagetop img {
	width: 52px;
	height: 52px;
}
.pagetop a:hover img{
	opacity: 0.5;
}

@media screen and (max-width: 768px){
	.pagetop {
		width: 45px;
		height: 45px;
		bottom: 75px;
		right: 10px;
	}
	.pagetop img{
		width: 100%;
		height: auto;
	}
}

/*----------------------------------------
topview
----------------------------------------*/
#main_visual {
	width: 100%;
	z-index: 50;
}
#main_visual img{
	width:100%;
}
@media screen and ( max-width: 1000px ) {
	#main_visual img {
	width: 1000px;
	}
}
@media screen and ( max-width: 768px ) {
	#main_visual img {
		width: 100%;
	}
}

/*
 * jQuery FlexSlider v2.3.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Ville Ristimäki (@villeristi)
 * 
 */

/* RESETS */
.flex-container a:hover,
.flex-slider a:hover,
.flex-container a:focus,
.flex-slider a:focus {
  outline: none;
}
.slides,
.flex-control-nav,
.flex-direction-nav {
	margin: 0;
	padding: 0;
	list-style: none;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
/* BASE STYLES */
.flexslider {
	clear: both;
	float: none;
	margin: 0;
    padding: 0;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.flexslider .slides img {
  width: 100%;
  display: block;
}
.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .flexslider .slides {
  display: block;
}
* html .flexslider .slides {
  height: 1%;
}
.no-js .flexslider .slides > li:first-child {
  display: block;
}

/* DEFAULT THEME */
.flexslider {
  margin: 0;
  background: #ffffff;
  border: 0px;
  position: relative;
  zoom: 1;
}
.flexslider .slides {
  zoom: 1;
}
.flexslider .slides img {
  height: auto;
}
.flex-viewport {
  max-height: 2000px;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
.flex-control-nav {
	width: 100%;
	position: absolute;
	bottom: 10px;
	text-align: center;
	z-index: 50;
}
.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
}
.flex-control-paging li a {
  width: 25px;
  height: 6px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
}
.flex-control-paging li a:hover {
  background: #fff000;
  background: rgba(255, 240, 0, 0.7);
}
.flex-control-paging li a.flex-active {
  background: #fff000;
  background: rgba(255, 240, 0, 1s);
  cursor: default;
}

@media screen and ( max-width: 768px ) {
	.flex-control-nav{
		bottom: 3px;
	}
}

/*----------------------------------------
Common
----------------------------------------*/
#concept,
#facility,
#info,
#fes,
#bbq,
#access{
	margin-top: -130px;
	padding-top: 130px;
	position: relative;
}
section{
	min-width: 1000px;
}
section h2{
	font-size: 3.0rem;
	text-align: center;
}
section h2 span{
	display: block;
	font-size: 9.4rem;
	font-weight: 700;
	padding: 0 0 20px;
}

@media screen and ( max-width: 768px ) {
	#concept,
	#facility,
	#info,
	#fes,
	#bbq,
	#access{
		margin-top: -50px;
		padding-top: 50px;
	}
	section{
		min-width: 100%;
		overflow: hidden;
	}
	section h2{
		font-size: 1.6rem;
	}
	section h2 span{
		font-size: 4rem;
		padding: 0 0 10px;
	}
}

/*======== Contact ========*/

.contact_block{
	width:100%;
	min-width: 1000px;
	height: 250px;
	background: radial-gradient(circle, rgba(160, 35, 34, 1), rgba(118, 1, 6, 1) 65%);
	display: flex;
	justify-content:space-between;
	align-items: center;
	position: relative;
	z-index: 200;
}
.contact_block .pic{
	width:35%;
	height: 250px;
}
.contact_block .pic img{
	width: 100%;
	height: 250px;
	object-fit: cover;
}
.contact_block .btn{
	width:300px;
	text-align: center;
}
.contact_block .btn p{
	margin: 0 0 20px;
}

@media screen and ( max-width: 768px ) {
	.contact_block{
		display: none;
	}
}

/*======== BANNER ========*/

.bnr_block{
	width:1000px;
	margin: 100px auto 0;
}

@media screen and ( max-width: 768px ) {
	.bnr_block{
		width:calc(100% - 30px);
		margin: 50px auto 0;
	}
	.bnr_block img{
		width:100%;
	}
}


/*----------------------------------------
lead
----------------------------------------*/

#lead{
	width:100%;
	padding: 120px 0;
	position: relative;
	z-index: 100;
}
#lead .text{
	width:990px;
	background-image: radial-gradient(closest-corner, #ffffff 40%, #e1c29c);
	margin: 0 auto;
	padding: 13px;
	color: #453922;
}
#lead .text > div{
	border:4px solid #9a7951;
	padding: 4px;
}
#lead .text > div >div{
	border:8px solid #9a7951;
	padding: 30px 0;
}
#lead .text p{
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 2;
	text-align: center;
	margin: 20px 0 0;
}

@media screen and ( max-width: 768px ) {
	#lead{
		padding: 30px 15px;
	}
	#lead .text{
		width:100%;
	}
	#lead .text > div >div{
		padding: 20px;
	}
	#lead .text h2{
		width:75%;
		margin: 0 auto;
	}
	#lead .text h2 img{
		width: 100%;
		height: auto;
	}
	#lead .text p{
		font-size: 1.4rem;
		line-height: 1.5;
		text-align: left;
		margin: 20px 0 0;
	}
}

/*----------------------------------------
concept
----------------------------------------*/

#concept{
	width:100%;
	position: relative;
	z-index: 90;
}
#concept .inner{
	width:1000px;
	padding: 50px 0 100px;
	margin: 0 auto;
}
#concept h2{
	color:#453922;
}
/*use01*/
#concept .use01{
	padding: 85px 0 0;
	position: relative;
}
#concept .use01 .txt01{
	width:890px;
	background-color: #fff;
	border-radius: 20px;
	padding: 90px 35px 35px;
	position: relative;
}
#concept .use01 .txt01 h3{
	position: absolute;
	top:-60px;
	left: 25px;
}
#concept .use01 .txt01 ul{
	display: flex;
	margin: 0 0 20px 120px;
}
#concept .use01 .txt01 ul li{
	padding: 8px 15px;
	border-radius: 15px;
	color: #fff;
	margin-right: 10px;
}
#concept .use01 .txt01 ul li:nth-of-type(1){
	background-color: #cc0000;
}
#concept .use01 .txt01 ul li:nth-of-type(2){
	background-color: #003912;
}
#concept .use01 .txt01 p{
	width:560px;
	font-size: 1.7rem;
	line-height: 2;
}
#concept .use01 .txt01 p:nth-of-type(1){
	font-weight: 700;
	margin-bottom: 5px;
}
#concept .use01 .txt01 p:nth-of-type(1) span{
	display: inline;
	border-bottom: 1px solid #003912;
}
#concept .use01 .txt01 p:nth-of-type(2) span{
	display: inline;
	border-bottom: 1px solid #c00;
	color: #c00;
}
#concept .use01 .pic01{
	position: absolute;
	right: 0;
	bottom: 0;
}
/*pic_list*/
#concept .pic_list{
	width:900px;
	margin: 20px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#concept .pic_list.mt0{
	margin-top: 0;
}
/*use02*/
#concept .use02{
	padding: 95px 0 50px 160px;
	position: relative;
}
#concept .use02 .txt02{
	width:840px;
	background-color: #fff;
	border-radius: 20px;
	padding: 80px 35px 35px 260px;
	position: relative;
}
#concept .use02 .txt02 h3{
	position: absolute;
	top: -45px;
	left: 40px;
}
#concept .use02 .txt02 ul{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 20px;
}
#concept .use02 .txt02 ul li:nth-of-type(1){
	font-size: 1.7rem;
	font-weight: 700;
}
#concept .use02 .txt02 ul li:nth-of-type(1) span{
	color: #cc0000;
	font-size: 3.2rem;
}
#concept .use02 .txt02 ul li:nth-of-type(2) span{
	display: inline-block;
	background-color: #cc0000;
	border-radius: 10px;
	color: #fff;
	line-height: 1.2;
	padding: 10px 15px;
}
#concept .use02 .txt02 p{
	font-size: 1.7rem;
	line-height: 2;
}
#concept .use02 .txt02 p:nth-of-type(1){
	font-weight: 700;
}
#concept .use02 .txt02 p:nth-of-type(2) span{
	display: inline;
	font-weight: 700;
	border-bottom: 1px solid #003912;
}
#concept .use02 .txt02 p:nth-of-type(3) span{
	display: inline;
	border-bottom: 1px solid #c00;
	color: #c00;
}
#concept .use02 .pic02{
	position: absolute;
	bottom:0;
	left:0;
}
/*use03*/
#concept .use03{
	padding: 60px 0 80px;
	position: relative;
}
#concept .use03 .txt03{
	width:890px;
	background-color: #fff;
	border-radius: 20px;
	padding: 100px 35px 60px;
	position: relative;
}
#concept .use03 .txt03 h3{
	position: absolute;
	top:-35px;
	left: 25px;
}
#concept .use03 .txt03 p{
	width:520px;
	font-size: 1.7rem;
	line-height: 2;
}
#concept .use03 .txt03 p:nth-of-type(1) span{
	display: inline;
	font-weight: 700;
	border-bottom: 1px solid #003912;
}
#concept .use03 .txt03 p:nth-of-type(2) span{
	display: inline;
	border-bottom: 1px solid #c00;
	color: #c00;
}
#concept .use03 .pic03{
	position: absolute;
	right: 0;
	bottom: 0;
}

@media screen and ( max-width: 768px ) {
	#concept .inner{
		width:100%;
		padding: 40px 15px 60px;
	}
	#concept .use01{
		padding: 60px 0 0;
	}
	#concept .use01 .txt01{
		width:100%;
		padding: 40px 20px;
	}
	#concept .use01 .txt01 h3{
		top:-35px;
		left: 15px;
	}
	#concept .use01 .txt01 h3 img{
		width:98%;
		height: auto;
	}
	#concept .use01 .txt01 ul{
		justify-content: center;
		margin: 0 0 20px;
	}
	#concept .use01 .txt01 ul li{
		padding: 5px 10px;
		font-size: 1.2rem;
		margin: 0 5px;
	}
	#concept .use01 .txt01 p{
		width:100%;
		font-size: 1.6rem;
		line-height: 1.75;
	}
	#concept .use01 .pic01{
		position: relative;
		text-align: right;
		margin: -50px -50px 0 0;
	}
	#concept .use01 .pic01 img{
		width:80%;
		height: auto;
	}
	#concept .pic_list{
		width:100%;
		margin: 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	#concept .pic_list li{
		width:23%;
	}
	#concept .pic_list li img{
		width:100%;
	}
	#concept .pic_list li.small img{
		width:80%;
	}
	#concept .use02{
		padding: 50px 0 0;
	}
	#concept .use02 .txt02{
		width:100%;
		padding: 40px 20px 60px;
	}
	#concept .use02 .txt02 h3{
		top: -30px;
		left: 10px;
	}
	#concept .use02 .txt02 h3 img{
		width:100%;
		height: auto;
	}
	#concept .use02 .txt02 ul{
		display: block;
		margin: 0 0 20px;
	}
	#concept .use02 .txt02 ul li{
		text-align: center;
	}
	#concept .use02 .txt02 ul li:nth-of-type(1){
		font-size: 1.6rem;
		margin: 0 0 15px;
	}
	#concept .use02 .txt02 ul li:nth-of-type(1) span{
		font-size: 2.4rem;
	}
	#concept .use02 .txt02 ul li:nth-of-type(2) span{
		margin: 0 auto;
		font-size: 1.2rem;
	}
	#concept .use02 .txt02 ul li:nth-of-type(2) br{
		display: none;
	}
	#concept .use02 .txt02 p{
		font-size: 1.6rem;
		line-height: 1.75;
	}
	#concept .use02 .txt02 p:nth-of-type(1){
		text-align: center;
	}
	#concept .use02 .pic02{
		position: relative;
		margin: -50px 0 0 -50px;
	}
	#concept .use02 .pic02 img{
		width:80%;
		height: auto;
	}
	#concept .use03{
		padding: 50px 0 0;
	}
	#concept .use03 .txt03{
		width:100%;
		padding: 50px 20px 50px;
	}
	#concept .use03 .txt03 h3{
		position: absolute;
		top:-35px;
		left: 15px;
	}
	#concept .use03 .txt03 h3 img{
		width:90%;
		height: auto;
	}
	#concept .use03 .txt03 p{
		width:100%;
		font-size: 1.6rem;
		line-height: 1.75;
	}
	#concept .use03 .txt03 p span{
		font-size: 1.4rem;
		line-height: 1.5;
		padding: 10px 0 0;
	}
	#concept .use03 .pic03{
		position: relative;
		margin: -50px -50px 0 0;
		text-align: right;
	}
	#concept .use03 .pic03 img{
		width:80%;
		height: auto;
	}
}

/*----------------------------------------
facility
----------------------------------------*/

#facility{
	position: relative;
	z-index: 80;
}
#facility h2{
	width:100%;
	height: 180px;
	background: url("../images/nb_facility_bg01.jpg") center no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	
}
#facility .inner{
	width:1000px;
	margin: 30px auto 100px;
}
#facility .map01{
	width:100%;
	display: flex;
	justify-content: space-between;
}
#facility .map01 .booth p{
	width:240px;
	background-color: #fff;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	padding: 10px;
	font-size: 1.3rem;
	line-height: 1.5;
	color: #000;
}
#facility .map02{
	margin: 30px 0 10px;
}
#facility .pic{
	width:100%;
	height: 179px;
	background: url("../images/nb_facility_bg02.png") top center no-repeat;
}
#facility .pic > div{
	width:1000px;
	height: 179px;
	margin: 0 auto;
	position: relative;
}
#facility .pic > div img{
	position: absolute;
	top:-40px;
	right: 220px;
}

@media screen and ( max-width: 768px ) {
	#facility{
		background-size: auto 120px, auto;
		padding-bottom: 135px;
	}
	#facility .inner{
		width:100%;
		padding: 0 15px;
		margin: 30px auto 50px;
	}
	#facility h2{
		padding: 30px 0 15px;
	}
	#facility h2 img{
		width: 100%;
		height: auto;
	}
	#facility .map01{
		flex-wrap: wrap;
	}
	#facility .map01 .booth{
		width:48%;
		margin: 0 0 15px;
	}
	#facility .map01 .booth h3 img{
		width: 100%;
		height: auto;
	}
	#facility .map01 .booth p{
		width:100%;
	}
	#facility .map02{
		margin: 0;
		padding: 5px 0 15px;
	}
	#facility .map02 img{
		width: 100%;
		height: auto;
	}
	#facility .pic{
		background: none;
		height: 50px;
	}
	#facility .pic > div{
		width:100%;
		height: 50px;
	}
	#facility .pic > div img{
		width:auto;
		height: 100px;
		top:-30px;
		right: 20px;
	}
}

/*----------------------------------------
info
----------------------------------------*/

#info{
	position: relative;
	z-index: 70;
}
#info > div{
	width:100%;
	background-color: #fff;
	margin-top: -40px;
	padding-bottom: 100px;
}
#info .inner{
	width:1000px;
	margin: 0 auto;
}
#info h2{
	padding: 30px 0 80px;
}
#info .detail01{
	padding: 0 0 20px;
}
#info .detail01 dl{
	display: flex;
	margin: 0 0 30px;
}
#info .detail01 dt{
	padding-right: 30px;
}
#info .detail01 dt span{
	display: block;
	width:155px;
	background-color: #003912;
	border-radius: 10px;
	padding: 10px;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
}
#info .detail01 dd{
	font-size: 3.4rem;
	font-weight: 700;
}
#info .detail01 .fs{
	font-size: 3.0rem;
}
#info .detail01 dd.flx{
	display: flex;
}
#info .detail01 ul.time{
	padding-left: 50px;
}
#info .detail01 ul.time li{
	min-height: 36px;
	font-size: 2.6rem;
	padding: 5px 0 5px 45px;
}
#info .detail01 ul.time li:nth-of-type(1){
	background: url("../images/icon_lunch.png") center left no-repeat;
}
#info .detail01 ul.time li:nth-of-type(2){
	background: url("../images/icon_dinner.png") center left no-repeat;
}

@media screen and ( max-width: 768px ) {
	#info > div{
		padding-bottom: 0;
	}
	#info .inner{
		width:100%;
		margin: 0;
		padding: 0 15px 50px;
	}
	#info h2{
		padding: 50px 0;
	}
	#info .detail01 dl{
		display: block;
		margin: 0 0 30px;
	}
	#info .detail01 dt{
		padding-right: 0;
	}
	#info .detail01 dt span{
		margin: 0 auto 10px;
	}
	#info .detail01 dd{
		font-size: 2.8rem;
		line-height: 1.2;
		text-align: center;
	}
	#info .detail01 .fs{
		font-size: 2.4rem;
	}
	#info .detail01 dd.flx{
		display: block;
	}
	#info .detail01 ul.time{
		padding-left: 0;
		display: inline-block;
		margin: 15px auto 0;
	}
	#info .detail01 ul.time li{
		font-size: 2.0rem;
	}
}

#info .detail02{
	display: flex;
	margin: 0 0 30px;
}
#info .detail02 table{
	border-collapse: separate;
	border-spacing: 5px;
	margin-right: 20px;
}
#info .detail02 th,
#info .detail02 td{
	color: #fff;
	font-size: 2.2rem;
	font-weight: 700;
	padding: 15px 40px;
	text-align: center;
}
#info .detail02 thead th{
	background-color: #77500a;
}
#info .detail02 thead th:nth-of-type(1){
	border-top-left-radius: 20px;
}
#info .detail02 thead th:nth-of-type(3){
	border-top-right-radius: 20px;
}
#info .detail02 tbody td{
	background-color: #003912;
}
#info .detail02 ul{
	width:550px;
}
#info .detail02 ul li{
	list-style-type: disc;
	line-height: 1.5;
	margin: 0 0 5px 10px;
}
#info .tx01{
	font-size: 1.6rem;
	margin: 0 0 80px;
}

@media screen and ( max-width: 768px ) {
	#info .detail02{
		display: block;
		margin: 0 0 30px;
	}
	#info .detail02 table{
		width:100%;
		margin: 0 0 30px;
	}
	#info .detail02 th,
	#info .detail02 td{
		font-size: 1.8rem;
		padding: 15px 20px;
	}
	#info .detail02 ul{
		width:100%;
		padding: 0 0 0 10px;
	}
	#info .tx01{
		line-height: 1.35;
		margin: 0 0 50px;
	}
}

/* お支払いに関して */

#info .pay{
	background-color: #fef4dd;
	border-radius: 20px;
	padding: 40px;
}
#info .pay h3{
	font-size: 3.0rem;
	text-align: center;
	margin: 0 0 40px;
}
#info .pay .fbox{
	display: flex;
}
#info .pay .fbox ul{
	padding-right: 30px;
}
#info .pay .fbox ul li{
	list-style-type: disc;
	font-size: 1.6rem;
	line-height: 1.5;
	margin: 0 0 10px 10px;
}

@media screen and ( max-width: 768px ) {
	#info .pay{
		padding: 20px;
		margin: 0 0 50px;
	}
	#info .pay h3{
		font-size: 2.4rem;
		margin: 0 0 20px;
	}
	#info .pay .fbox{
		display: block;
	}
	#info .pay .fbox ul{
		margin: 0;
		padding: 0 0 10px;
	}
	#info .pay .fbox ul li{
		font-size: 1.4rem;
	}
	#info .pay .fbox img{
		width:100%;
		height: auto;
	}
}

/*----------------------------------------
fes
----------------------------------------*/

#fes{
	position: relative;
	z-index: 60;
	padding-bottom: 100px;
}
#fes .ttl{
	width:100%;
	height: 400px;
	background: url("../images/nb_fes_bg01.jpg") top center no-repeat;
	background-size: cover;
	color: #fbf0d3;
	text-align: center;
}
#fes .ttl h2{
	padding: 80px 0 60px;
}
#fes .ttl p{
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 2;
}
#fes .alc01{
	width:1000px;
	margin: 0 auto;
	padding: 100px 0 0;
	text-align: center;
}
#fes .alc01 .cal_wrap,
#fes .alc02 .cal_wrap{
	width:1000px;
	height: 750px;
	background: url("../images/nb_fes_bg02.jpg") no-repeat;
	padding: 50px 0 0;
}
#fes .alc01 .carousel_alc01,
#fes .alc02 .carousel_alc02{
	width:920px;
	margin: 0 auto;
}
#fes .alc02{
	width:1000px;
	margin: 0 auto;
	padding: 100px 0;
	text-align: center;
}
#fes .alc02 a:hover img{
	opacity: 0.8;
}

@media screen and ( max-width: 768px ) {
	#fes{
		padding-bottom: 50px;
	}
	#fes .ttl h2{
		padding: 60px 0 30px;
	}
	#fes .ttl p{
		font-size: 1.6rem;
		padding: 0 15px;
		text-align: left;
	}
	#fes .alc01{
		width:100%;
		padding: 50px 15px 0;
	}
	#fes .alc01 h3 img,
	#fes .alc02 h3 img{
		width:100%;
		height: auto;
	}
	#fes .alc01 p,
	#fes .alc02 p{
		font-size: 1.4rem;
		padding: 20px 0;
	}
	#fes .alc01 .cal_wrap,
	#fes .alc02 .cal_wrap{
		width:100%;
		height: auto;
		background-size: cover;
		padding: 0;
	}
	#fes .alc01 .carousel_alc01,
	#fes .alc02 .carousel_alc02{
		width:320px;
		margin: 0 auto;
	}
	#fes .alc01 .carousel_alc01 li img,
	#fes .alc02 .carousel_alc02 li img{
		width:100%;
		height: auto;
	}
	#fes .alc02{
		width:100%;
		padding: 50px 15px;
	}
	#fes .alc02 img{
		width:100%;
		height: auto;
	}
}

/*----------------------------------------
bbq
----------------------------------------*/

#bbq{
	position: relative;
	z-index: 50;
	padding-bottom: 100px;
}
#bbq .ttl{
	width:100%;
	height: 400px;
	background: url("../images/nb_bbq_bg01.jpg") top center no-repeat;
	background-size: cover;
	color: #fff;
	text-align: center;
	margin: 0 0 100px;
}
#bbq .ttl h2{
	padding: 80px 0 60px;
}
#bbq .ttl h2 span{
	font-size: 5.2rem;
}
#bbq .ttl p{
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 2;
}
#bbq .bbq01{
	width:1000px;
	margin: 0 auto;
	padding: 0;
}
#bbq .bbq01.mb50{
	margin-bottom: 50px;
}
#bbq .bbq01 h3{
	text-align: center;
}
#bbq .bbq01 > p{
	font-size: 1.6rem;
	font-weight: 700;
	padding: 30px 0;
	text-align: center;
}
#bbq .bbq01 .fbox{
	width:100%;
	background: #fff;
	border-radius: 20px;
	padding: 30px 50px;
	display: flex;
	justify-content: space-between;
}
#bbq .bbq01 .fbox table{
	border-collapse: separate;
	border-spacing: 2px;
}
#bbq .bbq01 .fbox th{
	background-color: #003912;
	padding: 5px 15px;
	color: #fff;
	line-height: 1.5;
	text-align: left;
}
#bbq .bbq01 .fbox th > span{
	font-size: 1.2rem;
}
#bbq .bbq01 .fbox th > em{
	font-size: 1.3rem;
  font-style: normal;
	float: right;
}
#bbq .bbq01 .fbox td{
	padding: 5px 15px;
	line-height: 1.5;
}
#bbq .bbq01 .fbox tr:nth-of-type(even) td{
	background: #e5eae6;
}
#bbq .bbq01 .fbox tr.yel td{
	background: #fdfcd0;
}
#bbq .bbq01 .fbox td span.plan01{
	display: block;
	background-color: #003912;
	border-radius: 3px;
	padding: 2px 5px;
	color: #fff;
	font-size: 1.1rem;
	float: right;
}
#bbq .bbq01 .fbox td span.plan02{
	display: block;
	background-color: #c20c22;
	border-radius: 3px;
	padding: 2px 5px;
	color: #fff;
	font-size: 1.1rem;
	float: right;
	margin-left: 10px;
}
#bbq .bbq01 .fbox td span.price{
	float: right;
}
#bbq .bbq01 .bbq01_sp{
	display: none;
}

@media screen and ( max-width: 768px ) {
	#bbq{
		padding-bottom: 50px;
	}
	#bbq .ttl{
		margin: 0 0 50px;
	}
	#bbq .ttl h2{
		padding: 50px 0 30px;
	}
	#bbq .ttl h2 span{
		font-size: 3.0rem;
	}
	#bbq .ttl p{
		font-size: 1.6rem;
		padding: 0 15px;
		text-align: left;
	}
	#bbq .bbq01{
		width:100%;
		padding: 0 15px 0;
	}
	#bbq .bbq01 h3 img{
		width:100%;
		height: auto;
	}
	#bbq .bbq01 > p{
		font-size: 1.3rem;
		line-height: 1.2;
		padding: 20px 0 30px;
	}
	#bbq .bbq01 .fbox{
		display: none;
	}
	#bbq .bbq01 .bbq01_sp{
		display: block;
		width:100%;
		padding: 0 10px 15px;
	}
	#bbq .bbq01 .bbq01_sp .item img{
		width:100%;
	}
	#bbq .bbq01 .bbq01_sp .item h4{
		font-size: 2.8rem;
		font-weight: 700;
		margin: 10px 20px 0;
	}
	#bbq .bbq01 .bbq01_sp .item h4.fs{
		font-size: 2.4rem;
	}
	#bbq .bbq01 .bbq01_sp .item h4 span{
		display: block;
		padding: 8px 0 0;
		font-size: 1.4rem;
		font-weight: 400;
	}
	#bbq .bbq01 .bbq01_sp .item p{
		font-size: 2.6rem;
		text-align: right;
		margin: 0 20px 15px;
	}
	#bbq .bbq01 .bbq01_sp .item p span:nth-of-type(1){
		font-size: 1.2rem;
		padding-right: 10px;
	}
	#bbq .bbq01 .bbq01_sp .item p span:nth-of-type(2){
		font-size: 1.6rem;
		padding-left: 5px;
	}
	#bbq .bbq01 .bbq01_sp .item ul{
		background-color: #fefbf5;
		border-radius: 10px;
		padding: 15px 15px 7px;
	}
	#bbq .bbq01 .bbq01_sp .item ul li{
		display: inline-block;
		padding: 0 15px 8px 0;
		font-size: 1.2rem;
		line-height: 1.35;
	}
	#bbq .bbq01 .bbq01_sp .item ul li > i{
		font-style: normal;
		font-size: 1.0rem;
	}
}

/*食べ放題メニュー*/

#bbq .bbq02{
	width:1000px;
	margin: 0 auto;
	padding: 80px 0 0;
}
#bbq .bbq02 h3{
	text-align: center;
}
#bbq .bbq02 > p{
	font-size: 1.6rem;
	font-weight: 700;
	padding: 30px 0;
	text-align: center;
}
#bbq .bbq02 .wrap{
	width:1000px;
	background: url("../images/bbq_bg02.jpg") repeat;
	border-radius: 20px;
}
#bbq .bbq02 .carousel_bbq03{
	width:920px;
	margin: 0 auto;
}
#bbq .bbq02 .menu{
	padding: 0 35px;
}
#bbq .bbq02 .menu .tx01{
	display: flex;
	align-items: center;
}
#bbq .bbq02 .menu .tx01 > span:nth-of-type(1){
	display: inline-block;
	background-color: #c30d23;
	padding: 5px 10px;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 400;
}
#bbq .bbq02 .menu .tx01 > span:nth-of-type(2){
	font-size: 2.8rem;
	font-weight: bold;
	padding: 0 15px;
}
#bbq .bbq02 .menu .tx01 > span:nth-of-type(3){
	font-size: 1.6rem;
	font-weight: 400;
}
#bbq .bbq02 .menu .tx02{
	margin: 20px 0 30px;
	text-align: center;
}
#bbq .bbq02 .menu .tx02 span{
	display: inline-block;
	background-color: #fff;
	padding: 8px 15px;
	font-weight: 700;
}
#bbq .bbq02 .menu .food{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: baseline;
}
#bbq .bbq02 .menu .food li{
	width:14.2%;
	text-align: center;
	margin: 0 0 30px;
}
#bbq .bbq02 .menu .food.f02 li:nth-of-type(n+8){
	width:16.6%;
}
#bbq .bbq02 .menu .food.f02 li:nth-of-type(n+14){
	width:20%;
}
#bbq .bbq02 .menu .food li > img{
	margin: 0 auto;
}
#bbq .bbq02 .menu .food li > p{
	margin: 20px 0 0;
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.2;
}
#bbq .bbq02 .menu .tx03{
	text-align: center;
}
#bbq .bbq02 .menu .tx03 span{
	display: inline-block;
	background-color: #003912;
	border-radius: 15px;
	color: #fff;
	padding: 8px 15px;
}
#bbq .bbq02 .menu .rule{
	margin: 20px 15px 0;
	padding: 0 0 20px;
}
#bbq .bbq02 .menu .rule li{
	font-weight: 700;
	line-height: 1.5;
	padding: 0 0 0 16px;
	margin: 0 0 8px;
	position: relative;
}
#bbq .bbq02 .menu .rule li::before{
	content: '※';
	position: absolute;
	top:0;
	left:0;
}

@media screen and ( max-width: 768px ) {
	#bbq .bbq02{
		width:100%;
		padding: 20px 15px 0;
	}
	#bbq .bbq02 h3 img{
		width:100%;
		height: auto;
	}
	#bbq .bbq02 > p{
		font-size: 1.3rem;
		line-height: 1.2;
		padding: 20px 0 30px;
	}
	#bbq .bbq02 .wrap{
		width:100%;
		padding: 15px;
	}
	#bbq .bbq02 .carousel_bbq03{
		width:100%;
		padding: 0 10px;
	}
	#bbq .bbq02 .menu{
		padding: 0;
	}
	#bbq .bbq02 .menu .tx01 > span:nth-of-type(1){
		padding: 5px 5px;
		font-size: 1.2rem;
	}
	#bbq .bbq02 .menu .tx01 > span:nth-of-type(2){
		font-size: 2.0rem;
		padding: 0 5px;
	}
	#bbq .bbq02 .menu .tx01 > span:nth-of-type(3){
		font-size: 1.4rem;
	}
	#bbq .bbq02 .menu .tx02{
		margin: 10px 0;
	}
	#bbq .bbq02 .menu .tx02 span{
		display: block;
		padding: 5px 10px;
		line-height: 1.2;
		text-align: left;
	}
	#bbq .bbq02 .menu .food li{
		width:25%;
		margin: 0 0 15px;
	}
	#bbq .bbq02 .menu .food.f02 li:nth-of-type(n+8){
		width:25%;
	}
	#bbq .bbq02 .menu .food.f02 li:nth-of-type(n+14){
		width:25%;
	}
	#bbq .bbq02 .menu .food li > img{
		width:100%;
		height: auto;
	}
	#bbq .bbq02 .menu .food li > p{
		margin: 10px 0 0;
		font-size: 1.0rem;
		font-weight: 400;
	}
	#bbq .bbq02 .menu .tx03{
		text-align: left;
	}
	#bbq .bbq02 .menu .tx03 span{
		display: block;
		font-size: 1.2rem;
		line-height: 1.2;
	}
	#bbq .bbq02 .menu .rule{
		margin: 10px 0 0;
		padding: 0;
	}
}

/* 飲み放題・当日延長料金 */

#bbq .drink{
	width:1000px;
	background-color: #edf7f8;
	border-radius: 20px;
	padding: 30px 40px;
	margin: 100px auto 0;
}
#bbq .drink h3{
  background: url("../images/h3_bg01.png") top 3px left no-repeat;
  background-size: 30px auto;
  font-size: 2.0rem;
  line-height: 1.2;
  padding: 0 0 0 35px;
}
#bbq .drink h3 span{
  font-size: 1.4rem;
  color: #f00;
}
#bbq .drink .fbox{
	display: flex;
	justify-content: space-between;
	margin: 15px 0 20px;
}
#bbq .drink .fbox table{
	
  width:35%;
	border-collapse: collapse;
	border-top:1px solid #003912;
	border-left:1px solid #003912;
}
#bbq .drink .fbox th,
#bbq .drink .fbox td{
  padding: 15px;
	border-right:1px solid #003912;
	border-bottom:1px solid #003912;
}
#bbq .drink .fbox th{
	background-color: #003912;
	color: #fff;
}
#bbq .drink .fbox th span,
#bbq .drink .fbox td span{
  font-size: 12px;
}
#bbq .drink .fbox .menu{
	box-sizing: border-box;
	width:63%;
	border:1px solid #003912;
	padding: 30px 15px 10px;
	position: relative;
}
#bbq .drink .fbox .menu p{
	position: absolute;
	top:-8px;
	width: 100%;
	text-align: center;
}
#bbq .drink .fbox .menu p span{
	display: inline-block;
	background: #edf7f8;
	padding: 0 20px;
}
#bbq .drink .fbox .menu li{
  box-sizing: border-box;
  list-style-type: disc;
  margin:  0 0 5px 8px;
  font-size: 12px;
}
#bbq .drink .fbox .menu .alc{
  border-bottom: 1px solid #ccc;
  padding: 0 0 5px 8px;
	display: flex;
	flex-wrap: wrap;
}
#bbq .drink .fbox .menu .alc li{
  width: calc(33.3% - 8px);
}
#bbq .drink .fbox .menu .soft{
  padding: 5px 0 0 8px;
	display: flex;
	flex-wrap: wrap;
}
#bbq .drink .fbox .menu .soft li{
  width: calc(33.3% - 8px);
}
#bbq .drink ul.square li{
  font-size: 1.3rem;
	line-height: 1.35;
	padding: 0 0 5px 16px;
	position: relative;
}
#bbq .drink ul.square li:before{
	content: '■';
	position: absolute;
	top:0;
	left: 0;
}
#bbq .drink ul.square li span{
  background: #fff000;
}
#bbq .drink .tx01{
	background: #f00;
	color: #fff;
	font-weight: 700;
	padding: 10px;
	text-align: center;
	margin: 15px 0 0;
}

@media screen and ( max-width: 768px ) {
	#bbq .drink{
		width:calc(100% - 30px);
		padding: 15px;
		margin: 50px auto 0;
	}
	#bbq .drink h3 span{
    display: block;
    font-size: 1.3rem;
		line-height: 1.2;
    padding: 5px 0 0;
  }
	#bbq .drink .fbox{
		display: block;
	}
	#bbq .drink .fbox table{
		width:100%;
		margin-bottom: 20px;
	}
	#bbq .drink .fbox .menu{
		width:100%;
	}
  #bbq .drink .fbox .menu .alc li{
    width: calc(50% - 8px);
  }
  #bbq .drink .fbox .menu .soft li{
    width: calc(50% - 8px);
    float: left;
  }
	#bbq .drink .tx01{
		line-height: 1.35;
		text-align: left;
		margin: 10px 0 0;
	}
}

/*----------------------------------------
MENU
----------------------------------------*/

#menu{
	position: relative;
	z-index: 30;
	padding: 100px 0 150px;
}
#menu .pc_img{
	width:1000px;
	margin: 0 auto;
}

@media screen and ( max-width: 768px ) {
	#menu{
		display: none;
	}
}

/*----------------------------------------
gallery
----------------------------------------*/

#gallery{
	padding: 0 0 150px;
  text-align: center;
}
#gallery .carousel_gallery{
  width:930px;
  margin: 0 auto;
  padding-left: 5px;
}

@media screen and ( max-width: 768px ) {
  #gallery{
    width:100%;
    padding: 0 30px 50px;
  }
  #gallery .carousel_gallery{
    width: 300px;
    padding: 0;
		margin-top: 30px;
  }
}

/*----------------------------------------
cancell
----------------------------------------*/

#cancell{
	background: #ebd6c5 url("../images/cancell_bg01.png") top center repeat-x;
	position: relative;
	z-index: 50;
	padding: 128px 0 0;
}
#cancell .pic01{
	width:1000px;
	height: 10px;
	margin: 0 auto;
	position: relative;
}
#cancell .pic01 img{
	position: absolute;
	top:-185px;
	right: 80px;
	z-index: 100;
}
#cancell .text{
	width:1000px;
	margin: 80px auto;
}
#cancell .text h3{
	margin: 0 0 15px;
}
#cancell .text h3 span{
	display: inline-block;
	background-color: #8a3e0c;
	border-radius: 10px;
	padding: 12px 20px;
	color: #fff;
}
#cancell .text h3 span.red{
	background-color: #ba1212;
}
#cancell .text ul.disc{
	padding: 0 0 22px;
}
#cancell .text ul.disc li{
	font-weight: 700;
	line-height: 1.35;
	padding: 0 0 8px 16px;
	position: relative;
}
#cancell .text ul.disc li:before{
	content: '●';
	font-size: 1.0rem;
	position: absolute;
	top:3px;
	left: 2px;
}
#cancell .text ol{
	padding: 0 0 20px 2px;
}
#cancell .text ol li{
	list-style-type: decimal;
	line-height: 1.35;
	margin: 0 0 10px 16px;
}
#cancell .text ol li span{
	font-weight: 700;
}
#cancell .text .tx01{
	line-height: 1.5;
	margin: 0 0 20px;
}
#cancell .text ul.disc2{
	padding: 0 0 20px;
}
#cancell .text ul.disc2 li{
	list-style-type: disc;
	line-height: 1.35;
	margin: 0 0 10px 16px;
	position: relative;
}
#cancell .pic02{
	width:100%;
	height: 57px;
	background: url("../images/cancell_bg02.png") top center no-repeat;
	background-size: cover;
	position: relative;
}
#cancell .pic02 > div{
	width:1000px;
	margin: 0 auto;
	position: relative;
}
#cancell .pic02 > div img{
	position: absolute;
	top:-50px;
	left:10px;
}

@media screen and ( max-width: 768px ) {
	#cancell{
		background-image: none;
		padding: 100px 0 0;
	}
	#cancell .pic01{
		width:100%;
	}
	#cancell .pic01 img{
		width:auto;
		height: 70px;
		top:-100px;
		right: 20px;
	}
	#cancell .text{
		width:100%;
		padding: 0 15px;
		margin: 50px auto 20px;
	}
	#cancell .pic02{
		height: 57px;
		background-image: none;
	}
	#cancell .pic02 > div{
		width:100%;
	}
	#cancell .pic02 > div img{
		width:auto;
		height: 80px;
		position: absolute;
		top:-30px;
		left:30px;
	}
}

/*----------------------------------------
access
----------------------------------------*/

#access{
	background-color: #fef4dd;
	position: relative;
	z-index: 40;
}
#access h2{
	margin: 50px 0;
}
#access ul{
	width:1000px;
	margin: 0 auto;
  padding: 50px 0;
  text-align: left;
}
#access ul li{
  background:url("../images/access_img01.png") top left no-repeat;
	background-size: 25px auto;
  padding-left: 30px;
  font-size: 2.0rem;
  line-height: 1.5;
}
#access ul li:nth-of-type(2){
  background-image: url("../images/access_img02.png");
	line-height: 32px;
	margin-top: 10px;
}

@media screen and ( max-width: 768px ) {
	#access h2{
		margin: 30px 0;
	}
  #access iframe{
    height: 300px;
  }
  #access ul{
		width:100%;
    padding: 20px 10px;
    text-align: left;
  }
  #access ul li{
    font-size: 1.6rem;
		line-height: 1.35;
  }
	#access ul li:nth-of-type(2){
		line-height: 1.35;
	}
}

/*----------------------------------------
link
----------------------------------------*/

#link{
	background-color: #fef4dd;
	position: relative;
	z-index: 40;
	padding: 50px 0 100px;
}
#link h2{
	font-size: 3.2rem;
	margin: 0 0 50px;
}
#link ul{
	width:920px;
	margin: 0 auto;
	display: flex;
	justify-content:space-between;
}
#link ul li{
	width:450px;
}
#link ul li img{
	width:100%;
	height: auto;
}

@media screen and ( max-width: 768px ) {
	#link{
		padding: 30px 10px 20px;
	}
	#link h2{
		font-size: 2rem;
		margin: 0 0 20px;
	}
	#link ul{
		width:100%;
		display: block;
	}
	#link ul li{
		width:100%;
		padding: 0 0 10px;
	}
}

/*----------------------------------------
recipe
----------------------------------------*/

#recipe{
	display: none;
}

@media screen and ( max-width: 768px ) {
	#recipe{
		display: block;
		width:100%;
		background-color: #fef4dd;
		padding: 50px 15px;
	}
	#recipe h2{
		margin: 0 0 40px;
	}
	#recipe ul{
		display: flex;
		flex-wrap: wrap;
	}
	#recipe ul li{
		width:50%;
		margin: 0 0 30px;
	}
	#recipe ul li:nth-of-type(odd){
		padding-right: 5px;
	}
	#recipe ul li:nth-of-type(even){
		padding-left: 5px;
	}
	#recipe ul li a{
		text-decoration: none;
	}
	#recipe ul li img{
		width:100%;
	}
	#recipe ul li p{
		padding: 5px 0 0;
		text-align: center;
		line-height: 1.5;
	}
}


/*----------------------------------------
モーダル
----------------------------------------*/
/*
.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100010;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
}
.modal.is-show {
  opacity: 1;
  visibility: visible;
}
.modal-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 80%;
  max-width: 800px;
  z-index: 2;
}
.modal-inner .pic{
  width:800px;
  margin: 0 auto;
  text-align: center;
}
.close-btn {
  position: absolute;
  right: -25px;
  top: -30px;
  width: 50px;
  height: 50px;
  background: url("../images/modal_close.png");
	background-size: cover;
  cursor: pointer;
}
.black-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.5);
  z-index: 1;
  cursor: pointer;
}

@media screen and ( max-width: 768px ) {
  .modal-inner {
    box-sizing: border-box;
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
	.modal-inner .pic{
		width:100%;
	}
  .modal-inner .pic img{
    width:100%;
  }
  .close-btn{
    right: -10px;
		top: -20px;
		width: 30px;
		height: 30px;
  }
}
*/