@charset "utf-8";
/* CSS Document */
/*こっちがPC*/
/*========= 背景動画設定のCSS ===============*/

/*header設定*/
#header{
  position: relative;/*ローディング画像などを表示す際の基点とするため指定*/
    height: 100vh;/*高さを全画面にあわせる*/
    text-align: center;
    color: #fff;
    /*ローディング画面時＆動画が表示されないときに表示する背景画像のレスポンシブ化*/
    background: no-repeat #fff;
    background-size: cover;
	overflow: hidden;
	
	margin: 0 0 0 0 ;
}

/* ローディングアイコン設定 */

#loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    font-weight: bold;
}

/*jQueryで付与されたdisappearクラスがついたらロゴエリアを非表示*/

#loading.disappear{
     display: none;   
}


/* youtube設定 */

#youtube-area{
    position: ;
    z-index: 1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
  opacity: 0;    
}

/*jQueryで付与されたappearクラスがついたらYoutubeエリアをふわっと表示*/
#youtube-area.appear {
  animation-name:PageAnimeAppear;
  animation-duration:.5s;
  animation-fill-mode:forwards;
}

@keyframes PageAnimeAppear{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
}
}

#youtube {
/*天地中央配置*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
/*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}

/*youtubeがクリックされないためのマスク*/
#youtube-mask {
    position: absolute;
    z-index: 2;/*下から2番目に表示*/
    top:0;
    width:100%;
    height: 100%;
}


/*youtube 上のロゴ
.h1-wrap {
	z-index: 3;
	position: absolute;
	display: block;
	width: 100%;
	bottom: 0;
	padding: 30px 0 30px 0;
	background-color:rgba(255,255,255,0.7);
	text-align: center;
}
.h1-wrap img{
	width: auto;
	margin: 0 auto 0px auto;
}
.h1-wrap h1 {
    text-align: center;
	line-height: 0.5;
}
span.index-h1 {
	font-size: 25px;
	color: #333;
	font-family: 'Noto serif JP', sans-serif;
} */
/*========= 固定ヘッダー ===============*/

/*下のコンテンツ*/
#container{
    position: relative;/*relativeを指定してfixed指定をした#youtube-areaの上に表示*/
    z-index: 3;/*一番上に表示*/
    /*見た目の調整*/
  background:#fff;
  padding:0px 0 0 0;
  text-align: center;
}
/*========= 左固定レイアウトのためのCSS ===============*/



/*＝＝＝＝＝＝＝＝＝＝＝768px以下の見え方 こっちがスマホ＝＝＝＝＝＝＝＝＝＝＝＝＝*/

@media screen and (max-width:768px){

/*========= 背景動画設定のCSS ===============*/

/*header設定*/
#header{
  position: relative;/*ローディング画像などを表示す際の基点とするため指定*/
    height: 65vh;/*高さを全画面にあわせる*/
    text-align: center;
    /*ローディング画面時＆動画が表示されないときに表示する背景画像のレスポンシブ化*/
    background: url("../../images/index/main-img03.jpg") no-repeat #fff;
    background-size:contain;
	margin: 65px 0 0 0;
}

/* ローディングアイコン設定 */

#loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    font-weight: bold;
}

/*jQueryで付与されたdisappearクラスがついたらロゴエリアを非表示*/

#loading.disappear{
     display: none;   
}


/* youtube設定 */

#youtube-area{
    position: ;
    z-index: 1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
  opacity: 0;

}

/*jQueryで付与されたappearクラスがついたらYoutubeエリアをふわっと表示*/
#youtube-area.appear {
  animation-name:PageAnimeAppear;
  animation-duration:.5s;
  animation-fill-mode:forwards;
}

#youtube {
/*天地中央配置*/
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
/*縦横幅指定*/
  /*width: 160%;  16:9 の幅→16 ÷ 9＝ 177.77% */
  /*height: 100%;  16:9の幅 → 9 ÷ 16 = 56.25% */
width: 250.77%;/*16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25%;  /*16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;

}

/*youtubeがクリックされないためのマスク*/
#youtube-mask{
    position: absolute;
    z-index: 2;/*下から2番目に表示*/
    top:0;
    width:100%;
    height: 100%;
}
/*
.h1-wrap {
	position: absolute;
	padding: 5px 0 5px 0;
	bottom:0;
	height: 100px;
	display: none;
}
.h1-wrap img{
	width:200px ;
	margin: 0px auto 0px auto;
	display: inline-block;
}
.h1-wrap h1{
	text-align: left;
	line-height: 1.5;
	margin: 0px auto 0px auto;
	}
span.index-h1 {
	font-size: 16px;
}*/
	
/*========= 固定ヘッダー ===============*/

}