@charset "UTF-8";

/*///////////////////// layout reset ///////////////////////////*/
body {
    margin: 0;
}

.l-main {
    width: auto;
    padding: 0;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.l-main *{
    font-family: "Zen Kaku Gothic New", sans-serif;
    box-sizing: border-box;
}

.is-hidden {
    display: none;
}

/*///////////////////// section common ///////////////////////////*/
[class*="section__wrap"] {
    padding-block: 100px 120px;
}
    [class*="section__inner"] {
        width: 1240px;
        margin: 0 auto;
    }
    [class*="section__inner--"].js-fade {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    [class*="section__inner--"].js-fade.is-inview {
        opacity: 1;
        transform: translateY(0);
    }
    @media (prefers-reduced-motion: reduce) {
        [class*="section__inner--"].js-fade {
            opacity: 1;
            transform: none;
            transition: none;
        }
    }

/*//////////////////// Search ////////////////////*/

    .section__inner--search {
        display: flex;
        align-items: stretch;
        gap: 11px;
    }

/* 賃貸 */
.search-rent {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 840px;
    padding: 36px 50px 50px;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.16);
}
    .search-rent__head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        width: 100%;
    }
        .search-rent__ttl {
            margin: 0;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 700;
            font-size: 28px;
            line-height: 1;
            color: #414141;
            white-space: nowrap;
        }
        .search-rent__count {
            display: flex;
            align-items: center;
            gap: 14px;
        }
            .search-rent__count-item {
                display: flex;
                align-items: flex-end;
                gap: 5px;
                margin: 0;
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 500;
                line-height: 1;
                white-space: nowrap;
                padding-bottom: 3px;
            }
                .search-rent__count-label {
                    font-size: 16px;
                    color: #353838;
                }
                .search-rent__count-num {
                    font-size: 30px;
                    color: #f58220;
                }
                .search-rent__count-unit {
                    font-size: 16px;
                    color: #353838;
                }
            .search-rent__count-line {
                display: block;
                width: 1px;
                height: 30px;
                background-color: #d0d0d0;
            }
    .search-rent__body {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 15px;
        width: 100%;
    }
        .search-rent__list {
            display: flex;
            gap: 12px;
            width: 740px;
            margin: 0;
            padding: 0;
            list-style: none;
        }
            .search-rent__item {
                flex: 1 1 0;
                min-width: 0;
                margin: 0;
            }
                .search-rent__link {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    gap: 12px;
                    height: 110px;
                    padding: 15px 25px 20px;
                    box-sizing: border-box;
                    border-radius: 6px;
                    background-color: #242626;
                    text-decoration: none;
                }
                .search-rent__link:hover {
                    background-color: #F58220;
                    color: #fff;
                    opacity: 1;
                }
                    .search-rent__icon {
                        display: block;
                        width: 40px;
                        height: 40px;
                        flex-shrink: 0;
                        fill: #fff;
                        color: #fff;
                    }
                    .search-rent__icon--school {
                        width: 38px;
                        height: 38px;
                    }
                    .search-rent__text {
                        font-family: "Zen Kaku Gothic New", sans-serif;
                        font-weight: 700;
                        font-size: 16px;
                        line-height: 1;
                        color: #fff;
                        text-align: center;
                        white-space: nowrap;
                    }
        .search-rent__form {
            position: relative;
            width: 740px;
            height: 60px;
        }
            input[type="text"].search-rent__input {
                display: block;
                width: 100%;
                height: 60px;
                padding: 0 50px 0 30px;
                box-sizing: border-box;
                border: 1px solid #787878;
                border-radius: 6px;
                background-color: #f5f4f4;
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 400;
                font-size: 16px;
                line-height: 1;
                color: #353838;
            }
            input[type="text"].search-rent__input::placeholder {
                color: #b5b5b5;
            }
            .search-rent__submit {
                position: absolute;
                top: 15px;
                right: 15px;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 30px;
                height: 30px;
                padding: 0;
                border: none;
                background: transparent;
                cursor: pointer;
            }
                .search-rent__submit-icon {
                    display: block;
                    width: 30px;
                    height: 30px;
                    fill: #242626;
                    color: #242626;
                }
                .search-rent__submit-icon:hover {
                    fill: #F58220;
                    color: #fff;
                }

/* 売買 */
.search-sale {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 389px;
    padding: 42px 50px 50px;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.16);
}
    .search-sale__ttl {
        margin: 0;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 700;
        font-size: 28px;
        line-height: 1;
        color: #414141;
    }
    .search-sale__list {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 11px;
        width: 100%;
        height: 185px;
        margin: 0;
        padding: 0;
        list-style: none;
    }
        .search-sale__item {
            margin: 0;
        }
            .search-sale__link {
                display: flex;
                align-items: center;
                gap: 20px;
                height: 87px;
                padding: 8px 31px 8px 8px;
                box-sizing: border-box;
                border-radius: 6px;
                background-color: #242626;
                text-decoration: none;
            }
            .search-sale__link:hover {
                background-color: #F58220;
                color: #fff;
                opacity: 1;
            }
                .search-sale__img {
                    display: block;
                    width: 105px;
                    height: 71px;
                    flex-shrink: 0;
                    border-radius: 6px;
                    object-fit: cover;
                }
                .search-sale__text {
                    font-family: "Zen Kaku Gothic New", sans-serif;
                    font-weight: 700;
                    font-size: 16px;
                    line-height: 1;
                    color: #fff;
                    white-space: nowrap;
                }

