s@charset "UTF-8";
/*--------------------
base
---------------------*/
@font-face{
	font-style: :normal;
	font-weight: 400;
	src:
	local("Noto Sans CJK JP"),
	url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-regular.woff2) format('woff2').
	url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-regular.woff) format('woff').
	url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-regular.otf) format('opentype');
}

html{
	font-size: 62.5%;/*16px×62.5%=10px*/
}
img{
	max-width: 100%;
	height: auto;
}
body{
	color: #595757;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.6rem;
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	background-image: url(../images/common/backgrund-image.JPG);
}
a{
	color: #595757;
	text-decoration: none;
}

.text-center{
	text-align: center;
}
.text-left{
	text-align: left;
	/*margin: 0 0 0 55px;*/
}
.text-right{
	text-align: right;
	/*margin: 0 55px 0 0;*/
}
.room{
	background-image: url(../images/common/backgrund-image3.png);

}
/*---------------------
 *
 *header
 *
 ---------------------*/
header.fix{
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	background-color: #fff;
	animation: nyuru 0.5s;
	
}
.header-fix{
	position: fixed;
	top: 0;
	left: 0;
	background-color: #fff;
	width: 100%;
	border-bottom: 1px solid #CCCCCC;
	z-index: 120;
}
@keyframes nyuru{
	0%{
		margin-top: -69px;
	}
	100%{
		margin-top: 0;
	}
}
.inner{
    max-width: 1140px;
	width: 90%;
    margin:0 auto;
    padding: 0;
	margin-top: 7px;
	margin-bottom: 5px;
}
 .header-inner{
    display: flex;
    -webkit-display: flex;
    box-sizing: border-box;
	align-items: center
}

.header{
	position: static;
	height: 60px;
	background-color: #fff;
	border-bottom: 1px solid #e2dede;
	margin: 0 auto;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s; 
}
.color-red{
	color: #FF0004;
}

.site-title{
	width: 10%;
	margin-right: auto;
}

.br-pc{
	display: block;
}
.br-sp{
	display: none;
}


/*---------------------
 *
 *heroimage
 *
 ---------------------*/

.hero {
	width: 100%;
	height: 52.65vw;
	overflow: hidden;


}
.hero-list { 
    position: relative;
	display: block;
	display: -webkit-block;
	margin: 0 auto;

}
.hero-item{
	height: auto;
	width: 100vw;
}

.hero-item img { 
    animation: show 20s infinite;
    -webkit-animation: show 20s infinite;
    opacity: 0;
    position: absolute; /*画像を全て重ねる*/
	height: auto;
	width: 100%;
	margin-top: -150px;

}

/*アニメーション*/

@keyframes show {
     0% {opacity:0}
    15% {opacity:1}
   	85% {opacity:1}
    100% {opacity:0}
 }

@-webkit-keyframes show {
    0% {opacity:0}
    30% {opacity:1}
    70% {opacity:1}
    100% {opacity:0}
}

/*各画像のアニメーションの開始時間をずらす*/

.hero-list .hero-item:nth-child(1) img{
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
}

.hero-list .hero-item:nth-child(2) img{
    animation-delay: 4s;
    -webkit-animation-delay: 4s;
}

.hero-list .hero-item:nth-child(3) img{
    animation-delay: 8s;
    -webkit-animation-delay: 8s;
}
.hero-list .hero-item:nth-child(4) img{
    animation-delay: 12s;
    -webkit-animation-delay: 12s;
}
.hero-list .hero-item:nth-child(5) img{
    animation-delay: 16s;
    -webkit-animation-delay: 16s;
}
.hero-list .hero-item:nth-child(6) img{
    animation-delay: 20s;
    -webkit-animation-delay: 20s;
}
/*.hero-list .hero-item:nth-child(7) img{
    animation-delay: 19s;
    -webkit-animation-delay: 19s;
}*/

