@charset "utf-8";

/*==========================
article header
==========================*/
.article__header {
    width: 100%;
    height: 500px;
    object-fit: cover;
    position: relative;
}

.mainvisual__image {
    width: 100%;
}

.main__titles {
    position: absolute;
    width: 587px;
    height: 587px;
    padding: 180px 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(10px);
    bottom: -222px;
    left: -36px;
}

.main__title {
    color: var(--primary-black, #1C1C1C);
    font-size: 4rem;
    line-height: normal;
    font-weight: 400;
    text-align: center;
}

.main__subtitle {
    font-size: 3rem;
    line-height: 1.7;
    text-align: center;
}

/* main sp */
@media screen and (max-width:769px) {
    .article__header {
        height: auto;
    }

    .main__titles {
        width: 180px;
        height: 180px;
        padding: 57px 0;
        left: -7px;
        bottom: -65px;
    }

    .main__title {
        font-size: 1.6rem;
    }

    .main__subtitle {
        font-size: 1.2rem;
    }
}/* sp 769px */

/* section__newstopic */
.section__newstopic {
    background: var(--primary-lightblue);
    padding: 126px 20px;
    position: relative;
}

.news__h2 {
    display: none;
}

.news__grp {
    max-width: 1230px;
    margin: 0 auto;
}

/* menu */
.show {
  display: block;
}

.hide {
  display: none !important;
}

.menu__list {
    display: flex;
    font-size: 2.4rem;
}

.menu__list li.show {
    background: var(--primary-white);
}

.menu__tag {
    width: 432px;
    height: 60px;
    border-radius: 10px 10px 0 0;
    background: #AFD3F8;
    box-shadow: 2px -1px 0.5px 0 rgba(0, 0, 0, 0.35);
    text-align: center;
    padding-top: 11px;
    cursor: pointer;
}

.menu__tag.show {
    cursor: default;
}

.news__lists {
    max-width: 1296px;
    background: var(--primary-white);
    border-radius: 0 0 10px 10px;
    padding: 83px 20px 76px;
}

.news__contents {
    max-width: 1100px;
    height: auto;
    display: flex;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.25);
    padding: 43px 60px;
    margin: 0 auto 20px;
}

.news__img {
    width: 210px;
    aspect-ratio: 210 / 210;
    border-radius: 10px;
    object-fit: cover;
}

.news__txts {
    display: block;
    margin-left: 83px;
}

.news__category {
    font-size: 1.6rem;
}

.news__category time {
    margin-right: 10px;
}

.news__kind {
    color: var(--primary-white);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    padding: 3px 17px;
    border-radius: 5px;
    margin-left: 20px;
}

.news__kindA {
    background-color: var(--primary-blue);
}

.news__kindB {
    background-color: var(--primary-orange);
}

.news__title {
    font-size: 2.4rem;
    text-decoration: underline;
    cursor: pointer;
}

.news__txt {
    font-size: 2rem;
}

/* news__topic sp */
@media screen and (max-width: 769px){
    .section__newstopic {
        padding: 40px 12px;
    }

    
    .news__grp {
        max-width: 354px;
        margin: 0 auto;
    }

    .menu__list {
        font-size: 1.4rem;
    }

    .menu__tag {
        width: 118px;
        height: 44px;
        padding-top: 11px;
        border-radius: 20px 20px 0 0;
        box-shadow: 1px -1px 0.5px 0 rgba(0, 0, 0, 0.35);
    }

    .news__lists {
        max-width: 354px;
        border-radius: 0;
        padding: 35px 0;
    }

    .news__contents {
        max-width: 307px;
        height: auto;
        display: flex;
        padding: 10px 20px;
        margin: 0 auto 20px;
    }

    .news__img {
        display: none;
    }

    .news__txts {
        display: block;
        margin-left: 0;
    }

    .news__category {
        font-size: 1.4rem;
    }

    .news__category time {
        margin-right: 10px;
    }

    .news__kind {
        font-size: 1.2rem;
        padding: 2px 10px;
        margin-left: 20px;
    }

    .news__title {
        font-size: 1.4rem;
    }

    .news__txt {
        display: none;
    }
}/* sp 769px */