/*!
 * fullPage 2.9.4
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */
html.fp-enabled,
.fp-enabled body {
    margin: 0;
    padding: 0;
    overflow:hidden;

    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

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







body{
	font: 16px/1.9 'Noto Sans JP', Arial, Verdana, 游ゴシック, YuGothic,'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', メイリオ, Meiryo,sans-serif;
	font-weight: 300;
	-webkit-text-size-adjust:100%;
	overflow-x: hidden;
	color: #fff;
}

#superContainer {
    height: 100%;
    position: relative;

    /* Touch detection for Windows 8 */
    -ms-touch-action: none;

    /* IE 11 on Windows Phone 8.1*/
    touch-action: none;
}
.fp-section {
    position: relative;
    -webkit-box-sizing: border-box; /* Safari<=5 Android<=3 */
    -moz-box-sizing: border-box; /* <=28 */
    box-sizing: border-box;
	text-align: center;
}
.fp-slide {
    float: left;
}
.fp-slide, .fp-slidesContainer {
    height: 100%;
    display: block;
}
.fp-slides {
    z-index:1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out; /* Safari<=6 Android<=4.3 */
    transition: all 0.3s ease-out;
}
.fp-section.fp-table, .fp-slide.fp-table {
    display: table;
    table-layout:fixed;
    width: 100%;
}
.fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}
.fp-slidesContainer {
    float: left;
    position: relative;
}
.fp-controlArrow {
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.fp-controlArrow.fp-prev {
    left: 5px;
	opacity: 0.3;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #fff transparent transparent;
}
.fp-controlArrow.fp-next {
    right: 5px;
	opacity: 0.3;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #fff;
}
.fp-scrollable {
    overflow: hidden;
    position: relative;
}
.fp-scroller{
    overflow: hidden;
}
.iScrollIndicator{
    border: 0 !important;
}
.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important;
}
#fp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
}
#fp-nav.right {
    right: 17px;
}
#fp-nav.left {
    left: 17px;
}
.fp-slidesNav{
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.fp-slidesNav.bottom {
    bottom: 17px;
}
.fp-slidesNav.top {
    top: 17px;
}
#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0;
}
#fp-nav ul li,
.fp-slidesNav ul li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position:relative;
}
.fp-slidesNav ul li {
    display: inline-block;
}
#fp-nav ul li a,
.fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span{
    height: 12px;
    width: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 100%;
 }
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    height: 4px;
    width: 4px;
    border: 0;
    background: #333;
    left: 50%;
    top: 50%;
    margin: -2px 0 0 -2px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span{
    width: 10px;
    height: 10px;
    margin: -5px 0px 0px -5px;
}
#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -2px;
    color: #fff;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
    cursor: pointer;
}
#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
}
#fp-nav ul li .fp-tooltip.right {
    right: 20px;
}
#fp-nav ul li .fp-tooltip.left {
    left: 20px;
}
.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell{
    height: auto !important;
}

.fp-responsive .fp-auto-height-responsive.fp-section,
.fp-responsive .fp-auto-height-responsive .fp-slide,
.fp-responsive .fp-auto-height-responsive .fp-tableCell {
    height: auto !important;
}

.text{
	position: relative;
	width: 80%;
	background-color: rgba(0,0,0,0.5) ;
	display: inline-block;
	text-align: left;
	z-index: 10000;
	text-shadow: 3px 3px 5px #000;
	padding: 5px 15px;
	
}



.img{
	position: relative;
	z-index: 10000;
}




/* 縦書き
------------------------------------------------------------*/






/* リンク設定
------------------------------------------------------------*/
a{color:#ffff00;text-decoration:none;}
a:hover{color:#ffff00;}
a:active, a:focus {outline:0;}

a.alpha:link img { opacity: 0.8; }
a.alpha:visited img { opacity: 0.8; }
a.alpha:hover img{
/*モダンブラウザ用*/
opacity:1.0;
/*IE7以下用*/
filter:alpha(opacity=100);
/*IE8用*/
-ms-filter:"alpha(opacity=100)";
}




.innerS{
	width: 80%;
	margin: 0 auto;
	padding-bottom: 40px;
	position: relative;
	z-index: 10000;
}


.ggmap {
position: relative;
padding-bottom: 45%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
}



@media only screen and (max-width: 640px){
	.innerS{
		width: 90%;
	}

	#map iframe{
		width: 80% !important;
	    height: 200px;
		left: 2%;
	}
	
}


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



.frame {
display: inline-block;
position: relative;
}

.frame:after { /* この要素が内向きのシャドウを写真に落とす */
position: absolute;
display: block;
content: "";
top: 0;
left: 0;
width: 100%;
height: 100%;
box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.95),
inset 0 0 100px rgba(0, 0, 0, 0.95),
inset 0 0 100px rgba(0, 0, 0, 0.95);
}





.cb-slideshow,
.cb-slideshow:after {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 1;
}



.cb-slideshow li span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 1;
    animation: imageAnimation 36s linear infinite 0s;
}


ul {
  list-style:none;
}


.cb-slideshow li:nth-child(1) span {
    background-image: url(../img/home1.jpg);
}
.cb-slideshow li:nth-child(2) span {
    background-image: url(../img/home2.jpg);
    animation-delay: 6s;
}
.cb-slideshow li:nth-child(3) span {
    background-image: url(../img/home3.jpg);
    animation-delay: 12s;
}
.cb-slideshow li:nth-child(4) span {
    background-image: url(../img/home4.jpg);
    animation-delay: 18s;
}
.cb-slideshow li:nth-child(5) span {
    background-image: url(../img/home5.jpg);
    animation-delay: 24s;
}
.cb-slideshow li:nth-child(6) span {
    background-image: url(../img/home6.jpg);
    animation-delay: 30s;
}
 
