@charset "utf-8";
/*-----------------------------------------------
 * 01. NEWS - ARCHIVE
 * 02. NEWS - DETAIL
-------------------------------------------------*/
/*-----------------------------------------------
 * 02. NEWS - ARCHIVE
-------------------------------------------------*/
.newsListsWrap {
	width: 960px;
	margin: 80px auto 0;
}
.newsListsWrap > h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 40px;
	text-align: center;
}
@media screen and (max-width:770px) {
	.newsListsWrap {
		width: 100%;
		margin: 90px auto 0;
		padding: 0 50px;
	}
	.newsListsWrap > h3 {
		font-size: 24px;
		margin-bottom: 48px;
	}
}

/**
 * lists
 */
.newsLists {
	display: flex;
	flex-wrap: wrap;
}
/* item */
.newsLists__item {
	width: calc(100% / 3);
	margin-bottom: 40px;
	position: relative;
}
.newsLists__item__in {
	padding: 40px;
	position: relative;
	z-index: 3;
}
/* thumb */
.newsLists__thumbWrap {
	width: 240px;
	height: 240px;
	overflow: hidden;
}
@media screen and (max-width:770px) {
	.newsLists__item {
		width: 50%;
		margin-bottom: 50px;
	}
	.newsLists__item__in {
		padding: 40px 20px;
	}
	.newsLists__thumbWrap {
		width: 100%;
	}
}
.newsLists__thumb {
	background-color: #fff;
	background-image: url(../img/common/logo_thumbbg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 100%;
	height: 100%;
}
/* newsLists__top */
.newsLists__top {
	display: flex;
    margin: 18px 0 10px;
}
.newsLists__time {
    color: #61daf2;
    font-size: 16px;
    margin-top: -5px;
}
.newsLists__cateLists {
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: auto;
    position: relative;
    z-index: 2;
}
.newsLists__cateLists > li:first-child {
    margin-left: 0;
}
.newsLists__cateLists > li {
    margin-left: 8px;
}
.newsLists__cateLists > li a {
    background-color: rgba(255,255,255,1);
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    padding: 2px 4px;
    text-decoration: none;
    white-space: nowrap;
}
@media screen and (max-width:770px) {
	.newsLists__time {
		font-size: 20px;
		margin-top: -9px;
	}
	.newsLists__cateLists > li a {
		font-size: 16px;
	}
}
/* title */
.newsLists__title {
	color: #fff;
	font-size: 16px;
}
@media screen and (max-width:770px) {
	.newsLists__title {
		font-size: 24px;
	}
}
/* a link */
a.newsLists__link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

/*-----------------------------------------------
 * 02. NEWS - DETAIL
-------------------------------------------------*/
.newsDetail {
    width: 960px;
	margin: 80px auto 90px;
}
.newsDetail__in {
	padding: 40px;
}
.newsBack {
	margin: 0 auto;
}
@media screen and (max-width:770px) {
	.newsDetail {
		width: calc(100% - 100px);
		margin: 90px auto;
	}
	.newsDetail__in {
		padding: 0;
	}
}

/**
 * header
 */
.newsDetail__header {
	margin-bottom: 40px;
}
/* top */
.newsDetail__top {
    display: flex;
    align-items: center;
    margin: 12px 0 10px;
}
.newsDetail__time {
    color: #61daf2;
    font-size: 24px;
    margin-top: 1px;
}
.newsDetail__top .cateLists > li a {
	font-size: 16px;
}
/* title */
.newsDetail__title {
	border-bottom: 1px solid rgba(255,255,255,.2);
	color: #fff;
	font-size: 24px;
	font-weight: 700;
    padding-bottom: 12px;
}
@media screen and (max-width:770px) {
	.newsDetail__title {
		font-size: 32px;
	}
}

/**
 * newsDetail__textWrap
 */
.newsDetail__textWrap {
    color: #fff;
    font-size: 16px;
}
/* p */
.newsDetail__textWrap p{
	margin-bottom: 30px;
}
@media screen and (max-width:770px){
	.newsDetail__textWrap {
		font-size: 24px;
	}
	.newsDetail__textWrap p{
		margin-bottom: 40px;
	}
}
/* image */
.newsDetail__textWrap img{
    height: auto;
    max-width: 100%;
}
/* iframe */
.newsDetail__textWrap .ytWrap{
    display: block;
    width: 100%;
    padding-top: 56.25%;
    position: relative;
}
.newsDetail__textWrap iframe[src*="youtube"]{
    border: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
/* a */
.newsDetail__textWrap a{ color: #61daf2;text-decoration: none; }
.newsDetail__textWrap a:hover{
	text-decoration: underline;
}
/* link */
.newsDetail__textWrap p.link{
	display: flex;
	align-items: center;
}
.newsDetail__textWrap p.link a{
	display: flex;
	align-items: center;
}
.newsDetail__textWrap p.link a:before{
	content: "";
	background: url(../img/common/icon_arrow_w.svg) no-repeat 0 0 / 100%;
	width: 12px;
	height: 22px;
	margin-right: 12px;
}
.newsDetail__textWrap p.link a:hover:before{
	animation: flash .001s ease-in-out infinite alternate;
}
@keyframes flash{
    0%  { opacity: 0; }
    100%{ opacity: 1; }
}

/**
 * share
 */
.newsDetail__share {
	margin-top: 80px;
}
.newsDetail__share .shareArea_w {
	justify-content: flex-start;
}