/* --------------------
 News
-------------------- */
.news-container {
    margin: 0 auto;
    max-width: 1080px;
    padding: 0 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .news-container {
        padding: 0 30px;
    }
}

.news__list {
    margin: 0 0 60px;
}

@media (min-width: 768px) {
    .news__list {
        margin: 0 0 90px;
    }
}

.news__list__item {
    border-bottom: 1px solid #f19b9e;
}

.news__list__item__link {
    color: inherit;
    display: flex;
    flex-flow: column nowrap;
    padding: 15px 40px 15px 3px;
    position: relative;
    text-decoration: none;
}

@media (min-width: 768px) {
    .news__list__item__link {
        align-items: flex-start;
        flex-direction: row;
        justify-content: flex-start;
        padding: 25px 70px 25px 25px;
    }
}

.news__list__item__link:before {
    background-color: #fff100;
    bottom: 0;
    content: "";
    display: block;
    height: 32px;
    left: auto;
    margin: auto 0;
    -webkit-mask-image: url(../images/icons/icon-yellow-arrow-right.svg);
    mask-image: url(../images/icons/icon-yellow-arrow-right.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 16px 12px;
    mask-size: 16px 12px;
    position: absolute;
    right: 0;
    top: 0;
    transition: background-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: 32px;
    z-index: 1;
}

@media (min-width: 768px) {
    .news__list__item__link:before {
        height: 40px;
        -webkit-mask-size: 20px 15px;
        mask-size: 20px 15px;
        right: 30px;
        width: 40px;
    }
}

.news__list__item__link:after {
    background-color: #f19b9e;
    border: 1px solid #f19b9e;
    border-radius: 50%;
    bottom: 0;
    content: "";
    display: block;
    height: 32px;
    left: auto;
    margin: auto 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: background-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: 32px;
}

@media (min-width: 768px) {
    .news__list__item__link:after {
        height: 40px;
        right: 30px;
        width: 40px;
    }
}

.news__list__item__link__date {
    color: #e95b80;
    display: block;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: var(--fs14);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.6;
    width: 110px;
}

@media (min-width: 768px) {
    .news__list__item__link__date {
        font-size: var(--fs16);
        width: 130px;
    }
}

.news__list__item__link__title {
    display: block;
    flex-grow: 1;
    flex-shrink: 1;
    font-size: var(--fs14);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .news__list__item__link__title {
        font-size: var(--fs16);
        width: auto;
    }
}

.news__list__item__link:focus:before {
    background-color: #f19b9e;
}

.news__list__item__link:focus:after {
    background-color: #fff;
}

@media (hover: hover) and (pointer: fine) {
    .news__list__item__link:hover:before {
        background-color: #f19b9e;
    }

    .news__list__item__link:hover:after {
        background-color: #fff;
    }
}

.news__detail__head {
    border-bottom: 1px solid #f19b9e;
    border-top: 1px solid #f19b9e;
    color: inherit;
    display: flex;
    flex-flow: column nowrap;
    margin: 0 0 30px;
    padding: 15px 3px;
    position: relative;
    text-decoration: none;
}

@media (min-width: 768px) {
    .news__detail__head {
        align-items: flex-start;
        flex-direction: row;
        justify-content: flex-start;
        margin: 0 0 50px;
        padding: 20px 25px;
    }
}

.news__detail__head__date {
    color: #e95b80;
    display: block;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: var(--fs14);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.6;
    width: 110px;
}

@media (min-width: 768px) {
    .news__detail__head__date {
        font-size: var(--fs16);
        width: 130px;
    }
}

.news__detail__head__title {
    display: block;
    flex-grow: 1;
    flex-shrink: 1;
    font-size: var(--fs14);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .news__detail__head__title {
        font-size: var(--fs16);
        width: auto;
    }
}

.news__detail__main {
    margin: 0 auto 40px;
    max-width: 700px;
}

.news__detail__main__fig {
    margin: 0 0 30px;
    text-align: center;
}

.news__detail__main__content {
    font-size: var(--fs14);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 2;
}

@media (min-width: 768px) {
    .news__detail__main__content {
        font-size: var(--fs16);
    }
}

.news__detail__main__content p {
    font-size: inherit;
    line-height: inherit;
    margin: 0 0 1.5em;
}

.news__detail__main__content p:last-child {
    margin-bottom: 0;
}

.news__detail__action .com-button {
    max-width: 180px;
}