/*//////////////////// Banner Swiper ////////////////////*/
.section__wrap--bnr {
    padding-block: 90px 120px;
}
.bnr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}
    .bnr__swiper {
        width: 100%;
        padding-top: 10px;
    }
        .bnr__slide {
            width: 427px;
            height: 250px;
            box-sizing: border-box;
            transition: transform 0.3s ease;
        }
        .bnr__slide:hover {
            transform: translateY(-10px);
        }
            .bnr__link {
                position: relative;
                display: block;
                width: 100%;
                height: 100%;
                overflow: hidden;
                border-radius: 6px;
                text-decoration: none;
            }
            .bnr__link:hover {
                opacity: 1;
            }
                .bnr__img {
                    display: block;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
                .bnr__overlay {
                    position: absolute;
                    inset: 0;
                    border-radius: 6px;
                    background-color: rgba(0, 0, 0, 0.2);
                    pointer-events: none;
                }
                .bnr__badge {
                    position: absolute;
                    top: 10px;
                    right: 10px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    padding: 10px 14px;
                    border-radius: 6px;
                    box-sizing: border-box;
                    background-color: #242626;
                    font-family: "Zen Kaku Gothic New", sans-serif;
                    font-weight: 700;
                    font-size: 20px;
                    line-height: 1;
                    color: #fff;
                    white-space: nowrap;
                }
                .bnr__ttl {
                    position: absolute;
                    left: 24px;
                    bottom: 22px;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 12px;
                    color: #fff;
                }
                    .bnr__en {
                        font-family: "Zen Kaku Gothic New", sans-serif;
                        font-weight: 500;
                        font-size: 14px;
                        line-height: 1;
                    }
                    .bnr__ja {
                        font-family: "Zen Kaku Gothic New", sans-serif;
                        font-weight: 700;
                        font-size: 34px;
                        line-height: 1;
                        letter-spacing: 3.4px;
                        white-space: nowrap;
                    }
    .bnr__pager {
        display: flex;
        align-items: center;
        gap: 20px;
    }
        .bnr__arrow.swiper-button-prev,
        .bnr__arrow.swiper-button-next {
            position: static;
            display: block;
            width: 50px;
            height: 50px;
            margin: 0;
            padding: 0;
            border: none;
            background: transparent;
            cursor: pointer;
        }
        .bnr__arrow.swiper-button-prev::after,
        .bnr__arrow.swiper-button-next::after {
            content: none;
        }
        .bnr__arrow img {
            display: block;
            width: 50px;
            height: 50px;
        }
        .bnr__arrow--next img {
            transform: scaleX(-1);
        }
        .bnr__pagination.swiper-pagination {
            position: static;
            display: flex;
            align-items: center;
            width: auto;
            gap: 10px;
        }
            .bnr__pagination .swiper-pagination-bullet {
                display: block;
                width: 15px;
                height: 2px;
                margin: 0 !important;
                border-radius: 0;
                background-color: #B5B5B5;
                opacity: 1;
            }
            .bnr__pagination .swiper-pagination-bullet-active {
                background-color: #F58220;
            }
    .bnr__swiper.noslide {
        overflow: visible;
    }

/*//////////////////// Station ////////////////////*/
.section__wrap--station {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding-block: 0 120px;
}
    .station__line {
        width: 1720px;
        height: 1px;
        background-color: #B5B5B5;
    }
    .section__inner--station {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 1140px;
    }
.station-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 9px;
}
    .station-head__sub {
        display: flex;
        align-items: center;
        gap: 16px;
    }
        .station-head__bar {
            display: block;
            width: 25px;
            height: 15px;
            background-color: #F58220;
            flex-shrink: 0;
            margin-top: 4px;
        }
        .section__ttl--station {
            margin: 0;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 700;
            font-size: 22px;
            color: #242626;
            white-space: nowrap;
        }
    .section__en-ttl--station {
        margin: 0;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 900;
        font-size: 80px;
        line-height: 1;
        color: #242626;
        white-space: nowrap;
    }
.station__list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}
    .station__item {
        margin: 0;
    }
        .station__link {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            width: 240px;
            padding: 10px 10px 20px;
            box-sizing: border-box;
            border-radius: 6px;
            background-color: #242626;
            text-decoration: none;
        }
        .station__link:hover {
            opacity: 1;
            background-color: #F58220;
        }
            .station__img {
                display: block;
                width: 220px;
                height: 165px;
                border-radius: 6px;
                object-fit: cover;
            }
            .station__name {
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 700;
                font-size: 20px;
                line-height: 1;
                color: #fff;
                white-space: nowrap;
            }

/*//////////////////// Pickup ////////////////////*/
.section__wrap--pickup {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding-block: 114px 121px;
    background-color: #414141;
}
    .pickup__watermark {
        position: absolute;
        top: 335px;
        left: -30px;
        right: 0;
        margin: 0;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 900;
        font-size: 490px;
        line-height: 1;
        color: #fff;
        opacity: 0.1;
        white-space: nowrap;
        pointer-events: none;
        z-index: 0;
    }
    .section__inner--pickup {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 37px;
        width: 1140px;
    }
.pickup-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
    .pickup-head__sub {
        display: flex;
        align-items: center;
        gap: 16px;
    }
        .pickup-head__bar {
            display: block;
            width: 25px;
            height: 15px;
            background-color: #F58220;
            flex-shrink: 0;
        }
        .section__ttl--pickup {
            margin: 0;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 700;
            font-size: 22px;
            line-height: 1;
            color: #fff;
            white-space: nowrap;
        }
    .section__en-ttl--pickup {
        margin: 0;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 900;
        font-size: 80px;
        line-height: 1;
        color: #fff;
        white-space: nowrap;
    }
.pickup__list {
    position: relative;
    width: 1140px;
    height: 702px;
    overflow: visible;
}
    .pickup__item {
        position: absolute;
        display: block;
        overflow: hidden;
        border-radius: 8px;
        text-decoration: none;
        transform: scale(1);
        transition: transform 0.35s ease;
        z-index: 1;
        border: 2px solid rgba(255,255,255,0);
    }
    .pickup__item:hover {
        opacity: 1;
        transform: scale(1.05);
        z-index: 2;
        border: 2px solid #F58220;
    }
        .pickup__img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .pickup__ttl {
            position: absolute;
            left: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
            padding: 15px 17px;
            box-sizing: border-box;
            border-radius: 0 6px 0 6px;
            background-color: #fff;
        }
            .pickup__en {
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 500;
                font-size: 14px;
                line-height: 1;
                color: #B5B5B5;
                white-space: nowrap;
            }
            .pickup__ja {
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 700;
                font-size: 24px;
                line-height: 1;
                color: #242626;
                white-space: nowrap;
            }
    .pickup__item--alone {
        top: 0;
        left: 67px;
        width: 301px;
        height: 281px;
    }
    .pickup__item--two {
        top: 0;
        left: 384px;
        width: 332px;
        height: 189px;
    }
    .pickup__item--house {
        top: 0;
        left: 732px;
        width: 331px;
        height: 189px;
    }
    .pickup__item--zero {
        top: 297px;
        left: 0;
        width: 368px;
        height: 204px;
    }
    .pickup__item--new {
        top: 205px;
        left: 384px;
        width: 376px;
        height: 296px;
    }
    .pickup__item--pet {
        top: 205px;
        left: 776px;
        width: 368px;
        height: 204px;
    }
    .pickup__item--multi {
        top: 517px;
        left: 81px;
        width: 332px;
        height: 189px;
    }
    .pickup__item--cat {
        top: 517px;
        left: 429px;
        width: 331px;
        height: 189px;
    }
    .pickup__item--dog {
        top: 425px;
        left: 776px;
        width: 301px;
        height: 281px;
    }

