@charset "utf-8";
/*-----------------------------------------------
 * Index
 * Detail
-------------------------------------------------*/
/*-----------------------------------------------
 * Index
-------------------------------------------------*/
/**
 * articleList
 */
.articleList {
	display: flex;
	flex-wrap: wrap;
	gap: min(3.33333vw, 40px);
	margin-bottom: 80px;
}
@media screen and (max-width:767px){
	.articleList {
		gap: 24px;
		margin-bottom: 40px;
	}
}

/* list */
.articleList__list {
	border-bottom: 1px solid rgba(255,255,255,.4);
	width: calc((100% - min(6.66666vw, 80px)) / 3);
}
.articleList__list-link {
	color: #fff;
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
	transition: background-color .3s ease;
}
.articleList__list-link:hover {
	background-color: #000;
}
@media screen and (max-width:767px){
	.articleList__list {
		width: calc((100% - 24px) / 2);
		max-width: 100%;
	}
}

/* thumb */
.articleList__thumbWrap {
	border: 1px solid rgba(255,255,255,.4);
	aspect-ratio: 16 / 9;
	width: 100%;
	overflow: hidden;
	transition: border .3s ease;
}
.articleList__list-link:hover .articleList__thumbWrap {
	border: 1px solid rgba(255,255,255,1);
}
.articleList__thumb {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 100%;
}

/* bottom */
.articleList__bottom {
	padding: min(1.66666vw,20px);
}
@media screen and (max-width:767px){
	.articleList__bottom {
		padding: 12px 0;
	}
}

/**
 * date
 */
.articleList__dateWrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 14px;
}
.articleList__list-time {
	font-size: min(1.33333vw,16px);
	line-height: 1;
	flex: none;
	padding-top: 2px;
	padding-right: 8px;
	white-space: nowrap;
}
.articleList__list-line {
	display: block;
	background-color: rgba(255,255,255,.4);
	width: 100%;
	height: 1px;
}
@media screen and (max-width:767px){
	.articleList__dateWrap {
		display: block;
		margin-bottom: 10px;
	}
	.articleList__list-time {
		display: block;
		font-size: 12px;
		padding-right: 4px;
	}
	.articleList__list-line {
		display: none;
	}
}

/* tag */
.item--tagLists {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 4px;
	margin-left: auto;
}
.item--tag {
	background-color: #fff;
	color: #000;
	display: block;
	font-size: min(1.16666vw,14px);
	line-height: 1;
	padding: 2px;
	white-space: nowrap;
}
@media screen and (max-width:767px){
	.item--tagLists {
		justify-content: flex-start;
		margin-top: 6px;
	}
	.item--tag {
		display: inline-block;
		font-size: 10px;
	}
}

/**
 * title
 */
.articleList__list-title {
	font-size: min(1.33333vw,16px);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	transition: color .3s ease;
}
.articleList__list-link:hover .articleList__list-title {
	color: rgb(var(--color-red));
}
@media screen and (max-width:767px){
	.articleList__list-title {
		font-size: 12px;
	}
}


/*-----------------------------------------------
 * Detail
-------------------------------------------------*/
.newsDetail {
	width: 880px;
	margin: 0 auto;
}
@media screen and (max-width:767px){
	.newsDetail {
		width: 100%;
	}
}

/**
 * newsDetail__titleArea
 */
.newsDetail__titleArea {
	border-top: 1px solid rgba(255,255,255,.24);
	border-bottom: 1px solid rgba(255,255,255,.24);
	padding: 32px 20px;
}
@media screen and (max-width:767px){
	.newsDetail__titleArea {
		padding: 3.7333vw 0;
	}
}

/* time */
.newsDetail__timeWrap {
	display: flex;
	margin-bottom: 10px;
}
.newsDetail__time {
	font-size: 20px;
	line-height: 1;
	margin-right: 10px;
	text-align: center;
}
@media screen and (max-width:767px){
	.newsDetail__timeWrap {
		margin-bottom: 6px;
	}
	.newsDetail__time {
		font-size: 3.7333vw;
		padding-top: 2px;
	}
}

/* tag */
.newsDetailtagLists {
	display: flex;
	flex-wrap: wrap;
}
.newsDetailtagLists__item {
	margin-bottom: 2px;
	margin-left: 10px;
}
.newsDetailtagLists__item a {
	background-color: #fff;
	color: #000;
	display: block;
	font-size: 14px;
	line-height: 1;
	padding: 2px 8px;
	text-decoration: none;
	transition: background-color .3s ease,
				color .3s ease;
}
.newsDetailtagLists__item a:hover {
	background-color: #000;
	color: rgb(var(--color-red));
}
@media screen and (max-width:767px){
	.newsDetailtagLists__item {
		margin-left: 8px;
	}
	.newsDetailtagLists__item a {
		font-size: 10px;
	}
}

/* title */
.newsDetail__title {
	font-size: 20px;
    line-height: 2;
}
@media screen and (max-width:767px){
	.newsDetail__title {
		font-size: 3.7333vw;
	}
}


/**
 * newsDetail__text
 */
 .newsDetail__textWrap {
	font-size: 16px;
	line-height: 2;
	margin-bottom: 40px;
	padding: 40px 0;
}
@media screen and (max-width:767px){
	.newsDetail__textWrap {
		font-size: 12px;
		padding: 24px 0;
	}
}

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

/* iframe */
.newsDetail__textWrap .ytifWrap{
    display: block;
    position: relative;
	width: 640px;
	height: 360px;
}
@media screen and (max-width: 767px) {
	.newsDetail__textWrap .ytifWrap{
	    width: 100%;
		height: auto;
	    padding-top: 56.25%;
	}
}
.newsDetail__textWrap iframe[src*="youtube"]{
    border: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
