@charset "utf-8";
/* -----------------------------------------------------------
    一覧・詳細共通
----------------------------------------------------------- */
#news .news-body-wrapper {
    margin-top: 80px;
}

#news .contents .contents-left {
    float: left;
    width: 850px;
}

#news .contents .contents-right {
    float: right;
    padding: 0 0 70px;
    width: 260px;
}

@media screen and (max-width: 768px) {

    #news .news-body-wrapper {
        margin-top: 40px;
    }

    #news .contents .contents-left {
        float: none;
        padding: 0;
        width: 100%;
    }

    #news .contents .contents-right {
        float: none;
        padding: 0;
        width: 100%;
        margin: 60px 0 0 0;
    }

    #news .contents .news-detail-area .contents-right {
        margin: 40px 0 0 0;
    }

}




/* -----------------------------------------------------------
    一覧・詳細共通（　tag-area　）
----------------------------------------------------------- */
#news .tag-area {
    padding: 0 0 30px 0;
}

#news .tag-area .tag-title {
    font-size: 1.5rem;
    padding: 0 0 20px 0;
}

#news .tag-area .tag-list {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

#news .tag-area .tag-list li {
    text-align: center;
    margin: 0 10px 10px 0;
    line-height: 1.2;
}

#news .tag-area .tag-list li a {
    display: block;
    padding: 7px 15px 9px 15px;
    font-size: 1.5rem;
    font-weight: 500;
    border: #ccc solid 1px;
    color: #333;
}

#news .tag-area .tag-list li a:hover {
    border-color: var(--linkc) solid 1px;
    opacity: 1;
    background: var(--linkc);
    color: #fff;
}

@media screen and (max-width: 768px) {
    #news .tag-area {
        padding:0;
    }

    #news .tag-area .tag-title {
        width: auto;
        padding: 0 0 10px 0;
    }

    #news .tag-area .tag-list {
        width: auto;
        gap: 10px;
    }

    #news .tag-area .tag-list li {
        margin: 0;
    }

    #news .tag-area .tag-list li a {
        padding: 6px 15px 8px 15px;
        font-size: 1.4rem;
    }
}


/* -----------------------------------------------------------
    一覧
----------------------------------------------------------- */
/*サブタイトル*/
.page-news .news-subtitle {
	font-weight: bold;
	font-size: 2.2rem;
	padding: 0 0 20px;
	line-height: 1;
}

/*リスト*/
.page-news .news-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 40px;
    gap: 30px;
}

.page-news .news-list li {
	border: 1px solid #ddd;
	width: 100%;
	transition: .5s;
}

.page-news .news-list li:hover {
    transform: translateY(-7px);
    border-color: var(--linkc);
}

/*リスト（リンクエリア）*/
.page-news .news-list li a {
    color: #333;
    display: flex;
    gap: 25px;
    width: 100%;
    padding: 15px;
    height: 100%;
}

.page-news .news-box .img {
    width: 250px;
    height: 150px;
    flex-shrink: 0;
    position: relative;
}

