/* CSS Document */
* {
	padding: 0px;
	margin:0px;
	outline: none;
	/*widows: 1000;*/
}

body {
	width:100%;
	
}




a{
	text-decoration:none;
	transition:0.5s;
}
	
a img {
	border-style:none;
	}

a:hover{
	opacity:0.5;
	transition:0.5s;
}

a.btn_site{
	display:block;
	width:334px;
	margin:0 auto;
}

a.btn_site:hover{
	opacity:0.5;	
}

p{
	font-size: 14px;
    line-height: 160%;
	letter-spacing:2px;
}

p.indent{
	padding-left:1em;
	text-indent:-1em;
}

p .yel{
	color:#FFF100;
}

ul li,
dl dt,
dl dd{
	font-size:14px;
	line-height:160%;
}

h3{
	font-size:14px;
	letter-spacing:1px;
	line-height:149%;
}

.cen{
	text-align:center;
}

.txt_w{
	color: #FFFFFF;
}

.top_10m{margin-top:10px;}
.top_20m{margin-top:20px;}
.top_30m{margin-top:30px;}
.top_40m{margin-top:40px;}
.top_50m{margin-top:50px;}
.bot_10m{margin-bottom:10px;}
.bot_20m{margin-bottom:20px;}
.bot_30m{margin-bottom:30px;}
.bot_40m{margin-bottom:40px;}
.bot_50m{margin-bottom:50px;}

.pc_blc {
  display: none;
}
.sp_blc {
  display: block;
}
@media (max-width: 799px) {
  .pc_blc {
    display: block;
  }
  .sp_blc {
    display: none;
  }
}




header{
	background:url(../images/main_bg.png) top center no-repeat;	
	
}

header .inner{
	width:1260px;
	margin:0 auto;
	padding: 0px 0 0 0px;
	height: 800px;
}

header .inner .logo{
	width: 100%;
    padding: 30px 0 0 0;
    max-width: 214px;
}

header .inner .logo img{
	width: 100%;
}

article {
	background: #124071;
}

article .inner{
	width: 1260px;
	margin: 0 auto;
}

article .inner h1{
	text-align: center;
    padding: 40px 0 40px 0px;
    margin: 0 auto 50px auto;
    background: #9390af;
}

article .inner h1 img{
	 margin: 0 auto 0px auto;
}

article .inner .merit{
	width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0 auto 40px auto;
    border-bottom: 2px solid #fff;
}

article .inner .merit p{
	    margin: 0 0 30px 0;
}


article .inner .ski{
	width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0 auto;
	padding: 0 0 50px 0;
}

article .inner .ski p{
	/*width: 30%;*/
	margin: 0 0 10px 0;
}
article .inner .ski p img{
	width: 360px;
}


@media only screen and (max-width : 1024px) { 

header{
	
	background:url(../images/main_bg_sp.png) top center no-repeat;	
	background-size: cover;
}

header .inner{
	width: 96%;
	height: 100%;
	min-height: 650px;
}

header .inner .logo{
	width: 100%;
	padding: 15px 0 0 0;
    /*padding: 30px 0 0 0;*/
    /*max-width: 150px;*/
}


article .inner{
	width: 100%;
	margin: 0 auto;
}

article .inner h1 img{
	 width: 90%;
}

article .inner .ski p{
	width: 48%;
	margin: 0 0 10px 0;
}

article .inner .ski p img{
	width: 100%;
}


}


@media only screen and (max-width : 599px) { 

header{
	background:url(../images/main_bg_sp.png) top center no-repeat;	
	background-size: cover;
}

header .inner{
	width:90%;
	height: 100%;
	min-height: 480px;
}

header .inner .logo{
	width: 100%;
	padding: 15px 0 0 0;
    /*padding: 30px 0 0 0;*/
    max-width: 150px;
}

article .inner{
	width: 100%;
	margin: 0 auto;
}

article .inner h1 img{
	width: 80%;
	 margin: 0 auto 0px auto;
}

article .inner .merit p{
	width: 33%;
}

article .inner .merit p img{
	width: 100%;
}

article .inner .ski{
	width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;

}

article .inner .ski p{
	width: 48%;
	margin: 0 0 15px 0;
}


}