.hero .logo{
    position: absolute;
    top:40%;
    left:50%;
    z-index: 100;
    width:250px;
    height: 200px;
    -webkit-transform:translate3d(-50%,-50%,0);
    -moz-transform:translate3d(-50%,-50%,0);
    -ms-transform:translate3d(-50%,-50%,0);
    -o-transform:translate3d(-50%,-50%,0);
}


/*---------------------
 *
 *navigation
 *
 ---------------------*/
.btn-trigger{
	-webkit-appearance: none;
	appearance: none;
	display: none;
}
.nav-list{
	display: flex;
	display: -webkit-flex;
}
.nav-item{
	padding-left: 27px;
	margin: 0 auto;
}
.lang-list-sp{
	display: none;
}
.lang-list{
	display: flex;
	display: -webkit-flex;
	float: right;
	margin-top: 0;
	margin-left: 20px;
	text-transform: uppercase;
	border: 1px solid #525252;
}
.lang-item{
	padding: 0 8px
}
.current>a{
	padding: 22px 5px;
	border-bottom: solid 3px #aaa;
	color: #aaa;
}
.lang-current{
	background-color: #fff;
	color: #525252;
}
.lang-rest{
	background-color: #525252;
}
.lang-rest>a{
	color: #fff;
}

/*---------------------
 *
 *section
 *
 ---------------------*/
.section-header{
	padding: 60px 0 30px;
}
.access-illust{
	width: 60px;
	height: 43px;
	margin: 15px 20px 15px 0;
	
}
.main-pc .section-header{
	background-color: #ECECEC;
	padding: 100px 0;

}
.section{
	width: 100%;
	margin: 0 auto;
	padding: 100px 300px 0;
	box-sizing: border-box;
	
		
}
.section-subtitle{
	font-family: "Sawarabi Mincho";
}
.section-subtitle__book{
	font-family: "Sawarabi Mincho";
	padding: 10px 220px 5px 0px;
	font-size: 1.7rem;
}
.section-book{
	display: flex;
	
}
.border__book{
	padding: 0 0 5px;
	width: 100%;
}
.section-contents{
	padding: 15px 10px 0 0;
	font-size: 1.6rem;
}
.section-subcontents{
	float: right;
	padding: 25px 0 0 0px;
	font-size: 0.8rem;
}
.section-rules{
	padding: 15px 0 0px 0px;
}
.section-cancel{
	padding: 15px 0 80px 0px ;
}
.section-body{
	padding: 60px 0 0;
	margin-right: auto;
}
.section-body__room{
	padding-right: 50px;
	width: 50%;
}
.section-tel{
	padding-right: 15px;
}
.section-map{
	width: 60%;
	padding-top: 8px;
}
.map-icon{
	width: 50px;
	padding-right: 10px;
}
.map-title{
	font-size: 1.4rem;
}
.map-detail{
	width: 100%;
	padding: 0 100px 55px;
	box-sizing: border-box;
}
.map-text{
	padding: 10px 0;
}
.section-footer{
	padding: 0 0 56px;
}

/*---------------------
 *
 *title
 *
 ---------------------*/
.section-header{
	margin-right: 40px;
	width: 100%;
	
}
.section-title{
	color: #2e2e2e;
	font-size: 3rem;
	text-transform: uppercase;
	font-family: "Sawarabi Mincho";
}
/*	animation: fadeInUp;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}*/


.section-subtitle{
	padding-top: 17px;
	font-size: 1.6rem;
}
.section-top{
	display: flex;
	display: -webkit-flex;
	width: 75%;
	margin: 0 auto;
	padding-bottom: 50px;
	
}
.section-image{
	margin-left: auto;
	margin-bottom: 30px;
	width: 100%;
}
.section-image img{
	width: 500px;
}
.section-text{
	margin-top: 30px;
	line-height: 2;
}
.section-text-header{
	margin-top: 30px;
	line-height: 2.5;	
}
.section-text-name{
	margin-top: 25px;
	font-size: 1.2rem;
}
.price-note{
	padding: 8px 0 0 8px;
	font-size: 0.8rem;
	text-align: left;
}
.transport{
	display: flex;
}
.transport-title{
	font-family: "Sawarabi Mincho";
	font-size: 3rem;
	padding-left: 80px;
}
.transport-img img{
	width: 50px;
	padding: 10px 0 0 10px;
}
.access-img{
	width: 100%;
	padding: 0 150px 50px;
	box-sizing: border-box;
}

