@charset "utf-8";
/*-----------------------------------------------
 * Common
 * Index
 * Detail
-------------------------------------------------*/
/*-----------------------------------------------
 * Common
-------------------------------------------------*/
/**
 * page title
 */
@media screen and (max-width:767px){
	/* 各タイトルの横幅調整 */
	.subArticle__pageImgTitle--img.is-news {
		width: 15.6%;
	}
}

/*-----------------------------------------------
 * Index
-------------------------------------------------*/
.newsListsWrap {
	padding-bottom: 120px;
}
@media screen and (max-width:767px){
	.newsListsWrap {
		padding-bottom: 50px;
	}
}

/**
 * newsLists
 */
.newsLists{
	margin-bottom: 50px;
}
@media screen and (max-width:767px){
	.newsLists{
		margin-bottom: 40px;
	}
}

/* item */
.newsLists__item:nth-child(odd){
	background-color: rgb(var(--color-gray));
}
.newsLists__item:nth-child(even){
	background-color: #fff;
}
@media screen and (max-width:767px){
	.newsLists__item:nth-child(odd){
		background-color: #fff;
	}
	.newsLists__item:nth-child(even){
		background-color: rgb(var(--color-gray));
	}
}

/* link */
.newsLists__link{
	display: flex;
	align-items: center;
	text-decoration: none;
	padding: 20px 60px;
	transition: all .3s ease-in-out;
}
.newsLists__link:hover{
	background-color: #f29600;
}
@media screen and (max-width:767px){
	.newsLists__link{
		padding: 12px 20px;
	}
}

/* date */
.newsLists--date{
	color: rgb(var(--color-pink));
	font-size: 16px;
	font-weight: 700;
	width: 156px;
}
@media screen and (max-width:767px){
	.newsLists--date{
		font-size: 12px;
		font-size: 1.2rem;
		width: 90px;
	}
}

/* title */
.newsLists--title{
	color: #333;
	font-size: 16px;
	font-weight: 700;
	width: calc(100% - 156px);
	transition: all .3s ease-in-out;
}
.newsLists__link:hover .newsLists--title{
	color: #fff;
}
@media screen and (max-width:767px){
	.newsLists--title{
		font-size: 12px;
		font-size: 1.2rem;
		width: calc(100% - 90px);
	}
}


/*-----------------------------------------------
 * Detail
-------------------------------------------------*/
.newsDetail {
	padding-bottom: 120px;
}
@media screen and (max-width:767px){
	.newsDetail {
		padding-bottom: 50px;
	}
}

/**
 * title
 */
.newsDetail__title{
	background-color: #f29600;
	margin-bottom: 50px;
}
.newsDetail__title__in{
	display: flex;
	align-items: center;
	width: 800px;
    margin: 0 auto;
	padding: 20px 0;
}
@media screen and (max-width:767px){
	.newsDetail__title{
		margin-bottom: 30px;
	}
	.newsDetail__title__in{
		width: 100%;
		padding: 12px 20px;
	}
}

/* date */
.newsDetail__title--date{
	color: #ed1e79;
	font-size: 16px;
	font-weight: 700;
	width: 156px;
}
@media screen and (max-width:768px){
	.newsDetail__title--date{
		font-size: 12px;
		font-size: 1.2rem;
		width: 90px;
	}
}

/* text */
.newsDetail__title--text{
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	width: calc(100% - 156px);
	transition: all .3s ease-in-out;
}
@media screen and (max-width:768px){
	.newsDetail__title--text{
		font-size: 12px;
		font-size: 1.2rem;
		width: calc(100% - 90px);
	}
}


/**
 * newsText
 */
.newsDetail__textWrap{
	width: 800px;
    margin: 0 auto;
	color: #333;
    font-size: 16px;
    line-height: 2;
}
@media screen and (max-width:767px){
    .newsDetail__textWrap{
		width: calc(100% - 40px);
		font-size: 12px;
        font-size: 1.2rem;
    }
}

/* p */
/* .newsDetail__text{
    color: #333;
    font-size: 16px;
    line-height: 2;
}
@media screen and (max-width:767px){
    .newsDetail__text{
        font-size: 12px;
        font-size: 1.2rem;
    }
} */

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

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

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