.page-news .news-box .campaign-close .img::before {
    content: "";
    background: url("../img/closed-mask.png")center/contain no-repeat;
    width: 210px;
    height: 110px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.page-news .news-box .campaign-close .img::after {
    content: "";
    background: rgba(255,255,255,.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-news .news-box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-news .news-box .elements {
    flex-grow: 1;
    position: relative;
    padding: 0 0 30px;
}

.page-news .news-box .date-ttl-wrap {
    align-items: center;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.page-news .news-box .news-cate-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
}

.page-news .news-list li .date {
    color: #888;
    flex-shrink: 0;
    /*font: 500 1.5rem/1 var(--en2);
    font-size: 1.5rem;*/
    line-height: 1;
    font-family: var(--en2);
    font-variation-settings: "wght" 600;
    letter-spacing: 0.05em;
}

.page-news .news-list li .cate {
    border: 1px solid #ccc;
    color: #888;
    font-size: 1.4rem;
    padding: 7px 10px;
    position: relative;
    transition: .5s;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
}

.page-news .news-box .cate-important {
    background: #e45b25;
    border: none!important;
    color: #fff!important;
}

.page-news .campaign-open .cate-campaign::after {
    content: "開催中";
}

.page-news .campaign-close .cate-campaign::after {
    content: "CLOSED";
}

.page-news .news-list li .title {
    color: #333!important;
    font-weight: bold;
    font-size: 2rem;
    line-height: 1.6;
    letter-spacing: .03em;
    margin: 10px 0 0 0;
    transition: .5s;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-height: 60px;
}

/*リスト（マウスオン）*/
.page-news .news-list li a:hover .title {
    color: #d2910a;
}

.page-news .news-list li .cmn-morebtn {
    font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
    
    /*サブタイトル*/
    .page-news .news-subtitle {
        padding: 0 0 10px;
        font-size: 2rem;
    }
    
    /*リスト*/
    .page-news .news-list {
        margin: 0 0 25px;
        gap: 10px;
    }
    
    .page-news .news-box .date-ttl-wrap {
        bottom: 15px;
        position: absolute;
        padding: 0;
    }
    
    .page-news .news-box .news-cate-wrap {
        flex-wrap: wrap;
    }
    
    .page-news .news-list li {
        border-color: #ccc;
        border-width: 0 0 1px;
        width: 100%;
    }
    
    .page-news .news-list li a {
        padding: 20px 0 50px;
        position: relative;
        gap: 15px;
    }
    
    .page-news .news-box .elements {
        position: static;
        padding: 0;
    }

    .page-news .news-list li .date {
        font-size: 1.5rem;
    }
    
    .page-news .news-list li .cate {
        font-size: 1.4rem;
        padding: 5px 10px;
    }
    
    .page-news .news-list li .title {
        line-height: 1.4;
        margin: 8px 0 0 0;
        min-width: auto;
        width: 100%;
        font-size: 1.8rem;
    }
    
    .page-news .news-box .img {
        width: 120px;
        height: 85px;
        flex-shrink: 0;
        margin: 0;
    }
    
    .page-news .news-box .campaign-close .img::before {
        width: 100px;
        height: 65px;
    }
    
    .page-news .news-list li .cmn-morebtn {
        font-size: 1.5rem;
    }

}



/* -----------------------------------------------------------
    詳細タグ（title-box）
-------------------------------------------------------------- */
/*  詳細ページタグ  */


.campaign-open .news-detail-area　.cate-campaign::after {
    content: "開催中";
}

.campaign-close .news-detail-area .cate-campaign::after {
    content: "CLOSED";
}

.news-detail-area .detail-tag-box {
    padding: 25px 0;
    border-bottom: 1px #ddd solid;
    display: flex;
    flex-wrap: wrap;
}

.news-detail-area .detail-tag-title {
    flex-shrink: 0;
    font-size: 1.4rem;
    width: 70px;
}

.news-detail-area .detail-tag-box ul {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.news-detail-area .detail-tag-box li {
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.news-detail-area .detail-tag-box a {
    border: #ccc solid 1px;
    color: #333;
    display: block;
    font-size: 1.5rem;
    padding: 7px 9px 8.5px;
    line-height: 1;
}

.news-detail-area .detail-tag-box a:hover {
    background:var(--linkc);
    color: #fff;
    border-color:var(--linkc);
}

@media screen and (max-width: 768px) {

    /*  詳細ページタグ  */
    .news-detail-area .detail-tag-box {
        margin: 5px 0 0 0;
        padding: 10px 0 5px 0;
        border-top: 1px #E7E7E7 solid;
        display: none;
    }

    .news-detail-area .detail-tag-title {
        padding: 5px 0 0 0;
        width: 60px;
        font-size: 1.3rem;
        float: left;
    }

    .news-detail-area .detail-tag-box ul {
        width: 75%;
    }

    .news-detail-area .detail-tag-box li {
        margin: 0 8px 8px 0;
    }

    .news-detail-area .detail-tag-box a {
    	padding: 4px 10px;
    }
}


/* -----------------------------------------------------------
    詳細（title-box）
-------------------------------------------------------------- */
.news-detail-area .title-box-elements {
    align-items: center;
    display: flex;
    gap: 15px;
}

.news-detail-area .title-box .date {
    display: inline-block;
    flex-shrink: 0;
    letter-spacing: 0.05em;
    font: 400 1.5rem/1 var(--en2);
}

.news-detail-area .cate-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-detail-area .title-box .cate {
    border: 1px solid #ccc;
    color: #888;
    font-size: 1.5rem;
    padding: 8px 10px;
    transition: .5s;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
}

.news-detail-area .title-box .cate-important {
    background: #e45b25!important;
    border: none!important;
    color: #fff;
}

.news-detail-area .title-box .title {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.4;
    border-bottom: 6px solid #f2c972;
    padding: 2px 10px 5px 0;
    margin: 40px 0 30px;
}

.news-detail-area .big-thumb {
    max-width: 100%;
    margin: 30px 0 0;
    text-align: center;
}

.news-detail-area .big-thumb img {
    max-height: 400px;
    max-width: 100%;
}

.news-detail-area .big-title {
    font-weight: bold;
    font-size: 3.2rem;
    line-height: 1.6;
    letter-spacing: .05em;
     margin: 30px 0 0;
}

@media screen and (max-width: 768px) {

    .news-detail-area .title-box {
        margin: 0;
    }

    .news-detail-area .title-box-elements {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
    
    .news-detail-area .title-box .date {
        padding: 0;
        margin: 0;
    }
    
    .news-detail-area .cate-wrap {
        gap: 8px;
    }
    
    .news-detail-area .title-box .cate {
        font-size: 1.4rem;
        padding: 8px;
    }

    .news-detail-area .big-title {
        font-size: 2.5rem;
        line-height: 1.5;
        margin: 18px 0 0;
    }

    .news-detail-area .big-thumb {
        margin: 20px 0 0;
    }

}



/* -----------------------------------------------------------
    詳細（　detail-contents　）
-------------------------------------------------------------- */
.news-detail-area .detail-contents {
    line-height: 1.8;
    padding: 0 0 50px !important;
    margin: 40px 0 0;
}

/* pタグ */
.news-detail-area .detail-contents p {
    margin-bottom: 1.5em;
    font-size: 1.6rem;
}

/* 見出し系 */
.news-detail-area .detail-contents h1, .news-detail-area .detail-contents h2, .news-detail-area .detail-contents h3, .news-detail-area .detail-contents h4 {
    font-weight: bold;
    line-height: 1.5;
}

.news-detail-area .detail-contents h1 {
    background: #ede4db;
    font-size: 2.5rem;
    margin: 20px 0;
    padding: 10px 30px;
}

.news-detail-area .detail-contents h2 {
    color: #fff;
    font-size: 2.4rem;
    margin: 25px 0 15px;
    padding: 9px 10px 9px 20px;
    background: var(--mainc);
}

.news-detail-area .detail-contents h3 {
    margin: 25px 0 30px;
    padding: 0 5px 7px;
    font-size: 2.4rem;
    border-bottom: 5px var(--mainc) solid;
}

.news-detail-area .detail-contents h4 {
    font-size: 2.2rem;
    margin: 30px 0 20px 0;
    padding: 0 0 0 14px;
    position: relative;
}

.news-detail-area .detail-contents h4::before {
    background: var(--mainc);
    content: "";
    display: block;
    height: calc(100% - 10px);
    left: 0;
    position: absolute;
    top: 6px;
    width: 4px;
}

.news-detail-area .detail-contents img {
    display: block;
    height: auto;
    margin: 0 auto;
    max-width: 790px;
}

.news-detail-area .detail-contents a:link {
    color: var(--linkc);
    display: inline-block;
}

@media screen and (max-width: 768px) {
    
    .news-detail-area .detail-contents {
        padding: 0 0 30px !important;
        margin: 25px 0 0;
    }
    
    .news-detail-area .detail-contents h1 {
        font-size: 2.2rem;
        margin: 10px 0;
        padding: 10px 15px;
    }
    
    .news-detail-area .detail-contents h2 {
        margin: 20px 0 15px 0;
        padding: 8px 15px;
        font-size: 2rem;
    }
    
    .news-detail-area .detail-contents h3 {
        margin: 15px 0 25px 0;
        padding: 10px 3px;
        font-size: 1.8rem;
    }
    
    .news-detail-area .detail-contents h4 {
        margin: 25px 0 15px 0;
        padding: 0 0 0 15px;
        font-size: 1.7rem;
    }
    
    .news-detail-area .detail-contents h4::before {
        top: 3px;
        height: calc(100% - 5px);
    }
    
    .news-detail-area .detail-contents p {
        margin-bottom: 1em;
    }
    
    .news-detail-area .detail-contents img {
        float: none;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
        text-align: center;
        height: auto;
        display: block;
    }

}


