@charset "utf-8";

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

/*header設定*/
#header{
	position: relative;/*ローディング画像などを表示す際の基点とするため指定*/
    height: 100vh;/*高さを全画面にあわせる*/
    text-align: center;
    color: #FFFAF5;
    /*ローディング画面時＆動画が表示されないときに表示する背景画像のレスポンシブ化*/
    background: url("../img/movie.jpg") no-repeat;
    background-size: cover;
}

/* ローディングアイコン設定 */

#loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    font-weight: bold;
}

/*jQueryで付与されたdisappearクラスがついたらロゴエリアを非表示*/

#loading.disappear{
     display: none;   
}


/* youtube設定 */

#youtube-area{
    position: fixed;
    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{
  position:absolute;
  z-index: 2;/*下から2番目に表示*/
/*天地中央配置*/
  width: 75%;
	right: 0;
	left: 0;
	top: 40%;
	bottom: 55%;
	padding: 0;
	margin: 0 auto;
/*色指定*/
  color:#fff;
  text-shadow: 0 0 15px #666;
}

h1 img{
	margin: auto;
}

/*下のコンテンツ*/
#container{
    position: relative;/*relativeを指定してfixed指定をした#youtube-areaの上に表示*/

    z-index: 3;/*一番上に表示*/
    /*見た目の調整*/
	 background:rgba(255,255,255,0.9);
	color: #222;
	padding:50px 30px 100px 30px;
	text-align: center;

	margin-bottom: 100px;

}

#container2{
    position: relative;/*relativeを指定してfixed指定をした#youtube-areaの上に表示*/
    z-index: 3;/*一番上に表示*/
    /*見た目の調整*/
	 background:rgba(255,255,255,0.75);
	color: #315759;
	padding:150px 20px;
	text-align: center;
}

.container img,{
	max-width: 450px;
	
}


/*-- Footer --*/
.footer {
	background-color: #111;
	color: #fff;
}
.footer-info {
	margin-top: 50px;
	margin-bottom: 30px;
}
.footer h4 {
	font-weight: 900;
	margin-bottom: 30px;
	text-align: left;
}
ul.social-icons li {
	display: inline-block;
}
ul.social-icons li a {
	display: inline-block;
	width: 40px;
	height: 40px;
	background: url("../images/img-sprite.png") no-repeat 0px 0px;
	background-size: 250px;
}
ul.social-icons li a.facebook:hover {
	background-position: 0px -42px;
}
ul.social-icons li a.twitter {
	background-position: -42px 0px;
}
ul.social-icons li a.twitter:hover {
	background-position: -42px -42px;
}
ul.social-icons li a.googleplus {
	background-position: -83px 0px;
}
ul.social-icons li a.googleplus:hover {
	background-position: -83px -42px;
}
ul.social-icons li a.instagram {
	background-position: -125px 0px;
}
ul.social-icons li a.instagram:hover {
	background-position: -125px -42px;
}
.copyright {
	margin-top: 20px;
}
.footer-info li {
	color: #fff;
	display: block;
	font-weight: 300;
	font-size: 14px;
	line-height: 25px;
}
.copyright a {
	color:#7888b6
}
.copyright a:hover {
	color:#FFF;
	text-decoration: underline;
}
a.mail {
	color: #80878e;
}
a.mail:hover {
	color: #FFFFFF;
}
.footer-info p {
	color: #80878e;
	font-weight: 300;
	font-size: 14px;
	line-height: 25px;
	text-align: left;
}
.newsletter {
	position: relative;
	top: 10px;
}
.newsletter .email {
	padding: 5px 60px 5px 15px;
	font-style: italic;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	height: 40px;
	border: 1px solid #ddd;
	outline:none;
	width: 100%;
}
.newsletter .email {
	color: #bcc0c4;
	background-color: #565f66;
	border: none;
}
.newsletter .submit {
	width: 40px;
	height: 40px;
	background-image: url('../images/subscribe.png');
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	background-color: #006db7;
	top: 0;
	right: 0;
	border: none;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-transition: all 0.2s ease 0s;
	-moz-transition: all 0.2s ease 0s;
	-o-transition: all 0.2s ease 0s;
	-ms-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
	outline:none;
	-webkit-appearance: none;
}
/*-- //Footer --*/

/*-- Go-To-Top-Button --*/
#toTop {
	display: none;
	text-decoration: none;
	position: fixed;
	bottom: 10px;
	right: 15px;
	overflow: hidden;
	width: 40px;
	height: 40px;
	border: none;
	text-indent: 100%;
	background: url("../images/to-top2.png") no-repeat 0px 0px;
}
/*-- //Go-To-Top-Button --*/
