@charset "UTF-8";
/*CSS INFOMATION=======================

PC CSS

File name : pc.css
   
====================================*/

@media screen and (min-width: 769px){
body{
	overflow-x: hidden;
}
	
	
a		{
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

a:hover{
	-moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


img { -ms-interpolation-mode: bicubic; }


.spBox{
	display:none;
}

/*
 * プログレス表示
 */

.progress {
	background:#000;
    color: rgb(255, 255, 255);
    height: 100%;
    position:fixed;
	overflow:hidden;
    width: 100%;
	top:0;
	z-index:9999;
}
.progress-bar { 
    border-top: 1px solid rgb(160, 160, 160);
    position: absolute;
    top:50%;
    width: 0%;
	display:none;
}
.progress-text {
    font-size:12px;
	line-height:12px;
	font-family: 'Poppins', sans-serif;
	position:absolute;
	text-align:center;
	top:50%;
	left:50%;
	margin:15px 0 0 -12px;
	color:#fff;
}
.progress-complete .progress-bar {
    border-top-color: rgb(255, 255, 255);
}


#opening{
	font-size:12px;
	line-height:12px;
	font-family: 'Poppins', sans-serif;
	color:#fff;
	position:absolute;
	top:50%;
	left:50%;
	text-align:center;
	width:300px;
	margin:-5px 0 0 -150px;
}


.loader {
  font-size: 10px;
  margin:-50px auto;
  top:50%;
  text-indent: -9999em;
  width: 11em;
  height: 11em;
  border-radius: 50%;
  background: #fff;
  background: -moz-linear-gradient(left, #fff 10%, rgba(255, 255, 255, 0) 42%);
  background: -webkit-linear-gradient(left, #fff 10%, rgba(255, 255, 255, 0) 42%);
  background: -o-linear-gradient(left, #fff 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(left, #fff 10%, rgba(255, 255, 255, 0) 42%);
  background: linear-gradient(to right, #fff 10%, rgba(255, 255, 255, 0) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.loader:before {
  width: 50%;
  height: 50%;
  background: #fff;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}
.loader:after {
  background: #000;
  width: 95%;
  height: 95%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}





#container{
	line-height:1.8;


	
}




header{
	position:relative;
	z-index:9995;
	position:fixed;
	height:60px;
	width:100%;
	top:0;
	/*box-shadow: 0 0 3px rgba(0,0,0,.2);
	box-shadow:0px 1px 3px 1px #555;
-moz-box-shadow:0px 1px 3px 1px #555;
-webkit-box-shadow:0px 1px 3px 1px #555;*/
}



h1{
	position:absolute;
	top:3px;
	left:50%;
	color:#fff;
	width:300px;
	margin:0 0 0 -165px;
	text-align:center;
	font-family: 'Poppins', sans-serif;
	
}

h1 a{
	font-size:26px;
	text-decoration:none;
}

h1 img{
	width:100%;
	height:auto;
}



h2{
	text-align:center;
	font-size:40px;
	padding:120px 0 40px;
	margin:0 0px;
	line-height:45px;
	color:#000;
	font-weight:bold;

}

#newsB h2{
	text-align:center;
	font-size:40px;
	padding:40px 0 40px !important;
	margin:0 0px;
	line-height:45px;
	color:#000;
	font-weight:bold;

}


h3{
	font-size:22px;
	font-weight:bold;
	padding:0 0;
}
	
h4{
	font-size:18px;
	font-weight:bold;
	padding:0 0 15px;
}	

nav ul{
	margin:0 13px;
	border-top:1px solid #ddd;
}
nav ul li{
	padding:14px 8px 13px!important;
	color:#fff;
	border-bottom:1px solid #ddd;
	line-height:1.0;
}

nav ul li a{
	font-family:"Talking";
	text-decoration:none;
	font-size:16px;
	display:block;
	width:100%;
	
}

nav ul li a:hover{
	color:#666;
	-moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
	
}





p{
	margin:0 0 20px;
}




#scroll{
	margin:0;
	display:none;
	position:absolute;
	left:50%;
	bottom:50px;
	margin:0 0 0 -27px;
	z-index:999;
}

footer{
	padding:100px 0 30px;
	font-size:11px;
	overflow:hidden;
	background:#fff;
}



.pageTop a{
	text-align:center;
	padding:0 0 30px;
	font-size:25px;
	color:#fff;
	display:block;
}


.pageTop a:hover{
	color:#666;
	-moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}


.pager{
	position:relative;
	width:60px;
	height:50px;
	margin:0 auto;
}


.pager .next{
	position:absolute;
	top:0;
	right:-70px;
}

.pager .prev{
	position:absolute;
	top:0;
	left:70px;
}


#topcontrol{
	padding:10px;
	z-index:100;
}

.summerTime02 a{
pointer-events: none;
}


/*

header
-----------------------------------*/


.snsBox{
	color:#fff;
	font-size:30px;
	margin:10px 13px 0;
	padding:0 0 0 8px; 
}

.snsBox a{
	color:#000;
	font-size:25px;
	margin:0 10px 0 0;
	float:left;
	-moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}


.snsBox a:hover{
	filter:alpha(opacity=100);
    -moz-opacity: 1.0;
    opacity: 1.0; 
	
}





/*

section
-----------------------------------*/
section{
	padding:50px 0;
	background:#fff;
}



/* home */
#home{
	/*background:url(../img/bg.jpg) top center no-repeat;
	background-size:cover;*/
	position:relative;
	height:auto;
	overflow:hidden;
}


#home video {
	position:absolute;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	margin:0 0 0;
	z-index:0;
}



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


.openTime{
	position:absolute;
	right:120px;
	bottom:0px;
	z-index:10;
}

	
.summerTime{
	position:absolute;
	right:140px;
	bottom:30px;
	z-index:10;
}
	
.summerTime02{
	position:absolute;
	right:140px;
	bottom:30px;
	z-index:10;
}	
	


.logo{
	width:702px;
	height:341px;
	position:absolute;
	top:50%;
	left:50%;
	margin:-190px 0 0 -351px;
}

h2.ttl-a{
	text-align:center;
	font-size:40px;
	padding:80px 0;
	margin:0 0px;
	line-height:40px;
	color:#000;
	font-weight:bold;

}

h2.ttl-b{
	text-align:center;
	font-size:40px;
	padding:65px 0 0;
	margin:0 0px;
	line-height:40px;
	color:#000;
	font-weight:bold;

}


.ttl-c{
	text-align:center;
	font-size:30px;
	padding:70px 0 20px;
	margin:0 0px;
	line-height:30px;
	color:#000;
	font-weight:bold;
}


.ttl-d{
	font-size:20px;
	margin:50px 0 20px !important;
	padding:0 0 0 15px;
	margin:0 0px;
	line-height:20px;
	color:#000;
	font-weight:bold;
	border-left:5px solid #000;
}



#home p{
	font-size:22px;
	font-weight:bold;
}


