@charset "utf-8";

@media screen and (max-width:640px) {
	.pc {
		display: none;
	}
}
@media screen and (min-width:641px) {
	.sp {
		display: none;
	}
}

body{
    background:#ffffff;
    font-family: 'YuMincho', serif;
	color: #555;
	font-size:1rem;
	line-height:1.85;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%; 
	word-wrap: break-word;
    letter-spacing: 0.2em;
}

body.appear{
    background:#f8f9fa;
}

ul{
	margin:0;
	padding: 0;
	list-style: none;
}

a{
	color: #555;
	text-decoration: none;
    outline: none;
}

img{
    width:100%;
    height: auto;
    vertical-align: bottom;
}

*{
    box-sizing: border-box
}

/* font-family */

h1,
#g-nav-list li:nth-child(1),
#menu h2,
#blog h2,
#footer dl dd,
#splash-logo{
    font-family:'YuMincho', cursive;
}

.bigtitle{font-size:3rem;}

.setsumei{
    font-size:1.5rem;
    text-align: center;
}


/* area */

#container{
    overflow-x: hidden;
}

.inner{
    width:100%;
    margin:0 auto;
    padding:70px;
}

@media screen and (max-width:940px) {
.inner{
    padding:30px;
}
}


/* モーダル */
/*infoエリアをはじめは非表示*/
#info55{
	display: none;
    z-index: 5;
}
#item1{
	display: none;
}
#item2{
	display: none;
}
#aging{
	display: none;
}

#yobou_movie{
	display: none;
}


/*モーダルの横幅*/
.modaal-container{
    max-width: 600px;
}

/*モーダルのボタンの色*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}



/* モーダルの価格の枠 */
.box29 {
    margin: 2em 0;
    background: #fffafa;
}
.box29 .box-title {
    font-size: 1.2em;
    background: #8b0000;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.box29 p {
    padding: 15px 20px;
    margin: 0;
}


#FAQ {
    text-align: center;
    font: normal normal normal 60px/132px Kozuka Gothic Pro;
    letter-spacing: 0px;
    margin-top: 50px;
    margin-bottom: 50px;
    color: #FFA52B;
    text-shadow: 0px 3px 6px #00000029;
    opacity: 1;
}

#FAQ_sp {
    text-align: center;
    font: normal normal normal 40px/80px Kozuka Gothic Pro;
    letter-spacing: 0px;
    margin-top: 50px;
    margin-bottom: 50px;
    color: #FFA52B;
    text-shadow: 0px 3px 6px #00000029;
    opacity: 1;
}



/*========= 背景動画設定のCSS ===============*/

/*header設定*/
#header{
    position: relative;
    height: 100vh;/*高さを全画面にあわせる*/
} 

#video-area{
    position: fixed;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    min-height: 100%;
    min-width: 100%;
}

/*見出し設定*/
h1{
    /*要素の配置*/
    position:absolute;
    /*要素を天地中央寄せ*/
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    /*見た目の調整*/
    color:#fff;
    text-shadow: 0 0 15px #666;
}






/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#FFA52B;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 250px;
}

/* fadeUpをするアイコンの動き */

.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

