@charset "UTF-8";

/* utility */
.u-bg-pink {
    background-color: var(--color-pink) !important;
}

.u-bg-blue {
    background-color: var(--color-blue) !important;
}

.u-bg-turquoise {
    background-color: #4fbfcc !important;
}

.u-clr-pink {
    color: var(--color-pink) !important;
}

.u-clr-blue {
    color: var(--color-blue) !important;
}

.u-clr-card-pink {
    color: var(--color-card-pink) !important;
}

.u-clr-turquoise {
    color: #4fbfcc !important;
}

.u-d-block {
    display: block !important;
}

.u-pb-120 {
    padding-bottom: 120px !important;
}

.u-mb-0 {
    margin-bottom: 0 !important;;
}

@media screen and (min-width: 768px) {
    .u-d-none-pc {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .u-d-none-sp {
        display: none !important;
    }
    .u-ta-left-sp {
        text-align: left !important;
    }
    .u-ta-center-sp {
        text-align: center !important;
    }
}

/* パンくず */
.breadcrumb-insert-container {
    display: none;

    &.is-show {
        display: block;
    }
}

.breadcrumb-wrapper {
    display: none;

    &.is-show {
        display: flex;
        justify-content: end;
        font-size: 12px;

        ul {
            display: flex;

            li {
                padding-right: 24px;
                position: relative;

                &::after {
                    content: '';
                    display: block;
                    border-bottom: solid 2px #000;
                    border-right: solid 2px #000;
                    background: transparent;
                    width: 6px;
                    height: 6px;
                    position: absolute;
                    top: 50%;
                    right: 10px;
                    transform: translateY(-50%) rotate(-45deg);
                }
            }
        }

        a {
            text-decoration: underline;
        }
    }
}

/* フェードイン */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* headerの高さ分padding */
@media screen and (min-width: 768px) {
    .pt-header-height {
        padding-top: 10.03vw;
    }
}

/* エリア1 */
.wrap-sec-01 {
    position: relative;
}

.wrap-sec-01::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-image: url('../../img/top/bg_wrap_01.png');
    background-size: 100% auto;
    background-position: 0 -700px;
    background-repeat: repeat-y;
    z-index: -1;
}

/* ヘッダー */
header {
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .area-nav-sp {
        display: none;
    }

    .area-left {
        display: flex;
        align-items: center;

        .logo-text-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 16px;

            p {
                font-size: 1vw;
            }
        }
    }

    .area-right {
        display: flex;
        margin-left: 12px;

        nav {
            display: flex;
            align-items: center;

            .nav-list {
                display: flex;
                gap: 1.5vw;

                li, a {
                    font-size: 1.14vw;
                }
                
                .hov-turquoise:hover > a {
                    color: #4fbfcc;
                }

                .nav-list-container {
                    position: relative;
                    padding-right: 1.3vw;


                    .nav-list-btn {
                        position: relative;
                        cursor: pointer;

                        &::after {
                            content: '';
                            display: block;
                            border-bottom: solid 2px var(--color-pink);
                            border-right: solid 2px var(--color-pink);
                            background: transparent;
                            width: 9px;
                            height: 9px;
                            position: absolute;
                            right: -14px;
                            top: calc(50% - 2px);
                            transition: border 0.3s;
                            transform: translateY(-50%) rotate(45deg);
                        }

                        &.is-show {
                            &::after {
                                top: calc(50% + 2px);
                                transform: translateY(-50%) rotate(-135deg);
                            }
                        }
                    }

                    &.for-companies:hover {
                        color: var(--color-blue);
                    }
                    &.for-pwd:hover {
                        color: var(--color-pink);
                    }
                }

                .nav-list-menu {
                    display: none;
                    background: #fff;
                    border-radius: 20px;
                    filter: drop-shadow(4px 4px 30px rgba(0, 0, 0, 0.05));
                    position: absolute;
                    left: 50%;
                    transform: translateX(-50%);
                    top: calc(100% + 20px);
                    padding: 30px;
                    width: 220px;
                    height: auto;
                    text-align: left;

                    &::before {
                        content: '';
                        position: absolute;
                        top: -14px;
                        left: 50%;
                        transform: translateX(-50%) rotate(60deg);
                        border-width: 20px 12px 0 12px;
                        border-style: solid;
                        border-color: #fff transparent transparent transparent;
                    }

                    .item-top {
                        font-size: 16px;
                        font-weight: bold;
                        display: block;
                        position: relative;
                        margin-bottom: 16px;
                        padding-left: 20px;
                        transition: opacity .3s;

                        &::before {
                            content: '';
                            display: block;
                            background: var(--color-pink);
                            border-radius: 100%;
                            width: 16px;
                            height: 16px;
                            position: absolute;
                            top: 50%;
                            left: 0;
                            transform: translateY(-50%);
                        }

                        &::after {
                            content: '';
                            display: block;
                            border-bottom: solid 2px #fff;
                            border-right: solid 2px #fff;
                            background: transparent;
                            width: 6px;
                            height: 6px;
                            position: absolute;
                            top: 50%;
                            left: 4px;
                            transform: translateY(-50%) rotate(-45deg);
                        }

                        &:hover {
                            color: rgba(0, 0, 0, .6);
                        }

                        &.blue {
                            &::before {
                                background: var(--color-blue);
                            }
                        }
                    }

                    .item {
                        font-size: 14px;
                        display: block;
                        margin-bottom: 16px;
                        padding-left: 30px;
                        position: relative;
                        transition: opacity .3s;

                        &:last-child {
                            margin-bottom: 0;
                        }

                        &::before {
                            content: '';
                            display: block;
                            background: #000;
                            border-radius: 100%;
                            width: 12px;
                            height: 1px;
                            position: absolute;
                            top: 50%;
                            left: 10px;
                            transform: translateY(-50%);
                        }

                        &:hover {
                            color: rgba(0, 0, 0, .6);
                        }
                    }
                }
            }
        }

        .btn-1 {
            margin-left: 16px;
            width: 160px;
            height: 48px;

            &:hover p {
                color: var(--color-pink);
            }
        }
    }
}

/* フッター */
footer {
    &.footer .contents-top .inner-contents-top .head-area .box-logo {
        .box-logo-inner {
            .img-txt {
                margin: 8px auto 0;
            }
        }
    }
    
    .head-area {
        position: relative;

        .nav-area {
            position: absolute;
            right: 0;
            bottom: 0;

            ul {
                display: flex;
                justify-content: end;
                gap: 20px;
                margin-right: 70px;

                a {
                    font-size: 13px;
                    padding-right: 20px;
                    position: relative;
                    text-decoration: underline;

                    &::after {
                        content: '';
                        display: block;
                        position: absolute;
                        width: 13px;
                        height: 12px;
                        right: 0;
                        top: 50%;
                        transform: translateY(-50%);
                        mask: url('../../img/common/icon-outlink.svg') no-repeat center / contain;
                        transition: background 0.3s;
                        background-color: currentColor;
                    }
                }
            }
        }
    }
}

/* kv */
.sec-kv {
    .inner-kv {
        align-items: initial;
        margin: 0 0 0 7vw;

        .area-txt {
            padding-top: 60px;

            .block-catch {
                .img-kv01 {
                    width: 30vw;
                    height: auto;
                }

                .catch-ttl {
                    font-size: 3.5vw;
                    line-height: 1.5;

                    p {
                        font-size: 3.8vw;
                    }

                    .line-yellow {
                        position: relative;
                        
                        &::before {
                            content: '';
                            display: block;
                            background: url('../../img/top/line-yellow.svg') no-repeat;
                            mask-size: contain;
                            position: absolute;
                            width: 100%;
                            height: 27px;
                            left: 0;
                            bottom: -10px;
                            z-index: -1;
                        }
                    }
                }

                .catch-subttl {
                    margin-top: 16px;
                }
            }
        }

        .area-img {
            flex: 1;

            .img-kv01 {
                box-shadow: none;
                position: absolute;
                width: 50vw;
                top: -8vw;
                left: -5vw;
            }

            .img-kv02 {
                box-shadow: none;
                position: absolute;
                width: 33vw;
                right: 0;
                bottom: -9vw;
            }
        }
    }
}

/* section 共通 */
.sec-head-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;

    .title-1 {
        color: var(--color-blue);
        font-family: var(--font-en);
        font-size: 24px;
        font-weight: bold;
    }

    .title-2 {
        font-size: 40px;
        font-weight: bold;
        letter-spacing: 2px;
        line-height: 1.5em;

        .sub-text {
            font-size: 24px;
            vertical-align: middle;
        }
    }

    h1.title-2 {
        font-size: 48px;
    }

    .lead-text {
        font-size: 18px;
        letter-spacing: 1.5px;
        line-height: 2em;
    }

    .text {
        font-size: 18px;
        letter-spacing: 1.5px;
        line-height: 2em;
        margin-bottom: 60px;
    }

    .text-sm {
        font-size: 14px;
        letter-spacing: 1px;
        line-height: 2em;
        margin-bottom: 40px;
    }
}

