:root {
    --swiper-theme-color: #007aff
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
    transform: translateZ(0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 1200px;

    .swiper-slide,
    .swiper-cube-shadow {
        transform-style: preserve-3d
    }
}

.swiper-css-mode {
    >.swiper-wrapper {
        overflow: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;

        &::-webkit-scrollbar {
            display: none
        }
    }

    >.swiper-wrapper>.swiper-slide {
        scroll-snap-align: start start
    }

    &.swiper-horizontal {
        >.swiper-wrapper {
            scroll-snap-type: x mandatory
        }

        >.swiper-wrapper>.swiper-slide:first-child {
            margin-inline-start: var(--swiper-slides-offset-before);
            scroll-margin-inline-start: var(--swiper-slides-offset-before)
        }

        >.swiper-wrapper>.swiper-slide:last-child {
            margin-inline-end: var(--swiper-slides-offset-after)
        }
    }

    &.swiper-vertical {
        >.swiper-wrapper {
            scroll-snap-type: y mandatory
        }

        >.swiper-wrapper>.swiper-slide:first-child {
            margin-block-start: var(--swiper-slides-offset-before);
            scroll-margin-block-start: var(--swiper-slides-offset-before)
        }

        >.swiper-wrapper>.swiper-slide:last-child {
            margin-block-end: var(--swiper-slides-offset-after)
        }
    }

    &.swiper-free-mode {
        >.swiper-wrapper {
            scroll-snap-type: none
        }

        >.swiper-wrapper>.swiper-slide {
            scroll-snap-align: none
        }
    }

    &.swiper-centered {
        >.swiper-wrapper:before {
            content: "";
            flex-shrink: 0;
            order: 9999
        }

        >.swiper-wrapper>.swiper-slide {
            scroll-snap-align: center center;
            scroll-snap-stop: always
        }
    }

    &.swiper-centered.swiper-horizontal {
        >.swiper-wrapper>.swiper-slide:first-child {
            margin-inline-start: var(--swiper-centered-offset-before)
        }

        >.swiper-wrapper:before {
            height: 100%;
            min-height: 1px;
            width: var(--swiper-centered-offset-after)
        }
    }

    &.swiper-centered.swiper-vertical {
        >.swiper-wrapper>.swiper-slide:first-child {
            margin-block-start: var(--swiper-centered-offset-before)
        }

        >.swiper-wrapper:before {
            width: 100%;
            min-width: 1px;
            height: var(--swiper-centered-offset-after)
        }
    }
}

.swiper-3d {

    .swiper-slide-shadow,
    .swiper-slide-shadow-left,
    .swiper-slide-shadow-right,
    .swiper-slide-shadow-top,
    .swiper-slide-shadow-bottom {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 10
    }

    .swiper-slide-shadow {
        background: #00000026
    }

    .swiper-slide-shadow-left {
        background-image: linear-gradient(to left, #00000080, #0000)
    }

    .swiper-slide-shadow-right {
        background-image: linear-gradient(to right, #00000080, #0000)
    }

    .swiper-slide-shadow-top {
        background-image: linear-gradient(to top, #00000080, #0000)
    }

    .swiper-slide-shadow-bottom {
        background-image: linear-gradient(to bottom, #00000080, #0000)
    }
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
    .swiper-lazy-preloader {
        animation: swiper-preloader-spin 1s infinite linear
    }
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translateZ(0);
    z-index: 10;

    &.swiper-pagination-hidden {
        opacity: 0
    }

    .swiper-pagination-disabled>&,
    &.swiper-pagination-disabled {
        display: none !important
    }
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;

    .swiper-pagination-bullet {
        transform: scale(.33);
        position: relative
    }

    .swiper-pagination-bullet-active,
    .swiper-pagination-bullet-active-main {
        transform: scale(1)
    }

    .swiper-pagination-bullet-active-prev {
        transform: scale(.66)
    }

    .swiper-pagination-bullet-active-prev-prev {
        transform: scale(.33)
    }

    .swiper-pagination-bullet-active-next {
        transform: scale(.66)
    }

    .swiper-pagination-bullet-active-next-next {
        transform: scale(.33)
    }
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);

    button& {
        border: none;
        margin: 0;
        padding: 0;
        box-shadow: none;
        appearance: none
    }

    .swiper-pagination-clickable & {
        cursor: pointer
    }

    &:only-child {
        display: none !important
    }
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-vertical>.swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0, -50%, 0);

    .swiper-pagination-bullet {
        margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
        display: block
    }

    &.swiper-pagination-bullets-dynamic {
        top: 50%;
        transform: translateY(-50%);
        width: 8px;

        .swiper-pagination-bullet {
            display: inline-block;
            transition: .2s transform, .2s top
        }
    }
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
    .swiper-pagination-bullet {
        margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
    }

    &.swiper-pagination-bullets-dynamic {
        left: 50%;
        transform: translate(-50%);
        white-space: nowrap;

        .swiper-pagination-bullet {
            transition: .2s transform, .2s left
        }
    }
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s right
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));
    position: absolute;

    .swiper-pagination-progressbar-fill {
        background: var(--swiper-pagination-color, var(--swiper-theme-color));
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transform: scale(0);
        transform-origin: left top
    }

    .swiper-rtl & .swiper-pagination-progressbar-fill {
        transform-origin: right top
    }

    .swiper-horizontal>&,
    &.swiper-pagination-horizontal,
    .swiper-vertical>&.swiper-pagination-progressbar-opposite,
    &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
        width: 100%;
        height: var(--swiper-pagination-progressbar-size, 4px);
        left: 0;
        top: 0
    }

    .swiper-vertical>&,
    &.swiper-pagination-vertical,
    .swiper-horizontal>&.swiper-pagination-progressbar-opposite,
    &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
        width: var(--swiper-pagination-progressbar-size, 4px);
        height: 100%;
        left: 0;
        top: 0
    }
}