/*//////////////////// New ////////////////////*/
.section__wrap--new {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding-block: 114px 60px;
    background-color: #fff;
}
    .new__deco {
        position: absolute;
        top: -353px;
        left: -592px;
        width: 829px;
        height: 829px;
        pointer-events: none;
        z-index: 0;
    }
    .section__inner--new {
        position: relative;
        z-index: 1;
        width: 1140px;
    }
.new-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
}
    .new-head__ttl {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
        .new-head__sub {
            display: flex;
            align-items: center;
            gap: 16px;
        }
            .new-head__bar {
                display: block;
                width: 25px;
                height: 15px;
                background-color: #F58220;
                flex-shrink: 0;
            }
            .section__ttl--new {
                margin: 0;
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 700;
                font-size: 22px;
                line-height: 1;
                color: #242626;
                white-space: nowrap;
            }
        .section__en-ttl--new {
            margin: 0;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 900;
            font-size: 80px;
            line-height: 1;
            color: #242626;
            white-space: nowrap;
        }
    .new-head__pager {
        display: flex;
        align-items: center;
        gap: 20px;
    }
        .new-head__arrow.swiper-button-prev,
        .new-head__arrow.swiper-button-next {
            position: static;
            display: block;
            width: 50px;
            height: 50px;
            margin: 0;
            padding: 0;
            border: none;
            background: transparent;
            cursor: pointer;
        }
        .new-head__arrow.swiper-button-prev::after,
        .new-head__arrow.swiper-button-next::after {
            content: none;
        }
        .new-head__arrow img {
            display: block;
            width: 50px;
            height: 50px;
        }
        .new-head__arrow--next img {
            transform: scaleX(-1);
        }
        .new-head__pagination.swiper-pagination {
            position: static;
            display: flex;
            align-items: center;
            width: auto;
            gap: 10px;
        }
            .new-head__pagination .swiper-pagination-bullet {
                display: block;
                width: 15px;
                height: 2px;
                margin: 0 !important;
                border-radius: 0;
                background-color: #B5B5B5;
                opacity: 1;
            }
            .new-head__pagination .swiper-pagination-bullet-active {
                background-color: #F58220;
            }
.new__slider {
    position: relative;
    z-index: 1;
    width: 1140px;
    min-height: 387px;
    margin: 0 auto 29px;
    /* padding-top: 10px; */
}
    .new__swiper {
        width: 1800px;
        box-sizing: border-box;
        overflow: hidden;
        position: absolute;
        left: 0;
        padding-top: 10px;
    }
        .new__slide {
            width: 344px;
            height: auto;
            box-sizing: border-box;
            transition: transform 0.3s ease;
        }
        .new__slide:hover {
            transform: translateY(-10px);
        }
.bkn-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 344px;
    padding: 10px 10px 24px;
    box-sizing: border-box;
    border: 1px solid #B5B5B5;
    border-radius: 6px;
    background-color: #fff;
}
    .bkn-card__link {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
        text-decoration: none;
        color: inherit;
    }
    .bkn-card__link:hover {
        opacity: 1;
    }
        .bkn-card__img {
            position: relative;
            width: 324px;
            height: 243px;
            overflow: hidden;
            border-radius: 6px;
        }
            .bkn-card__img img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: contain;
                background-color: #f8e5d4;
            }
            .bkn-card__label {
                position: absolute;
                top: 10px;
                left: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 52px;
                height: 27px;
                padding: 4px 9px 6px;
                box-sizing: border-box;
                border-radius: 6px;
                background-color: #B5B5B5;
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 500;
                font-size: 16px;
                line-height: 1;
                color: #fff;
            }
        .bkn-card__body {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 5px;
        }
            .bkn-card__title {
                display: -webkit-box;
                width: 100%;
                margin: 0;
                overflow: hidden;
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 700;
                font-size: 18px;
                line-height: 1.3;
                color: #242626;
                text-overflow: ellipsis;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 1;
            }
            .bkn-card__price-row {
                display: flex;
                align-items: flex-end;
                gap: 10px;
                margin: 0;
                width: 100%;
            }
                .bkn-card__price {
                    display: flex;
                    align-items: flex-end;
                    gap: 2px;
                    font-family: "Zen Kaku Gothic New", sans-serif;
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 1;
                    color: #242626;
                    white-space: nowrap;
                }
                    .bkn-card__price .price {
                        font-weight: 500;
                        font-size: 26px;
                        line-height: 1.1;
                        color: #F52020;
                    }
                .bkn-card__meta {
                    overflow: hidden;
                    font-family: "Zen Kaku Gothic New", sans-serif;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 1;
                    color: #242626;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                }
            .bkn-card__address {
                display: -webkit-box;
                width: 100%;
                margin: 0;
                overflow: hidden;
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 400;
                font-size: 16px;
                line-height: 1.3;
                color: #242626;
                text-overflow: ellipsis;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 1;
            }
    .l-main .bkn-card__favorite {
        position: absolute;
        top: 20px;
        right: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 23px;
        background-color: rgba(36, 38, 38, 0.1);
        background-image: url(/images/top/new-fav.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 26px 26px;
        cursor: pointer;
        z-index: 2;
    }
    .bkn-card__favorite.is-checked {
        background-image: url(/images/top/new-fav_on.svg);
    }
.new__more {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    width: 294px;
    text-decoration: none;
}
.new__more:hover {
    opacity: 1;
}
    .new__more-text {
        display: flex;
        align-items: center;
        width: 230px;
        height: 65px;
        padding: 24px 40px;
        box-sizing: border-box;
        border-radius: 6px 0 0 6px;
        background-color: #242626;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 700;
        font-size: 18px;
        line-height: 1;
        color: #fff;
        white-space: nowrap;
    }
    .new__more-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 63px;
        height: 65px;
        flex-shrink: 0;
        box-sizing: border-box;
        border-left: 1px solid #fff;
        border-radius: 0 6px 6px 0;
        background-color: #242626;
    }
        .new__more-arrow svg {
            display: block;
            width: 9px;
            height: 11px;
            fill: #fff;
        }
.new__more:hover .new__more-text,
.new__more:hover .new__more-arrow {
    background-color: #F58220;
}

/*//////////////////// Management ////////////////////*/
.section__wrap--management {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding-block: 60px 120px;
    background-color: #fff;
}
    .management__line {
        display: block; 
        width: 1720px; 
        max-width: calc(100% - 40px); 
        height: 1px;
        margin: 0 auto 55px;
        background-color: #B5B5B5;
    }
    .management__watermark {
        position: absolute;
        top: 454px;
        right: -291px;
        margin: 0;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 500;
        font-size: 250px;
        line-height: 1;
        letter-spacing: 0.05em;
        color: #EFEFEF;
        white-space: nowrap;
        pointer-events: none;
    }
    .section__inner--management {
        position: relative;
        z-index: 1;
        width: 1140px;
    }
.management-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
}
    .management-head__ttl {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
        .management-head__sub {
            display: flex;
            align-items: center;
            gap: 16px;
        }
            .management-head__bar {
                display: block;
                width: 25px;
                height: 15px;
                background-color: #F58220;
                flex-shrink: 0;
            }
            .section__ttl--management {
                margin: 0;
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 700;
                font-size: 22px;
                line-height: 1;
                color: #242626;
                white-space: nowrap;
            }
        .section__en-ttl--management {
            margin: 0;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 900;
            font-size: 80px;
            line-height: 1;
            color: #242626;
            white-space: nowrap;
        }
    .management-head__pager {
        display: flex;
        align-items: center;
        gap: 20px;
    }
        .management-head__arrow.swiper-button-prev,
        .management-head__arrow.swiper-button-next {
            position: static;
            display: block;
            width: 50px;
            height: 50px;
            margin: 0;
            padding: 0;
            border: none;
            background: transparent;
            cursor: pointer;
        }
        .management-head__arrow.swiper-button-prev::after,
        .management-head__arrow.swiper-button-next::after {
            content: none;
        }
        .management-head__arrow img {
            display: block;
            width: 50px;
            height: 50px;
        }
        .management-head__arrow--next img {
            transform: scaleX(-1);
        }
        .management-head__pagination.swiper-pagination {
            position: static;
            display: flex;
            align-items: center;
            width: auto;
            gap: 10px;
        }
            .management-head__pagination .swiper-pagination-bullet {
                display: block;
                width: 15px;
                height: 2px;
                margin: 0 !important;
                border-radius: 0;
                background-color: #B5B5B5;
                opacity: 1;
            }
            .management-head__pagination .swiper-pagination-bullet-active {
                background-color: #F58220;
            }
.management__slider {
    position: relative;
    z-index: 1;
    width: 1140px;
    min-height: 387px;
    margin: 0 auto 30px;
}
    .management__swiper {
        width: 1800px;
        box-sizing: border-box;
        overflow: hidden;
        position: absolute;
        right: 0;
        padding-top: 10px;
    }
    .management__swiper.noslide {
        right: inherit;
    }
    .management__swiper.noslide .swiper-wrapper {
        justify-content: start;
    }
        .management__slide {
            width: 344px;
            height: auto;
            box-sizing: border-box;
            transition: transform 0.3s ease;
        }
        .management__slide:hover {
            transform: translateY(-10px);
        }
        
.management__more {
    position: relative;
    z-index: 1;
}

/*//////////////////// Student ////////////////////*/
.section__wrap--student {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 98px;
    background-color: #fff;
    padding-block: 0px 120px;
}
    .student__deco {
        position: absolute;
        top: 330px;
        right: -613px;
        z-index: 0;
        width: 443px;
        height: 442px;
        border: 1px solid #F2CDAD;
        border-radius: 50%;
        box-sizing: border-box;
        pointer-events: none;
    }
    .student__img-wrap {
        position: absolute;
        z-index: 1;
        flex-shrink: 0;
        width: 919px;
        height: 512px;
        left: -390px;
    }
        .student__img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: bottom;
        }
    .student__body {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        gap: 54px;
        width: 1140px;
        padding-top: 0;
        box-sizing: border-box;
        margin: 0 auto;
    }
        .student__line {
            display: block;
            width: 100%;
            height: 1px;
            background-color: #B5B5B5;
            flex-shrink: 0;
            position: absolute;
            right: -630px;
        }
        .student__content {
            display: flex;
            flex-direction: column;
            align-items: end;
            gap: 40px;
        }