/* service */
.sec-service {
    .area-service {
        background-color: #fff;
        border-radius: 50% 50% 60px 60px / 30% 30% 60px 60px;
        box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.05);

        .area-service-inner {
            padding: 1px 80px 40px;

            .area-service-title-wrap {
                margin: 160px 0 45px 0;
                position: relative;

                &::before {
                    content: '';
                    display: block;
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-image: url('../../img/top/img__service_02.png');
                    width: 161px;
                    height: 132px;
                    position: absolute;
                    top: 157px;
                    left: -30px;
                }

                &::after {
                    content: '';
                    display: block;
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-image: url('../../img/top/img__service_01.png');
                    width: 142px;
                    height: 142px;
                    position: absolute;
                    top: -20px;
                    right: 25px;
                }
            }

            .area-service-text-wrap {
                position: relative;

                .area-service-text {
                    font-size: 18px;
                    letter-spacing: 1px;
                    line-height: 2em;
                    margin-bottom: 18px;
                }

                .area-service-text-small {
                    font-size: 13px;
                }
            }

            .area-service-card-wrap {
                display: flex;
                justify-content: center;
                margin: 36px 64px 0;
                gap: 32px;

                .area-service-card {
                    border-radius: 20px;
                    display: flex;
                    flex-direction: column;
                    flex: 1;
                    padding: 2.4vw 1.2vw;
                    text-align: center;

                    .area-service-card-body {
                        flex: 1;

                        h3 {
                            font-size: 24px;
                            margin-bottom: 14px;

                            &::before {
                                content: '';
                                display: block;
                                margin: 0 auto 14px;
                            }
                        }

                        p {
                            font-size: 16px;
                            margin-bottom: 24px;
                            line-height: 2em;
                        }
                    }
                }

                .area-service-card-pink {
                    border: 2px solid var(--color-pink);

                    h3 {
                        &::before {
                            width: 18px;
                            height: 26px;
                            background-size: contain;
                            background-repeat: no-repeat;
                            background-image: url('../../img/common/icon-person.svg');
                        }
                    }
                }

                .area-service-card-blue {
                    border: 2px solid var(--color-blue);

                    h3 {
                        &::before {
                            width: 15px;
                            height: 24px;
                            background-size: contain;
                            background-repeat: no-repeat;
                            background-image: url('../../img/common/icon-building.svg');
                        }
                    }
                }
            }
        }
    }
}