.swiper-pagination-lock {
    display: none
}

#mv {
    position: relative;
    background: url(../img/top/img_mv_bg.png) no-repeat center center/cover;
    height: 730px;
    padding-top: 200px
}

@media(max-width:1024px) {
    #mv {
        height: 105vh;
        padding-top: 100px;
        background-image: url(../img/top/img_mv_bg-sp.png);
    }
}

@media(max-width:768px) {
    #mv {
        height: 600px;
        padding-top: 100px;
        background-image: url(../img/top/img_mv_bg-sp.png);
    }
}

#mv .mv__inner {
    max-width: 1125px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2
}

@media(max-width:1024px) {
    #mv .mv__inner {
        flex-direction: column;
        gap: 40px
    }
}

@media(max-width:768px) {
    #mv .mv__inner {
        gap: 24px;
        max-width: 347px
    }
}

#mv .mv__content {
    min-width: 0
}

@media(max-width:1024px) {
    #mv .mv__content {
        text-align: center
    }
}

#mv .mv__tag {
    display: inline-block;
    width: 416px
}

@media(max-width:768px) {
    #mv .mv__tag {
        width: 100%
    }
}

#mv .mv__title {
    font-weight: 900;
    color: #333;
    margin: 0 0 16px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 4px
}

@media(max-width:1024px) {
    #mv .mv__title {
        align-items: center
    }
}

#mv .mv__title-line {
    font-family: "M PLUS 2", sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #333
}

@media(max-width:768px) {
    #mv .mv__title-line {
        font-size: 24px
    }
}

#mv .mv__title-line--gradient {
    font-size: 64px;
    background: linear-gradient(90deg, #ee87b4, #a688bd, #5eb7e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

@media(max-width:768px) {
    #mv .mv__title-line--gradient {
        font-size: 38px
    }
}

#mv .mv__description {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 40px;
    line-height: 1.5
}

