@charset "utf-8";


/*==========================
article__header
==========================*/
.article__header--top {
    position: relative;
    line-height: 0;
    /* margin-top: 60px; */
}

.article__header--top::before {
    content: '';
    background: url(../images/maru3x3.png);
    background-color: rgba(42, 42, 42, 2.2);
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    z-index: 10;
    opacity: .3;
}

.mainV-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    position: absolute;
    left: 8%;
    bottom: 75px;
    /* margin-top: 60px; */
    z-index: 12;
}

.catchCopy__j {
    font-size: 3.2rem;
    margin-top: 10px;
    color: var(--primary-blue);
    text-align: center;
    font-style: normal;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 2.4px;
    display: inline-flex;
    padding: 0px 10px;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-white);
}

.catchCopy__j {
    animation-duration: 2.5s;
    animation-name: letterSlideIn-data-v-245cbef4;
}

@keyframes letterSlideIn-data-v-245cbef4 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100%;
    }
}

@keyframes letterFadeup {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 100%;
    }
}

.catchCopy__j span {
    opacity: 0;
}

.catchCopy {
    opacity: 0;
}

.catchCopy {
    animation-duration: 2.5s;
    animation-name: letterSlideIn-data-v-245cbef4;
}

.catchCopy {
    font-size: 1.8rem;
    color: var(--primary-white);
    line-height: 1.25;
    display: inline-flex;
    padding: 0px 10px;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-blue);
}

.trust,
.shinrai {
    color: var(--primary-lightblue);
}

/*  */
.is-letter-0 {
    animation: letterSlideIn-data-v-245cbef4 1.5s ease-out 0s forwards;
}

.is-letter-1 {
    animation: letterSlideIn-data-v-245cbef4 1.5s ease-out 0.2s forwards;
}

.is-letter-2 {
    animation: letterSlideIn-data-v-245cbef4 1.5s ease-out 0.4s forwards;
}

.is-letter-3 {
    animation: letterSlideIn-data-v-245cbef4 1.5s ease-out 0.6s forwards;
}

.is-letter-4 {
    animation: letterSlideIn-data-v-245cbef4 1.5s ease-out 0.8s forwards;
}

.is-letter-5 {
    animation: letterSlideIn-data-v-245cbef4 1.5s ease-out 1s forwards;
}

.is-letter-6 {
    animation: letterSlideIn-data-v-245cbef4 1.5s ease-out 1.2s forwards;
}

.is-letter-7 {
    animation: letterSlideIn-data-v-245cbef4 1.5s ease-out 1.4s forwards;
}

.is-letter-8 {
    animation: letterFadeup 0.7s ease-out 2.4s forwards;
}

/* slickslider */

/* .key-slider,
.slick-list,
.slick-track {
    height: 100%;
} */

.topSlider img {
    width: 100%;
    height: auto;
}

/* .dots-class button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    position: relative;
}

.dots-class {
    display: flex;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

.dots-class li {
    width: 10px;
    height: 10px;
    border: 1px solid var(--primary-blue);
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer;
    transition: background-color .5s ease;
}

.dots-class li.slick-active {
    background-color: var(--primary-blue);
}

.dots-class li:hover {
    background-color: var(--primary-blue);
}

.dots-class li:last-child {
    margin-right: 0;
} */



/*==========================
topAbout
==========================*/
.section-topAbout {
    padding-bottom: 50px;
    display: flex;
}

.topAbout {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    gap: 30px;
}


.topAbout__item {
    /* margin-top: 30px; */
    border-radius: 7px;
    background: var(--primary-white);
    box-shadow:
        -4px -4px 8px rgba(255, 255, 255, 0.8),
        8px 8px 14px rgba(0, 48, 87, 0.03);
    max-width: 550px;
    position: relative;
    overflow: hidden;
}

.topAbout__img {
    overflow: hidden;
    width: 100%;
    height: auto;
}

.topAbout__img img {
    border-radius: 7px 7px 0 0;
    transition: all 0.5s 0s ease;
    aspect-ratio: 1 / .545;
    object-fit: cover;
    object-position: center;
}

.topAbout__link:hover .topAbout__img img {
    transform: scale(1.2, 1.2);
}


.topAbout__contents {
    display: flex;
    padding: 16px;
    flex-direction: column;
}

.topAbout__topic {
    font-size: 2rem;
    font-weight: 500;
}

.topAbout__txt {
    margin-top: 16px;
}

