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

/*====================================================

　　　　　　　　　　共通

====================================================*/
body{
	font-family: "メイリオ","ヒラギノ角ゴ ProN W3","ＭＳ Ｐゴシック";
	color:#333;
	overflow-x:hidden;
}
a:hover{
	cursor:pointer;
}

.ribeye{
	font-family: 'Ribeye Marrow', cursive;
}

.clearfix:before, .clearfix:after {
	content:"";
	display:table
}
.clearfix:after { clear:both }
.clearfix { zoom:1 } /* For IE 6/7 */

.lp-content{
	width:980px;
	margin:0 auto;
	position:relative;
}

.mt5{
	margin-top:5px;
}
.mt10{
	margin-top:10px;
}
.mt20{
	margin-top:20px;
}
.mt40{
	margin-top:40px;
}
.mt50{
	margin-top:50px;
}
.mt60{
	margin-top:60px;
}

.left{
	float:left;
}
.right{
	float:right;
}

/* 赤いボタン */
.rdBtn{
	width:100%;
	position:relative;
}
.rdBtn div{
	position:relative;
	margin:0 auto;
	background-color:#eb6969;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	width:670px;
	display:block;
	outline: none;
	overflow: hidden;
}
.rdBtn div a{
	position:relative;
	display:block;
	padding:15px 0;
	z-index: 3;
}
.rdBtn div img{
	position:relative;
	z-index: 3;
}
.rdBtn div::after {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background-color: rgba(255,255,255,.3);
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
.rdBtn div:hover::after {
	-webkit-animation: circle 1s;
	animation: circle 1s;
}
@-webkit-keyframes circle {
	50% {
		opacity: 1;
	}
	100% {
		width: 750px;
		height: 750px;
	}
}
@keyframes circle {
	50% {
		opacity: 1;
	}
	100% {
		width: 750px;
		height: 750px;
	}
}
.rdBtn div .arrow{
	position:absolute;
	top:22px;
	right:30px;
}

/* 白いボタン */
.whBtn{
	width:100%;
	position:relative;
}
.whBtn div{
	position:relative;
	margin:0 auto;
	background-color:#fff;
	border:2px #333 solid;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	width:670px;
	display:block;
	outline: none;
	overflow: hidden;
}
.whBtn div a{
	position:relative;
	display:block;
	padding:15px 0;
	z-index: 3;
}
.whBtn div img{
	position:relative;
	z-index: 3;
}
.whBtn div::after {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background-color: rgba(235,235,235,.3);
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
.whBtn div:hover::after {
	-webkit-animation: circle 1s;
	animation: circle 1s;
}
@-webkit-keyframes circle {
	50% {
		opacity: 1;
	}
	100% {
		width: 700px;
		height: 700px;
	}
}
@keyframes circle {
	50% {
		opacity: 1;
	}
	100% {
		width: 700px;
		height: 700px;
	}
}
.whBtn div .arrow{
	position:absolute;
	top:22px;
	right:30px;
}
.whBtn > p{
	text-align:right;
}
.whBtn > p a{
	text-align:right;
	color:#eb6969;
	text-decoration:underline;
	font-size:14px;
	margin-right:155px;
}

/* 調整用 */
#b_footer{
	margin-top:0 !important;
}

/*====================================================

　　　　　　　　　　ロード待ち

====================================================*/
.loader-bg{
	background-color:#000;
	width:100%;
	height:100%;
	position:fixed;
	z-index: 999;
	top: 0;
	left:0;
}


/*====================================================

　　　　　　　　　　メインビジュアル

====================================================*/
.main{
	background-image:url('/images/reservespring/main-img.jpg');
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	z-index:0;
}
.main .right{
	position:relative;
	width:50%;
	height:100%;
	background-color: rgba( 0, 0, 0, 0.7 );
	left:1000px;
	transition: all 1s ease 0.5s;
	-moz-transition: all 1s ease 0.5s;
	-webkit-transition: all 1s ease 0.5s;
	-o-transition: all 1s ease 0.5s;
	-ms-transition: all 1s ease 0.5s;
	z-index:5;
}
.main .right > div{
	position:relative;
	width: 100%;
	height:100%;
	display:table;
}
.main .right > div > div{
	position:relative;
	width: 100%;
	height:100%;
	display:table-cell;
	vertical-align:middle;
}
/* IE 6 */
* html div.main .right div {
	display: inline;
	zoom: 1;
}
/* IE 7 */
*:first-child+html div.main .right div {
	display: inline;
	zoom: 1;
 }
.main .right p{
	position:relative;
	text-align:center;
	font-size:14px;
	color:#fff;
}
.main .btn{
	border:2px #fff solid;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	width:250px;
	margin:0 auto;
	display:block;
	transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
}
.main .btn:hover{
	box-shadow: 0 0 45px rgba(255,255,255,0.6);
}
.main .btn a{
	font-size:16px;
	color:#fff;
	text-decoration:none;
	text-align:center;
	display:block;
	padding:10px;
}
.main .main-ttl{
	position:absolute;
	top:70%;
	left:10%;
	transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-webkit-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	-ms-transition: all 1s ease 0s;
}
.main .main-ttl > div{
	background-image:url('/images/reservespring/title-frame.png');
	background-position:center;
	background-repeat:no-repeat;
	z-index:5;
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	position:relative;
	width:350px;
	height:130px;
}
.main .main-ttl h1{
	font-size:30px;
	text-align:center;
	font-weight:normal;
	position:relative;
	top:40px;
}

/* アニメーション */
.slide .right{
	left:0;
}
.main .main-ttl > .fade{
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	transition: all 1.5s ease 1.5s;
	-moz-transition: all 1.5s ease 1.5s;
	-webkit-transition: all 1.5s ease 1.5s;
	-o-transition: all 1.5s ease 1.5s;
	-ms-transition: all 1.5s ease 1.5s;
}
.main .move{
	top:71%;
	transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-webkit-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	-ms-transition: all 1s ease 0s;
}


/*====================================================

　　　　　　　　　　ステップ

====================================================*/
.step{
	padding:40px 0 60px 0;
	text-align:center;
	background-color:#fff;
	transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-webkit-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	-ms-transition: all 1s ease 0s;
}
.step .stepimg > div{
	position:relative;
	float:left;
	width:33%;
	padding:0 10px;
	box-sizing:border-box;
}
.step .stepimg img{
	position:relative;
	top:0;
	width:100%;
	height:auto;
	transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
}
.step .stepimg > div:hover img{
	top:-20px;
}



/*====================================================

　　　　　　　　　　メリット

====================================================*/
.osusume{
	background-image:url('/images/reservespring/sub_img.jpg');
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
	text-align:center;
	padding:40px 0;
}

.osusume .o-container{
	width:66%;
}
.osusume .o-container > div{
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	background-color: rgba(255,255,255,.8);
	padding:30px;
	text-align:left;
}
.osusume .o-container > div h3{
	font-size:20px;
	font-weight:normal;
	border-bottom:1px #ccc solid;
}
.osusume .o-container > div .ribeye{
	font-size:36px;
	font-weight:normal;
	margin-right:10px;
}
.osusume .o-container > div h4{
	font-size:18px;
	font-weight:normal;
}
.osusume .o-container > div p{
	font-size:14px;
	font-weight:normal;
}

/* アニメーション */
.osusume .scrEvent h2, .osusume .scrEvent div{
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	transition: all 1s ease 0.5s;
	-moz-transition: all 1s ease 0.5s;
	-webkit-transition: all 1s ease 0.5s;
	-o-transition: all 1s ease 0.5s;
	-ms-transition: all 1s ease 0.5s;
}
.osusume .scroll-on h2, .osusume .scroll-on div{
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	transition: all 1s ease 0.5s;
	-moz-transition: all 1s ease 0.5s;
	-webkit-transition: all 1s ease 0.5s;
	-o-transition: all 1s ease 0.5s;
	-ms-transition: all 1s ease 0.5s;
}


/*====================================================

　　　　　　　　　　詳細

====================================================*/
.detail{
	padding:60px 0 60px 0;
	text-align:center;
	background-color:#fff;
	transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-webkit-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	-ms-transition: all 1s ease 0s;
}
.detail h3{
	padding:15px 0;
	background-color:#333;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	display:block;
}
.detail .d-container > div{
	display:table;
	width:100%;
}
.detail .d-container > div .left{
	display:table-cell;
	vertical-align:middle;
	float:none;
	text-align:left;
	padding-right:30px;
}
.detail .d-container > div .right{
	display:table-cell;
	vertical-align:top;
	width:314px;
	float:none;
}
.detail .d-container > div .left ul{
	margin-left:20px;
}
.detail .d-container > div .left li{
	list-style-image:url('/images/reservespring/warning.png');
	color:#666;
}
.detail .d-container > div h4 p{
	font-size:16px;
	font-weight:bold;
}


/*====================================================

　　　　　　　　　　規約

====================================================*/
.modal{
	display:none;
}
.modalBody{
	position: fixed; 
	z-index:1000; 
	background: #fff; 
	width:700px; 
	left:50%; 
	top:60%; 
	height: 400px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	padding:30px;
}
.modalBK{
	position: fixed; 
	z-index:999; 
	height:100%; 
	width:100%;
	background:#000; 
	opacity: 0.7;
	filter: alpha(opacity=70);
	-moz-opacity:0.70;
	top:0;
	left:0;
}
.modal .close{
	text-align:center;
}
.modal .close span{
	padding:5px 10px;
	background-color:#eb6969;
	color:#fff;
	font-weight:bold;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
}
.modal .close span:hover{
	cursor:pointer;
}

.kiyaku .kiyaku-txt{
	width:100%;
	height:320px;
	overflow-x:hidden;
	overflow-y:scroll;
	padding-bottom:40px;
}
.kiyaku .kiyaku-txt h2{
	font-size:20px;
}
.kiyaku .kiyaku-txt h3{
	font-size:16px;
	text-decoration:underline;
	font-weight:normal;
}
.kiyaku .kiyaku-txt ol{
	margin-left:22px;
	
}
.kiyaku .kiyaku-txt ul{
	margin-left:20px;
}
.kiyaku .kiyaku-txt ol li{
	list-style:decimal;
}
.kiyaku .kiyaku-txt ol li ul li{
	list-style-image:url('/images/reservespring/warning.png');
	color:#666;
}
.kiyaku .kiyaku-txt dl dt{
	text-decoration:underline;
}
.kiyaku .kiyaku-txt ul li{
	list-style:circle;
}



/*====================================================

　　　　　　　　　　うさぎ

====================================================*/
.usagi{
	text-align:center;
}
.blue{
	background-color:#FDF1F2;
}