@media(max-width:768px) {
    #mv .mv__description {
        font-size: 14px;
        margin-bottom: 0
    }
}

@media(max-width:1024px) {
    #mv .mv__description {
        max-width: none;
        margin-left: auto;
        margin-right: auto
    }
}

#mv .mv__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

@media(max-width:1024px) {
    #mv .mv__buttons {
        justify-content: center
    }
}

@media(max-width:768px) {
    #mv .mv__buttons {
        display: none
    }
}

#mv .mv__visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    max-width: 600px
}

@media(max-width:1024px) {
    #mv .mv__visual {
        max-width: 100%
    }
}

#mv .mv__visual-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center
}

#our-services {
    background-color: #fff;
    padding: 80px 0
}

@media(max-width:768px) {
    #our-services {
        padding: 60px 0 0
    }
}

#our-services .our-services__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center
}

#our-services .our-services__title {
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px
}

#our-services .our-services__title-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(280.45deg, #5eb7e8 8.81%, #a688bd 44.18%, #ee87b4 80.63%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: .1em;
    text-transform: uppercase
}

#our-services .our-services__title-label:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(280.45deg, #5eb7e8 8.81%, #a688bd 44.18%, #ee87b4 80.63%);
    border-radius: 2px
}

#our-services .our-services__title-main {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    line-height: 1.5
}

@media(max-width:768px) {
    #our-services .our-services__title-main {
        font-size: 22px
    }
}

#our-services .our-services__description {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.8;
    margin: 0 auto 60px;
    max-width: 640px
}

@media(max-width:768px) {
    #our-services .our-services__description {
        font-size: 14px;
        margin-bottom: 40px
    }
}

#our-services .our-services__cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 850px
}

@media(max-width:768px) {
    #our-services .our-services__cards {
        flex-wrap: wrap;
        gap: 16px
    }
}

#our-services .our-services__card {
    width: 25%;
    min-height: 160px;
    border: 2px solid rgb(241, 245, 249);
    border-radius: 12px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

@media(max-width:768px) {
    #our-services .our-services__card {
        min-width: 0;
        max-width: 140px;
        min-height: 120px;
        padding: 16px;
        justify-content: center;
        width: 50%
    }
}

#our-services .our-services__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center
}

#our-services .our-services__card-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain
}

#our-services .our-services__card-text {
    font-size: 16px;
    font-weight: 700;
    color: #333
}

@media(max-width:768px) {
    #our-services .our-services__card-text {
        font-size: 14px
    }
}

#our-services .our-services__detail-swiper {
    width: 100%;
    margin-top: 80px;
    overflow: hidden
}

@media(max-width:768px) {
    #our-services .our-services__detail-swiper {
        margin-top: 80px
    }
}

#our-services .our-services__detail-cards {
    list-style: none;
    margin: 0;
    padding: 0
}

#our-services .our-services__detail-card {
    border: 2px solid rgb(241, 245, 249);
    border-radius: 16px;
    padding: 28px 32px;
    height: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

#our-services .our-services__detail-card:hover {

    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media(max-width:768px) {
    #our-services .our-services__detail-card {
        min-width: 0;
        max-width: 360px;
        padding: 24px
    }
}

#our-services .our-services__detail-pagination {
    display: none
}

@media(max-width:768px) {
    #our-services .our-services__detail-pagination {
        display: block;
        position: relative;
        margin-top: 24px
    }

    #our-services .our-services__detail-pagination :global(.swiper-pagination-bullet) {
        width: 8px;
        height: 8px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, .15);
        opacity: 1
    }
}

#our-services .swiper-pagination-bullet {
    margin: 0 10px !important
}

#our-services .swiper-pagination-bullet-active {
    background: #ee87b4 !important
}

#our-services .our-services__detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%
}

#our-services .our-services__detail-icon img {
    object-fit: contain
}

#our-services .our-services__detail-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 24px;
    line-height: 1.4;
    text-align: left
}