.student-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 512px;
    margin-top: 55px;
}
    .student-head__sub {
        display: flex;
        align-items: center;
        gap: 16px;
    }
        .student-head__bar {
            display: block;
            width: 25px;
            height: 15px;
            background-color: #F58220;
            flex-shrink: 0;
        }
        .section__ttl--student {
            margin: 0;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 700;
            font-size: 22px;
            line-height: 1;
            color: #242626;
            white-space: nowrap;
        }
    .section__en-ttl--student {
        margin: 0;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 900;
        font-size: 80px;
        line-height: 1;
        color: #242626;
        white-space: nowrap;
    }
.student__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 511px;
}
    .student__item {
        margin: 0;
    }
.student-link {
    display: flex;
    align-items: stretch;
    width: 511px;
    height: 90px;
    text-decoration: none;
}
.student-link:hover {
    opacity: 1;
}
    .student-link__main {
        display: flex;
        align-items: center;
        gap: 11px;
        width: 431px;
        height: 90px;
        padding: 15px 15px 15px 22px;
        box-sizing: border-box;
        border: 1px solid #B5B5B5;
        border-right: none;
        border-radius: 6px 0 0 6px;
        background-color: #fff;
    }
        .student-link__icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 61px;
            height: 61px;
            flex-shrink: 0;
            border-radius: 50%;
            background-color: #E5E5E5;
        }
            .student-link__icon svg {
                display: block;
                width: 33px;
                height: 31px;
                fill: #242626;
            }
        .student-link__text {
            width: 312px;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 700;
            font-size: 24px;
            line-height: 1.2;
            color: #242626;
        }
    .student-link__arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80px;
        height: 90px;
        flex-shrink: 0;
        background-color: #242626;
        border-radius: 0 6px 6px 0;
    }
        .student-link__arrow svg {
            display: block;
            width: 12px;
            height: 16px;
            fill: #fff;
        }
.student-link:hover .student-link__arrow {
    background-color: #F58220;
}

/*//////////////////// Customer ////////////////////*/
.section__wrap--customer {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding-block: 0 120px;
    background-color: #fff;
}
    .section__inner--customer {
        position: relative;
        z-index: 1;
        width: 1140px;
        margin-top: 53px;
    }