/* walk */

#walk p{
	font-size:22px;
	font-weight:bold;
}

.photoBox{
	width:960px;
	margin:0 auto 50px;
	text-align:left;
}

.photoList{
	padding:0;
}

.photoList img{
	width:33.3%;
	height:auto;
}

.photospace{
	padding:0;
}


/* shop */

.photoBoxB{
	width:960px;
	margin:30px auto 50px;
	text-align:left;
}


/* news */
.detailBox{
	width:960px;
	margin:0 auto;
	padding:30px 0 0;
	border-top:1px solid #ccc;
	text-align:left;
}

.detailBox .imgBox{
	padding:0 0 30px;
}


.detailBox h3{
	font-size:30px;
}

.detailBox p{
	padding:0 50px0 0 0;
	font-size:16px;
}

.btnArea{
	padding:20px 0 50px;
	clear:both;
}

.day{
	font-size:12px;
}

/* realestate */

#realestate p{
	font-size:22px;
	font-weight:bold;
}

/* post */

#post p{
	font-size:22px;
	font-weight:bold;
}


/* access */
#access p{
	font-size:22px;
	font-weight:bold;
}


.map{
	width:1000px;
	height:450px;
	margin:10px auto 0;
}





/* contact */

#contact p{
	font-size:30px;
	font-weight:bold;
	margin:-20px 0 0;
}