@media(max-width:768px) {
    #our-services .our-services__detail-title {
        font-size: 16px
    }
}

#our-services .our-services__detail-desc {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.7;
    margin: 0;
    text-align: left
}

@media(max-width:768px) {
    #our-services .our-services__detail-desc {
        font-size: 13px
    }
}

#our-services .our-services__detail-img {
    width: 100%;
    margin-top: auto;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3
}

#our-services .our-services__detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%)
}

.service-list {
    background-color: #fff;
    padding: 80px 0
}

@media(max-width:768px) {
    .service-list {
        padding: 60px 0
    }
}

.service-list .service-list__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center
}

.service-list .service-list__title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px
}

@media(max-width:768px) {
    .service-list .service-list__title {
        font-size: 32px
    }
}

.service-list .service-list__subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #333333b3;
    margin: 0 0 60px
}

@media(max-width:768px) {
    .service-list .service-list__subtitle {
        margin-bottom: 40px
    }
}

.service-list .service-list__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0
}

@media(max-width:1024px) {
    .service-list .service-list__grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .service-list .service-list__grid {
        grid-template-columns: 1fr;
        gap: 16px
    }
}

.service-list .service-list__card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 24px 40px;
    box-shadow: 0 2px 2px 2px #00000026;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-list .service-list__card:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 8px 2px #00000026;
}

@media(max-width:768px) {
    .service-list .service-list__card {
        padding: 16px 16px 24px
    }
}

.service-list .service-list__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.service-list .service-list__icon img {
    width: 48px;
    height: 48px;
    object-fit: contain
}

.service-list .service-list__card-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 24px;
    line-height: 1.4
}

@media(max-width:768px) {
    .service-list .service-list__card-title {
        margin: 0
    }
}

.service-list .service-list__card-desc {
    font-size: 14px;
    font-weight: 400;
    color: #333333b3;
    margin: 0;
    line-height: 1.5
}

#reason {
    background-color: #fff;
    padding: 80px 0
}

@media(max-width:768px) {
    #reason {
        padding: 60px 16px
    }
}

#reason .reason__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px;
    text-align: center;
    background: linear-gradient(180deg, #fff, #eef2ff);
    border-radius: 32px;
    box-shadow: 0 6px 10px -2px #00000026
}

@media(max-width:768px) {
    #reason .reason__inner {
        width: 96%;
        margin: 0 auto;
        padding: 24px 8px;
        box-shadow: 0 1px 2px -1px #0000001a;
        box-shadow: 0 5px 4px #0000001a
    }
}

#reason .reason__title {
    font-family: "M PLUS 2", sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin: 0 0 16px;
    line-height: 1.3;
    background: linear-gradient(280.45deg, #5eb7e8 32.81%, #a688bd 43.18%, #ee87b4 58.63%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

#reason .reason__subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    margin: 0 auto 60px;
    max-width: 640px
}

@media(max-width:768px) {
    #reason .reason__subtitle {
        font-size: 14px;
        margin-bottom: 40px
    }
}

#reason .reason__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1120px;
    gap: 24px;
    list-style: none;
    margin: 0 auto 60px;
    padding: 0;
    text-align: left
}

@media(max-width:1024px) {
    #reason .reason__cards {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    #reason .reason__cards {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px
    }
}

#reason .reason__card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 40px 24px;
    box-shadow: 0 6px 10px 2px #00000014;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
}

@media(max-width:768px) {
    #reason .reason__card {
        padding: 16px
    }
}

#reason .reason__number {
    position: absolute;
    top: -25px;
    right: 12px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    background: #fff;
    box-shadow: 0 1px 4px 2px #0000001a
}

#reason .reason__number--01 {
    color: #6366f1
}

#reason .reason__number--02 {
    color: #f6339a
}

#reason .reason__number--03 {
    color: #00bc7d
}

#reason .reason__number--04 {
    color: #ff6900
}