.cb-slideshow li:nth-child(7) span {
    background-image: url(../img/home7.jpg);
    animation-delay: 30s;
}



@keyframes imageAnimation {
    0% { opacity: 0; animation-timing-function: ease-in; }
    8% { opacity: 1; animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}



.no-cssanimations .cb-slideshow li span{
    opacity: 1;
}



@media screen and (max-width: 1140px) {
    .cb-slideshow li div h3 { font-size: 140px }
}
@media screen and (max-width: 600px) {
    .cb-slideshow li div h3 { font-size: 80px }
	body {font-size: 10px}
}









/* フローティングメニュー
------------------------------------------------------------*/


#menu li {
    display:inline-block;
    margin: 5px 0px 5px 10px;
    color: #fff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
#menu li.active{
    background:#000;
    background: rgba(255,255,255, 0.3);
    color: #f00;
}
#menu li a{
    text-decoration:none;
    color: #fff;
}
#menu li.active a:hover{
    color: #fff;
}
#menu li:hover{
    background: rgba(255,255,255, 0.6);
}
#menu li a,
#menu li.active a{
    padding: 10px 5px;
    display:block;
}
#menu li.active a{
    color: #fff;
}
#menu{
    position:fixed;
	text-align: center;
    top:0;
    left:0;
    height: 60px;
    z-index: 70;
    width: 100%;
    padding: 0;
    margin:0;
	background: rgba(0,0,0, 0.5);
}


#cb-header a{color:#fff; text-decoration: none;}
#cb-header a:hover{color:#fff000; text-decoration: none;}

a:active, a:focus,input:active, input:focus{outline:0;}



/*************
テーブル
*************/
table.table{
border-collapse:collapse;
margin:5px auto 15px auto;
text-shadow: 3px 3px 5px #000;  
}

table.table td{
border-collapse:collapse;
text-align:left;
text-decoration: none;
padding:8px;
border-bottom:1px solid #D4D4D4;
line-height:20px;
text-shadow: 3px 3px 5px #000;  
}

table.table th{
text-align:center;
padding:8px;
white-space:nowrap;
text-decoration:none; 
border-bottom:1px solid #D4D4D4;
font-weight:normal;
letter-spacing:1px;
background-repeat:repeat-x;
background-position:top;
text-shadow: 3px 3px 5px #000;  
}





@charset "UTF-8";


.p10 {
  padding: 0 10px;
  margin-bottom: 15px;
}

.box100 {
  width: 100%;
}
 

 
.width100 {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
 
.width100 {
  width: 100%;
  height: 40px;
  font-size: 15px;
  padding: 5px;
}
 


.width100textarea {
	width: 100%;
	height: 120px;
	font-size: 15px;
    padding: 5px;
}





input#submit_button {
	-webkit-appearance: button;
	    padding: 20px 50px;
}










/* Preload images */
body:after {
  content: url(../img/close.png) url(../img/loading.gif) url(../img/prev.png) url(../img/next.png);
  display: none;
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;

  /* Image border */
  border: 4px solid #000;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../img/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../img/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../img/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #fff;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../img/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}




/* ＴＯＰ以外の背景
------------------------------------------------------------*/

	#section2{
		background-image: url(../img/bg.png);
		padding: 6% 0 0 0;
		background-repeat: no-repeat;
		background-position: 50% 0%;
		z-index: 10;
	}


	#section-tempo1{
		background-image: url(../img/bg-tempo.png);
		padding: 0;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		z-index: 10;
		box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.95),
        inset 0 0 100px rgba(0, 0, 0, 0.95),
        inset 0 0 100px rgba(0, 0, 0, 0.95);
	}

	#section-tempo2{
		background-image: url(../img/bg-tempo2.png);
		padding: 0;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		z-index: 10;
		box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.95),
        inset 0 0 100px rgba(0, 0, 0, 0.95),
        inset 0 0 100px rgba(0, 0, 0, 0.95);
	}

	#section-tempo3{
		background-image: url(../img/bg-tempo3.png);
		padding: 0;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		z-index: 10;
		box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.95),
        inset 0 0 100px rgba(0, 0, 0, 0.95),
        inset 0 0 100px rgba(0, 0, 0, 0.95);
	}

	#section-cook{
		background-image: url(../img/bg-cook.png);
		padding: 0;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		z-index: 10;
		box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.95),
        inset 0 0 100px rgba(0, 0, 0, 0.95),
        inset 0 0 100px rgba(0, 0, 0, 0.95);
	}


#section-cook2{
		background-image: url(../img/bg-cook2.png);
		padding: 0;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		z-index: 10;
		box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.95),
        inset 0 0 100px rgba(0, 0, 0, 0.95),
        inset 0 0 100px rgba(0, 0, 0, 0.95);
	}


#section-contact{
		background-image: url(../img/bg-contact.png);
		padding: 0;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		z-index: 10;
		box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.95),
        inset 0 0 100px rgba(0, 0, 0, 0.95),
        inset 0 0 100px rgba(0, 0, 0, 0.95);
	}


#section-map{
		background-image: url(../img/bg-map.png);
		padding: 0;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		z-index: 10;
		box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.95),
        inset 0 0 100px rgba(0, 0, 0, 0.95),
        inset 0 0 100px rgba(0, 0, 0, 0.95);
	}