.customer-head {
    margin-bottom: 30px;
}
    .customer-head__ttl {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
        .customer-head__sub {
            display: flex;
            align-items: center;
            gap: 16px;
        }
            .customer-head__bar {
                display: block;
                width: 25px;
                height: 15px;
                background-color: #F58220;
                flex-shrink: 0;
            }
            .section__ttl--customer {
                margin: 0;
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 700;
                font-size: 22px;
                line-height: 1;
                color: #242626;
                white-space: nowrap;
            }
        .section__en-ttl--customer {
            margin: 0;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 900;
            font-size: 80px;
            line-height: 1;
            color: #242626;
            white-space: nowrap;
        }
.customer-meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}
    .customer-meta__subject {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
        .customer-meta__count {
            display: flex;
            align-items: flex-end;
            gap: 5px;
            margin: 0;
        }
            .customer-meta__rating {
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 500;
                font-size: 30px;
                line-height: 1;
                color: #F58220;
                white-space: nowrap;
            }
            .customer-meta__unit {
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 500;
                font-size: 16px;
                line-height: 1;
                color: #353838;
                white-space: nowrap;
            }
        .customer-meta__lead {
            margin: 0;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 500;
            font-size: 18px;
            line-height: 1;
            color: #242626;
            white-space: nowrap;
        }
    .customer-meta__pager {
        display: flex;
        align-items: center;
        gap: 20px;
    }
        .customer-meta__arrow.swiper-button-prev,
        .customer-meta__arrow.swiper-button-next {
            position: static;
            display: block;
            width: 50px;
            height: 50px;
            margin: 0;
            padding: 0;
            border: none;
            background: transparent;
            cursor: pointer;
        }
        .customer-meta__arrow.swiper-button-prev::after,
        .customer-meta__arrow.swiper-button-next::after {
            content: none;
        }
        .customer-meta__arrow img {
            display: block;
            width: 50px;
            height: 50px;
        }
        .customer-meta__arrow--next img {
            transform: scaleX(-1);
        }
        .customer-meta__pagination.swiper-pagination {
            position: static;
            display: flex;
            align-items: center;
            width: auto;
            gap: 10px;
        }
            .customer-meta__pagination .swiper-pagination-bullet {
                display: block;
                width: 15px;
                height: 2px;
                margin: 0 !important;
                border-radius: 0;
                background-color: #B5B5B5;
                opacity: 1;
            }
            .customer-meta__pagination .swiper-pagination-bullet-active {
                background-color: #F58220;
            }
.customer__slider {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 218px;
    margin: 0 auto 27px;
}
    .customer__swiper {
        /* width: 100%; */
        /* box-sizing: border-box; */
        /* overflow: hidden; */
        /* position: absolute; */
        /* left: 0; */
        padding: 10px 0 0;
    }
        .customer__slide {
            width: 364px;
            height: auto;
            box-sizing: border-box;
            transition: transform 0.3s ease;
        }
        .customer__slide:hover {
            transform: translateY(-10px);
        }
.customer-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 364px;
    padding: 15px 20px 10px;
    box-sizing: border-box;
    border: 1px solid #B5B5B5;
    border-radius: 6px;
    background-color: #fff;
    text-decoration: none;
    color: inherit;
}
.customer-card:hover {
    opacity: 1;
}
    .customer-card__head {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
        .customer-card__icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 54px;
            height: 54px;
            flex-shrink: 0;
            border-radius: 50%;
            background-color: #E5E5E5;
        }
            .customer-card__icon svg {
                display: block;
                width: 22px;
                height: 31px;
                fill: #242626;
            }
        .customer-card__name {
            width: 198px;
            margin: 0;
            overflow: hidden;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            color: #242626;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
    .customer-card__body {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
        width: 100%;
    }
        .customer-card__text {
            display: -webkit-box;
            width: 324px;
            margin: 0;
            overflow: hidden;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 1.4;
            color: #242626;
            text-overflow: ellipsis;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 4;
            min-height: 86px;
        }
        .customer-card__foot {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 4px;
        }
            .customer-card__stars {
                display: flex;
                align-items: center;
                gap: 2px;
                width: 88px;
                height: 16px;
            }
                .customer-card__star {
                    display: block;
                    width: 16px;
                    height: 16px;
                    flex-shrink: 0;
                    fill: #FFB61A;
                }
            .customer-card__date {
                margin: 0;
                font-family: "Noto Sans JP", "Zen Kaku Gothic New", sans-serif;
                font-weight: 400;
                font-size: 14px;
                line-height: 1;
                color: #242626;
                white-space: nowrap;
            }
.customer__more {
    position: relative;
    z-index: 1;
}

/*//////////////////// Reason ////////////////////*/
.section__wrap--reason {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding-block: 114px 120px;
}
    .reason__bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
    }
        .reason__bg-img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        .reason__bg-overlay {
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(1.5px);
            -webkit-backdrop-filter: blur(1.5px);
        }
        .reason__watermark {
            position: absolute;
            top: 100px;
            left: calc(50% - 960px + 1630px);
            z-index: 1;
            margin: 0;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 500;
            font-size: 250px;
            line-height: 1;
            letter-spacing: 0.05em;
            color: #EFEFEF;
            opacity: 0.2;
            white-space: nowrap;
            transform: rotate(90deg);
            transform-origin: left top;
        }
    .section__inner--reason {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        width: 1140px;
    }
.reason-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
    .reason-head__sub {
        display: flex;
        align-items: center;
        gap: 16px;
    }
        .reason-head__bar {
            display: block;
            width: 25px;
            height: 15px;
            background-color: #F58220;
            flex-shrink: 0;
        }
        .section__ttl--reason {
            margin: 0;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 700;
            font-size: 22px;
            line-height: 1;
            color: #fff;
            white-space: nowrap;
        }
    .section__en-ttl--reason {
        margin: 0;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 900;
        font-size: 80px;
        line-height: 1;
        color: #fff;
        white-space: nowrap;
    }
.reason__list {
    display: grid;
    grid-template-columns: repeat(3, 360px);
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}
    .reason__item {
        margin: 0;
    }
.reason-card {
    display: flex;
    flex-direction: column;
    width: 360px;
    /* transition: transform 0.3s ease; */
}
.reason-card:hover {
    /* transform: translateY(-10px); */
}
    .reason-card__img {
        position: relative;
        width: 360px;
        height: 200px;
        overflow: hidden;
    }
        .reason-card__img img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: bottom;
        }
        .reason-card__num {
            position: absolute;
            top: 10px;
            left: 20px;
            display: flex;
            align-items: center;
            gap: 3px;
            margin: 0;
            color: #fff;
            white-space: nowrap;
        }
            .reason-card__num-main {
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 700;
                font-size: 40px;
                line-height: 1;
                letter-spacing: 0.07em;
            }
            .reason-card__num-en {
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 500;
                font-size: 14px;
                line-height: 1.5;
                padding-top: 5px;
            }
            
    .reason-card__body {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
        padding: 15px 25px 20px;
        box-sizing: border-box;
        background-color: #fff;
        min-height: 160px;
    }
        .reason-card__ttl {
            width: 100%;
            margin: 0;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 700;
            font-size: 20px;
            line-height: 1;
            color: #242626;
            text-align: center;
        }
        .reason-card__text {
            width: 100%;
            margin: 0;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 1.5;
            color: #4C4C4C;
        }