#reason .reason__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px
}

#reason .reason__icon img {
    width: 48px;
    height: 48px;
    object-fit: contain
}

#reason .reason__card-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.4
}

#reason .reason__card-desc {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.7;
    margin: 0
}

#reason .reason__cta {
    text-align: center
}

#reason .reason__button {
    width: 200px;
    display: inline-block;
    padding: 12px 0;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 9999px;
    transition: opacity .3s ease;
    border: 2px solid rgba(51, 51, 51, .3)
}

#reason .reason__button:hover {
    opacity: .8
}

@media(max-width:768px) {
    #reason .reason__button {
        font-size: 14px;
        padding: 8px 24px
    }
}

#reason .reason__button .reason__button-arrow {
    display: inline-block;
    width: 16px;
    height: 16px
}

#top-news {
    background-color: #fff;
    padding: 80px 0 0
}

@media(max-width:768px) {
    #top-news {
        padding: 60px 16px
    }
}

#top-news .top-news__inner {
    max-width: 1280px;
    margin: 0 auto
}

#top-news .top-news__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px
}

@media(max-width:768px) {
    #top-news .top-news__header {
        flex-direction: column;
        gap: 16px
    }
}

#top-news .top-news__titles {
    flex: 1
}

#top-news .top-news__title {
    font-family: "M PLUS 2", sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #333;
    margin: 0 0 8px;
    line-height: 1.3
}

@media(max-width:768px) {
    #top-news .top-news__title {
        font-size: 32px
    }
}

#top-news .top-news__subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin: 0;
    line-height: 1.5
}

@media(max-width:768px) {
    #top-news .top-news__subtitle {
        font-size: 16px
    }
}

#top-news .top-news__all-link {
    width: 200px;
    text-align: center;
    display: inline-block;
    padding: 12px 0;
    background: #fff;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 9999px;
    transition: opacity .3s ease;
    border: 2px solid rgba(51, 51, 51, .3)
}

#top-news .top-news__all-link:hover {
    opacity: .8
}

@media(max-width:768px) {
    #top-news .top-news__all-link {
        font-size: 14px;
        padding: 8px 24px;
        margin-left: auto
    }
}

#top-news .top-news__all-link .top-news__all-link-arrow {
    display: inline-block;
    width: 16px;
    height: 16px
}

#top-news .top-news__grid {
    display: grid;
    grid-template-columns: 65% 1fr;
    gap: 24px
}

@media(max-width:1024px) {
    #top-news .top-news__grid {
        grid-template-columns: 1fr
    }
}

#top-news .top-news__card--main {
    grid-row: span 2;
    max-height: 670px;
    transition: all 0.3s ease;
}

#top-news .top-news__card--main:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px 2px #00000026;
}

@media(max-width:768px) {
    #top-news .top-news__card--main {
        max-height: 360px
    }
}

#top-news .top-news__sub {
    display: flex;
    flex-direction: column;
    gap: 24px
}

#top-news .top-news__sub .top-news__card {
    height: 323px;
    transition: all 0.3s ease;
}

#top-news .top-news__sub .top-news__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px 2px #00000026;
}

@media(max-width:768px) {
    #top-news .top-news__sub .top-news__card {
        height: 360px
    }
}

#top-news .top-news__sub .top-news__card .top-news__card-img {
    height: 160px
}

#top-news .top-news__sub .top-news__card .top-news__tag {
    background: #fff;
    right: 16px;
    left: auto;
    color: #64748b
}

#top-news .top-news__sub .top-news__card .top-news__card-body {
    padding: 16px
}

#top-news .top-news__sub .top-news__card .top-news__card-body .top-news__date {
    font-size: 12px
}

#top-news .top-news__sub .top-news__card .top-news__card-body .top-news__date-icon {
    width: 12px;
    height: 12px
}

#top-news .top-news__sub .top-news__card .top-news__card-body .top-news__card-title {
    font-size: 16px
}