/** content
===================================*/
.boxcont{
	margin:0 auto;
	font-family: 'Kozuka Mincho Pro', 'Kozuka Mincho Std', '小塚明朝 Pro R', '小塚明朝 Std R', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro W3', 'ＭＳ Ｐ明朝', 'Times', 'Times New Roman', serif;
	
}

.boxcont .min{
	font-family: 'Kozuka Mincho Pro', 'Kozuka Mincho Std', '小塚明朝 Pro R', '小塚明朝 Std R', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro W3', 'ＭＳ Ｐ明朝', 'Times', 'Times New Roman', serif;
}



/* アニメーションのスタイル */
.ani-scUp {
	/*-webkit-transform: translateY(40px);
	transform: translateY(40px);*/
	-webkit-transform: translate3d(0px,-60px,0px);
	transform: translate3d(0px,-60px,0px);
	opacity: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.ani-scUp.ani-on {
	-webkit-transform: translate3d(0px,0px,0px);
	transform: translate3d(0px,0px,0px);
	opacity: 1;
}

.ani-scDown {
	-webkit-transform: translate3d(0px,60px,0px);
	transform: translate3d(0px,60px,0px);
	opacity: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.ani-scDown.ani-on {
	-webkit-transform: translate3d(0px,0px,0px);
	transform: translate3d(0px,0px,0px);
	opacity: 1;
}

.ani-scLeft {
	-webkit-transform: translate3d(0px,60px,0px);
	transform: translate3d(30px,0px,0px);
	opacity: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.ani-scLeft.ani-on {
	-webkit-transform: translate3d(0px,0px,0px);
	transform: translate3d(0px,0px,0px);
	opacity: 1;
}

.ani-scRight {
	-webkit-transform: translate3d(0px,60px,0px);
	transform: translate3d(-30px,0px,0px);
	opacity: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.ani-scRight.ani-on {
	-webkit-transform: translate3d(0px,0px,0px);
	transform: translate3d(0px,0px,0px);
	opacity: 1;
}

/*topへ戻る*/
#page-top{
    width:103px;
    height:37px;
    display:none;
    position:fixed;
    right:20px;
    bottom:15px;
	z-index:99;
}
  
#page-top p{
    margin:0;
    padding:0;
    text-align:center;
    -webkit-transition:all 0.3s;
    -moz-transition:all 0.3s;
    transition:all 0.3s;
    border-radius: 0px;
    background:#124071;
	border:none;
    behavior: url(PIE.htc);
    text-decoration:none;
    color:#fff;
}

#page-top p.bnr{
	border:none;
	margin:0 0 20px 0;
}

#page-top p a{
	color:#fff;
	border: 1px #fff solid;
}

#page-top p a:hover{
	color:#000;
}

#page-top p:hover{
    background:#fff;
	color:#000;
}

#page-top p.bnr:hover{
	background:none;
}
  
#move-page-top{
	font-size:10px;
    line-height:30px;
    text-decoration:none;
    display:block;
    cursor:pointer; 
}

@media only screen and (max-width : 599px) { 

#page-top{
   
    bottom:45px;
}
  
}


/** footer
===================================*/

#footer_over{
	width:100%;
	float:left;
	clear:both;
	margin:0 auto;
	background-color:#FFFFFF}


#footer {
		background:url(http://www.princehotels.co.jp/common/imgs/module_parts/parts_footer/bg01.gif) repeat-x;
		padding:25px 0px 25px 0px;
		width:100%;
}

*:first-child+html #footer {
	padding:18px 0px 15px 0px;
	}

#copyright {
	width: 100%;
	text-align:center;
	margin:0px auto;
	}
	
	
@media only screen and (max-width : 599px) { 

#copyright p{
	font-size: 10px;
	}
}