#contact a{
	text-decoration:none;
}

#contact a:hover{
	
}



.txtB{
	font-size:22px !important;
	font-weight:bold;
	margin:0 0 20px;
}

.box-mart{
	overflow:hidden;
	margin:0 0 20px;
}


/*

btn
-----------------------------------*/


.buttonA a{
    margin:0 auto;
	padding:10px 0;
    width: 300px;
	color:#fff;
	display:block;
    text-align: center;
	background:#000 url(../img/btnNext.png) center right 10px no-repeat;
	background-size:12px 12px;
	text-decoration:none;
	border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
	font-size:16px;
}

.buttonA a:hover {
    background:#555 url(../img/btnNext.png) center right 10px no-repeat;
	background-size:12px 12px;
	-moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}




.btnArea{
	padding:40px 0 0;
}

	#js-instalib{
		width: 980px;
		margin: 0 auto;
	}

	#js-instalib li{
		width:307px;
		height: 307px;
		margin: 0 1% 2%;
		float: left;
		overflow: hidden;
		text-align: center;
	}
	
	#js-instalib li img{
		width: auto;
		height:307px;
	}
	

/*

list
-----------------------------------*/
.listA{
	width:960px;
	margin:0 auto;
	border-top:1px solid #ccc;
}


.listA li{
	border-bottom:1px solid #ccc;
	padding:20px 0;
	overflow:hidden;
}

.listA li p{
	padding:20px 0 0;
	font-size:16px;
}


.listB{
	width:980px;
	margin:0px auto 0;
	overflow:hidden;
}

.listB li{
	width:31.3%;
	float:left;
	text-align:left;
	margin:30px 1% 0;
}

.listB li .shop-ttl{
	font-size:18px;
	font-weight:bold;
	text-align:center;
}

.listB li .shop-img{
	padding:0 0 0;
	border:1px solid #ddd;
	margin:0 0 10px;
}


.listB li .shop-img a:hover{
	text-decoration:none;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
	-moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}




.listC{
	border-top:1px solid #ccc;
	border-bottom:1px solid #ccc;
	padding:20px 0;
}
	
.listC li{
	list-style:disc;
	margin:0 0 0 20px;
}


.listD{
	width:980px;
	margin:50px auto 0;
	overflow:hidden;
}

.listD li{
	width:31.3%;
	float:left;
	text-align:left;
	margin:0 1% 2%;
}


.listE li{
	list-style:disc;
	margin:0 0 0 20px;
	font-size:16px !important;
}



.snsBoxB{
	padding:20px 0 ;
}

.snsBoxB ul li{
	float:left;
	padding:0 8px 0 0;
	height:20px;
}

p.txtA{
	font-size:18px;
}

.fb_iframe_widget > span {
  vertical-align: baseline !important;
}


.listB video {
	width: 100%;
	height: auto;
	}


.movie-ttl{
	font-size:18px;
	font-weight:bold;
	text-align:center;
}	
	
/*

shop
-----------------------------------*/

.shopMain{
	padding:15px 0 20px;
}

.shopBox h3{
	padding:0 0 3px;
	margin:0 0 15px;
	font-size:24px;
	border-bottom:1px solid #e3e1d9;
	clear:both;
}

.shopBox p{
	padding:0 0 20px;
}





/*

float
-----------------------------------*/
.leftBoxA{
	width:15%;
	float:left;
	text-align:left;
	font-size:18px;
}