#top-news .top-news__sub .top-news__card .top-news__card-body .top-news__card-desc {
    font-size: 14px
}

#top-news .top-news__sub .top-news__card .top-news__card-body .top-news__read-more {
    font-size: 12px
}

#top-news .top-news__card {
    background: #fff;
    border-radius: 16px;
    border: 2px solid rgba(0, 0, 0, .1);
    overflow: hidden
}

#top-news .top-news__card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: opacity .3s ease
}

#top-news .top-news__card-link:hover {
    opacity: .9
}

#top-news .top-news__card-img {
    background-color: #0000000f;
    height: 320px;
    overflow: hidden;
    position: relative
}

@media(max-width:768px) {
    #top-news .top-news__card-img {
        height: 160px
    }
}

#top-news .top-news__card-img .top-news__tag {
    position: absolute;
    top: 16px;
    left: 16px
}

#top-news .top-news__card-img .top-news__tag--blue {
    background-color: #5eb7e8;
    color: #fff
}

#top-news .top-news__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#top-news .top-news__card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

#top-news .top-news__tag {
    display: inline-block;
    width: fit-content;
    padding: 4px 16px;
    background-color: #00000014;
    color: #333;
    font-size: 12px;
    font-weight: 500;
    border-radius: 9999px
}

#top-news .top-news__tag--blue {
    background-color: #5eb7e880;
    color: #fff
}

#top-news .top-news__tag--purple {
    background-color: #a688bd80;
    color: #fff
}

#top-news .top-news__tag--pink {
    background-color: #ee87b480;
    color: #fff
}

#top-news .top-news__date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 400;
    color: #333;
    margin: 0
}

#top-news .top-news__date-icon {
    width: 16px;
    height: 16px;
    object-fit: contain
}

#top-news .top-news__card-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.4
}

@media(max-width:768px) {
    #top-news .top-news__card-title {
        font-size: 16px
    }
}

#top-news .top-news__card--main .top-news__card-title {
    font-size: 20px
}

@media(max-width:768px) {
    #top-news .top-news__card--main .top-news__card-title {
        font-size: 17px
    }
}

#top-news .top-news__card-desc {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.7;
    margin: 0;
    flex: 1
}

@media(max-width:768px) {
    #top-news .top-news__card-desc {
        font-size: 13px
    }
}

#top-news .top-news__read-more {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-top: 8px
}

.section {
    padding: 80px 0
}

@media(max-width:768px) {
    .section {
        padding: 120px 20px 0
    }
}

.section .content__inner {
    display: flex;
    flex-direction: column;
    gap: 60px
}

@media(max-width:768px) {
    .section .content__inner {
        gap: 40px
    }
}

.loop__wrapper {
    background: #a688bd;
    padding: 30px 0;
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 110%;
    overflow: hidden;
    transform: rotate(-3deg)
}

@media(max-width:768px) {
    .loop__wrapper {
        padding: 14px 0
    }
}

.loop__wrapper .loop__list {
    display: flex;
    align-items: center;
    gap: 36px;
    width: max-content;
    animation: loop-scroll 30s linear infinite
}

.loop__wrapper .loop__list .loop__list-item {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    font-family: Helvetica;
    flex-shrink: 0;
    letter-spacing: 2px
}

.loop__wrapper .loop__list .loop__list-item img {
    width: 20px;
    height: 20px;
    display: block
}

@media(max-width:768px) {
    .loop__wrapper .loop__list .loop__list-item img {
        width: 16px;
        height: 16px
    }
}

@media(max-width:768px) {
    .loop__wrapper .loop__list {
        gap: 24px;
        animation-duration: 20s
    }

    .loop__wrapper .loop__list .loop__list-item {
        font-size: 12px
    }

    .loop__wrapper .loop__list .loop__list-item img {
        width: 16px;
        height: 16px
    }
}

.service-list__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 60px
}

@keyframes loop-scroll {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(-50%)
    }
}