/* タイトル -----------------------------------*/
.area_title {
    width: 100%;
    height: calc(35.896rem - 8rem);
    font-size: 4.5rem;
    font-weight: 900;
    background-color: #172a88;
    color: #FFFFFF;
    padding: 0 12rem 0 12rem;
    margin-top: 8rem;
    display: flex;
    align-items: center;
    font-weight: 900;
}

.area_title::before {
    content: "";
    display: inline-block;
    width: 0.4rem;
    height: 11rem;
    background-color: #FFFFFF;
    margin-right: 4rem;
}

.achievement_single_area {
    padding-left: 12rem;
    padding-right: 12rem;
    padding-top: 7rem;
    padding-bottom: 17rem;
}

.day_area {
    position: relative;
    display: flex;
    align-items: center;
    height: 9.3rem;
    margin-bottom: 3.3rem;
}

.border {

    display: inline-block;
    width: 0.4rem;
    height: 9.3rem;
    background-color: #172a88;
    position: absolute;
    top: 0;
}

.time_setting {
    font-family: var(--Alegreya);
    line-height: 2rem;
    margin-left: 3.6rem;
    font-weight: 500;
    color: #172a88;
}

.year {
    font-size: 2rem;
}

.day {
    font-size: 3.6rem;
}

.title {
    font-size: 2.8rem;
    font-family: var(--Alegreya);
    line-height: calc(30 / 28);
    border-bottom: 0.4rem solid #172a88;
    padding-bottom: 2rem;
    font-weight: 700;
    margin-bottom: 6.8rem;
    margin-left: 3.8rem;
    margin-top: 3rem;
}

.text_font {
    font-size: 1.7rem;
    font-weight: 400;
    margin-bottom: 4.4rem;
    line-height: calc(35 / 17);
    margin-left: 3.8rem;
}

.icatch_wrapper {
    max-width: 84rem;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    aspect-ratio: 2;
    /* object-fit: contain; */

    img{
            object-fit: contain;
            height: 100%;
    }
}

.icatch {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.single_link {
    display: flex;
    align-items: center;
    font-size: 1.7rem;
    font-weight: 700;
    color: #172a88;
    width: max-content;
    gap: 2.3rem;
    margin-top: 6rem;
}

.arrow_area {
    background-color: #FFFFFF;
    border-radius: 4.5rem;
    width: 4.5rem;
    height: 4.5rem;
    border: solid 0.2rem #172a88;

    position: relative;
    transition: 0.2s;
    /* transform: rotate(180deg); */
}

.arrow_area:hover {
    background-color: #172a88;
}

.svg_arrow {
    object-fit: contain;
    width: 2rem;
    height: 2.9rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.2s;

}

.arrow_area:hover .svg_arrow path {
    fill: #ffffff;
}


@media screen and (max-width: 699.98px) {

    .area_title {
        font-size: 2.2rem;
        padding-left: 4.5rem;
        padding-right: 4.5rem;
        height: 14rem;
    }

    .area_title::before {
        height: 5.2rem;
        margin-right: 1.9rem;
    }

    .achievement_single_area {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 4.8rem;
        padding-bottom: 10rem;
    }

    .title {
        font-size: 1.6rem;
        padding-bottom: 1rem;
        margin-left: 0;
        border-bottom: 0.2rem solid #172a88;
        margin-bottom: 2.4rem;
    }

    .day {
        font-size: 3rem;
    }

    .year {
        font-size: 1.6rem;
    }

    .text_font {
        margin-left: 0;
        font-size: 1.4rem;
        line-height: calc(35 / 14);
        margin-bottom: 4rem;
    }

    .icatch_wrapper {
    max-width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    margin-left: 0;
    }
    .icatch {
        width: 100%;
        /* height: 18.7rem; */
    }

    .single_link {
        margin-top: 4rem;
    }
}