/*//////////////////// Staff ////////////////////*/
.section__wrap--staff {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding-block: 120px;
    background-color: #fff;
}
    .section__inner--staff {
        position: relative;
        z-index: 1;
        width: 1140px;
    }
.staff-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 32px;
}
    .staff-head__ttl {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
        .staff-head__sub {
            display: flex;
            align-items: center;
            gap: 16px;
        }
            .staff-head__bar {
                display: block;
                width: 25px;
                height: 15px;
                background-color: #F58220;
                flex-shrink: 0;
            }
            .section__ttl--staff {
                margin: 0;
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 700;
                font-size: 22px;
                line-height: 1;
                color: #242626;
                white-space: nowrap;
            }
        .section__en-ttl--staff {
            margin: 0;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 900;
            font-size: 80px;
            line-height: 1;
            color: #242626;
            white-space: nowrap;
        }
    .staff-head__pager {
        display: flex;
        align-items: center;
        gap: 20px;
    }
        .staff-head__arrow.swiper-button-prev,
        .staff-head__arrow.swiper-button-next {
            position: static;
            display: block;
            width: 50px;
            height: 50px;
            margin: 0;
            padding: 0;
            border: none;
            background: transparent;
            cursor: pointer;
        }
        .staff-head__arrow.swiper-button-prev::after,
        .staff-head__arrow.swiper-button-next::after {
            content: none;
        }
        .staff-head__arrow img {
            display: block;
            width: 50px;
            height: 50px;
        }
        .staff-head__arrow--next img {
            transform: scaleX(-1);
        }
        .staff-head__pagination.swiper-pagination {
            position: static;
            display: flex;
            align-items: center;
            width: auto;
            gap: 10px;
        }
            .staff-head__pagination .swiper-pagination-bullet {
                display: block;
                width: 15px;
                height: 2px;
                margin: 0 !important;
                padding: 0;
                border: none;
                border-radius: 0;
                background-color: #B5B5B5;
                opacity: 1;
                cursor: pointer;
            }
            .staff-head__pagination .swiper-pagination-bullet-active {
                background-color: #F58220;
            }
.staff__slider {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 458px;
    margin-bottom: 30px;
    overflow: visible;
}
    .staff__swiper {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: visible;
    }
        .staff__swiper .swiper-wrapper {
            align-items: flex-start;
            height: 520px;
            overflow: visible;
        }
        .staff__slide {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            width: 420px;
            height: auto;
            box-sizing: border-box;
            overflow: visible;
            transition: none !important;
            transition-property: none !important;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }
.staff-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 420px;
    min-height: 447px;
    padding: 10px 10px 20px;
    box-sizing: border-box;
    border: 1px solid #B5B5B5;
    border-radius: 6px;
    background-color: #fff;
    text-decoration: none;
    color: inherit;
    outline: none;
    transform: translate3d(0, 0, 0);
    transform-origin: center bottom;
    transition: none !important;
    transition-property: none !important;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.staff-card:hover {
    opacity: 1;
    border-color: #F58220;
}
.staff-card:hover .staff-card__kana,
.staff-card:hover .staff-card__name,
.staff-card:hover .staff-card__text {
    color: #F58220;
}
    .staff-card__img {
        position: relative;
        width: 400px;
        height: 300px;
        overflow: hidden;
        border-radius: 6px;
        background-color: #E5E5E5;
    }
        .staff-card__img img {
            display: block;
            width: 100%;
            height: 100%;
            object-position: top center;
            object-fit: contain;
            background-color: #f8e5d4;
        }
        .staff-card__post {
            position: absolute;
            top: 10px;
            left: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: calc(100% - 20px);
            padding: 10px 14px;
            box-sizing: border-box;
            border-radius: 6px;
            background-color: #242626;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 700;
            font-size: 16px;
            line-height: 1;
            color: #fff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    .staff-card__body {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 13px;
        width: 370px;
    }
        .staff-card__name-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 11px;
        }
            .staff-card__kana {
                margin: 0;
                overflow: hidden;
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 400;
                font-size: 16px;
                line-height: 1.8;
                color: #242626;
                text-align: center;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
            .staff-card__name {
                margin: 0;
                overflow: hidden;
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 700;
                font-size: 20px;
                line-height: 1;
                color: #242626;
                text-align: center;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
        .staff-card__text {
            display: -webkit-box;
            width: 100%;
            margin: 0;
            overflow: hidden;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 1.4;
            color: #4C4C4C;
            text-overflow: ellipsis;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
        }
.staff__more {
    position: relative;
    z-index: 1;
}

/*//////////////////// News / Blog ////////////////////*/
.section__wrap--news-blog {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding-block: 0 120px;
    background-color: #fff;
}
    .news-blog__line {
        display: block;
        width: 1720px;
        max-width: calc(100% - 40px);
        height: 1px;
        margin: 0 auto 54px;
        background-color: #B5B5B5;
    }
    .news-blog__watermark {
        position: absolute;
        left: 13px;
        bottom: -18px;
        z-index: 0;
        margin: 0;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 500;
        font-size: 250px;
        line-height: 1;
        letter-spacing: 0.05em;
        color: #EFEFEF;
        white-space: nowrap;
        pointer-events: none;
    }
    .news-blog__deco {
        position: absolute;
        top: 224px;
        left: calc(50% - 960px + 1653px);
        z-index: 0;
        width: 533px;
        height: 532px;
        border: 1px solid #F2CDAD;
        border-radius: 50%;
        box-sizing: border-box;
        pointer-events: none;
    }
    .section__inner--news-blog {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: flex-start;
        gap: 100px;
        width: 1140px;
    }
.news-col,
.blog-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 38px;
    width: 520px;
}
    .news-col__head,
    .blog-col__head {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
        .news-col__sub,
        .blog-col__sub {
            display: flex;
            align-items: center;
            gap: 16px;
        }
            .news-col__bar,
            .blog-col__bar {
                display: block;
                width: 25px;
                height: 15px;
                background-color: #F58220;
                flex-shrink: 0;
            }
            .section__ttl--news,
            .section__ttl--blog {
                margin: 0;
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 700;
                font-size: 22px;
                line-height: 1;
                color: #242626;
                white-space: nowrap;
            }
        .section__en-ttl--news,
        .section__en-ttl--blog {
            margin: 0;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 900;
            font-size: 80px;
            line-height: 1;
            color: #242626;
            white-space: nowrap;
        }
    .news-col__scroll,
    .blog-col__scroll {
        width: 520px;
        height: 500px;
    }
    .news-col__contents,
    .blog-col__contents {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 33px;
        width: 100%;
    }
        .news-col__list,
        .blog-col__list {
            display: flex;
            flex-direction: column;
            gap: 25px;
            width: 497px;
            margin: 0;
            padding: 0;
            list-style: none;
        }
            .news-col__item,
            .blog-col__item {
                margin: 0;
                padding: 0 0 25px;
                border-bottom: 1px solid #DFDFDF;
            }
            .news-col__item:last-child,
            .blog-col__item:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }
.news-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 480px;
}
    .news-item__date,
    .blog-item__date {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 7px 12px;
        background-color: #E2E2E2;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 1;
        color: #242626;
        white-space: nowrap;
        transition: color 0.3s ease;
    }
    .news-item__ttl {
        width: 100%;
        margin: 0;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 700;
        font-size: 18px;
        line-height: 1.5;
        color: #242626;
    }
    .news-item__text {
        width: 100%;
        margin: 0;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.4;
        color: #4C4C4C;
    }
