@charset "utf-8";

/* news.html */
.contener {
    padding: 0px 180px;
    font-size: 1.4rem;
    text-align: center;
}

h1 {
    font-size: 4rem;
    color: #333;
    text-align: center;
    letter-spacing: 1.2rem;
    margin-top: 90px;
    font-family: "Sorts Mill Goudy";
}

h2 {
    margin: 20px;
}

.newstxt_01 {
    width: 100%;
    height: auto;
    text-wrap: balance;
}

.news_box {
    display: flex;
    margin-bottom: 40px;
    border-bottom: 1px solid;
    gap: 60px;
    padding: 20px;
}

.news_img {
    width: 300px;
    height: auto;
    justify-content: center;
}

/*横幅が768px以下になった際の指定*/
@media only screen and (max-width: 768px) {
    .contener {
        padding: 0px 10px;
    }
    h1 {
        font-size: 3rem;
    }
    .news_box {
        display: block;
        margin-bottom: 10px;
        border-bottom: 1px solid;
        gap: 10px;
    }
}


/*横幅が1024px以下になった際の指定*/
@media only screen and (max-width: 1024px) {
    .contener {
        padding: 0px 10px;
    }
    h1 {
        font-size: 3rem;
    }
 
    .news_box {
    display: block;
    margin-bottom: 10px;
    border-bottom: 1px solid;
    gap: 10px;
    }
}
/* end */
