@charset "utf-8";
/*------------------------------------------------------------
	書式設定
------------------------------------------------------------*/
/* テキストの位置 */
.taLeft { text-align: left !important; }
.taCenter { text-align: center !important; }
.taRight { text-align: right !important; }
/* フォントの太さ */
.fwNormal { font-weight: normal !important; }
.fwBold { font-weight: bold !important; }
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
	* html .clearfix {
		zoom: 1;
	}

	*+html .clearfix {
		zoom: 1;
	}
.clearfix:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}
/*------------------------------------------------------------
	flex
------------------------------------------------------------*/
.flex {
	display: flex;
		display: -webkit-flex;
	justify-content: space-between;
		-webkit-justify-content: space-between;
	flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}
.flex.left {
	justify-content: flex-start;
		-webkit-justify-content: flex-start;
}
.flex.center {
	justify-content: center;
		-webkit-justify-content: center;
}
.flex.right {
	justify-content: right;
		-webkit-justify-content: right;
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1186px;
}
@media all and (max-width: 767px) {
	/*------------------------------------------------------------
		content
	------------------------------------------------------------*/
	.content {
		padding: 0 10px;
	}
}
/*------------------------------------------------------------
	comNewsBox
------------------------------------------------------------*/
.comNewsBox {
	margin-left: -188px;
	width: 650px;
	position: absolute;
	left: 50%;
	top: 5px;
	text-align: left !important;
}
.comNewsBox p {
	margin: 0 0 2px !important;
	font-size: 1.12rem !important;
	letter-spacing: 0.5px !important;
}
.comNewsBox dl {
	padding: 0 0 4px 10px;
	font-size: 1.2rem;
	letter-spacing: 0.5px;
	line-height: 18px;
	background-color: #383216;
}
@media all and (-ms-high-contrast:none){
	.comNewsBox dl {
		padding: 2px 0 2px 10px;
	}
}
.comNewsBox dt {
	float: left;
	clear: left;
	letter-spacing: 1px;
}
.comNewsBox dd {
	padding-left: 95px;
}
@media (min-width: 768px) and (max-width: 980px) {
	.comNewsBox {
		margin-left: -12%;
		width: 60%;
	}
}
@media all and (max-width: 767px) {
	.comNewsBox {
		margin: 0 20px;
		width: auto;
		position: static;
		left: auto;
		top: auto;
		text-align: left !important;
	}
	.comNewsBox p {
		margin: 0 0 12px !important;
		font-size: 0.8rem !important;
		line-height: 22px !important;
		text-align: center !important;
		background-color: #000;
	}
	.comNewsBox dl {
		padding: 0;
		font-size: 0.9rem;
		letter-spacing: 0.5px;
		line-height: 17px;
		background: none;
	}	
	.comNewsBox dt {
		display: block;
		float: none;
		font-size: 0.85rem;
		letter-spacing: 1px;
	}	
	.comNewsBox dd {
		padding-left: 0;
	}
}
/*------------------------------------------------------------
	js-spanize
------------------------------------------------------------*/
.js-spanize .span-letter {
	opacity: 0;
	-webkit-animation-duration: 0.7s;
	animation-duration: 0.7s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.js-spanize.on .span-letter {
	-webkit-animation-name: letter-glow;
	animation-name: letter-glow;
}
@-webkit-keyframes letter-glow {
  0% {
    opacity: 0;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.1);
  }
  66% {
    opacity: 1;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
  }
  77% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    text-shadow: 0px 0px 3px #000;
  }
}
@keyframes letter-glow {
  0% {
    opacity: 0;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.1);
  }
  66% {
    opacity: 1;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
  }
  77% {
    opacity: 1;
  }
  100% {
	opacity: 1;
    text-shadow: 0px 0px 3px #000;
  }
}