@charset "utf-8";

/*
@media screen and (max-width: 599px){} phone-only
@media screen and (min-width: 600px){} tablet-portrait-up
@media screen and (min-width: 900px){} tablet-landscape-up
@media screen and (min-width: 1200px){} desktop-up
@media screen and (min-width: 1800px){} big-desktop-up
*/

:root {
	--key-font-color:#fff;
	--key-font-link-color:#fff;
	--key-font-hover-color:#D45623;
	--key-font-reverse-color:#D45623;
}
/*
var(--key-******)
calc(var(--common-******) * 1.5)
*/

/* Layout */

.wrap{
	width: 100%;
	height: auto;
	margin-bottom: 65px;
	background: none;
}

.wrap::before {
	filter: blur(5px);
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	-webkit-transform: translate3d(0, 0, -10px);
	transform: translate3d(0, 0, -10px);
	width: 100%;
	height: 100vh;
	background: url("../img/bg.jpg") center/cover no-repeat;
	-webkit-background-size: cover;
}


@media screen and (min-width: 1200px){
	.wrap{ margin-bottom: 0; }
}

#global-header{
	width: 100%;
	height: 65px;
	background: rgba(43, 28, 19, 0.8);
	position: relative;
	z-index: 9999;
	margin-bottom: 0;
}

#global-header ul{
	height: 65px;
	display: flex;
	align-items:center;
	align-content:center;
	padding: 0 1.0rem;	
}

#global-header ul li{
	list-style-type: none;
	text-align: center;
	font-family: 'Bitter', sans-serif;
	font-weight: 700;
	font-size: 18px;
	height: 18px;
	line-height: 18px;
}

#global-header ul li:first-child{
	width: 180px;
	height: 105px;
	line-height: 105px;
	background-color: #D45623;
	border-radius: 0px 0px 6px 6px;
	margin-right: auto;
}

#global-header ul li:first-child a{ color: #fff; }

#global-header ul li + li {
	border-left: 1px dashed #fff;
	margin-left: 1.0rem;
	padding-left: 1.0rem;
}

#global-header ul li:nth-child(2){ border-left:none; }

#global-header ul li img{
	width: 75%;
	margin: 0 auto;
	padding-top: 26px;
}

@media screen and (min-width: 1200px){
	#global-header{
		margin-bottom: 40px;
	}
}

main{
	width: 100%;
	margin: 0 auto;
	position: relative;
}

@keyframes mimg {
	40% { background-image: url("../img/mimg04.jpg"); }
	50% { background-image: url("../img/mimg03.jpg"); }
	90% { background-image: url("../img/mimg03.jpg"); }
	100% { background-image: url("../img/mimg04.jpg"); }
}

.contener{		
	margin: 0 auto;
	padding: 0;
}

.contener .mainimage {
	width: 100%;
	padding-bottom: 100%;
	background: url("../img/mimg04.jpg") center/cover no-repeat;
	animation: mimg 12s infinite;
}

@media screen and (min-width: 1200px){
	main{
		max-width: 1080px;
		margin-bottom: 50px;
	}
}

#bbq_btn{
	margin: -4px auto;
	padding: 10px 0;
	text-align: center;
	background-color: #D45623;
}

@media screen and (min-width: 1200px){
	#bbq_btn{
		margin: 50px auto;
	}
}

main a:hover{
	color: #fff;
}

aside{
	width: 100%;
	position: fixed;
	bottom:0;
	z-index: 9999;
}

aside ul{
	width: 100%;
	display: flex;
	justify-content: space-between;
	background-color: #D45623;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 18px;
}

aside ul li,
aside ul li a{
	height: 65px;
	list-style-type: none;
	text-align: center;
	display: flex;
	align-items:center;
}
aside ul li:first-child,
aside ul li:last-child{
	width: 65px;
}

@media screen and (min-width: 1200px){
	aside{ display: none; }
}

#global-footer{
	width: 100%;
	margin-top: -4px;
	background: rgba(43, 28, 19, 0.9);
	position: relative;
	padding: 20px;
}

