/* "jQuery" Style Sheet */


/* =====================================================
▼ LOADING ANIMATION
===================================================== */
/* #loader-bg {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #FFF;
	z-index: 2000;
}

@media screen and (min-width:768px){
	#loader {
		display: none;
		position: fixed;
		top: 50%;
		left: 50%;
		width: 150px;
		height: 230px;
		margin-top: -115px;
		margin-left: -75px;
		text-align: center;
		color: #FFF;
		z-index: 2001;
	}
	#loader img {
		position: absolute;
		top: 0;
		left: 0;
		display: none;
	}
}

@media screen and (max-width:767px){
	#loader {
		display: none;
		position: fixed;
		top: 50%;
		left: 50%;
		width: 150px;
		height: 230px;
		margin-top: -115px;
		margin-left: -75px;
		text-align: center;
		color: #FFF;
		z-index: 2001;
	}
	#loader img {
		position: absolute;
		top: 0;
		left: 0;
		width: 150px;
		height: 230px;
		display: none;
	}
} */



/* =====================================================
▼ TO TOP（スルスルスクロールボタン）
===================================================== */
@media screen and (min-width:768px){
	div.totop {
		position: fixed;
		bottom: 20px;
		right: 20px;
		cursor: pointer;
		z-index: 150;
	}
}

@media screen and (max-width:767px){
	div.totop {
		position: fixed;
		bottom: 10px;
		right: 10px;
		cursor: pointer;
		z-index: 150;
	}
	div.totop img {
		width: 40px;
		height: auto;
		
		filter: alpha(opacity=70); /* IE 6,7*/
		opacity: 0.7;
			-ms-filter: "alpha(opacity=70)"; /* IE 8,9 */
			-moz-opacity: 0.7; /* FF,Netscape */
			-khtml-opacity: 0.7; /* Safari 1.x */
		zoom: 1; /* IE */
	}
}



/* =====================================================
▼ TOGGLE（トグル開閉）
===================================================== */
dl.toggle {}
dl.toggle dt {
	position: relative;
	cursor: pointer;
}
dl.toggle dt:after {
	position: absolute;
	top: 8px;
	right: 0;
	font-family: FontAwesome;
	font-size: 180%;
	line-height: 1em;
	color: #AFAA6E;
	margin-right: 10px;
	content: "\f055";
}
dl.toggle dt.active:after {
	position: absolute;
	top: 8px;
	right: 0;
	font-family: FontAwesome;
	font-size: 180%;
	line-height: 1em;
	color: #AFAA6E;
	margin-right: 10px;
	content: "\f056";
}
dl.toggle dd{
	display:none;
}



/* =====================================================
▼ STICKY（追跡）
===================================================== */
@media screen and (min-width:768px){
	.is-fixed {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 1000;
	}
}



/* =====================================================
▼ TAB（タブ切り替え）
===================================================== */
.tab-list {
	overflow: hidden;
}
.tab-list li {
	cursor: pointer;
}
.tab-list li.select {}
.content-list li {}
.content-list li.hide {
	display: none;
}


/* =====================================================
▼ DROP DOWN PLAIN（PC用ドロップダウンメニュー）
===================================================== */
@media screen and (min-width:768px){
	header nav ul.dropdown li ul {
		visibility: hidden;
		position: absolute;
		font-size: 90%;
		line-height: 1.5em;
		font-weight: normal;
		text-align: left;
		z-index: 1;
	}
	header nav ul.dropdown li ul li {
		float: none;
		display: block;
		text-align: left;
		border: none;
		border-bottom: solid 1px #174A66;
		background-color: #47788E;
		position: relative;
		
		transition: 0.3s ease-in-out;
			-webkit-transition: 0.3s ease-in-out;
			-moz-transition: 0.3s ease-in-out;
	}
	header nav ul.dropdown li ul li:last-child {
		border: none;
	}
	header nav ul.dropdown li ul li a {
		display: block;
		color: #FFF;
		padding: 10px 20px;
	}
	header nav ul.dropdown li ul li:hover {
		background-color: #174A66;
	}
	header nav ul.dropdown li ul li a:hover {
		text-decoration: none;
	}
	header nav ul.dropdown ul ul {
		left: 100%;
		top: 0;
		margin: 0;
	}
}



/* =====================================================
▼ YOUTUBEを画像表示にして軽量化
===================================================== */
.img-youtube {
	position: relative;
	cursor: pointer;
}
.img-youtube:after {
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 0;
	right: 0;
	font-family: FontAwesome;
	line-height: 1em;
	color: #F00;
	content: "\f16a";
	text-align: center;
}

@media screen and (min-width:768px){
	.img-youtube:after {
		font-size: 70px;
		margin-top: -35px;
	}
}

@media screen and (max-width:767px){
	.img-youtube:after {
		font-size: 50px;
		margin-top: -25px;
	}
}

.img-youtube img {
	width: 100%;
	height: auto;
	margin-bottom: 0;
}
.img-youtube iframe {
	z-index: 11;
}