.blog-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 497px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}
.blog-item:hover {
    opacity: 1;
}
.blog-item:hover .blog-item__ttl,
.blog-item:hover .blog-item__text {
    color: #F58220;
}
.blog-item:hover .blog-item__img img {
    transform: scale(1.1);
}
    .blog-item__img {
        width: 192px;
        height: 144px;
        flex-shrink: 0;
        overflow: hidden;
        border-radius: 6px;
        background-color: #E5E5E5;
    }
        .blog-item__img img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
            background-color: #f8e5d4;
            transition: transform 0.3s ease;
        }
    .blog-item__body {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        width: 285px;
    }
        .blog-item__ttl {
            display: -webkit-box;
            width: 100%;
            margin: 0;
            overflow: hidden;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 700;
            font-size: 18px;
            line-height: 1.2;
            color: #242626;
            text-overflow: ellipsis;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
            transition: color 0.3s ease;
        }
        .blog-item__text {
            display: -webkit-box;
            width: 100%;
            margin: 0;
            overflow: hidden;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 1.4;
            color: #4C4C4C;
            text-overflow: ellipsis;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            transition: color 0.3s ease;
        }
.news-blog__more {
    display: flex;
    align-items: stretch;
    width: 241px;
    text-decoration: none;
}
.news-blog__more:hover {
    opacity: 1;
}
    .news-blog__more-text {
        display: flex;
        align-items: center;
        width: 190px;
        height: 55px;
        padding: 0 40px;
        box-sizing: border-box;
        border-radius: 6px 0 0 6px;
        background-color: #242626;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 700;
        font-size: 16px;
        line-height: 1;
        color: #fff;
        white-space: nowrap;
    }
    .news-blog__more-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 55px;
        flex-shrink: 0;
        box-sizing: border-box;
        border-left: 1px solid #fff;
        border-radius: 0 6px 6px 0;
        background-color: #242626;
    }
        .news-blog__more-arrow svg {
            display: block;
            width: 9px;
            height: 11px;
            fill: #fff;
        }
.news-blog__more:hover .news-blog__more-text,
.news-blog__more:hover .news-blog__more-arrow {
    background-color: #F58220;
}

/* SimpleBar（NEWS / BLOG） */
.section__wrap--news-blog .simplebar-track.simplebar-horizontal {
    display: none;
}
.section__wrap--news-blog .simplebar-track.simplebar-vertical {
    top: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    width: 3px !important;
    background-color: #B5B5B5;
}
.section__wrap--news-blog .simplebar-scrollbar {
    right: 0;
    width: 3px;
}
.section__wrap--news-blog .simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background-color: #F58220;
    border-radius: 0;
    opacity: 1;
}
.section__wrap--news-blog .simplebar-scrollbar.simplebar-visible:before {
    opacity: 1;
}

/* /////////////////// LINK & CAMPAIGN /////////////////// */
.section__wrap--campaign {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: 0 120px;
    background-color: #fff;
}
    .campaign__line {
        display: block;
        width: 1720px;
        max-width: calc(100% - 40px);
        height: 1px;
        margin: 0 auto 55px;
        background-color: #B5B5B5;
    }
    .section__inner--campaign {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        width: 1140px;
    }
.campaign-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
    .campaign-head__sub {
        display: flex;
        align-items: center;
        gap: 16px;
    }
        .campaign-head__bar {
            display: block;
            width: 25px;
            height: 15px;
            background-color: #F58220;
            flex-shrink: 0;
        }
        .section__ttl--campaign {
            margin: 0;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 700;
            font-size: 22px;
            line-height: 1;
            color: #242626;
            white-space: nowrap;
        }
    .section__en-ttl--campaign {
        margin: 0;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 900;
        line-height: 1;
        color: #242626;
        white-space: nowrap;
    }
        .section__en-ttl--campaign-main {
            font-size: 80px;
        }
        .section__en-ttl--campaign-amp {
            font-size: 70px;
        }
.campaign__list {
    display: flex;
    gap: 30px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
    .campaign__item {
        margin: 0;
    }
.campaign-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    width: 360px;
    height: 300px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
}
.campaign-card:hover {
    opacity: 1;
    transform: translateY(-10px);
}
    .campaign-card__bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        border-radius: 6px;
        overflow: hidden;
        pointer-events: none;
    }
        .campaign-card__img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .campaign-card__overlay {
            position: absolute;
            inset: 0;
            border-radius: 6px;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
        }
    .campaign-card__ttl {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 320px;
    }
        .campaign-card__text {
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 700;
            font-size: 27px;
            line-height: 1.2;
            color: #fff;
            white-space: nowrap;
        }
        .campaign-card__arrow {
            display: block;
            width: 52px;
            height: 52px;
            flex-shrink: 0;
        }
            .campaign-card__arrow img {
                display: block;
                width: 100%;
                height: 100%;
            }

