/* ///////////////////////////////////////////////////////////////////// 
// 03 - Preloader
/////////////////////////////////////////////////////////////////////*/

#preloader {
    position:fixed;
    left:0;
    top:0;
    z-index:99999999999;
    width:100%;
    height:100%;
    overflow:visible;
    background: #fff url('../img/preloader.gif') no-repeat center center;
}



body {
	margin:0;
}

h2{
	/* background-color: #fff; */
   font-family: 'シネマレター';
	/* font-family:'suzumushi';*/
	text-align: center;
	 margin: 0 0 1.5em;
	 padding:15px;
	 border-top:1px solid #ccc;
	 border-bottom: 1px solid #ccc;
	 border-left: solid 3px #39475D;
	 font-size: 18px;
	 font-weight: bold;
	 color: #385572
	 max-width:200px；
 }

 h3{
	font-family:'フォーク M';
	font-size: 16px;
  
	border-bottom: solid 1px #ccc;
	border-left: solid 3px #1DA1F2;
	padding: 5px;
  }

.title1{
	position:fixed;
	font-size: 5em;
	font-weight: 800;
	z-index: 2;/*下から2番目に表示*/
  /*天地中央配置*/
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
  /*色指定*/
	color:#fff;
	text-shadow: 0 0 15px #666;
	font-family: 'Unbounded', cursive;

  }

  .title2{
	position:absolute;
	font-size: 1.2em;
	font-weight: 400;
	z-index: 2;/*下から2番目に表示*/
  /*天地中央配置*/
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
  /*色指定*/
	color:#fff;
	text-shadow: 0 0 15px #666;
	font-family: 'Unbounded', cursive;
  }



#container{
    position: relative;/*relativeを指定してfixed指定をした#youtube-areaの上に表示*/
    z-index: 3;/*一番上に表示*/
    /*見た目の調整*/
	background:#fff;
	color: rgb(142, 142, 142);
	padding:20px 20px;
	text-align: center;
    width: 100%;
}

