@charset "UTF-8";

/*================================================
 *  
 ================================================*/
.news_list li:not(:last-child) {
    margin-bottom: 1.5rem;
}

.news_list li a {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: #F5F5F5;
    padding: 4rem 6rem 4rem 1.5rem;
    font-size: 1.5rem;
    border-radius: 1.5rem;
    position: relative;
    transition: .6s;
}
.news_list li a span {
    display: block;
}
.news_list li a .news_date {
    width: 8rem;
    font-weight: 600;
    margin-top: 0.2rem;
}
.news_list li a .news_ttl {
    font-weight: 700;
}
.news_list li a::before {
    position: absolute;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    display: inline-block;
    background-image: url('../../images/news/arrow.webp');
    width: 3rem;
    height: 3rem;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    transition: .6s;
}
.news_list li a:hover {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 0.2rem 0.4rem rgb(0 0 0 / 30%);
}
.news_list li a:hover span {
    color: #fff;
}
.news_list li a:hover::before {
    background-image: url('../../images/news/arrow_or.webp');
}
@media screen and (max-width: 1000px) {
    .news_list li a {
        flex-wrap: wrap;
        gap: 0rem;
        padding: 3rem 6rem 3rem 1.5rem;
    }
    .news_list li a::before {
        width: 3.5rem;
        height: 3.5rem;
        top: 60%;
    }
    .news_list li a .news_date {
        font-size: 1.4rem;
        width: 100%;
    }
}





/* detail */
.p-detail .page-ttl__inner h2 {
    color: var(--black);
    letter-spacing: 0.05em;
}
.p-detail .page-ttl__inner h2 span {
    font-size: 1.5rem;
    color: var(--orange);
    letter-spacing: 0;
    margin-bottom: 2rem;
}
#detail .l-wrap {
    max-width: 85rem;
}
#detail img {
    border-radius: 3rem;
    width: 100%;
}
#detail .thumbnail {
    margin-bottom: 6rem;
}
.detail_cnt {
    margin-bottom: 6rem;
}
.detail_cnt * {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.7;
}
.detail_cnt p {
    margin-top: 1em;
}
#detail .btn01 {
    width: 38rem;
    margin: 0 auto;
}
@media screen and (max-width: 1000px) {
    .p-detail .page-ttl__inner h2 {
        font-size: 2.6rem;
    }
    #detail .l-wrap {
        max-width: 70rem;
        margin-top: -13rem;
    }
    #detail .btn01 {
        width: 27rem;
    }
}