@charset "UTF-8";
/*-----------------------------------------------
 * Archives
 * Detail
-------------------------------------------------*/
/*-----------------------------------------------
 * Archives
-------------------------------------------------*/
/* wrap */
.newsListsWrap {
	margin-top: 20px;
	padding: 0 4.66667vw;
}
@media screen and (max-width: 768px) {
	.newsListsWrap {
		padding: 0 4.6vw;
	}
}

/* item */
.newsLists__item {
	border-bottom: 1px dotted #5a89b3;
}
.newsLists__item:nth-child(even){
	border-bottom: 1px dotted #e77069;
}

/* link */
.newsLists__link {
	display: flex;
	font-size: 16px;
	line-height: 1.8;
	padding: 20px 0;
	transition: background-color .4s ease;
	text-decoration: none;
}
.newsLists__link:hover {
	background-color: rgba(255,255,255,.4);
}
@media screen and (max-width: 768px) {
	.newsLists__link {
		display: block;
		font-size: 12px;
		padding: 16px 0;
	}
}

/* date */
.newsLists--date {
	color: #5a89b3;
}
.newsLists__item:nth-child(even) .newsLists--date {
	color: #e77069;
}

/* title */
.newsLists--title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	padding-left: 20px;
}
@media screen and (max-width: 768px) {
	.newsLists--title {
		padding-left: 0;
	}
}


/*-----------------------------------------------
 * Detail
-------------------------------------------------*/
/**
 * newsDetail
 */
/* wrap */
.newsDetailWrap {
	margin-top: 40px;
	padding: 0 4.66667vw;
}

/* detail */
.newsDetail {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

/**
 * newsDetail__title
 */
.newsDetail__title {
	border-bottom: 1px dotted #5a89b3;
	display: flex;
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 26px;
	padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
	.newsDetail__title {
		display: block;
		font-size: 12px;
		margin-bottom: 24px;
		padding-bottom: 20px;
	}
}

/* date */
.newsDetail__title--date {
	color: #5a89b3;
	display: block;
}

/* title */
.newsDetail__title--text {
	display: block;
	padding-left: 20px;
}
@media screen and (max-width: 768px) {
	.newsDetail__title--text {
		padding-left: 0;
	}
}

/**
 * newsDetail__textWrap
 */
 .newsDetail__textWrap {
	font-size: 16px;
	letter-spacing: 0.01em;
	line-height: 2;
}
@media screen and (max-width:767px){
	.newsDetail__textWrap {
		font-size: 12px;
	}
}

/* image */
.newsDetail__textWrap img{
    height: auto !important;
    max-width: 100%;
}

/* iframe */
.newsDetail__textWrap .ytifWrap{
    display: block;
    position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.newsDetail__textWrap iframe[src*="youtube"]{
    border: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* a */
.newsDetail__textWrap a{
	color: #e77069;
}

/**
 * backLinkWrapWrap
 */
 .backLinkWrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 80px;
}
@media screen and (max-width: 768px) {
	.backLinkWrap {
		margin-top: 40px;
	}
}

/* a */
.backLink {
	background-color: #e77069;
	color: #fff;
	display: block;
	font-size: 16px;
	padding: 4px 10px;
	text-decoration: none;
	transition: background-color .4s ease;
}
.backLink:hover {
	background-color: #5a89b3;
}
@media screen and (max-width: 768px) {
	.backLink {
		font-size: 12px;
		padding: 6px 20px;
	}
}
