@charset "utf-8";
.news .under_mv, .news_detail .under_mv {
    background: url(../img/news/main_pc.jpg) no-repeat center/cover;
}

@media screen and (max-width: 1024px) {
    .news .under_mv, .news_detail .under_mv {
        background: url(../img/news/main_sp.jpg) no-repeat center/cover;
    }
}

.news .sec1 {
    margin: 100px auto;
    max-width: 1100px;
}

.news .sec1 dl a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 28px 30px;
    border-bottom: 1px solid #ccc;
}

.news .sec1 dl a:first-of-type {
    border-top: 1px solid #ccc;
}

.news .sec1 dl a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 30px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #1f2c5c;
    border-right: 2px solid #1f2c5c;
    -webkit-transform: translate(0%, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
}

.news .sec1 dl dt {
    font-family: oswald, sans-serif;
    color: #888888;
}

.news .sec1 dl dt .tag {
    background: #1f2c5c;
    color: #fff;
    padding: 5px 20px;
    border-radius: 50px;
    margin: 0 30px;
}

@media screen and (max-width: 1024px) {
    .news .sec1 {
        margin: 60px 4%;
    }
    .news .sec1 h3.heading {
        margin: 0 4% 40px;
    }
    .news .sec1 dl a {
        display: block;
        padding: 20px 2%;
    }
    .news .sec1 dl a:after {
        right: 2%;
    }
    .news .sec1 dl dt {
        margin-bottom: 15px;
    }
    .news .sec1 dl dt .tag {
        padding: 3px 15px;
        margin: 0 0 0 10px;
        font-size: 1.2rem;
    }
}

/* 新着情報詳細ページここから */

.news_detail .sec1 {
    margin: 100px auto;
    max-width: 1100px;
}

.news_detail .sec1 h3.ttl {
    font-size: 2rem;
    color: #1f2c5c;
    font-weight: 600;
    padding: 30px 20px;
    background: #fff;
    border-top: 4px solid #1f2c5c;
}

.news_detail .sec1 .status_area {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding: 20px;
}

.news_detail .sec1 .status_area .date {
    font-family: eb-garamond, serif;
    color: #888888;
    font-size: 2rem;
    font-style: italic;
    letter-spacing: 0;
    margin-right: 20px;
}

.news_detail .sec1 .status_area .category {
    font-size: 1.2rem;
    padding: 5px 10px;
    background: #1f2c5c;
    color: #fff;
    border-radius: 50px;
}

.news_detail .sec1 figure {
    max-width: 800px;
    margin: 40px auto;
}

.news_detail .sec1 .pdf {
    position: relative;
    background: #888;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 0 auto 40px;
    text-align: center;
    max-width: 500px;
}

.news_detail .sec1 .pdf:before {
    content: "";
    background: url(../img/news/icon_pdf.svg) no-repeat center/contain;
    width: 25px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 4%;
    transform: translate(0, -50%);
}

.news_detail .sec1 .pdf:after {
    content: "";
    position: absolute;
    top: 50%;
    right:4%;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: translate(50%, -50%) rotate( 45deg);
    transform: translate(50%, -50%) rotate( 45deg);
}

.news_detail .sec1 .txt {
    border-top: 1px solid #ccc;
    line-height: 1.6;
    padding: 20px 20px 0;
}

@media screen and (max-width: 1024px) {
    .news_detail .sec1 {
        margin: 60px 4%;
    }
    .news_detail .sec1 h3.ttl {
        font-size: 1.6rem;
        padding: 18px 4%;
        line-height: 1.4;
    }
    .news_detail .sec1 .status_area {
        padding: 20px 4%;
    }
    .news_detail .sec1 .status_area .date {
        font-size: 1.8rem;
        margin-right: 15px;
    }
    .news_detail .sec1 figure {
        margin: 20px auto;
    }
    .news_detail .sec1 .txt {
        padding: 20px 4% 0;
    }
}