@charset "utf-8";
/* CSS Document */


/* ---------------------------------------------------------------------------------------------

   Top-visual-wrap

--------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------

   Top Visual Sliderはslider.cssに記述

--------------------------------------------------------------------------------------------- */
.top-visual-wrap{
	width: 100%;
	height: 1025px; /*auto*/
	overflow: hidden;
	position: relative;
    padding-top: 120px;/*なし*/
}

.top-visual-wrap .top-mountain{
	position: absolute;
    bottom: 140px;/*bottom: 0*/
    width: 100%;
    height: auto;
        z-index: 1;
}

@media screen and (max-width:800px) {

.top-visual-wrap{
	height: 850px;
}
}

@media screen and (max-width:700px) {

.top-visual-wrap{
    padding-top: 105px;
	height: 750px;
}
}

@media screen and (max-width:600px) {

.top-visual-wrap{
	height: 700px;
}
}


/*TOPページ 掲載店舗募集バナー（期間限定）
-----------------------------------------------------------*/
.top-visual-wrap .topBox{
	width: 468px;
    height: 60px;
	position: absolute;
	top: 120px;
	right: 0;
}
.top-visual-wrap .topBox .bunner-wrap a img{
    float: right;
    width: 100%;
    height: auto;
}
.top-visual-wrap .topBox .bunner-wrap a:hover img{
    opacity: 0.75;
}

@media screen and (max-width:700px) {
    
.top-visual-wrap .topBox{
	top: 105px;
}
}

@media screen and (max-width:500px) {
    
.top-visual-wrap .topBox{
	width: 100%;
    height: auto;
}
/*    
.top-visual-wrap .topBox .bunner-wrap a img{
    width: 90%;
    margin: auto;
}*/
}


/*TOPページ ひーりんぐH1タイトル画像
-----------------------------------------------------------*/
.top-visual-wrap .centerBox{
    width: 100%;
	position: absolute;
	top: 13%;
	left: 2.5%;
}

.top-visual-wrap .centerBox h1 img{
    float: left;
    width: 400px;
	filter:drop-shadow(3px 3px 3px rgba(0,0,0,0.9));
    animation: fadein 3s forwards; 
}

@media screen and (max-width:1400px) {
    
.top-visual-wrap .centerBox h1 img{
    width: 350px;
}
}

@media screen and (max-width:800px) {
    
.top-visual-wrap .centerBox{
	top: 55%;
	right: 2.5%;
}
    
.top-visual-wrap .centerBox h1 img{
    float: right;
    width: 300px;
}
}

@media screen and (max-width:600px) {
    
.top-visual-wrap .centerBox{
	top: 60%;
}
    
.top-visual-wrap .centerBox h1 img{
    width: 225px;
}
}


/*background-image 背景フェードイン
-----------------------------------------------------------*/
.fade-in-background {
  opacity: 0;
  animation: fadeIn 7.5s forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/*Loading Opening（TOPのみ）
-----------------------------------------------------------*/
/* Loading背景画面設定　*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 1500;
    display: none; /* 追加 */
}

.splash-wrap{
	width: 100%;
	height: 100%;
	background-repeat: repeat;
	background-size: auto;
	background-color:#F60;
}

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
	width: 100%;
	height: auto;
}

/* fadeUpをするアイコンの動き */
.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.25s; /*0.5s*/
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(150px);/*100px*/
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

#splash_logo .text-20{
    text-align: center;
    color: #fff;
    margin-top: 25px;
}

@media screen and (max-width:700px) {

#splash_logo{
	width: 75%;
}
}





















































