.top #content {
    padding-top: 0;
}


/*===============================================================================
　　MV
================================================================================*/

.f-mv {
    position: relative;
    margin-bottom: var(--g-sec--md);
}

.f-mv__pc {
    position: relative;
    left: calc(50% - 50vw);
    max-width: 100vw;
    width: 100vw;
}

/* スクロールダウン */

.mv__scroll {
    position: absolute;
    bottom: .75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

@media (min-width: 600px) {
    .mv__scroll {
        bottom: 1.5rem;
        gap: .75rem;
    }
}

.mouse {
    position: relative;
    width: 36px;
    height: 60px;
    background: var(--c-light);
    border: 2px solid var(--c-dark);
    border-radius: 100px;
}

.mouse::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-dark);
    border-radius: 100px;
    animation: wheel 2s infinite;
    -webkit-animation: wheel 2s infinite;
}

@keyframes wheel {
    to {
        opacity: 0;
        top: 40px;
    }
}

@-webkit-keyframes wheel {
    to {
        opacity: 0;
        top: 40px;
    }
}

@media (min-width: 600px) {

    .mouse {
        width: 48px;
        height: 80px;
    }

    .mouse::before {
        width: 8px;
        height: 8px;
        top: 16px;
    }

    @keyframes wheel {
        to {
            opacity: 0;
            top: 56px;
        }
    }

    @-webkit-keyframes wheel {
        to {
            opacity: 0;
            top: 56px;
        }
    }
}

.scroll__text {
    font-weight: var(--fw-lg);
    font-size: .75rem;
}

@media (min-width: 600px) {
    .scroll__text {
        font-size: 1rem;
    }
}


/*===============================================================================
Service
================================================================================*/

.f-service {
    margin-bottom: var(--g-sec--md);
}

.f-service__title {
    margin-bottom: var(--g-sec--md);
}

.f-service__description {
    margin-bottom: var(--g-sec--md);
}

/* スリック設定 */

.slick-slider {
    display: none !important;
}

@media (min-width: 600px) {
    .slick-slider {
        position: relative;
        left: calc(50% - 50vw);
        max-width: 100vw;
        width: 100vw;
        display: block !important;
        padding-bottom: 1rem;
        margin-bottom: var(--g-sec--md) !important;
    }
}

.slick-item {
    width: unset !important;
}

.slick-track {
    display: flex !important;
    gap: 1.75rem !important;
}

/* バナー設定 */

.f-service__baners {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    margin-bottom: var(--g-sec--md);
}

@media (min-width: 600px) {
    .f-service__baners {
        display: none;
    }
}

.f-service__baner {
    position: relative;
    min-width: 47%;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0,0,0,1);
}

.f-service__baner a {
    transition: .4s;
}

.f-service__baner img {
    display: block;
    width: 32.5rem;
}

.f-service__baner-description {
    position: absolute;
    top: 0;
    padding: .75rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 960px) {
    .f-service__baner-description {
        padding: 1.25rem;
    }
}

.f-service__baner-title {
    font-size: 1.5rem;
}

.f-service__baner-en {
    font-size: .75rem;
}

@media (min-width: 960px) {
    .f-service__baner-title {
        font-size: 1.5rem;
    }

    .f-service__baner-en {
        font-size: .75rem;
    }
}

/* ホバー設定 */

.f-service__baner a:hover {
    opacity: .7;
    transition: .4s;
}

/* ボタン */

.f-service__btn {
    text-align: center;
}

/*===============================================================================
recruit
================================================================================*/

.f-recruit {
    position: relative;
    padding: var(--g-sec--md) 0;
    margin-bottom: var(--g-sec--md);
}

.f-recruit__backimg {
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    max-width: 100vw;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    z-index: -10;
}

.f-recruit__title {
    margin-bottom: var(--g-sec--md);
}

.f-recruit__description {
    margin-bottom: var(--g-sec--md);
    display: block;
    text-align: center;
}

.f-recruit__description p {
    display: inline-block;
    text-align: left;
}

/* 募集職種 */

.f-recruit__occupation {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 65rem;
    gap: 1.75rem;
    margin: 0 auto var(--g-sec--md);
}

@media (min-width: 960px) {
    .f-recruit__occupation {
        flex-direction: unset;
        justify-content: space-between;
    }
}

.occupation__block {
    max-width: 30rem;
    background: var(--c-light);
    border-radius: 8px;
    box-shadow: 0 0 4px rgba(0, 0, 0, .1);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.occupation__img {
    width: 10rem;
}

.occupation__title {
    display: block;
    margin: 1.5rem 0;
    background: linear-gradient(transparent 70%, rgba(107, 172, 225, 0.3) 50%);
    padding: 0 4px;
}

.occupation__annotation {
    font-size: 1rem;
}

@media (min-width: 600px) {
    .occupation__annotation {
        font-size: 1.25rem;
    }
}

/* ボタン */

.f-recruit__btn {
    text-align: center;
}

/*===============================================================================
News
================================================================================*/

.f-news__title {
    margin-bottom: var(--g-sec--md);
}

/* ボタン */

.f-news__btn {
    margin-top: var(--g-sec--md);
    text-align: center;
}



/*===============================================================================
***
================================================================================*/