/* Common styles for menu button and menu-wrap */
.menu-button,.menu-wrap {
	position:fixed;
	width:0;
	height:0;
	font-size:1.8em;
	-webkit-transform:translate3d(1.5em,1.5em,0);
	transform: translate3d(1.5em,1.5em,0);
}
/* Menu Button */
.menu-button {
	z-index:1000;
	margin:0;
	padding:0;
	border:none;
	text-indent:2.5em;
	color:transparent;
	background:transparent;
}
.menu-button::before {
	position:absolute;
	top:0.5em;
	right:0.5em;
	bottom:0.5em;
	left:0.5em;
	background: linear-gradient(#0f2350 20%,rgba(0, 0, 0, 0) 20%,rgba(0, 0, 0, 0) 40%,#0f2350 40%,#0f2350 60%,rgba(0, 0, 0, 0) 60%,rgba(0, 0, 0, 0) 80%,#0f2350 80%);
	content:'';
}
.menu-button:hover {
	opacity: 1;
}
/* Menu */
.menu-wrap {
	z-index:999;
	background: rgba(255, 255, 255, 0.8);
	-webkit-transition:width 0.4s,height 0.4s,-webkit-transform 0.4s;
	transition:width 0.4s,height 0.4s,transform 0.4s;
	-webkit-transition-timing-function:cubic-bezier(0.7,0,0.3,1);
	transition-timing-function:cubic-bezier(0.7,0,0.3,1);
}
.menu {
	height:100%;
	overflow:hidden;
	font-size:0.75em;
}
.icon-list {
	float:right;
	padding:2.5em 2em 0 6em;
}
.icon-list a {
	opacity:0;
	display:inline-block;
	padding:0 0.2em;
	margin:0 15px;
	text-align:center;
	font-size:1.2em;
	color: #353535;
}
.icon-list a span {
	display:block;
	text-transform:uppercase;
	letter-spacing:1px;
	font-size:0.5em;
	font-weight:700;
	padding-top: 0.5em;
}
/* Shown menu */
.show-menu .content-wrap {
	-webkit-transition-delay:0s;
	transition-delay:0s;
	-webkit-transform:translate3d(0,125px,0);
	transform:translate3d(0,125px,0);
}
.show-menu .menu-wrap {
	width:100%;
	height:125px;
	-webkit-transform:translate3d(0,0,0);
	transform:translate3d(0,0,0);
	-webkit-transition-delay:0s;
	transition-delay:0s;
	border-bottom: 1px solid #0f2350;
}
.show-menu .icon-list a {
	opacity:1;
	-webkit-transition:opacity 0.4s 0.4s;
	transition:opacity 0.4s 0.4s;
}
.show-menu .icon-list a:nth-child(2) {
	-webkit-transition-delay:0.42s;
	transition-delay:0.42s;
}
.show-menu .icon-list a:nth-child(3) {
	-webkit-transition-delay:0.44s;
	transition-delay:0.44s;
}
.show-menu .icon-list a:nth-child(4) {
	-webkit-transition-delay:0.46s;
	transition-delay:0.46s;
}
.show-menu .icon-list a:nth-child(5) {
	-webkit-transition-delay:0.48s;
	transition-delay:0.48s;
}
.show-menu .icon-list a:nth-child(6) {
	-webkit-transition-delay:0.5s;
	transition-delay: 0.5s;
}

/* Boucing Arrow Animation */
@keyframes arrowbounce {
	from {
		-webkit-transform:translateY(0);
		-moz-transform:translateY(0);
		transform:translateY(0);
	}
	to {
		-webkit-transform:translateY(-20px);
		-moz-transform:translateY(-20px);
		transform:translateY(-20px);
	}
}
@-moz-keyframes arrowbounce {
	/* Firefox */ from {
		-webkit-transform:translateY(0);
		-moz-transform:translateY(0);
		transform:translateY(0);
	}
	to {
		-webkit-transform:translateY(-20px);
		-moz-transform:translateY(-20px);
		transform:translateY(-20px);
	}
}
@-webkit-keyframes arrowbounce {
	/* Safari and Chrome */ from {
		-webkit-transform:translateY(0);
		-moz-transform:translateY(0);
		transform:translateY(0);
	}
	to {
		-webkit-transform:translateY(-20px);
		-moz-transform:translateY(-20px);
		transform:translateY(-20px);
	}
}
@-o-keyframes arrowbounce {
	/* Opera */ from {
		-webkit-transform:translateY(0);
		-moz-transform:translateY(0);
		transform:translateY(0);
	}
	to {
		-webkit-transform:translateY(-20px);
		-moz-transform:translateY(-20px);
		transform:translateY(-20px);
	}
}

/* ==========================================================================Team========================================================================== */


/* ==========================================================================Contact========================================================================== */
.up-btn {
	width:55px;
	height:55px;
	background: rgba(255, 232, 1, 0.9);
	display:block;
	margin:0 auto;
	color: #0f2350;
	font-size:18px;
	line-height:52px;
	text-align:center;
	position:absolute;
	top:-26px;
	left:0;
	right:0;
	margin-left:auto;
	margin-right:auto;
}
.up-btn:hover,up-btn:focus {
	color: black;
	background: #FFE800;
}

/* ==========================================================================Responsive========================================================================== */
/* 320px (iPhone) */
@media screen and (max-width:414px) {
	.scrollto {
		padding: 95px 0px 0px 0px;
	}

	.hero h1 {
		font-size: 100px;
		line-height: 80px;
		margin-top: 65px;
}
}
/* 480px (WVGA - Low End Windows Phone) */
@media screen and (max-width:480px) {
	.wrapper {
		background:#f3f5f8;
		height:640px;
	}
	.iphone {
		display:none;
	}
	.fluid-white {
		display:none;
	}
	.wp2,.wp4,.wp5,.light-box {
		margin-bottom: 30px;
	}
}
/* xGA iPad */
@media screen and (max-width:1024px) {
	.wp3 {
		background-position:50px 0;
	}
	.swag {
		background-attachment:scroll;
	}
	.subscribe {
		background-attachment: scroll;
	}
}
/* 1200px (Small Desktop,Netbook) */
@media screen and (max-width:1280px) {
	.wp3 {
		background-position: 50px 0;
	}
}
/* Bootstrap 990px Breakpoint to 480px */
@media screen and (min-width:480px) and (max-width:991px) {
	.iphone {
		display:none;
	}
	.fluid-white {
		display:none;
	}
	.wrapper {
		background:#f3f5f8;
		height:540px;
	}
	.wp2,.wp4,.wp5,.light-box {
		margin-bottom:30px;
	}
}
@media screen and (max-width:50em) {
	.icon-list a {
		padding:0.5em 0em;
		margin:0 5px;
		font-size:1em;
	}
}







/** Responsive fixes **/
@media screen and (max-width:767px) {
	.inner {
    padding-top: 10px;
    text-align: center;
	}

	.hero h3 {
	    letter-spacing: 10px;
	}


	.hero {
	    padding-bottom: 0;
	}

	.subscribe input[type=text] {
	    width: 50%;
	    margin-bottom: 30px;
	}

	.btn-send {
	    float: none;
	
	    margin-bottom: 80px;
	}
	.effects .img {
    	margin-bottom: 15px;
	}
	.show-menu .icon-list a {
		display: block;
		width: 100%;
		float: left;
		margin-bottom: 10px;
	}

	.show-menu .menu-wrap {
		height: 100%;
	}
}


@media screen and (max-width:991px) {
	.hero {
    	padding: 0px;
	}

	.subscribe {
	    padding-bottom: 40px;
	}
}

/*=== 9-1-2 丸が動いてスクロールを促す ====*/

/*スクロールダウン全体の場所*/
.scrolldown2{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:10px;
	left:50%;
}

/*Scrollテキストの描写*/
.scrolldown2 span{
    /*描画位置*/
	position: absolute;
	left:10px;
	bottom:10px;
    /*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-4px;
    /*丸の形状*/
	width:10px;
	height:10px;
	border-radius: 50%;
	background:#eee;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:45px;}
     100%{bottom:-5px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }

/* 線の描写 */
.scrolldown2:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	left:0;
    /*線の形状*/
	width:2px;
	height: 50px;
	background:#eee;
}

/* 問合せページ */
.form-field {
	width:100%;
	/* max-width:800px; */
	 border: 1px solid #c9b7a2;
	 background: #E3DECC !important;
	 -webkit-border-radius: 3px;
	 -moz-border-radius: 3px;
	 border-radius: 3px;
	 color: #432f2f;
	 -webkit-box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(000,000,000,0.7) 0 0px 0px;
	 -moz-box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(000,000,000,0.7) 0 0px 0px;
	 box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(000,000,000,0.7) 0 0px 0px;
	 padding:10px !important;
	 margin-bottom:20px;
	 font-size: 16px !important;
	 }
  
	 .form-field:focus {
	 background: #fff !important;
	 border-color: #C69D2B !important;
	 color: #725129;
	 }
  .form-container h2 {
	 text-shadow: #fdf2e4 0 1px 0;
	 font-size:18px;
	 margin: 0 0 10px 0;
	 font-weight:bold;
	 text-align:center;
	  }
  .form-title {
	 margin-bottom:10px;
	 color: #725129;
	 text-shadow: #fdf2e4 0 1px 0;
	 }
  .submit-container {
	 margin:8px 0;
	 text-align:right;
	 }
  .submit-button {
	 border: 1px solid #447314;
	 background: #6aa436;
	 background: -webkit-gradient(linear, left top, left bottom, from(#8dc059), to(#6aa436));
	 background: -webkit-linear-gradient(top, #8dc059, #6aa436);
	 background: -moz-linear-gradient(top, #8dc059, #6aa436);
	 background: -ms-linear-gradient(top, #8dc059, #6aa436);
	 background: -o-linear-gradient(top, #8dc059, #6aa436);
	 background-image: -ms-linear-gradient(top, #8dc059 0%, #6aa436 100%);
	 -webkit-border-radius: 4px;
	 -moz-border-radius: 4px;
	 border-radius: 4px;
	 -webkit-box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(255,255,255,0.4) 0 1px 0;
	 -moz-box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(255,255,255,0.4) 0 1px 0;
	 box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(255,255,255,0.4) 0 1px 0;
	 text-shadow: #addc7e 0 1px 0;
	 color: #31540c;
	 font-family: 'メイリオ', 'Hiragino Kaku Gothic Pro', sans-serif;
	 padding: 8.5px 18px;
	 font-size: 14px;
	 text-decoration: none;
	 vertical-align: middle;
	 }
  .submit-button:hover {
	 border: 1px solid #447314;
	 text-shadow: #31540c 0 1px 0;
	 background: #6aa436;
	 background: -webkit-gradient(linear, left top, left bottom, from(#8dc059), to(#6aa436));
	 background: -webkit-linear-gradient(top, #8dc059, #6aa436);
	 background: -moz-linear-gradient(top, #8dc059, #6aa436);
	 background: -ms-linear-gradient(top, #8dc059, #6aa436);
	 background: -o-linear-gradient(top, #8dc059, #6aa436);
	 background-image: -ms-linear-gradient(top, #8dc059 0%, #6aa436 100%);
	 color: #fff;
	 }
  .submit-button:active {
	 text-shadow: #31540c 0 1px 0;
	 border: 1px solid #447314;
	 background: #8dc059;
	 background: -webkit-gradient(linear, left top, left bottom, from(#6aa436), to(#6aa436));
	 background: -webkit-linear-gradient(top, #6aa436, #8dc059);
	 background: -moz-linear-gradient(top, #6aa436, #8dc059);
	 background: -ms-linear-gradient(top, #6aa436, #8dc059);
	 background: -o-linear-gradient(top, #6aa436, #8dc059);
	 background-image: -ms-linear-gradient(top, #6aa436 0%, #8dc059 100%);
	 color: #fff;
	 }

	 /*パンくずリスト*/
	 .breadcrumbs {
		list-style: none;
		margin: 0 0 1rem 15px; }
		.breadcrumbs::before, .breadcrumbs::after {
		  content: ' ';
		  display: table;
		  -webkit-flex-basis: 0;
			  -ms-flex-preferred-size: 0;
				  flex-basis: 0;
		  -webkit-order: 1;
			  -ms-flex-order: 1;
				  order: 1; }
		.breadcrumbs::after {
		  clear: both; }
		.breadcrumbs li {
		  float: left;
		  color: #0a0a0a;
		  font-size: 1.2rem;
		  cursor: default;
		  text-transform: uppercase; }
		  .breadcrumbs li:not(:last-child)::after {
			color: #cacaca;
			content: "/";
			margin: 0 0.75rem;
			position: relative;
			top: 1px;
			opacity: 1; }
		.breadcrumbs a {
		  color: #2199e8; }
		  .breadcrumbs a:hover {
			text-decoration: underline; }
		.breadcrumbs .disabled {
		  color: #cacaca; }
		   /*パンくずリスト*/