/*---------------------
 *
 *btn
 *
 ---------------------*/
.btn{
	margin-left: auto;
	margin-top: 15px;
	text-align: center;
	display: block;
	display: -webkit-block;
	width: 30%;
	padding: 16px 50px; 
	background-color: #D0D0D0;
	color: #2E2E2E;
	text-transform: uppercase;
}
.btn_access{
	margin-left: auto;
	margin-top: 15px;
	text-align: center;
	display: block;
	display: -webkit-block;
	width: 30%;
	padding: 16px 50px; 
	background-color: #D0D0D0;
	color: #2E2E2E;
	text-transform: uppercase;
}
.icon-point{
	padding-left: 5px;
}
.btn-down{
	margin: 0 auto;
	text-align: center;
	display: block;
	display: -webkit-block;
	width: 30%;
	padding: 16px 50px; 
	background-color: #fff;
	border: 2px solid ;
	color: #2E2E2E;
	text-transform: uppercase;
	margin-bottom: 50px;
	margin-top: 50px;
}
.btn-down__access{
	margin: 0 auto;
	text-align: center;
	display: block;
	display: -webkit-block;
	width: 30%;
	padding: 16px 50px; 
	margin-bottom: 50px;
	margin-top: 50px;
	background-color: #D0D0D0;
	color: #2E2E2E;
	text-transform: uppercase;
}
.btn::after{
	position: relative;
	left: 16px;
	content:"\f105";
	font-family: FontAwesome;
}
.btn-down::after{
	position: relative;
	left: 16px;
	content:"\f105";
	font-family: FontAwesome;
}
.section-map .btn::before{
}
/*--------------------
card(news)
---------------------*/
.card-list{
    margin:0 8px; 
	display: flex;
}
.card-item{
    margin:0 30px 30px;
	width: 30%;
	padding: 0 0px;
	background-color: #fff;
}
/*.card-item:last-of-type{
    margin-bottom:0;
}*/
.card-item>a{
    display: block;
}    
.card-main{
    padding: 30px 12px 0;
}
.card-meta{
    padding: 0 0 30px;
}
.card-date{
    font-size: 1.1rem;
}
.card-category{
    display: inline-block;
    float: right;
    clear: right;
    width: 100px;
    padding: 5px 0;
    border-radius:3px;
    color:#fff;
    font-size: 1.1rem;      
    text-align: center;
}
.seminar{
    background-color:#787676;   
}
.media{
    background-color: #787676;
}
.recruit{
    background-color:#787676;
}
.card-summary{
    padding: 20px 0 30px;
    font-size: 1rem;
    line-height: 1.6;
}
/*---------------------
 *
 *room-top
 *
 ---------------------*/
.room-top{
	padding-bottom: 30px;
}
.room-title{
	margin-top: 69px;
	font-family: "Sawarabi Mincho";
	font-size: 3rem;
	padding: 30px 0 8px;
}
.room-subtitle{
	text-transform: uppercase;
	font-size: 1.6rem
}
.room-subtext{
	padding: 15px 10px;
	line-height: 1.7;
}
.room-text{
	line-height: 2;
}
.room-facility{
	margin-bottom: 50px;
}
.room-icon__sp{
	display: none;
}
/*.room-icon-text{
	float: left;
	margin: 0 auto;
	margin-left: 8px;
	text-align: center;
}*/

/*---------------------
 *
 *room-slider
 *
 ---------------------*/