/* 画像位置調整（PC） */
@media screen and (min-width: 976px) and (max-width: 1112px) {
    .sec-service {
        & .area-service {
            & .area-service-inner {
                & .area-service-title-wrap {
                    &::before {
                        left: calc((100vw - 1110px - 52px) / 2);
                    }
                    &::after {
                        right: calc((100vw - 1035px) / 2);
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 768px) and (max-width: 975px) {
    .sec-service {
        & .area-service {
            & .area-service-inner {
                & .area-service-title-wrap {
                    &::before {
                        left: -4vw;
                        top: -100px;
                    }
                    &::after {
                        right: -2vw;
                        top: -108px;
                    }
                }
            }
        }
    }
}

/* 横ループスクロール */
.sec-loop-slide-x {
    overflow: hidden;
    width: 100%;

    .slide-track {
        background-image: url('../../img/top/img__scroll_pic_01.png');
        background-repeat: repeat-x;
        width: 100%;
        height: 398px;
        animation: x-scroll 120s linear infinite;
        padding: 80px 0;
        margin-top: 40px;
    }

    .illust-container {
        position: relative;

        .img-illust-1 {
            position: absolute;
            top: -370px;
            left: 26%;
        }

        .img-illust-2 {
            position: absolute;
            top: -200px;
            right: 23%;
        }
    }
}

@keyframes x-scroll {
    from {
        background-position-x: 0;
    }

    to {
        background-position-x: -2893px;
    }
}

/* お知らせ */
.sec-news {
    position: relative;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../../img/top/bg_blue_01.png');
        background-size: cover;
        background-repeat: no-repeat;
    }

    .area-news {
        padding: 60px 0;
        position: relative;

        .area-news-head {
            display: flex;
            justify-content: space-between;

            .title-1,
            .title-2 {
                color: #fff;
            }

            .area-news-head-img {
                margin-right: 7vw;
                margin-bottom: -2px;
            }
        }

        .area-news-card-wrap {
            display: flex;
            justify-content: center;
            gap: 50px;

            .area-news-card {
                background-color: #fff;
                border-radius: 20px;
                padding: 50px;
                flex: 1;

                .area-news-card-head {
                    font-size: 28px;
                    padding: 0 0 25px 40px;
                    position: relative;

                    &:after {
                        content: '';
                        position: absolute;
                        left: 0;
                        bottom: 0;
                        width: 100%;
                        height: 1px;
                        background: #000;
                    }

                    &.latest::before {
                        content: '';
                        background-image: url('../../img/common/icon-bell.svg');
                        display: block;
                        width: 26px;
                        height: 28px;
                        position: absolute;
                        left: 0;
                    }

                    &.topic::before {
                        content: '';
                        background-image: url('../../img/common/icon-speech-balloon.svg');
                        display: block;
                        width: 30px;
                        height: 28px;
                        position: absolute;
                        left: 0;
                    }
                }

                .area-news-list {
                    display: grid;
                    grid-auto-rows: 1fr;

                    .item {
                        display: block;
                        padding: 25px 0;
                        position: relative;
                        min-height: 121px;
                        cursor: pointer;

                        &::before {
                            content: '';
                            position: absolute;
                            left: 0;
                            bottom: 0;
                            width: 100%;
                            height: 1px;
                            background: #d8d8dd;
                        }

                        .date {
                            font-size: 16px;
                            display: flex;
                            align-items: center;
                        }

                        .text {
                            font-size: 16px;
                            padding: 16px 36px 0 0;
                            display: -webkit-box;
                            -webkit-box-orient: vertical;
                            -webkit-line-clamp: 2;
                            line-clamp: 2;
                            line-height: 1.7;
                            overflow: hidden;
                            text-overflow: ellipsis;
                        }

                        .category {
                            color: #fff;
                            font-size: 13px;
                            font-weight: bold;
                            border-radius: 11px;
                            padding: 4px 12px;
                            margin-left: 8px;
                        }

                        .icon-circle {
                            position: absolute;
                            background-color: #fff;
                            border-radius: 50%;
                            border: 2px solid var(--color-blue);
                            height: 24px;
                            width: 24px;
                            top: 50%;
                            right: 0;
                            transform: translateY(-50%);
                            transition: background 0.3s;
                        }

                        &::after {
                            content: '';
                            display: block;
                            border-bottom: solid 2px var(--color-blue);
                            border-right: solid 2px var(--color-blue);
                            background: transparent;
                            width: 6px;
                            height: 6px;
                            position: absolute;
                            top: 50%;
                            right: 10px;
                            transform: translateY(-50%) rotate(-45deg);
                            transition: border 0.3s;
                        }

                        &:hover {
                            .icon-circle {
                                background-color: var(--color-blue);
                            }

                            &::after {
                                border-color: #fff;
                            }
                        }
                    }
                }
            }
        }
    }
}

/* よくあるご質問 */
.sec-faq {
    padding: 90px 0;

    .area-faq {
        display: flex;

        .area-faq-head {
            min-width: 360px;

            .title-1 {
                color: var(--color-blue);
            }

            .area-faq-head-img {
                margin: 46px 0 0 36px;
            }
        }

        .area-faq-item-wrap {
            display: flex;
            flex-direction: column;
            gap: 30px;
            width: 100%;

            .area-faq-item {
                border: 2px solid var(--color-blue);
                border-radius: 17px;
                padding: 24px;

                .q-text,
                .a-text {
                    display: flex;
                    align-items: center;
                    position: relative;

                    span {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        font-size: 24px;
                        font-weight: bold;
                        border-radius: 50%;
                        height: 40px;
                        min-width: 40px;
                        margin-right: 16px;
                    }
                }

                .q-text {
                    p {
                        font-size: 18px;
                        font-weight: bold;
                        padding-right: 40px;
                        line-height: 1.7;
                        width: 100%;
                        cursor: pointer;
                    }

                    span {
                        background-color: var(--color-blue);
                        color: #fff;
                    }

                    &::before,
                    &::after {
                        content: '';
                        position: absolute;
                        top: 50%;
                        right: 0;
                        width: 18px;
                        height: 2px;
                        background: #000;
                        transform: translate(-50%, -50%);
                    }

                    &::after {
                        transform: translate(-50%, -50%) rotate(90deg);
                    }

                    &.active {
                        margin-bottom: 12px;

                        &::after {
                            width: 0;
                        }

                        &~.a-text-wrap::before {
                            height: 1px;
                        }
                    }
                }

                .a-text-wrap {
                    display: none;
                    position: relative;

                    &::before {
                        content: '';
                        position: absolute;
                        left: 0;
                        top: 0;
                        width: 100%;
                        height: 0;
                        background: #ccc;
                    }

                    .a-text {
                        padding-top: 12px;

                        p {
                            font-size: 16px;
                            line-height: 2;
                        }

                        span {
                            background-color: var(--color-pink);
                            color: #fff;
                        }
                    }
                }
            }
        }
    }
}

/* エリア2 */
.wrap-sec-02 {
    position: relative;
}

.wrap-sec-02::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../img/top/bg_wrap_02.png');
    background-size: cover;
    background-position: 0 0;
    background-repeat: repeat-y;
    z-index: -1;
}

/* 働く環境 */
.sec-office {
    padding: 90px 0 280px;

    .area-office {
        position: relative;

        .area-office-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            margin-top: 60px;
            position: relative;

            .area-office-content-img {
                .area-office-content-img-inner {
                    position: relative;

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

            .area-office-content-img-text {
                font-size: 16px;
                position: absolute;
                bottom: -32px;
                left: 0;
            }

            .area-office-content-card {
                background: inherit;
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 16px 78px;

                &::before {
                    content: '';
                    position: absolute;
                    width: 766px;
                    height: 630px;
                    border-radius: 50% 50% 60px 60px / 30% 30% 60px 60px;
                    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
                    background-color: #fff;
                    border-radius: 50%;
                    top: 50%;
                    left: -18%;
                    transform: translateY(-50%) rotate(-16deg);
                    z-index: -1;
                }

                .area-office-content-card-inner {
                    .img-wrap {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        margin-bottom: 20px;
                    }

                    .text {
                        font-size: 16px;
                        letter-spacing: 2px;
                        line-height: 32px;
                        margin-bottom: 24px;
                    }

                    .btn-1 {
                        width: clamp(200px, 29vw, 349px);

                        p {
                            font-size: 16px;
                            font-weight: bold;
                            margin: 0 24px 0 0;
                        }
                    }
                }
            }
        }

        .area-office-illust-container {
            position: absolute;
            bottom: -282px;
            right: 8vw;
        }
    }
}

/* お問い合わせ トップ */
.sec-contact-1 {
    position: relative;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../../img/top/bg_blue_02.png');
        background-size: cover;
        background-repeat: no-repeat;
    }

    .area-contact {
        display: flex;
        padding: 60px 0;
        position: relative;
        justify-content: space-between;

        .area-contact-head {
            margin-right: 20px;

            .title-1 {
                color: #fff;
            }

            .title-2 {
                color: #fff;
                line-height: 1.5;
                letter-spacing: 2px;
            }

            .area-contact-head-img {
                margin-top: 30px;
                justify-content: center;
                display: flex;
            }
        }

        .area-contact-card-wrap {
            display: flex;
            gap: 20px;

            .area-contact-card {
                background: #fff;
                border-radius: 20px;
                display: flex;
                flex-direction: column;
                padding: 2.4vw;
                text-align: center;

                .area-contact-card-body {
                    flex: 1;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    .text {
                        font-size: 24px;
                        letter-spacing: 1.2px;
                        font-weight: var(--font-bold);
                        padding: 44px 0 20px;
                        position: relative;

                        &::before {
                            content: '';
                            display: block;
                            position: absolute;
                            width: 15px;
                            height: 15px;
                            left: 50%;
                            top: 0;
                            transform: translateX(-50%);
                            background-size: cover;
                            background-repeat: no-repeat;
                        }

                        &.text-company::before {
                            background-image: url('../../img/common/icon-building.svg');
                            width: 15px;
                            height: 24px;
                        }

                        &.text-applicants {
                            &::before {
                                background-image: url('../../img/common/icon-person.svg');
                                width: 18px;
                                height: 26px;
                            }
                        }
                    }
                }

                .btn-1 {
                    width: clamp(200px, 85.714px + 14.881vw, 300px);

                    p {
                        margin-left: 0;
                        text-align: center;
                    }
                }

                .btn-1-external::after {
                    width: 20px;
                    height: 20px;
                }
            }
        }
    }
}

/* お問い合わせ 企業向け */
.sec-contact-for-companies {
    .area-contact {
        padding: 100px 0;
    }

    .text {
        color: #fff;
        font-size: 18px;
        letter-spacing: 1.5px;
        line-height: 2em;
    }

    .btn-1 {
        margin: 30px auto 0;
        width: 310px;
        height: 67px;
    }
}

/* お問い合わせ 求職者の方へ */
.sec-contact-for-pwd {
    background: #ff7c7c;
    background: linear-gradient(151deg, rgba(255, 124, 124, 1) 0%, rgba(255, 137, 137, 1) 46%, rgba(126, 193, 255, 1) 100%);

    &::before {
        content: '';
        background-image: none;
    }

    .area-contact {
        padding: 100px 0;
    }

    .text {
        color: #fff;
        font-size: 18px;
        letter-spacing: 1.5px;
        line-height: 2em;
        margin-bottom: 0;
    }

    .btn-1 {
        margin: 30px 0 0;
        width: 310px;
        height: 67px;
    }
}

/* ボタン */
.btn-1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 239px;
    height: 57px;
    border: 2px solid var(--color-pink);
    border-radius: 9999px;
    font-size: 16px;
    font-weight: var(--font-bold);
    margin: 0 auto;
    padding: 16px;
    background-color: var(--color-pink);
    transition: all 0.3s;
    cursor: pointer;

    p {
        position: relative;
        color: #fff;
        margin-left: 12px;
        text-align: left;
        width: 100%;
        transition: all 0.3s;
    }

    &:hover {
        background-color: #fff;

        p {
            color: var(--color-ttl-black);
        }
    }

    &.btn-1-blue {
        border: 2px solid var(--color-blue);
        background-color: var(--color-blue);

        &:hover {
            background-color: #fff;
        }
    }

    &.btn-1-outline {
        border: 2px solid var(--color-pink);
        background-color: #fff;

        p {
            color: var(--color-ttl-black);
        }

        &:hover {
            background-color: var(--color-pink);

            p {
                color: #fff;
            }
        }
    }

    &.btn-1-blue-outline {
        border: 2px solid var(--color-blue);
        background-color: #fff;

        p {
            color: var(--color-ttl-black);
        }

        &:hover {
            background-color: var(--color-blue);

            p {
                color: #fff;
            }
        }
    }

    &.btn-1-chevron {
        &::before {
            content: '';
            display: block;
            background: #fff;
            border-radius: 100%;
            width: 24px;
            height: 24px;
            position: absolute;
            top: 50%;
            right: 16px;
            transform: translateY(-50%);
            transition: background 0.3s;
        }

        &::after {
            content: '';
            display: block;
            border-bottom: solid 2px var(--color-pink);
            border-right: solid 2px var(--color-pink);
            background: transparent;
            width: 6px;
            height: 6px;
            position: absolute;
            top: 50%;
            right: 26px;
            transform: translateY(-50%) rotate(-45deg);
            transition: border 0.3s;
        }

        &:hover {
            &::before {
                background: var(--color-pink);
            }

            &::after {
                border-color: #fff;
            }
        }

        &.btn-1-blue {
            &::after {
                border-bottom: solid 2px var(--color-blue);
                border-right: solid 2px var(--color-blue);
            }

            &:hover {
                &::before {
                    background: var(--color-blue);
                }

                &::after {
                    border-color: #fff;
                }
            }
        }

        &.btn-1-outline {
            &::before {
                background: var(--color-pink);
            }

            &::after {
                border-color: #fff;
            }

            &:hover {
                &::before {
                    background: #fff;
                }

                &::after {
                    border-color: var(--color-pink);
                }
            }
        }

        &.btn-1-blue-outline {
            &::before {
                background: var(--color-blue);
            }

            &::after {
                border-color: #fff;
            }

            &:hover {
                &::before {
                    background: #fff;
                }

                &::after {
                    border-color: var(--color-blue);
                }
            }
        }
    }

    &.btn-1-external {
        &::after {
            content: '';
            display: block;
            background-image: url('../../img/common/icon-outlink.svg');
            background-size: cover;
            background-repeat: no-repeat;
            position: absolute;
            width: 15px;
            height: 15px;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            transition: background 0.3s;
        }

        &:hover {
            &::after {
                background-image: url('../../img/common/icon-outlink-pink.svg');
            }
        }
    }

    &.btn-1-download {
        &::before {
            content: '';
            display: block;
            background: #fff;
            border-radius: 100%;
            width: 24px;
            height: 24px;
            position: absolute;
            top: 50%;
            right: 16px;
            transform: translateY(-50%);
            transition: background 0.3s;
        }

        &::after {
            content: '';
            display: block;
            background-image: url('../../img/common/icon-file-dl-blue.svg');
            background-size: cover;
            background-repeat: no-repeat;
            position: absolute;
            width: 15px;
            height: 15px;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            transition: background 0.3s;
        }

        &:hover {
            &::before {
                background-color: var(--color-blue);
            }
            &::after {
                background-image: url('../../img/common/icon-file-dl-white.svg');
            }
        }
    }
}

/* 上部へ戻る */
.c-gotop {
    position: fixed;
    opacity: 0;
}

.c-block {
    padding: 2vw 0;
}

.wrap-sec-03 {
    position: relative;

    &.c-bg-no-repeat::before {
        background-repeat: no-repeat;
    }
}

.wrap-sec-03::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    background-image: url('../../img/top/bg_wrap_01.png');
    background-size: 100% auto;
    background-position: 0 -800px;
    background-repeat: repeat-y;
    z-index: -1;
}

/* トピックスページ */
.sec-topic {
    margin: 160px 0;

    .area-topics-list {
        li {
            border-bottom: 1px solid #d8d8dd;
            
            &:first-child {
                border-top: 1px solid #d8d8dd;
            }
            
            a {
                display: flex;
                gap: 20px;
                padding: 20px 0;
                position: relative;
                cursor: pointer;

                &::after {
                    content: '';
                    display: block;
                    border-bottom: solid 2px var(--color-blue);
                    border-right: solid 2px var(--color-blue);
                    background: transparent;
                    width: 6px;
                    height: 6px;
                    position: absolute;
                    top: 50%;
                    right: 10px;
                    transform: translateY(-50%) rotate(-45deg);
                    transition: border 0.3s;
                }

                &:hover {
                    .text-body {
                        .text {
                            opacity: 0.5;
                            transition: opacity 0.3s;
                        }

                        .icon-circle {
                            background-color: var(--color-blue);
                        }
                    }

                    &::after {
                        border-color: #fff;
                    }
                }

                .date {
                    font-size: 13px;
                }

                .text-body {
                    .category {
                        color: #fff;
                        font-size: 13px;
                        font-weight: bold;
                        border-radius: 11px;
                        padding: 4px 12px;
                    }

                    .text {
                        font-size: 16px;
                        line-height: 1.7;
                        padding: 18px 40px 0 0;
                    }

                    .icon-circle {
                        position: absolute;
                        background-color: #fff;
                        border-radius: 50%;
                        border: 2px solid var(--color-blue);
                        height: 24px;
                        width: 24px;
                        top: 50%;
                        right: 0;
                        transform: translateY(-50%);
                        transition: background 0.3s;
                    }
                }
            }
        }
    }

    .empty-text {
        font-size: 18px;
        text-align: center;
    }
}

/* トピックスページ 詳細 */
/* コラムページ 詳細 */
.sec-topic-detail,
.sec-column-detail {
    margin: 160px 0;

    .date {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .column-img {
        border-radius: 8px;
        max-width: 820px;
        margin: 0 auto 40px;
        overflow: hidden;

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

    .page-text {
        margin-bottom: 40px;
        font-size: 16px;
        letter-spacing: 1px;
        line-height: 1.7;

        p {
            margin-bottom: 1rem;
        }

        h2 {
            font-size: 20px;
            font-weight: bold;
            margin-top: 24px;
            margin-bottom: 24px;
        }

        h3 {
            font-size: 18px;
            font-weight: bold;
            margin-top: 18px;
            margin-bottom: 18px;
        }

        a {
            color: #4FBFCC;
            transition: opacity .3s;

            &[target="_blank"] {
                position: relative;
                margin-right: 22px;

                &::after {
                    content: '';
                    display: block;
                    -webkit-mask:   url('../../img/common/icon-outlink.svg') no-repeat center center / contain;
                    mask-image:     url('../../img/common/icon-outlink.svg');
                    mask-repeat:    no-repeat;
                    mask-position:  center center;
                    mask-size:      contain;
                    background-color: #4FBFCC;
                    position: absolute;
                    width: 15px;
                    height: 15px;
                    right: -20px;
                    top: 50%;
                    transform: translateY(-50%);
                    transition: opacity 0.3s;
                }
            }

            &:hover {
                opacity: .8;
                
                &[target="_blank"] {
                    &::after {
                        opacity: .8;
                    }
                }
            }
        }

        ul {
            padding-left: 20px;

            li {
                position: relative;
                margin-bottom: 12px;

                &::before {
                    content: '';
                    position: absolute;
                    background-color: #4fbfcc;
                    border-radius: 50%;
                    left: -20px;
                    top: 8px;
                    width: 10px;
                    height: 10px;
                }
            }
        }
    }

    .prev-btn-container {
        margin-top: 80px;

        p {
            margin: 0;
            text-align: center;
        }
    }
}

/* 企業向けトップ */
.sec-context-issue {
    position: relative;
    clip-path: polygon(  100% 0,  100% 90%,  calc(50% + 240px) 90%,  50% 100%,  calc(50% - 240px) 90%,  0 90%,  0 0);

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../../img/top/bg_blue_01.png');
        background-size: cover;
        background-repeat: no-repeat;
        z-index: -1;
    }

    .area-context-issue {
        padding: 160px 0;

        .sec-head-text {

            .title-1,
            .title-2 {
                color: #fff;
            }

            .text {
                color: #fff;
                letter-spacing: 1px;
                line-height: 2em;
            }
        }

        .area-context-issue-card-wrap {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 24px;

            .area-context-issue-card {
                background: #fff;
                border-radius: 20px;
                display: flex;
                flex-direction: column;
                padding: 24px;

                .area-context-issue-card-img-wrap {
                    height: 160px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                h3 {
                    color: var(--color-blue);
                    font-size: 24px;
                    font-weight: bold;
                    letter-spacing: 1px;
                    margin: 2rem 0;
                    text-align: center;
                }

                p {
                    font-size: 16px;
                    line-height: 2;
                    letter-spacing: 1.5;
                }
            }
        }
    }
}

.wrap-sec-our-support {
    margin-top: -105px;
}

.sec-our-support {
    padding-top: 160px;

    .btn-1 {
        margin: 60px auto 0;
        width: 310px;
        height: 67px;
    }
}

.sec-satellite-office {
    margin-top: 160px;

    .area-satellite-office {
        .area-satellite-office-img-wrap {
            background-color: #fff;
            border: 1px solid var(--color-gray);
            border-radius: 40px;
            padding: 40px;
            display: flex;
            justify-content: center;
            align-items: center;

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

.sec-potential-partners {
    margin: 160px 0;

    .area-potential-partners {
        display: flex;
        justify-content: space-between;
        padding-bottom: 20px;

        .area-potential-partners-head {
            .btn-1 {
                margin: 0;
                width: 310px;
                height: 67px;
            }
        }

        .area-potential-partners-img {
            .area-potential-partners-img-inner {
                position: relative;

                img {
                    max-width: 100%;
                }

                .illust {
                    position: absolute;
                    bottom: -6px;
                    left: -18px;
                }
            }
        }
    }
}

/* 求職者の方へトップ */
.sec-our-values {
    padding-top: 160px;

    .area-our-values {
        .c-area-card {
            .btn-1 {
                margin-top: 20px;
                width: 300px;

                p {
                    margin-left: 6px;
                }
            }
        }
    }

    .area-our-values-bottom {
        margin-top: 60px;
        text-align: center;

        .text {
            font-size: 16px;
            font-weight: bold;
            position: relative;

            &::before,
            &::after {
                content: '/';
                position: absolute;
                top: 0;
            }

            &::before {
                left: -18px;
                transform: scale(-1, 1);
            }

            &::after {
                right: -15px;
            }
        }

        .btn-1 {
            margin-top: 20px;
            width: 310px;
        }
    }
}

.sec-skill-learn {
    margin-top: 160px;

    .area-skill-learn-card-wrap {
        display: grid;
        grid-template-columns: 1fr 1.2fr 1fr;
        gap: 32px;

        .area-skill-learn-card {
            background-color: #fff;
            border: 1px solid var(--color-pink);
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 20px;
            margin-top: 24px;
            position: relative;

            &:nth-of-type(2) {
                margin-top: 0;

                .card-head {
                    padding: 24px 14px;

                    .title-a {
                        font-size: 22px;
                    }

                    .title-b {
                        font-size: 26px;
                    }
                }

                .card-text {
                    justify-content: space-evenly;
                }
            }

            .card-head {
                background-color: var(--color-pink);
                border-top-left-radius: 20px;
                border-top-right-radius: 20px;
                padding: 14px;
                text-align: center;

                .title-a {
                    color: #fff;
                    font-size: 20px;
                    font-weight: bold;
                    margin-bottom: 8px;
                }

                .title-b {
                    color: #fff;
                    font-size: 24px;
                    font-weight: bold;
                }
            }

            .card-img {
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .card-text {
                border-bottom-right-radius: 20px;
                border-bottom-left-radius: 20px;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 16px;
                padding: 0 20px 30px;

                .circle-text {
                    background-color: #e0f1fa;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    min-width: 86px;
                    min-height: 86px;

                    p {
                        color: #000;
                        font-size: 14px;
                        font-weight: bold;
                        display: flex;
                        flex-direction: column;
                    }

                    span {
                        color: var(--color-blue);
                        font-size: 20px;
                        font-weight: bold;
                    }
                }

                .checkmark-list {
                    padding-left: 20px;

                    li {
                        position: relative;

                        &~li {
                            margin-top: 10px;
                        }

                        &::before {
                            content: '';
                            position: absolute;
                            background-color: var(--color-pink);
                            border-radius: 50%;
                            left: -1.2em;
                            top: 0.15em;
                            width: 14px;
                            height: 14px;
                        }

                        &::after {
                            content: '';
                            position: absolute;
                            left: -0.8em;
                            top: 0;
                            width: 6px;
                            height: 12px;
                            border-right: 2px solid #fff;
                            border-bottom: 2px solid #fff;
                            transform: rotate(45deg);
                        }
                    }
                }
            }

            &.card-gray {
                border: 1px solid #79797b;

                .card-head {
                    background-color: #79797b;
                }

                .card-text {
                    .checkmark-list {
                        li {
                            &::before {
                                background-color: #79797b;
                            }
                        }
                    }
                }
            }

            &.card-blue {
                border: 1px solid var(--color-blue);

                .card-head {
                    background-color: var(--color-blue);
                }

                .card-text {
                    .checkmark-list {
                        li {
                            &::before {
                                background-color: var(--color-blue);
                            }
                        }
                    }
                }
            }
        }

        .area-skill-learn-card~.area-skill-learn-card::before {
            content: '';
            display: block;
            background: var(--color-blue);
            border-radius: 100%;
            width: 60px;
            height: 60px;
            position: absolute;
            top: 50%;
            left: -48px;
            transform: translateY(-50%);
            transition: background 0.3s;
        }

        .area-skill-learn-card~.area-skill-learn-card::after {
            content: '';
            display: block;
            border-bottom: solid 3px #fff;
            border-right: solid 3px #fff;
            background: transparent;
            width: 22px;
            height: 22px;
            position: absolute;
            top: 50%;
            left: -35px;
            transform: translateY(-50%) rotate(-45deg);
            transition: border 0.3s;
        }

        .area-skill-learn-card~.area-skill-learn-card.card-blue::before,
        .area-skill-learn-card~.area-skill-learn-card.card-blue::after {
            top: calc(50% + 12px);
        }
    }

    .area-skill-learn-impressions {
        background-color: var(--color-strength-gray);
        border-radius: 20px;
        display: flex;
        justify-content: space-around;
        gap: 14px;
        margin: 60px 0 160px;
        padding: 30px;

        .area-skill-learn-impressions-head {
            position: relative;

            p {
                position: relative;
                font-size: 28px;
                font-weight: bold;
                background: #fff;
                margin-top: 40px;
                padding: 20px 40px;
                border-radius: 80px;
                line-height: 1.5;
                filter: drop-shadow(4px 4px 30px rgba(0, 0, 0, 0.05));

                &::after {
                    content: '';
                    position: absolute;
                    top: 100%;
                    left: 50%;
                    transform: translateX(-50%);
                    border-width: 15px 10px 0 10px;
                    border-style: solid;
                    border-color: #fff transparent transparent transparent;
                }
            }

            img {
                position: absolute;
                bottom: -30px;
                left: 50%;
                transform: translateX(-50%);
            }
        }

        .dot-list {
            padding-left: 20px;

            li {
                font-size: 18px;
                line-height: 1.5;
                margin-bottom: 0.8em;
                position: relative;

                &::before {
                    content: '';
                    position: absolute;
                    background-color: var(--color-pink);
                    border-radius: 50%;
                    left: -1.2em;
                    top: 0.35em;
                    width: 14px;
                    height: 14px;
                }
            }
        }

        .text-small {
            font-size: 13px;
        }
    }
}

.sec-the-issues {
    padding-top: 160px;

    .area-the-issues {
        background-color: var(--color-strength-gray);
        border-radius: 40px;
        padding: 100px 60px 60px;

        .area-the-issues-body {
            background-color: #fff;
            border-radius: 20px;
            padding: 40px;

            p {
                font-size: 24px;
                margin-bottom: 24px;
                line-height: 1.5;
            }

            .underline-yellow {
                text-decoration: underline;
                text-decoration-color: #ffdc50;
                text-underline-offset: 8px;
            }

            .area-the-issues-body-col-2 {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;

                ul {
                    margin: auto 0;

                    li {
                        font-size: 20px;
                        position: relative;

                        &~li {
                            margin-top: 1.7em;
                        }

                        &::before {
                            content: '';
                            position: absolute;
                            background-color: var(--color-blue);
                            border-radius: 50%;
                            left: -37px;
                            top: 0;
                            width: 1.2em;
                            height: 1.2em;
                        }

                        &::after {
                            content: '';
                            position: absolute;
                            background-color: transparent;
                            color: #fff;
                            font-size: 20px;
                            transform: translateY(-50%);
                            font-family: var(--font-en);
                            font-weight: bold;
                            left: -30px;
                            top: 12px;
                        }

                        &:nth-of-type(1)::after {
                            content: '1';
                        }

                        &:nth-of-type(2)::after {
                            content: '2';
                        }

                        &:nth-of-type(3)::after {
                            content: '3';
                        }

                        .highlight {
                            font-size: 24px;
                            font-weight: bold;
                        }
                    }
                }
            }
        }
    }
}

.sec-our-concept {
    padding-top: 160px;

    .area-our-concept-body {
        .area-our-concept-card-wrap {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;

            .card {
                background-color: #fff;
                border: 1px solid var(--color-blue);
                border-radius: 20px;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                gap: 20px;
                margin-top: 24px;
                position: relative;

                &~.card::before {
                    content: '';
                    display: block;
                    background: var(--color-blue);
                    border-radius: 100%;
                    width: 60px;
                    height: 60px;
                    position: absolute;
                    top: 50%;
                    left: -48px;
                    transform: translateY(-50%);
                }

                &~.card::after {
                    content: '';
                    display: block;
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    left: -29px;
                    background:
                        linear-gradient(45deg, transparent 45%, #fff 45%, #fff 55%, transparent 55%),
                        linear-gradient(-45deg, transparent 45%, #fff 45%, #fff 55%, transparent 55%);
                    width: 22px;
                    height: 22px;
                }

                .card-head {
                    padding: 20px 4px;
                    text-align: center;
                    height: 90px;

                    .title-a {
                        color: var(--color-blue);
                        font-size: 24px;
                        font-weight: bold;
                    }

                    .title-b {
                        color: var(--color-blue);
                        font-size: 18px;
                        font-weight: bold;
                    }
                }

                .card-img {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 123px;
                }

                .card-text {
                    display: flex;
                    justify-content: center;
                    align-items: start;
                    font-size: 14px;
                    padding: 0 20px 20px 20px;
                    flex: 1;

                    .checkmark-list {
                        padding-left: 20px;

                        li {
                            position: relative;
                            line-height: 1.5;

                            &~li {
                                margin-top: 1.5em;
                            }

                            &::before {
                                content: '';
                                position: absolute;
                                background-color: var(--color-blue);
                                border-radius: 50%;
                                left: -1.2em;
                                top: 0.2em;
                                width: 14px;
                                height: 14px;
                            }

                            &::after {
                                content: '';
                                position: absolute;
                                left: -0.8em;
                                top: 1px;
                                width: 6px;
                                height: 12px;
                                border-right: 2px solid #fff;
                                border-bottom: 2px solid #fff;
                                transform: rotate(45deg);
                            }
                        }
                    }
                }

                .card-bottom {
                    background-color: var(--color-blue);
                    border-bottom-right-radius: 20px;
                    border-bottom-left-radius: 20px;
                    color: #fff;
                    font-size: 24px;
                    font-weight: bold;
                    padding: 24px 4px;
                    text-align: center;
                    line-height: 1.5em;
                    position: relative;

                    &::before {
                        content: '';
                        display: block;
                        position: absolute;
                        top: -20px;
                        left: 50%;
                        transform: translateX(-50%) rotate(-180deg);
                        width: 80px;
                        height: 40px;
                        background: #55b5f3;
                        background: linear-gradient(180deg, rgba(85, 181, 243, 1) 19%, rgba(46, 167, 224, 1) 57%, rgba(232, 245, 251, 1) 100%);
                        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
                    }
                }
            }
        }
    }
}

.sec-the-solution {
    margin-top: 160px;

    .area-the-solution {
        .area-the-solution-img-wrap {
            background-color: #fff;
            border: 1px solid var(--color-gray);
            border-radius: 40px;
            padding: 40px;
            display: flex;
            justify-content: center;
            align-items: center;

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

.sec-features {
    .btn-1 {
        margin: 30px auto 0;
        width: 349px;

        p {
            margin-left: 0;
        }
    }
}

.sec-plans {
    .head-text {
        font-size: 16px;
        line-height: 2em;
        margin-top: 30px;
    }
}

.sec-partners {
    .sec-head-text {
        .title-2 {
            margin-bottom: 60px;
        }
    }
}

/* 就労までのステップ */
.sec-work-learn {
    margin: 160px 0 160px;

    .area-work-learn-body {
        .item {
            background-color: #fff;
            border: 1px solid #c5bbbd;
            border-radius: 20px;
            margin-bottom: 40px;
            padding: 40px;
            display: flex;
            position: relative;

            &~.item {
                &::before {
                    content: '';
                    display: block;
                    position: absolute;
                    top: -20px;
                    left: 50%;
                    transform: translateX(-50%) rotate(-180deg);
                    width: 80px;
                    height: 40px;
                    background: #ff8989;
                    background: linear-gradient(180deg, rgba(255, 137, 137, 1) 19%, rgba(255, 137, 137, 1) 57%, rgba(255, 255, 255, 1) 100%);
                    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
                }
            }

            .item-head {
                color: var(--color-pink);
                font-family: var(--font-en);
                font-size: 24px;
                margin: auto 0;
                text-align: center;
                display: flex;
                flex-direction: column;

                .number {
                    font-size: 36px;
                }
            }

            &.last .item-head {
                margin: 0 0 auto 0;
            }

            .item-body {
                display: flex;
                flex-wrap: wrap;
                margin-left: 80px;
                position: relative;

                &::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: -40px;
                    width: 1px;
                    height: 100%;
                    background: repeating-linear-gradient(
                        to bottom,
                        #c5bbbd 0 2px,
                        transparent 2px 4px
                    )
                }

                .item-body-img-wrap {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding-right: 50px;
                }

                .item-body-text {
                    font-size: 16px;

                    h3 {
                        color: var(--color-pink);
                        font-size: 24px;
                        font-weight: bold;
                        margin-bottom: 24px;
                    }

                    p {
                        line-height: 2em;
                    }
                }

                .item-body-text-2 {
                    background-color: #f5f5f5;
                    border-radius: 20px;
                    margin-top: 40px;
                    padding: 40px;
                    width: 100%;

                    p {
                        position: relative;
                        font-size: 20px;
                        font-weight: bold;
                        margin-bottom: 20px;
                        padding-left: 18px;

                        &::before {
                            content: '';
                            position: absolute;
                            left: 0;
                            top: 50%;
                            display: block;
                            width: 4px;
                            height: 80%;
                            border-radius: 2px;
                            background-color: var(--color-pink);
                            transform: translateY(-50%);
                        }
                    }
                }

                .dot-list {
                    padding-left: 20px;

                    li {
                        font-size: 16px;
                        line-height: 1.7;
                        margin-bottom: 0.8em;
                        position: relative;

                        &::before {
                            content: '';
                            position: absolute;
                            background-color: var(--color-pink);
                            border-radius: 50%;
                            left: -20px;
                            top: 8px;
                            width: 10px;
                            height: 10px;
                        }
                    }
                }
            }
        }
    }
}

/* お役立ち情報, コラム */
.sec-oyakudachi, .sec-column {
    margin: 160px 0;

    .area-oyakudachi, .area-column {
        .card-wrap {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;

            .card {
                background-color: #fff;
                border: 1px solid #d8d8dd;
                border-radius: 16px;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                gap: 16px;
                position: relative;
                padding: 24px;
                min-width: 0;

                .card-img {
                    aspect-ratio: 16 / 9;
                    border-radius: 8px;
                    overflow: hidden;

                    img {
                        width: 100%;
                        height: auto;
                        object-fit: contain;
                        transition: transform 0.3s ease;
                    }
                }

                .card-text {
                    font-size: 16px;
                    line-height: 1.7;
                    overflow-wrap: anywhere;
                    transition: opacity 0.3s ease;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 3;
                    line-clamp: 3;
                    overflow: hidden;
                    height: 80px;
                }

                .card-date {
                    font-size: 16px;
                    transition: opacity 0.3s ease;
                }

                .card-category {
                    flex: 1;

                    ul {
                        display: flex;
                        flex-wrap: wrap;

                        li {
                            background-color: #4fbfcc;
                            border-radius: 13px;
                            color: #fff;
                            font-size: 13px;
                            font-weight: bold;
                            padding: 4px 13px;
                            margin: 0 12px 12px 0;
                        }
                    }
                }
            }
        }

        .empty-text {
            font-size: 18px;
            text-align: center;
        }
    }

    .area-column {
        .card-wrap {
            .card {
                &:hover {
                    .card-img {
                        img {
                            transform: scale(1.1);   
                        }
                    }
                    
                    .card-text,
                    .card-date {
                        opacity: .5;
                    }
                }
            }
        }
    }
}

@media screen and (min-width: 768px) and (max-width: 947px) {
    .sec-oyakudachi, .sec-column {
        .area-oyakudachi, .area-column {
            .card-wrap {
                grid-template-columns: 1fr 1fr;
            }
        }
    }    
}

/* サテライトオフィス */
.sec-satellite-office-page {
    margin-top: 160px;

    .area-satellite-office-page-inner {
        .content-1 {
            background-color: #fff;
            border-radius: 20px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            gap: 20px;
            padding: 40px;
            margin: 60px 40px;
            
            p {
                font-size: 18px;
                letter-spacing: 1px;
                line-height: 2;

                & ~ p {
                    margin-top: 12px;
                }
            }
        }

        .content-2 {
            background-color: #f5f5f5;
            border-radius: 20px;
            padding: 80px 40px;

            .content-2-1 {
                display: flex;
                gap: 40px;
                margin-bottom: 60px;

                .area-text {
                    h3 {
                        font-size: 24px;
                        font-weight: bold;
                        margin-bottom: 60px;
                        padding-left: 18px;
                        position: relative;

                        &::before {
                            content: '';
                            position: absolute;
                            left: 0;
                            top: 2px;
                            display: block;
                            width: 4px;
                            height: 1em;
                            border-radius: 2px;
                            background-color: #4fbfcc;
                        }

                        &::after {
                            content: '';
                            position: absolute;
                            left: 0;
                            bottom: -30px;
                            display: block;
                            width: 100%;
                            height: 1px;
                            background-color: #222222;
                        }
                    }

                    .dot-list {
                        padding-left: 20px;
                        margin-bottom: 40px;

                        li {
                            font-size: 16px;
                            line-height: 2;
                            margin-bottom: 0.8em;
                            position: relative;

                            &::before {
                                content: '';
                                position: absolute;
                                background-color: #4fbfcc;
                                border-radius: 50%;
                                left: -20px;
                                top: 12px;
                                width: 10px;
                                height: 10px;
                            }
                        }
                    }

                    .area-text-access {
                        background: #fff;
                        border-radius: 20px;
                        padding: 20px;

                        p {
                            font-size: 16px;
                            line-height: 2;
                            position: relative;
                            padding-left: 70px;

                            &::before {
                                content: '：';
                                position: absolute;
                                left: 55px;
                            }
                            
                            .text-head {
                                position: absolute;
                                left: 0;
                            }
                        }
                    }
                }
            }

            .content-2-2 {
                display: flex;
                justify-content: space-between;
                gap: 30px;

                .item-img {
                    border-radius: 20px;
                    overflow: hidden;
                    width: 100%;

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

                    p {
                        font-size: 14px;
                        line-height: 1.5;
                        margin-top: 20px;
                        text-align: center;
                    }
                }
            }
        }
    }
}

.sec-daily-flow {
    margin: 160px 0;

    .item {
        background-color: #fff;
        border: 1px solid #555555;
        border-radius: 40px;
        padding: 40px;

        & ~ .item {
            margin-top: 80px;
        }

        .item-head {
            display: flex;
            position: relative;
            margin-bottom: 60px;

            &::after {
                content: '';
                position: absolute;
                left: 0;
                bottom: -30px;
                display: block;
                width: 100%;
                height: 1px;
                background-color: #C5BBBD;
            }

            .item-head-case {
                max-width: 65px;
                min-width: 65px;
                max-height: 65px;
                min-height: 65px;
                background: #4fbfcc;
                border-radius: 50%;
                margin-right: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                
                .text {
                    color: #fff;
                    font-size: 14px;
                    font-family: var(--font-en);
                    font-weight: bold;
                }
                
                .number {
                    color: #fff;
                    font-size: 28px;
                    font-family: var(--font-en);
                }
            }

            .item-head-text {
                margin: auto 0;

                h3 {
                    color: #4fbfcc;
                    font-size: 24px;
                    font-weight: bold;
                    line-height: 1.5;
                    letter-spacing: 2px;
                    margin-bottom: 10px;
                }

                p {
                    font-size: 16px;
                    line-height: 2;
                }
                .text-sm {
                    font-size: 14px;
                }
            }
        }

        .item-body {
            display: flex;

            .dot-and-line-list {
                flex: 1;
                margin-left: 80px;

                li {
                    font-size: 20px;
                    font-weight: bold;
                    line-height: 2.3;
                    position: relative;
                    padding-left: 5em;

                    &::before {
                        content: '';
                        position: absolute;
                        background-color: #BEDEE2;
                        left: -34px;
                        top: 20px;
                        width: 6px;
                        height: 100%;
                    }

                    &::after {
                        content: '';
                        position: absolute;
                        background-color: #4fbfcc;
                        border-radius: 50%;
                        left: -36px;
                        top: 18px;
                        width: 10px;
                        height: 10px;
                    }

                    
                    &:last-child {
                        &::before {
                            height: 0;
                        }   
                    }

                    .time {
                        color: #4fbfcc;
                        font-family: var(--font-en);
                        position: absolute;
                        left: 0;
                    }
                }
            }

            .item-img {
                flex: 1;
                display: flex;
                justify-content: center;
                align-items: center;

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

/* ページネーション */
.pagenation-container {
    nav {
        margin-top: 40px;

        ul {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            font-size: 14px;

            li:not(.is-current) {
                color: var(--color-blue);
                transition: opacity .3s;

                &:hover {
                    opacity: .7;
                }
            }

            li.is-current {
                color: var(--color-ttl-black);
            }

            /* li:not(.is-current) {
                cursor: pointer;
                transition: opacity .3s;

                &:hover {
                    opacity: .5;
                }
            }

            li.is-current {
                background: var(--color-pink);
                border-radius: 50%;
                color: #fff;
                width: 24px;
                height: 24px;
                text-align: center;
                line-height: 1.8;
            } */
        }
    }
}

/* SP用 */
@media screen and (max-width: 767px) {
    body.is-menu-open-sp {
        overflow: hidden;
    }

    .pt-header-height {
        padding-top: 92px;
    }

    header {
        .area-right {
            .btn-1 {
                min-width: 100px;
                max-width: 100px;
                height: 34px;
                font-size: 12px;
                padding: 0px;

                &.btn-1-external::after {
                    width: 12px;
                    height: 12px;
                }
            }

            .hamburger {
                position: relative;
                background: var(--color-blue);
                border-radius: 70% 40% 70% 40% / 70% 40% 70% 40%;
                min-width: 40px;
                max-width: 40px;
                min-height: 34px;
                max-height: 34px;
                border: none;
                cursor: pointer;
                margin-left: 10px;

                &::before,
                &::after,
                span {
                    content: '';
                    position: absolute;
                    left: 50%;
                    width: 14px;
                    height: 2px;
                    background: #fff;
                    transform: translateX(-50%);
                    transition: all .3s;
                }

                &::before {
                    top: 12px;
                }

                span {
                    top: 18px;
                }

                &::after {
                    top: 24px;
                }

                &.is-open {
                    &::before {
                        transform: translateX(-50%) rotate(45deg);
                        top: 50%;
                    }

                    span {
                        opacity: 0;
                    }

                    &::after {
                        transform: translateX(-50%) rotate(-45deg);
                        top: 50%;
                    }
                }
            }
        }

        .area-nav-sp {
            background: #fff;
            box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.05);
            border-radius: 20px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 100%;
            width: 92%;
            padding: 20px;
            z-index: 10;

            &.is-menu-open-sp {
                height: calc(100vh - 76px);
                overflow: scroll;
                -ms-overflow-style: none;
                scrollbar-width: none;
            }

            .nav-list {
                li {
                    border-bottom: 1px solid #d8d8dd;
                    font-size: 18px;
                    font-weight: bold;
                    padding: 24px 0;
                    position: relative;

                    &:last-child {
                        border-bottom: 0;
                    }

                    & > a {
                        display: block;
                    }

                    .nav-list-btn {
                        cursor: pointer;

                        &::after {
                            content: '';
                            display: block;
                            border-bottom: solid 2px var(--color-pink);
                            border-right: solid 2px var(--color-pink);
                            background: transparent;
                            width: 12px;
                            height: 12px;
                            position: absolute;
                            right: 20px;
                            top: 50%;
                            transition: border  0.3s;
                            transform: translateY(-50%) rotate(45deg);
                        }

                        &.is-open {
                            &::after {
                                content: '';
                                display: block;
                                border-bottom: solid 2px var(--color-pink);
                                border-right: solid 2px var(--color-pink);
                                background: transparent;
                                width: 12px;
                                height: 12px;
                                position: absolute;
                                right: 20px;
                                top: 50%;
                                transition: border 0.3s;
                                transform: translateY(-50%) rotate(-135deg);
                            }
                        }
                    }

                    &.nav-list-menu {
                        display: none;

                        .item {
                            display: block;
                            font-weight: 400;
                            padding-left: 24px;
                            position: relative;

                            &::before {
                                content: '';
                                display: block;
                                background: #000;
                                border-radius: 100%;
                                width: 12px;
                                height: 1px;
                                position: absolute;
                                top: 50%;
                                left: 0;
                                transform: translateY(-50%);
                            }

                            & ~ .item {
                                margin: 24px 0 0 32px;
                            }
                        }

                        .item-top {
                            font-weight: bold;

                            &::before {
                                content: '';
                                display: block;
                                background: var(--color-pink);
                                border-radius: 100%;
                                width: 16px;
                                height: 16px;
                                position: absolute;
                                top: 50%;
                                left: 0px;
                                transform: translateY(-50%);
                            }

                            &::after {
                                content: '';
                                display: block;
                                border-bottom: solid 2px #fff;
                                border-right: solid 2px #fff;
                                background: transparent;
                                width: 4px;
                                height: 4px;
                                position: absolute;
                                top: 50%;
                                left: 6px;
                                transform: translateY(-50%) rotate(-45deg);
                            }

                            &.blue {
                                &::before {
                                    background: var(--color-blue);
                                }
                            }
                        }
                    }

                    &.nav-list-btn-container {
                        padding: 40px 0;
                        text-align: center;

                        .btn-1 {
                            display: block;
                            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
                            width: 100%;

                            p {
                                text-align: center;
                                margin-left: 0;
                            }
                        }
                        
                        .text-wrap {
                            display: flex;
                            justify-content: center;
                            align-items: center;

                            .text {
                                margin-bottom: 18px;
                                position: relative;
                            }

                            .text-company {
                                &::before {
                                    content: '';
                                    display: block;
                                    background-image: url('../../img/common/icon-building.svg');
                                    width: 15px;
                                    height: 24px;
                                    top: 50%;
                                    position: absolute;
                                    transform: translateY(-50%);
                                    left: -26px;
                                }
                            }

                            .text-applicants {
                                &::before {
                                    content: '';
                                    display: block;
                                    background-image: url('../../img/common/icon-person.svg');
                                    width: 18px;
                                    height: 26px;
                                    top: 50%;
                                    position: absolute;
                                    transform: translateY(-50%);
                                    left: -26px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* フッター */
    footer {
        &.footer .contents-top .inner-contents-top .head-area {
            .box-logo {
                align-items: start;
            }

            .nav-area {
                position: initial;

                ul {
                    justify-content: start;
                    margin: 40px 0 0 0;
                    flex-wrap: wrap;
                }
            }
        }
    }

    .wrap-sec-01::before,
    .wrap-sec-02::before,
    .wrap-sec-03::before {
        background-image: url('../../img/top/bg_wrap_01_sp.png');
        background-position: 0 0;
    }
    
    /* kv */
    .sec-kv {
        height: auto;

        .inner-kv {
            margin: 0 20px;

            .area-txt {
                margin-top: 55vw;

                .block-catch {
                    .catch-ttl {
                        font-size: max(7.6vw, 32px);

                        p {
                            font-size: max(8vw, 36px);
                        }
                    }

                    .img-kv01 {
                        width: 80%;
                    }

                    .catch-subttl {
                        font-size: 18px;
                        line-height: 2;
                        letter-spacing: 2px;
                    }
                }
            }

            .area-img {
                .img-kv01 {
                    width: 75vw;
                    top: -7vw;
                    left: -4vw;
                }

                .img-kv02 {
                    width: 46vw;
                    right: -20px;
                    bottom: -65vw;
                }
            }
        }
    }

    /* section 共通 */
    .sec-head-text {
        .title-1 {
            font-size: 20px;
        }

        .title-2 {
            font-size: 28px;
            font-weight: bold;

            .sub-text {
                font-size: 18px;
                line-height: 4;
            }
        }

        h1.title-2 {
            font-size: 32px;
        }

        .text {
            text-align: left;
        }
    }

    /* service */
    .sec-service {
        .area-service {
            border-radius: 50% 50% 20px 20px / 100px 100px 20px 20px;

            .area-service-inner {
                padding: 0 20px 20px 20px;

                .sec-head-text {
                    .title-1 {
                        padding-top: 60px;
                    }
                }
                
                .area-service-title-wrap {
                    margin-top: 100px;

                    &::before {
                        width: 23vw;
                        height: 18.5vw;
                        top: -32px;
                        left: -14px;
                    }

                    &::after {
                        width: 18vw;
                        height: 18vw;
                        top: -30px;
                        right: 0;
                    }
                }

                .area-service-card-wrap {
                    flex-direction: column;
                    margin: 30px 0 0 0;

                    .area-service-card {
                        padding: 20px;

                        .btn-1 {
                            width: min(100%, 350px);
                        }
                    }
                }
            }
        }
    }

    /* 横ループスクロール */
    .sec-loop-slide-x {
        .slide-track {
            height: 200px;
            background-size: cover;
            background-position: center;
            margin-bottom: 40px;
        }

        .illust-container {
            .img-illust-1 {
                top: -240px;
                left: 56%;
                width: 14vw;
                height: 20vw;
            }

            .img-illust-2 {
                display: none;
            }
        }
    }

    /* お知らせ */
    .sec-news {
        position: relative;

        .area-news {
            .area-news-head {
                .area-news-head-img {
                    margin-right: 1vw;

                    img {
                        width: 32vw;
                        height: 34vw;
                    }
                }
            }
            .area-news-card-wrap {
                flex-direction: column;
                gap: 30px;

                .area-news-card {
                    padding: 30px 16px;

                    .area-news-card-head {
                        font-size: 24px;
                    }

                    .area-news-list {
                        .item {
                            .category {
                                line-height: 1.2;
                            }
                        }
                    }
                }
            }
        }
    }

    /* よくあるご質問 */
    .sec-faq {
        padding: 90px 0;

        .area-faq {
            display: block;
            position: relative;
            padding-bottom: 40vw;

            .area-faq-head {
                min-width: initial;

                .sec-head-text {
                    margin-bottom: 30px;
                }

                .area-faq-head-img {
                    position: absolute;
                    left: 50%;
                    transform: translateX(-50%);
                    bottom: 0;
                    margin: 0;

                    img {
                        width: 42vw;
                        height: 35vw;
                    }
                }
            }
        }
    }

    /* 働く環境 */
    .sec-office {
        .area-office {
            .sec-head-text {
                .title-2 {
                    .sub-text {
                        font-size: clamp(14px, 4vw, 26px);
                        letter-spacing: 0;
                    }
                }
            }

            .area-office-content {
                grid-template-columns: 1fr;

                .area-office-content-img-text {
                    position: initial;
                    margin-top: 20px;
                }

                .area-office-content-card {
                    padding: 120px 0 0;

                    &::before {
                        top: 50px;
                        left: 50%;
                        transform: translateX(-50%) rotate(-16deg);
                    }

                    .area-office-content-card-inner {
                        .btn-1 {
                            padding: 34px;
                            width: clamp(250px, 50vw, 500px);

                            p {
                                line-height: 1.4;
                            }
                        }
                    }
                }
            }

            .area-office-illust-container {
                .img-01 {
                    width: 18vw;
                    height: 32vw;
                }

                .img-02 {
                    width: 15vw;
                    height: 32vw;
                }
            }
        }
    }

    /* お問い合わせ トップ */
    .sec-contact-1 {
        .area-contact {
            display: block;

            .area-contact-head {
                margin: 0;
                text-align: center;

                .area-contact-head-img {
                    margin: 30px 0;
                }
            }

            .area-contact-card-wrap {
                flex-direction: column;

                .area-contact-card {
                    padding: 20px;

                    .area-contact-card-body {
                        .text {
                            font-size: 22px;
                            padding: 20px 0;
                            margin-right: -24px;

                            &::before {
                                left: -26px;
                                top: initial;
                                transform: initial;
                            }
                        }
                    }

                    .btn-1 {
                        width: min(100%, 350px);
                    }
                }
            }
        }
    }

    /* 上部へ戻る */
    .c-gotop {
        bottom: 20px;
        top: initial;
    }

    /* 企業向けトップ */
    .sec-context-issue {
        clip-path: polygon(100% 0, 100% 96%, 75% 96%, 50% 100%, 25% 96%, 0 96%, 0 0);

        &::before {
            background-image: url('../../img/top/bg_blue_01_sp.png');
        }
        
        .area-context-issue {
            .area-context-issue-card-wrap {
                grid-template-columns: 1fr;
            }
        }
    }

    .sec-our-support {
        .btn-1 {
            width: min(100%, 350px);
        }
    }

    .sec-satellite-office {
        .area-satellite-office {
            .area-satellite-office-img-wrap {
                border-radius: 20px;
                padding: 20px;
            }
        }
    }

    .sec-potential-partners {
        .area-potential-partners {
            display: block;

            .area-potential-partners-img {
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 30px 0;

                .illust {
                    width: clamp(80px, 37vw, 200px);
                }
            }

            .sec-head-text {
                .btn-1 {
                    width: min(100%, 350px);
                }
            }
        }
    }

    /* お問い合わせ 企業向け */
    .sec-contact-for-companies {
        .area-contact {
            padding: 60px 0;
        }

        .text {
            margin-top: 40px;
        }

        /* .btn-1 {
            width: min(100%, 300px);
        } */
    }

    /* 求職者の方へトップ */
    .sec-skill-learn {
        .area-skill-learn-card-wrap {
            grid-template-columns: 1fr;
            gap: 40px;

            .area-skill-learn-card.card-blue {
                margin-top: 24px;
            }

            .area-skill-learn-card ~ .area-skill-learn-card::before,
            .area-skill-learn-card ~ .area-skill-learn-card.card-blue::before {
                width: 46px;
                height: 46px;
                top: -54px;
                left: 50%;
                transform: translateX(-50%);
            }

            .area-skill-learn-card ~ .area-skill-learn-card::after,
            .area-skill-learn-card ~ .area-skill-learn-card.card-blue::after {
                width: 18px;
                height: 18px;
                top: -45px;
                left: 50%;
                transform: translateX(-50%) rotate(45deg);
            }
        }

        .area-skill-learn-impressions {
            display: block;

            .area-skill-learn-impressions-head {
                text-align: center;

                p {
                    margin-top: 0;
                }

                img {
                    position: initial;
                    margin: 40px 0;
                    transform: initial;
                }
            }
        }
    }

    /* お問い合わせ 求職者の方へ */
    .sec-contact-for-pwd {
        background: linear-gradient(90deg, rgba(255, 124, 124, 1) 0%, rgba(255, 137, 137, 1) 46%, rgba(126, 193, 255, 1) 100%);

        img {
            max-width: 100%;
        }

        .area-contact {
            display: flex;
            flex-direction: column-reverse;
            gap: 40px;
            padding: 60px 0;
        }

        .btn-1 {
            width: min(100%, 350px);
        }
    }

    .sec-the-issues {
        .area-the-issues {
            border-radius: 20px;
            padding: 20px;

            .area-the-issues-body {
                padding: 40px 20px;

                .area-the-issues-body-col-2 {
                    grid-template-columns: 1fr;

                    & > div {
                        margin: auto;
                    }

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

                    ul {
                        padding: 0 0 0 40px;
                        margin: auto;

                        li {
                            font-size: 16px;

                            &::before {
                                left: -30px;
                                top: 0;
                                transform: initial;
                            }

                            &::after {
                                font-size: 16px;
                                left: -24px;
                                top: 9px;
                            }

                            .highlight {
                                font-size: 18px;
                            }
                        }
                    }
                }
            }
        }
    }

    .sec-our-concept {
        .area-our-concept-body {
            .area-our-concept-card-wrap {
                grid-template-columns:  1fr;

                .card ~ .card::before {
                    width: 40px;
                    height: 40px;
                    top: -48px;
                    left: 50%;
                    transform: translateX(-50%);
                }

                .card ~ .card::after {
                    width: 18px;
                    height: 18px;
                    top: -37px;
                    left: 50%;
                    transform: translateX(-50%);
                }

                .card {
                    .card-head {
                        height: auto;
                    }
                }
            }
        }
    }

    .sec-the-solution {
        .area-the-solution {
            .area-the-solution-img-wrap {
                border-radius: 20px;
                padding: 20px;
            }
        }
    }

    .sec-features {
        .btn-1 {
            margin-bottom: 20px;
            width: min(100%, 350px);

            p {
                padding-right: 20px;
            }
        }
    }

    /* 就労までのステップ */
    .sec-work-learn {
        .area-work-learn-body {
            .item {
                display: block;
                padding: 20px;

                .item-head {
                    flex-direction: row;
                    gap: 6px;
                    margin-bottom: 20px;

                    .number {
                        font-size: 24px;
                    }
                }

                &.last .item-head {
                    margin: 0 0 20px 0;
                }

                .item-body {
                    display: block;
                    margin: 0;
                    padding: 20px 0;

                    &::before {
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 1px;
                        background: repeating-linear-gradient(
                            to right,
                            #c5bbbd 0 2px,
                            transparent 2px 4px
                        );
                    }

                    .item-body-img-wrap {
                        padding: 0;
                        margin-bottom: 20px;
                    }

                    .item-body-text {
                        h3 {
                            text-align: center;
                        }
                    }

                    .item-body-text-2 {
                        padding: 20px;
                    }
                }
            }
        }
    }

    /* お役立ち情報, コラム */
    .sec-oyakudachi, .sec-column {
        .area-oyakudachi, .area-column {
            .card-wrap {
                grid-template-columns: 1fr;
            }
        }
    }

    /* サテライトオフィス */
    .sec-satellite-office-page {
        .area-satellite-office-page-inner {
            .content-1 {
                flex-direction: column;
                gap: 40px;
                margin: 40px 0;
                padding: 20px;
            }

            .content-2 {
                padding: 40px 20px;

                .content-2-1 {
                    flex-direction: column;
                    align-items: center;

                    .area-img {
                        img {
                            max-width: 100%;
                            object-fit: contain;
                            height: auto;
                        }
                    }

                    .area-text {
                        h3 {
                            font-size: 18px;
                            line-height: 1.7;

                            &::before {
                                top: 6px;
                            }
                        }
                    }
                }

                .content-2-2 {
                    flex-direction: column;
                    align-items: center;

                    .item-img {
                        p {
                            margin-top: clamp(8px, 3vw, 20px);
                        }
                    }
                }
            }
        }
    }
    
    .sec-daily-flow {
        .item {
            padding: 40px 20px;

            .item-head {
                display: block;

                .item-head-case {
                    position: absolute;
                    top: -72px;
                }
            }

            .item-body {
                display: block;
                margin: 0 auto;

                .item-img {
                    margin: 25px 5vw 0;
                }

                .dot-and-line-list {
                    margin-left: clamp(20px, 8vw, 40px);

                    li {
                        font-size: 16px;

                        &::before {
                            left: -21px;
                        }

                        &::after {
                            left: -23px;
                            top: 14px;
                        }
                    }
                }
            }
        }
    }
}