/* /////////////////// FAQ /////////////////// */
.section__wrap--faq {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding-block: 113px 120px;
    background-color: #414141;
}
    .faq__watermark {
        position: absolute;
        top: calc(50% - 284px);
        left: calc(50% - 980px);
        z-index: 0;
        margin: 0;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 900;
        font-size: 490px;
        line-height: 1;
        color: #fff;
        opacity: 0.1;
        white-space: nowrap;
        pointer-events: none;
    }
    .section__inner--faq {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        width: 1140px;
    }
.faq-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
    .faq-head__sub {
        display: flex;
        align-items: center;
        gap: 16px;
    }
        .faq-head__bar {
            display: block;
            width: 25px;
            height: 15px;
            background-color: #F58220;
            flex-shrink: 0;
        }
        .section__ttl--faq {
            margin: 0;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 700;
            font-size: 22px;
            line-height: 1;
            color: #fff;
            white-space: nowrap;
        }
    .section__en-ttl--faq {
        margin: 0;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 900;
        font-size: 80px;
        line-height: 1;
        color: #fff;
        white-space: nowrap;
    }
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
    .faq__item {
        margin: 0;
    }
.faq-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    width: 100%;
    padding: 30px 40px 35px;
    box-sizing: border-box;
    background-color: #fff;
}
    .faq-card__q {
        display: flex;
        align-items: center;
        gap: 15px;
    }
        .faq-card__badge {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            flex-shrink: 0;
            box-sizing: border-box;
            background-color: #242626;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 700;
            font-size: 28px;
            line-height: 1;
            color: #fff;
        }
        .faq-card__ttl {
            margin: 0;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 700;
            font-size: 20px;
            line-height: 1.3;
            color: #242626;
        }
    .faq-card__a {
        width: 100%;
    }
        .faq-card__text {
            margin: 0;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 1.8;
            color: #4C4C4C;
        }
        .faq-card__text + .faq-card__text {
            margin-top: 0;
        }

/* /////////////////// SEARCH LINK /////////////////// */
.section__wrap--searchlink {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding-block: 80px;
    background-color: #fff;
}
    .searchlink__deco {
        position: absolute;
        top: -255px;
        left: calc(50% - 960px - 185px);
        z-index: 0;
        width: 533px;
        height: 532px;
        border: 1px solid #F2CDAD;
        border-radius: 50%;
        box-sizing: border-box;
        pointer-events: none;
    }
    .section__inner--searchlink {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 26px;
        width: 1140px;
    }
.section__wrap--searchlink .searchlink__section {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    width: 100%;
}
    .searchlink__ttl {
        width: 128px;
        margin: 0;
        padding-top: 8px;
        flex-shrink: 0;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 700;
        font-size: 16px;
        line-height: 1;
        color: #242626;
        white-space: nowrap;
    }
    .searchlink__items:not(:last-child):after {
        display: none;
    }
    .searchlink__list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 5px;
        width: 100%;
        max-width: 992px;
        margin: 0;
        padding: 0;
        list-style: none;
    }
        .searchlink__items {
            margin: 0;
        }
            .searchlink__btn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                height: 35px;
                padding: 6px 20px;
                box-sizing: border-box;
                border: 1px solid #B5B5B5;
                border-radius: 99999px;
                background-color: #fff;
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 400;
                font-size: 14px;
                line-height: 1;
                color: #242626;
                text-decoration: none;
                white-space: nowrap;
                transition: border-color 0.3s ease, color 0.3s ease;
            }
            .searchlink__btn:hover {
                opacity: 1;
                border-color: #F58220;
                color: #F58220;
            }

/* /////////////////// CONTACT /////////////////// */
.section__wrap--contact {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding-block: 115px 120px;
}
    .contact__bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
    }
        .contact__bg-img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        .contact__bg-overlay {
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.5);
        }
    .section__inner--contact {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        width: 1140px;
    }
.contact-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
    .contact-head__sub {
        display: flex;
        align-items: center;
        gap: 16px;
    }
        .contact-head__bar {
            display: block;
            width: 25px;
            height: 15px;
            background-color: #F58220;
            flex-shrink: 0;
        }
        .section__ttl--contact {
            margin: 0;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 700;
            font-size: 22px;
            line-height: 1;
            color: #fff;
            white-space: nowrap;
        }
    .section__en-ttl--contact {
        margin: 0;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 900;
        font-size: 80px;
        line-height: 1;
        color: #fff;
        white-space: nowrap;
    }
.contact__contents {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 31px;
    width: 100%;
}
.contact__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
    .contact__item {
        margin: 0;
    }
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 264px;
    padding: 10px 10px 22px;
    box-sizing: border-box;
    border-radius: 6px;
    background-color: #fff;
    text-decoration: none;
    color: #242626;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.contact-card:hover {
    opacity: 1;
    background-color: #F58220;
    transform: translateY(-10px);
}
.contact-card:hover .contact-card__text {
    color: #fff;
}
.contact-card:hover .contact-card__arrow svg {
    fill: #fff;
}
    .contact-card__img {
        display: block;
        width: 244px;
        height: 195px;
        overflow: hidden;
        border-radius: 6px;
        background-color: #E5E5E5;
    }
        .contact-card__img img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: bottom;
        }
    .contact-card__ttl {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 204px;
    }
        .contact-card__text {
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 700;
            font-size: 20px;
            line-height: 1;
            color: #242626;
            white-space: nowrap;
        }
        .contact-card__arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 12px;
            height: 15px;
            flex-shrink: 0;
        }
            .contact-card__arrow svg {
                display: block;
                width: 12px;
                height: 15px;
                fill: #242626;
            }
.contact__phone-row {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}
    .contact__phone-line {
        flex: 1 0 0;
        height: 1px;
        min-width: 1px;
        background-color: #fff;
        opacity: 0.5;
    }
    .contact__phone {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        flex-shrink: 0;
    }
        .contact__phone-main {
            display: flex;
            align-items: center;
            gap: 8px;
            padding-bottom: 5px;
        }
            .contact__phone-icon {
                display: block;
                width: 42px;
                height: 42px;
                flex-shrink: 0;
            }
            .contact__phone-num {
                margin: 0;
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-weight: 500;
                font-size: 54px;
                line-height: 1;
                color: #fff;
                text-decoration: none;
                white-space: nowrap;
            }
            a.contact__phone-num:hover {
                opacity: 1;
                color: #F58220;
            }
        .contact__phone-meta {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            font-family: "Zen Kaku Gothic New", sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 1.8;
            color: #fff;
            white-space: nowrap;
        }
            .contact__phone-text {
                margin: 0;
                color: #fff;
                font-size: 16px;
            }
            .contact__phone-text:first-child {
                color: #fff;
            }