.section-room{
	display: flex;
	display: -webkit-flex;
	margin: 50px 40px 100px;
	width: 90%;
	box-sizing: border-box;
}

table {
  	border-collapse: collapse;
 	border: solid 1.5px #919191;/*表全体を線で囲う*/
	padding-top: 15px;
}
table th, table td {
	border: solid 1.5px #919191;/**/
/*
	background-color: #fff;
*/
	padding: 3px 10px;

  /*破線 1px オレンジ*/
}
/*余白と文字装飾は省略*/

.section-room .section-body{
	width: 100%;
	box-sizing: border-box;
}

.section-room .section-map{
	padding-right: 0;
}
/*ギャラリー全体のコンテナー*/
#stage {
	position: relative;
	margin-right: 130px;
	padding-right: 30px;
	/*left: 100px;
	top: 150px;*/
}
#stage img{
	width: 300px;
}
.stage .photo img{
}
.photo{
	width: 45%;
	box-sizing: border-box;
}
.photo img{
	width: 150%;
}
/*全サムネイルのコンテナー*/
#thumbs {
/*
	min-width: 450px;
*/
	padding-top: 403px;
}
/*サムネイルの幅、ポインターを手のひら*/
#thumbs label img {
	width:80px;
	cursor: pointer;
}
#thumbs label img:first-of-type{
}


/*ラジオボタンを非表示に*/
#r1, #r2, #r3, #r4, #r5 ,#r6,#r7,#r8,#r9,#r10,#r11,#r12,#r13,#r14{
	display: none;
}
/*表示写真の初期配置（全部透明に）とtransition設定*/
.photo {
	position: absolute;
	/*left: 30px;
	top: 150px;
	*/
}
/*.photo0 img{
	width:600px;
	left: 30px;
	top: 150px;
	padding: 150px 0 0 80px;
	
}
.photo00 img{
	width:600px;
	left: 30px;
	top: 150px;
	padding: 150px 0 0 30px;
	
}*/
.photo img {
	width:600px;
	opacity: 0;
	
	-webkit-transition: opacity 1s ease;
	transition: opacity 1s ease;
}
/*チェックされたサムネイルに相当する写真だけを表示*/
#r1:checked ~ #photo1 img, #r2:checked ~ #photo2 img, #r3:checked ~ #photo3 img, #r4:checked ~ #photo4 img, #r5:checked ~ #photo5 img,#r6:checked ~ #photo6 img,#r7:checked ~ #photo7 img,#r8:checked ~ #photo8 img,#r9:checked ~ #photo9 img, #r10:checked ~ #photo10 img, #r11:checked ~ #photo11 img , #r12:checked ~ #photo12 img, #r13:checked ~ #photo13 img, #r14:checked ~ #photo14 img      {
	opacity: 1;
}
/*---------------------
 *
 *room-icon
 *
 ---------------------*/
.icon-image{
	padding: 30px 15px 30px;
	font-size: 30px;
}
.icon-list{
	width: 100%;
	height: 26vw;
	padding: 25px 300px;
	box-sizing: border-box;
}



/*---------------------
 *
 *footer
 *
 ---------------------*/

.copyright{
	padding-top: 50px;
	color: #919191;
}

.footer{
	position: relative;
	background-color: #565656;
	color: #FFFFFF;
	padding-bottom: 70px;
}
.footer-text{
	display: block;
	display: -webkit-block;
	padding-top: 30px;
}
.btn-pageTop{
	display: block;
	display: -webkit-block;
	position: absolute;
	right: 0;
	bottom: 50px;
	width: 44px;
	height: 44px;
	background-color: #bababa;
}
.btn-pageTop>.fa{
	position: relative;
	top: 0;
	color: #222;
	width: 100%;
	height: 100%;
	line-height: 44px;
	transition: all 0.2s;
}
.btn-pageTop:hover>.fa{
	top: -10%;
}
.footer_logo{
	width: 7%;
	padding: 30px 0;
}
.footer-address__en{
	padding-bottom: 8px;
}
.footer-address__jp{
	padding-bottom: 15px;
}