@media screen and (min-width: 1200px){
	#global-footer{
		max-width: 1080px;
		margin: 0 auto;
		margin-top: 0;
		padding: 30px;
	}
}

.outlinedata{
	display:block;
	margin-bottom: 50px;
}

.data{
	margin-bottom: 30px;
}

@media screen and (min-width: 1200px){
	.outlinedata{
		display: flex;
		justify-content: space-between;
		margin-bottom: 100px;
	}
	.data{ margin-bottom: 0; }
	.data,
	.map{ width: 50%; }
}

.data h1, .data h2{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
}
.data h1{ font-size: 24px; }
.data h2{ font-size: 18px; }
.data p{
	font-size: 14px;
	margin-bottom: 20px;
}

.map-box{
	width: 100%;
	position : relative;
 	height: 0; 
	padding-bottom : 100%;
	overflow : hidden;
}

.map-box iframe,
.map-box object,
.map-box embed{
 	position : absolute; 
	top : 0;
	right : 0;
	width : 100%; 
	height : 100%; 
}

.footer-navi{
	display:block;
	margin-bottom: 30px;
}
.footer-navi li{
	width: 100%;
	list-style: none;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 18px;
	border-bottom: solid 2px #fff;
}

.footer-navi li a {	padding: 10px 0; display: block; width: 100%; height: 100%; }
.footer-navi li a:hover{ color:var(--key-font-color); background-color: var(--key-font-reverse-color); }

.footer-navi li span{
	font-size:x-small;
}

@media screen and (min-width: 1200px){
	.footer-navi{
		display: flex;
		justify-content: space-between;
	}
	.footer-navi li{
		flex-grow: 1;
	}
	.footer-navi li + li{
		margin-left: 30px;
	}
}

.contact{
	text-align: center;
	margin-bottom: 40px;
}
.contact h1{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 18px;
}
.contact h1 span{ font-size:x-small; }
.contact .tell{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 36px;
	line-height: 36px;
	margin-bottom: 10px;
}
.contact .mail{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 20px;
	margin-bottom: 10px;
}
.contact p{
	margin-bottom: 10px;
}

@media screen and (min-width: 1200px){
	.contact .tell{
		font-size: 50px;
		line-height: 50px;
	}
	.contact .mail{
		font-size: 30px;
		line-height: 30px;
	}
}




/* Footer Locations
---------------------------- */
.footer-locations {
  background: #000;
  margin-bottom: 30px;
}
.footer-locations-inner:after {
  content: "";
  display: block;
  clear: both;
}
.footer-locations li {
  width: 25%;
  float: left;
  position: relative;
  list-style: none;
}
.footer-locations a {
  display: block;
  overflow: hidden;
  position: relative;
}
.footer-locations a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 2;
}
.footer-locations a:hover:before {
  opacity: 0;
}
.footer-locations p {
  text-align: center;
  line-height: 1;
  font-family: 'Noto Sans JP', Helvetica, sans-serif;
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.footer-locations a:hover p {
  opacity: 0;
}
.footer-locations p em {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
  font-size: 24px;
}
.footer-locations img {
  display: block;
  max-width: none;
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.footer-locations a:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.footer-locations img {
    height: auto;
    outline: none;
    vertical-align: top;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-shadow: none;
}

@media screen and (max-width: 800px) {
  .footer-locations li {
    width: 50%;
  }
  .footer-locations p {
    font-size: 10px;
  }
  .footer-locations p em {
    margin-bottom: 5px;
    font-size: 17px;
  }
}

.copy{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	text-align: center;
	font-size: 10px;
}


/* guidepage */

.guidepage main{
	width: 100%;
    background: rgba(43, 28, 19, 0.9);
    position: relative;
	margin: 50px auto;
    padding: 20px;
}	

@media screen and (min-width: 768px){
	.guidepage h1 {
		font-size: 2.4rem;
	}
	.guidepage h2 {
		font-size: 1.8rem;
	}
	.guidepage h3 {
		font-size: 1.6rem;
	}
}

.guidepage h3 {
	margin-bottom: 30px;
}



.guide-text{
	margin-bottom: 20px;
}

.guide-text p{
	font-size: 14px;
}