.main-area {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 300px;
    margin: 38px 0 72px;
    padding: 56px 40px;
    box-sizing: border-box;
    overflow: visible;
    border-radius: 20px;
    background: var(--ncd_primary_grd, linear-gradient(90deg, #0055B8 0%, #00A0DF 100%));
}

.text-box {
    position: relative;
    z-index: 2;
    color: #fff;
}

.main-area .text {
    margin: 0 0 24px;
    font-family: Dosis, sans-serif;
    font-size: clamp(16px, 6.25vw - 32px, 32px);
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0;
}

.main-area .chatch {
    margin: 0;
    font-size: clamp(24px, 6.25vw - 24px, 40px);
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0;
}

.main-area .img-box {
    position: absolute;
    top: -50px;
    right: 48px;
    z-index: 1;
    width: min(49%, 564px);
    aspect-ratio: 564 / 421;
    overflow: hidden;
    pointer-events: none;
}

.main-area .img-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
}

/* news-area */
.news-area {
    position: relative;
    padding-top: 16px;
}

.section:has(.news-area) {
    margin-top: 144px;
}

.news-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #E4E7EA;
}

.news-area .ttl {
    color: #0055B8;
    font-size: clamp(20px, 1.5625vw + 8px, 24px);
    font-style: normal;
    font-weight: 500;
    line-height: 160%
}

.news-list {
    margin: 22px 0 0;
    display: flex;
    flex-direction: column;
    row-gap: 18px;
}

.news-list .item {
    display: flex;
    flex-wrap: wrap;
    column-gap: 12px;
}

.news-list .item .date {
    width: 130px;
}

.news-list .item p {
    width: calc(100% - 166px);
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}

.news-list .item p a {
    color: #17254C;
    text-decoration: underline;
}

.news-list .item p a:hover {
    text-decoration: none;
}

/*.news-list .item .text {
     display: inline-block; 
}*/

/* #box-link-list */
#box-link-list {
    padding: 0;
    background: none;
}

#box-link-list li a {
    height: 50px;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 Smartphones
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media only screen and (max-width:1079px) {
    .main-area {
        display: block;
        min-height: auto;
        aspect-ratio: 343 / 412;
        margin: 40px 0 40px;
        padding: 0 16px 28px;
        overflow: visible;
        border-radius: 20px;
    }

    .text-box {
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 28px;
        padding: 0;
    }

    .main-area .text {
        margin-bottom: 8px;
    }

    .main-area .img-box {
        position: absolute;
        top: -50px;
        left: -5vw;
        right: auto;
        width: calc(100% + 10vw);
        aspect-ratio: 375 / 357;
        margin-bottom: 0;
        overflow: hidden;
    }

    .main-area .img-box img {
        position: absolute;
        top: -1.65%;
        left: -8.37%;
        width: 126.5%;
        height: 99.19%;
        max-width: none;
        object-fit: fill;
    }

    .section:has(.news-area) {
        margin-top: 62px;
    }

    .news-list .item {
        flex-direction: column;
    }

    .news-list .item .date,
    .news-list .item .text {
        width: 100%;
    }

    .news-list .item p {
        width: 100%;
    }
}