.rightBoxA{
	width:82%;
	float:right;
	text-align:left;
	font-size:18px;
}

.rightBoxA a{
	text-decoration:none;
}



.leftBoxB{
	width:30%;
	float:left;
}

.rightBoxB{
	width:65%;
	float:right;
	text-align:left;
}


.leftBoxC{
	width:20%;
	float:left;
}

.leftBoxC{
	border:1px solid #ddd;
}

.leftBoxC img{
	width:100%;
	height:auto;
}

.rightBoxC{
	width:76%;
	float:right;
	background:#fff;
}




.sakka{
	padding:50px 0 0;
	text-align:left;
}

.sakka h3{
	font-size:20px;
	margin:0 0 20px;
}

.ttl-sakka{
	font-size:18px;
	text-align:left;
	margin:0 0 30px;
	font-weight:bold;
}

.movieList{
	width:980px;
	margin:0px auto 0;
	overflow:hidden;
}	
	

	.movieList li{
		width: 48%;
		margin: 0 1% 2%;
		float: left;
	}


.movieList li iframe{
	width: 100%;
	height: 300px;
	}




/*

aside
------------------*/


main {
    text-align: center;
	width:100%;
	margin:0 -120px 0 0;
	float:right;
}
aside{
    box-sizing: border-box;
    width:240px;
    height: 100%;
    padding: 30px 15px 15px;
    background:#f9f8f4;
	float:left;
	position:fixed;
	}

.sidebarLogo{
	width:143px;
	margin:0 auto 30px;
}



figure {
    max-width: 320px;
    margin: 20px auto;
}
figure img {
    max-width: 100%;
    margin-bottom: 10px;
}
a#menuButton {
    display: block;
    width:45px;
    height:53px;
	background:url(../img/menu.png);
	background-size:45px 53px;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index:99;
	-moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
	display:none;
}

a#menuButton.active {
    display: block;
    width:45px;
    height:53px;
	background:url(../img/menu_open.png);
	background-size:45px 53px;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index:99;
	-moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

/*
#menuButton span {
    display: block;
    background: #000;
    width: 40px;
    height: 2px;
    position: absolute;
    left: 9px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

#menuButton span:first-child {
    top: 12px;
}
#menuButton span:nth-child(2) {
    margin-top: -1px;
    top: 50%;
}
#menuButton span:last-child {
    bottom: 12px;
}
#menuButton.active span:first-child {
    -webkit-transform: translateY(12px) rotate(45deg);
    -moz-transform: translateY(12px) rotate(45deg);
    -ms-transform: translateY(12px) rotate(45deg);
    transform: translateY(12px) rotate(45deg);
}
#menuButton.active span:nth-child(2) {
    opacity: 0;
}
#menuButton.active span:last-child {
    -webkit-transform: translateY(-12px) rotate(-45deg);
    -moz-transform: translateY(-12px) rotate(-45deg);
    -ms-transform: translateY(-12px) rotate(-45deg);
    transform: translateY(-12px) rotate(-45deg);
}
*/










.fuwatAnime {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1.5s;
 -ms-animation-duration:1.5s;
 animation-duration:1.5s;
 -webkit-animation-name: fuwatAnime;
 -ms-animation-name: fuwatAnime;
 animation-name: fuwatAnime;
 visibility: visible !important;
}
@-webkit-keyframes fuwatAnime {
 0% { opacity: 0; -webkit-transform: translateY(-20px); }
 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fuwatAnime {
 0% { opacity: 0; -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); }
 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}


#scrollbtn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin: 0 0 0 -15px;
}

	
#scrollbtn a {
	height: 90px;
  padding-top:100px;
	color: #fff !important; 
	text-decoration: none;
}
	
#scrollbtn a:hover{
	text-decoration:none;
	filter:alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
	-moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
	}

#scrollbtn a span {
  position: absolute;
  top: -50px;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}
	

#scrollbtn a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  box-sizing: border-box;
}
	
}