@media screen and (max-width:1100px){
	.hero .logo {
		top: 20%;
		left: 50%;
		}

}

@media screen and (max-width:640px){
	body{
		font-size: 1.5rem;
		
	}
	/*-------------
	header--------*/
	header{
		display: none;
	}
	.inner.header-inner{
    position: fixed;
	margin-top: 0;
    top:0;
    left:0;
    z-index: 100;
    box-sizing: border-box;
    width: 100%;
    height: 60px;
    padding: 20px 20px 16px;
    border-top: 1px solid #e2dede;
    border-bottom: 1px solid #e2dede;
    background-color: #fff;
	}
	
	header.fix{
		display: none;
	}
	.header-fix{
	}
	.lang-list{
		display: none;
	}
	.current>a{
	border-bottom: none;
	color: #E1E1E1;
}
	/*-------------
	logo--------*/
	
	.site-title{
		width: 80px;
}
	.logo img{
		display: none;
	}
	/*-------------
	room--------*/
	.room{
		padding: 0;
		margin: 0;
		display:block;
		width: 100%;
		
	}
	.room-subtext{
		font-size: 0.8rem;		
	}	
	
	.room-icon__sp{
		display: block;
	}
	.room-icon__pc{
		display: none;
	}
	
	.section-room{
		margin: 0;
		width: 100%;
		display: block;
		display: -webkit-block;
		text-align: center;
		padding-bottom: 50px;
	}
	table{
		width: 100%;
		padding: 10px 10px;
		box-sizing: border-box;
	}
	#thumbs label img {
		width: 100vw;
		box-sizing: border-box;
		padding: 18px;
	}
	#thumbs{
		padding-top: 0;
		max-width: 100%
	
	}
	.icon-list{
		padding: 30px 20px 300px;
		height: 50px;
	}
	.stage img{
		display: block;
		display: -webkit-block;
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
		width: 100%;
	}
	.section-title{
		font-size: 2rem;
	}
	.room-title{
		font-size: 2rem;
	}
	.section{
		width: 100%;
		padding: 50px 10px
	}
	.section-image{
		width: 100%;
		padding: 30px 20px;
		box-sizing: border-box;
	}
	.section-map{
		width: 100%;
		padding: 0;
		box-sizing: border-box;
	}
	.transport-title{
		font-size: 1.6rem;
		padding-left: 10px;
		text-align: left;
	}
	.transport-img img{
		float: left;
		width: 30px;
		padding:5px;
	}
	.access-img{
		width: 100%;
		padding: 20px 10px;
		box-sizing: border-box;
	}
	.map-detail{
		width: 100%;
		padding: 0;
	}
	.map-text{
		width: 100%;
		padding: 10px 20px;
		box-sizing: border-box;
	}
	.section-body__room{
		display: block;
		display: -webkit-block;
		margin-left: 0;
		margin-right: 0;
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	.section-book{
		display: block;
		padding: 0;
	}
	.section-subtitle__book{
		padding: 0;
		text-align: center;
		font-size: 1.6rem;
	}
	.section-contents{
		padding: 0;
		text-align: center;
		font-size: 1.6rem;

	}
	.border__book{
		width: 100%;
		padding: 5px 20px;
		box-sizing: border-box;
	}
	.section-subcontents{
		width: 100%;
		padding: 5px 80px;
		text-align: center;
		box-sizing: border-box;
	}
	.section-rules{
		padding: 10px 10px 10px;
		width: 100%;
		box-sizing: border-box;
		font-size: 0.8rem;
	}
	.section-cancel{
		padding: 10px 10px 10px;
		width: 100%;
		box-sizing: border-box;
		font-size: 0.8rem;
	}
	.thumbs img{
		display: block;
		display: -webkit-block;
		margin-left: 0;
		margin-right: 0;
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	/*-------------
	card--------*/
	.section-main{
		width: 100%;
		padding: 0 20px;
		box-sizing: border-box;
	}
	.card-list{
		display: block;
		width: 100%;
		padding: 0 20px;
		box-sizing: border-box;
		margin: 0;
	}	
	.card-item{
		width: 100%;
		box-sizing: border-box;
		margin: 15px 0;
	}
	/*-------------
	navigation--------*/
	.btn-trigger{
		display: block;
		position: fixed;
		top: 24px;
		right: 12px;
		z-index: 110;
		width: 40px;
		height: 20px;
		border: none;
		background-color: #fff;
	}
	.btn-trigger span{
		position: absolute;
		display: block;
		width: 28px;
		height: 1.5px;
		background-color: #a0a0a0;
		transition: all 0.5s;  
	}
	.btn-trigger span:first-of-type{
		top: 0;
	}
	.btn-trigger span:nth-of-type(2){
		top: 10px;
	}
	.btn-trigger span:last-of-type{
		bottom: 0;
	}
	
	.btn-trigger.active span:first-of-type{
		transform: rotate(45deg);
		top: 10px;
	}
	.btn-trigger.active span:nth-of-type(2){
		opacity: 0;
	}
	.btn-trigger.active span:last-of-type{
		transform: rotate(-45deg);
		bottom: 10px;
	}
	.header{
		height: 0;
	}
	.header-nav{
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
		width: 100%;
		height: 120%;
		padding: 120px 0 120px;
		background-color: rgba(255,255,255,0.97);
	}
	.lang-list-sp{
		display: block;
		margin-bottom: 30px;
		float: none;
		
	}
	.lang-item-sp{
		margin-bottom: 30px;		
		text-align: center;
	}
	.lang-item-sp>a{
		color: #626262;
		font-size: 1.6rem;
		text-transform: uppercase;
	}
	
	.nav-list{
		display: block;
		margin-bottom: 30px;
	}
	.nav-item{
		margin-bottom: 30px;
		padding-left: 0;
	}
	.nav-item>a{
		color: #626262;
		font-size: 1.6rem;
		text-transform: uppercase;
	}
	
	.hero-list img{
		height: 66.65vw;
		position: absolute;
		margin-top: 60px;
	}
	.hero{
		height: calc( 66.65vw + 60px);
		width: 100%;
	}
	/*-------------
	section--------*/
	.photo {
		display: none;
	}
	.border{
		width: 90%;
	}
	.btn-down{
		width: 50%;
	}
	
	.section-text-header{
		width: 100%;
		padding: 0 20px;
		box-sizing: border-box;
	}
	.section-body{
		text-align: center;
		padding: 0 20px;
		box-sizing: border-box;
	}
	.section-header{
		text-align: center;
		padding: 40px 0 20px;
		box-sizing: border-box;
		
	}
	.main-pc .section-header{
		padding: 40px 0 20px;
	}
	
	.section-top{
		display: block;
		display: -webkit-block;
		margin-left: 0;
		margin-right: 0;
		width: 100%;
		padding-bottom: 30px;
	}
	.section-text{
		font-size: 0.8rem;
		padding: 0 10px;
		box-sizing: border-box;
		text-align: left;
	}
	.room-text{
		text-align: left;
		font-size: 0.8rem;
		width: 100%;
		padding: 8px 10px;
		box-sizing: border-box;
	}
	
	.btn{
		text-align: center;
		margin: 0 auto;
		width: 50%;
	}
	.btn_access{
		text-align: center;
		margin: 0 auto;
		width: 50%;
	}
	.btn-down__access{
		text-align: center;
		margin: 0 auto;
		width: 60%;
		margin-bottom: 50px;
	}
	.br-pc{
		display: none;
	}
	.br-sp{
		display: block;
	}
	/*-------------
	footer--------*/
	.footer_logo{
		width: 30%;
		
	}
	.btn-pageTop{
		display: none;
	}
}