@charset 'utf-8';

@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700');

img {
	vertical-align: top;
	border: none;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 1.5;
}
.general_hero {
	display: -webkit-flex;
	display: flex;
	height: 80vh;
	min-height: 760px;
	text-align: center;
	background: url(../images/hero_bg.jpg) no-repeat center center;
	background-size: cover;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}
.top_title {
	width: 756px;
	margin: 0 auto 40px;
	padding: 0;
}
.top_title img, .top_bnr li img {
	width: 100%;
	height: auto;
}
.top_lead {
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
}
.top_excerpt {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.8;
	margin-bottom: 30px;
}
p.notes {
	font-size: 12px;
	margin-bottom: 40px;	
}

.top_bnr {
	display: -webkit-flex;
	display: flex;
	width: 1160px;
	margin: 0 auto;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.top_bnr li {
	position: relative;
	width: 570px;
	list-style: none;
}
.top_bnr li a:hover img {
	opacity: .8;
}
.top_bnr li:after {
	position: absolute;
	right: 30px;
	bottom: 25px;
	display: block;
	width: 61px;
	height: 18px;
	content: '';
	background: url(../images/bnr_arrow.png) no-repeat 0 0;
	background-size: 61px;
}
.top_bnr li:hover:after {
	-webkit-animation: arrowAnime ease-in-out .6s infinite;
	animation: arrowAnime ease-in-out .6s infinite;
}
@keyframes arrowAnime {
 0% {
 transform: translateX(-40px);
 opacity: 0;
}
 90% {
 transform: translateX(0px);
 opacity: 1;
}
 100% {
 transform: translateX(0px);
 opacity: 0;
}
}
div.top_contents {
	clear: both;
	overflow: hidden;
	padding: 80px 0;
	background: #f2f2f2;
	box-shadow: 0 -5px 10px -2px rgba(0,0,0,.1);
}
div.top_contents:after {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: '';
}
div.top_contents h3 {
	margin: 0 0 40px;
	transform: translateX(20px);
	text-align: center;
}
div.top_contents h3 span {
	font-family: 'Roboto', sans-serif;
	font-size: 36px;
	font-weight: 500;
	padding-right: 40px;
	background: url(../images/icon_feed.png) no-repeat right;
	background-size: 17px;
}
div.news_feature {
	width: 1160px;
	margin: 0 auto;
}
div.news_feature div.col {
	position: relative;
	float: left;
	box-sizing: border-box;
	width: 280px;
	min-height: 380px;
	margin: 0 13px 13px 0;
	padding-bottom: 30px;
	cursor: pointer;
}
div.col:hover img {
	opacity: .8;
}
div.col.stretch {
	background: #fff url(../images/col_bg_stretch.jpg) no-repeat center bottom;
}
div.col.exercise {
	background: #fff url(../images/col_bg_exercise.jpg) no-repeat center bottom;
}
div.news_feature div.col:nth-child(4n) {
	margin-right: 0;
}
.news_photo img {
	width: 100%;
	height: auto;
}
.news_caption {
	padding: 13px;
}
.news_caption .category {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 500;
	margin: 0 0 6px;
}
div.col.stretch .category {
	color: #e61428;
}
div.col.exercise .category {
	color: #418cdc;
}
div.col p.excerpt {
	font-size: 14px;
}
div.col p.update {
	font-size: 13px;
	position: absolute;
	bottom: 10px;
	left: 15px;
	color: #666;
}
#rwd-content #rwd-main-content {
	margin-bottom: 0!important;
}

@media(min-width: 768px) {
br.sp {
	display: none;	
}
}



@media(max-width: 1160px) {
.top_title {
	width: 80%;
}
.top_bnr {
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 0 20px;
}
.top_bnr li {
	width: 49%;
}
.top_bnr li.stretch {
	float: left;
}
.top_bnr li.exercise {
	float: right;
}
div.news_feature {
	width: auto;
	margin: 0 20px;
}
div.news_feature div.col,  div.news_feature div.col:nth-child(4n) {
	width: calc(33% - 5px);
	margin: 0 10px 10px 0;
}
div.news_feature div.col:nth-child(3n) {
	margin-right: 0;
}
}
@media(max-width: 767px) {
.general_hero {
	height: inherit;
	min-height: inherit;
	padding: 9vw 0;
}
.top_title {
	width: 90%;
	margin-bottom: 25px;
}
.top_lead {
	font-size: 18px;
	margin-bottom: 15px;
}
.top_excerpt {
	font-size: 14px;
	margin-bottom: 25px;
}

.top_lead,
.top_excerpt,
.notes {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.top_excerpt,
.notes {
	text-align: left;
}

.top_bnr li {
	float: none!important;
	width: auto;
	margin: 0 0 10px;
}
.top_bnr li:after {
	right: 15px;
	bottom: 15px;
}
div.top_contents {
	padding: 9vw 0;
}
div.top_contents h3 span {
	font-size: 8vw;
}

div.news_feature {
	margin: 0 15px;
}
div.news_feature div.col,  div.news_feature div.col:nth-child(4n) {
	width: calc(50% - 5px);
	min-height: 70vw;
	margin: 0 0 10px;
}
div.news_feature div.col:nth-child(3n) {
	margin: 0 0 15px;
}
div.news_feature div.col:nth-child(even) {
	float: right;
}
div.news_feature div.col:nth-child(odd) {
	clear: both;
}
.news_caption {
	padding: 8px;
}
.news_caption .category,  div.col p.update {
	font-size: 10px;
}
div.col p.excerpt {
	font-size: 12px;
}
div.col p.excerpt br {
	display: none;
}
div.col p.update {
	left: 8px;
}
}
