@charset "UTF-8";
/* nav pc */
@media screen and (min-width: 1024px) {
    .pc-nav__item:nth-child(3) {
        color: #333333;
    }
}


/* ===================
main visual
====================== */
.main__visual-pc {
    display: none;
}

/* main visual pc */
@media screen and (min-width: 1024px) {
    .main__visual-sp {
        display: none;
    }

    .main__visual-pc {
        display: block;
    }
}


/* ===================
news
====================== */
.section--news {
    padding: 50px 7.4% 100px;
}

.news__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.news__header {
    border-bottom: 2px solid #D25F69;
}

.section__title {
    font-size: 2.2rem;
    font-weight: 600;
    padding-bottom: 20px;
}

.news__img {
    max-width: 700px;
    width: 100%;
    height: 100%;
    margin-top: 40px;
    object-fit: cover;
}

.news__data {
    font-size: 1.7rem;
    color: #D25F69;
    font-weight: 600;
}

.news__txt {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-top: 20px;
}

.btn {
    display: block;
    margin-top: 70px;
    width: 180px;
    height: 40px;
    background-color: #D25F69;
    border: 2px solid #D25F69;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.6rem;
    text-align: center;
    line-height: 2.3;
    transition: 0.4s;
}

.btn:hover {
    background-color: #ffffff;
    color: #D25F69;
}


/* news pc */
@media screen and (min-width: 1024px) {
    .section--news {
        padding: 90px 15% 140px;
    }

    .news__txt {
        margin-top: 30px;
    }

    .news__img {
        margin-top: 60px;
    }

    .section__title {
        font-size: 3.2rem;
    }
}

