/* "jQuery" Style Sheet */


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

@media screen and (min-width:736px){
	#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: 1001;
	}
	#loader img {
	  position: absolute;
	  top: 0;
	  left: 0;
	  display: none;
	}
}

@media screen and (max-width:736px){
	#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: 1001;
	}
	#loader img {
		position: absolute;
	  top: 0;
	  left: 0;
	  width: 150px;
	  height: 230px;
	  display: none;
	}
}



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

@media screen and (max-width:736px){
	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 lt 8 */
		-ms-filter: "alpha(opacity=70)";  /* ie 8 */
		-moz-opacity: 0.7;                 /* FF lt 1.5, Netscape */
		-khtml-opacity: 0.7;              /* Safari 1.x */
		opacity: 0.7;
	}
}



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



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


/* =====================================================
▼ DROP DOWN PLAIN（PC用ドロップダウンメニュー）
===================================================== */
@media screen and (min-width:736px){
	header nav ul.dropdown {
		display: table;
		border-collapse: separate;
		white-space: nowrap;
	}
	header nav ul.dropdown > li {
		display: table-cell;
		vertical-align: top;
		font-size: 100%;
		line-height: 1.5em;
		text-align: center;
	}
	header nav ul.dropdown > li > a {
		display: block;
		color: #F4F4EA;
		padding: 20px 15px;
		
		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:hover > a  {
		text-decoration: none;
		color: #D7B26F;
	}
	header nav ul.dropdown > li.ec > a {
		color: #D7B26F;
		
		box-sizing: border-box;
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
	}
	header nav ul.dropdown > li.ec:hover > a  {
		color: #F4F4EA;
	}
	header nav ul.dropdown > li.ec span {
		border: solid 1px #D7B26F;
		padding: 10px;
		
		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.ec:hover span {
		background-color: #D7B26F;
	}
	
	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-top: solid 1px #6D6262;
		background-color: #352B2B;
		position: relative;
	}
	header nav ul.dropdown li ul li a {
		display: block;
		color: #F4F4EA;
		padding: 10px 20px;
	}
	header nav ul.dropdown li ul li a:hover {
		text-decoration: none;
		color: #D7B26F;
	}
	header nav ul.dropdown ul ul {
		left: 100%;
		top: 0;
		margin: 0;
	}
}








