@charset "utf-8";
/*---------------------------------
* news
----------------------------------*/

/*------
DETAIL
-------*/
/*ttl*/
.newsArea.-detail .pageTtlWrap{
	margin-bottom: calc(40 / var(--vw-min) * 100vw);
}
.newsDetail{
    padding-bottom: calc(40 / var(--vw-min) * 100vw);
}
.newsDetail-ttl{
    padding-bottom: calc(20 / var(--vw-min) * 100vw);
    border-bottom: 1px solid var(--color-red);
}
.newsDetail .news-text{
    font-size: min(calc(16 / var(--vw-min) * 100vw),16px);
    font-size: 16px;
    line-height: 1.8;
}
@media screen and (max-width:768px) {
    .newsDetail .news-text{
        font-size: calc(30 / var(--vw-min) * 100vw);
    }
}

/*date*/
.newsArea.-detail .news-date{
	margin-bottom: calc(10 / var(--vw-min) * 100vw);
}
.newsArea.-detail .news-date::after{
    width: 100%;
}
.newsDetail-textBlock{
    padding: min(calc(30 / var(--vw-min) * 100vw),30px) 0;
    line-height: 2;
}
.newsDetail-textBlock p{
	margin-bottom:  min(calc(30 / var(--vw-min) * 100vw),30px);
    line-height: 2;
}
.newsDetail-textBlock img{
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
	margin-bottom:  min(calc(30 / var(--vw-min) * 100vw),30px);
}
.newsDetail-textBlock a{
    color: #FFF;
    text-decoration: underline;
}
@media screen and (max-width:768px) {
    .newsDetail-textBlock{
        font-size: calc(20 / var(--vw-min) * 100vw);
    }
}



.newsArea__inner{
    position: relative;
    max-width:1290px;
    margin: 0 auto;
    padding: calc(100 / var(--vw-min) * 100vw) calc(95 / var(--vw-min) * 100vw) calc(24 / var(--vw-min) * 100vw) ;
}
@media screen and (max-width:768px) {
    .newsArea.-detail .newsArea__inner,
    .newsArea.-list .newsArea__inner {
        padding: calc(100 / var(--vw-min) * 100vw) calc(24 / var(--vw-min) * 100vw) calc(24 / var(--vw-min) * 100vw);
    }
}

/*newsList*/
.newsListWrap{
    position: relative;
    margin-bottom: min(calc(150 / var(--vw-min) * 100vw),150px);
}
.newsList{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.newsList__item{
    width: 100%;
    display: flex;
    margin-bottom: calc(60 / var(--vw-min) * 100vw);
    transform: translateY(calc(20 / var(--vw-min) * 100vw));
    transition: all .6s ease;
}
.newsList__item.is-ani{
    opacity: 1;
    transform: translateY(0);
}
@media screen and (max-width:768px) {
    .newsList__item{
        margin-bottom: calc(80 / var(--vw-min) * 100vw);
    }
    .newsList__item:nth-child(even) .newsList__item-link .newsList__item-img{
        order: 2;
        margin-left: calc(30 / var(--vw-min) * 100vw);
        margin-right: unset;
    }
}
/*link*/
.newsList__item-link{
    display: flex;
    width: calc(700 / var(--vw-min) * 100vw);
    max-width: 700px;
    align-items: center;
}
@media screen and (max-width:768px) {
    .newsList__item-link{
        width: 100%;
    }
}

/* even */
.newsList__item:nth-child(even){
        justify-content: flex-end;
}
.newsList__item:nth-child(even) .newsList__item-link .newsList__item-img{
    order: 2;
}

/* img */
.newsList__item-img{
    width: calc(380 / var(--vw-min) * 100vw);
    height: calc(214 / var(--vw-min) * 100vw);
    max-width: 380px;
    max-height: 214px;
    overflow: hidden;
}
.newsList__item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease;
}
@media screen and (max-width:768px) {
    .newsList__item-img{
        max-width: unset;
        margin-right: calc(30 / var(--vw-min) * 100vw);
    }
}

@media screen and (min-width: 769px) {
    .newsList__item:nth-child(even) .newsList__item-img{
    }
}

/* text */
.newsList__item-text{
    width: calc(345 / var(--vw-min) * 100vw);
    padding: 0 calc(30 / var(--vw-min) * 100vw);
    max-width: 280px;
    color: #FFF;
    line-height: 1.6;
    font-size:min(calc(16 / var(--vw-min) * 100vw),16px);
}
@media screen and (max-width:768px) {
    .newsList__item-text{
        width: calc(280 / var(--vw-min) * 100vw);
        padding: 0;
        font-size:calc(20 / var(--vw-min) * 100vw);
    }
}
/*date*/
.news-date{
    position: relative;
    display: inline-block;
    color: var(--color-red);
    font-size:min(calc(40 / var(--vw-min) * 100vw),40px);
    font-family: var(--font-en);
}
.news-date::after{
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-red);
    transition: all .4s ease;
}
.newsList__item-link:hover .news-date::after{
    width: 100%;
}
.newsList__item-link:hover .newsList__item-img img{
    transform: scale(1.03);
}

.news-text{
    display: flex;
}

/*pagerList*/
.pagerList{
    width: 100%;
    position: absolute;
    right: 0;
    bottom: min(calc(24 / var(--vw-min) * 100vw),24px);
    display: flex;
    justify-content: flex-end;
}
.pagerList__item{
    margin-left:min(calc(40 / var(--vw-min) * 100vw),40px);
}
.pagerList__item-link{
    font-size:min(calc(24 / var(--vw-min) * 100vw),24px);
    padding: 0 min(calc(4 / var(--vw-min) * 100vw),4px) min(calc(2 / var(--vw-min) * 100vw),2px);
    font-family: var(--font-en);
    color: #FFF;
    position: relative;
    transition: all .4s ease;
}
@media screen and (max-width:768px) {
    .pagerList{
        right: calc(40 / var(--vw-min) * 100vw);
    }
    .pagerList__item{
        margin-left:calc(30 / var(--vw-min) * 100vw);
    }
    .pagerList__item-link{
        font-size:min(calc(24 / var(--vw-min) * 100vw),24px);
        padding: 0 0 min(calc(2 / var(--vw-min) * 100vw),2px);
    }
}

.pagerList__item-link::after{
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #FFF;
    transition: all .2s ease;
}
/* is-active hover */
.pagerList__item-link:hover,
.pagerList__item-link.is-active{
    color: var(--color-red)
}
.pagerList__item-link:hover::after,
.pagerList__item-link.is-active::after{
    width: 0;
}
.pagerList__item-link::before,
.pagerList__item-link::before {
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-red);
    transition: all .2s ease;
}
.pagerList__item-link:hover::before,
.pagerList__item-link.is-active:before {
    width: 100%;
}

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