@charset "UTF-8";


/*============================
	news-archive 
============================*/
.news-archive {
    padding-bottom: 0;
}

.news__main {
    padding-bottom: 60px;
}

.news-filters li {
    display: block;
    width: 24%;

    & a {
        height: 50px;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border: solid 1px #957935;
        text-align: center;
        position: relative;
        font-weight: 500;
        transition: .3s;

        &::before {
            content: "";
            position: absolute;
            width: 12px;
            height: 6px;
            background: url(../img/cmn/filter_arw_gold.png) no-repeat center center/contain;
            top: 50%;
            right: 5%;
            transform: translate(0, -50%);
        }
    }

    & a.is-active,
    &.current-cat a {
        background: #957935;
        color: #fff;

        &::before {
            background: url(../img/cmn/filter_arw_wh.png) no-repeat center center/contain;
        }
    }

    &:hover {
        & a {
            background: #957935;
            color: #fff;
            &::before {
                background: url(../img/cmn/filter_arw_wh.png) no-repeat center center/contain;
            }
        }


        & i {
            color: #fff;
        }
    }
}

.news__atc {

    margin-bottom: 60px;
    width: 100%;

    &:last-child {
        margin-bottom: 0;
    }

    & a {
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;

        .news__img {
            overflow: hidden;

            & img {
                transition: .5s;
            }
        }

        &:hover {
            .news__img img {
                transform: scale(1.1);
            }
        }

    }



}

.news__img {
    width: 207px;

}

.news__txtwarp {
    width: calc(100% - 207px);
    padding-left: 2em;
}

.news__info {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.news__data {
    margin-right: 1em;
    width: fit-content;
    padding: 0 1em;
    background: #957935;
    color: #fff;
    border-radius: 3px;
    line-height: 30px;
}


.news__atc--ttl {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: .5em;
    font-weight: 400;
}


@media screen and (max-width:1024px) {

    .news__main {
        padding-bottom: 60px;
    }

    .news-filter {
        width: 24%;
        height: 40px;
    }

    .news__atc {

        margin-bottom: 40px;


        & a {
            display: flex;
        }

    }

    .news__img {
        width: 150px;
    }

    .news__txtwarp {
        width: calc(100% - 150px);
        padding-left: 1em;
    }

    .news__info {
        display: flex;
    }

    .news__data {
        margin-right: 1em;
        border-radius: 3px;
        line-height: 25px;
    }


}

@media screen and (max-width:767px) {
    .news__main {
        padding-bottom: 60px;
    }

    .news-filters {
        margin-top: 60px;
        display: flex;
        flex-wrap: wrap;
    }

    .news-filter {
        width: 49%;
        font-size: 1.2rem;
        height: 40px;
        margin: 5px 0;
    }

    .news__atc {

        margin-bottom: 30px;


        & a {
            display: flex;
        }

    }

    .news__img {
        width: 100px;
    }

    .news__txtwarp {
        width: calc(100% - 100px);
        padding-left: 1em;
    }

    .news__info {
        display: flex;
    }

    .news__data {
        margin-right: 1em;
        border-radius: 3px;
        line-height: 20px;
        font-size: 1.2rem;
    }

    .news__cat {
        font-size: 1.2rem;
    }

    .news__atc--ttl {
        font-size: 1.2rem;
    }

}
.m-auto {
    margin-top:10px;
}

/*============================
	news-detail-contents 
============================*/
.news-detail-contents h1,
.news-detail-contents h2 {
    line-height: 1.5;
    font-size: 2.4rem;
}

.news-detail-contents p {
    line-height: 2;
}

.news-detail-contents p a {
    text-decoration: underline;
    color: #aa8d46;
}

.news-detail-contents p a {
    text-decoration: underline;
    color: #aa8d46;
}

.ndc__info {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.ndc__data {
    margin-right: 1em;
}

.ndc__cat {
    width: fit-content;
    padding: 0 1em;
    background: #957935;
    color: #fff;
    border-radius: 3px;
    line-height: 26px;
}

.ndc__imgwrap.col01 {
    .ndc__img {
        width: 80%;
        max-width: 800px;
        margin: 0 auto;
    }

}

.ndc__imgwrap.col02 {
    display: flex;
    justify-content: space-between;

    .ndc__img {
        width: 48%;

        & img {
            width: 100%;
        }
    }
}

strong {
    font-weight: bold;
}

@media screen and (max-width:1024px) {}

@media screen and (max-width:767px) {

    .ndc__cat {
        font-size: 1.2rem;
    }

    .ndc__imgwrap.col01 {
        .ndc__img {
            width: fit-content;
            margin: 0 auto;
        }

    }

    .ndc__imgwrap.col02 {
        display: block;

        .ndc__img {
            width: fit-content;
            margin: 0 auto 20px;

            &:last-child {
                margin-bottom: 0;
            }

        }
    }

}