.topAbout__btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 16px 16px;
    margin-top: auto;
}

.btnArrow--topAbout {
    border: 1px solid #DC4405;
    background-color: transparent;
}

.topAbout__link:hover .btnArrow--topAbout {
    background-color: var(--primary-orange);
}

.topAbout__link:hover .btnArrow--topAbout svg path {
    fill: var(--primary-white);
}

.topAbout__link:hover .btnArrow--topAbout svg:first-child {
    left: 200%
}

.topAbout__link:hover .btnArrow--topAbout svg:last-child {
    left: 50%
}


.topAbout__link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/*==========================
news
==========================*/
.section-topNews {
    padding-bottom: 50px;
}

.topNews__list {
    margin-top: 30px;
}

.topNews__item {
    border-bottom: 2px solid var(--primary-gray);
    position: relative;
}

.topNews__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 15px 10px;
}

.topNews__link:hover {
    background-color: #CDD9E3;
}

.topNews__contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
}

.topNews__category {
    padding: 0px 5px;
    border-radius: 7px;
    border: 1px solid var(--primary-grayLow);
    color: var(--primary-grayLow);
    text-align: center;
    font-size: 1.5rem;
    margin-left: 15px;
}


.btnArrow--topNewsContents {
    /* border: 1px solid #DC4405; */
    background-color: transparent;
}

/* .topNews__link:hover .btnArrow--topNewsContents {
    background-color: var(--primary-orange);
}

.topNews__link:hover .btnArrow--topNewsContents svg path {
    fill: var(--primary-white);
} */

.topNews__link:hover .btnArrow--topNewsContents svg:first-child {
    left: 200%
}

.topNews__link:hover .btnArrow--topNewsContents svg:last-child {
    left: 50%
}

/* btn */
.topNews__btn {
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
}

.topNews__btn--link {
    width: 300px;
    background: var(--primary-white);
    position: relative;
    box-shadow:
        2px 8px 14px 0px rgba(0, 48, 87, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px 15px 34px;
    border-radius: 50px;
    background-color: var(--primary-white);
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1)
}

.topNews__btn--link:hover {
    background: #CDD9E3;
    box-shadow: 8px 8px 14px 0px rgba(0, 48, 87, 0.03);
}

.topNews__btn--link:hover .btnArrow svg:first-child {
    left: 200%
}

.topNews__btn--link:hover .btnArrow svg:last-child {
    left: 50%
}

/*------pc 768------*/
@media screen and (min-width: 768px) {
    .topAbout {
        flex-direction: row;
    }

    .mainV-wrap {
        position: absolute;
        top: 50%;
        left: 8%;
        z-index: 12;
        transform: translate(0, -50%);
        margin-top: 0;
    }

}

/*------pc 1100------*/
@media screen and (min-width: 1100px) {

    /* article__header */
    /* .article__header--top {
        margin-top: 110px;
    } */

    .mainV-wrap {
        position: absolute;
        top: 50%;
        left: 8%;
        z-index: 12;
        transform: translate(0, -50%);
        margin-top: 0;
    }

    .catchCopy {
        /* font-size: 2.4rem; */
        font-size: 2.4rem;
        line-height: 1.4;
    }

    .trust,
    .shinrai {
        color: #4D87C1;
    }

    .catchCopy__j {
        font-size: 5.8rem;
        font-weight: 500;
        line-height: 1.2;
        letter-spacing: 4.8px;
    }

    /* topAbout */
    .topAbout {
        justify-content: space-between;
        gap: 60px;
        max-width: 900px;
    }

    .topAbout__item {
        width: 550px;
        margin-top: 0;
    }

    .topAbout__topic {
        font-size: 2.4rem;
    }

    /* topNews */
    .section-topNews {
        padding-bottom: 100px;
    }

    .topNews__list {
        margin-top: 50px;
    }

    .topNews__contents {
        flex-direction: row;
        justify-content: space-between;
        padding: 30px 10px;
        gap: 30px;
    }

    .topNews__category {
        gap: 15px;
    }

    .topNews__btn {
        margin-top: 30px;
    }

    /* para */
    /* .container {
        height: 3300px;
    } */
}

/* 1440 */
@media screen and (min-width: 2000px) {
    .catchCopy__j {
        font-size: 7.8rem;
        font-weight: 500;
        line-height: 1.2;
        letter-spacing: 4.8px;
    }

    .catchCopy {
        font-size: 4.4rem;
        line-height: 1.4;
    }
}