@charset "UTF-8";

/*///////////////////// layout reset ///////////////////////////*/
body {
    margin: 0;
}

.l-main {
    width: auto;
    padding: 0;
    background-color: #FFFDF4;
    position: relative;
    z-index: 1;
}

.l-main *{
    font-family: "Zen Maru Gothic", sans-serif;
    box-sizing: border-box;
}
.l-main a:hover,
.l-main button:hover {
    opacity: 1;
}
/*///////////////////// section common ///////////////////////////*/
[class*="section__wrap"] {
    padding-block: 80px;
}
    [class*="section__inner"] {
        width: 1140px;
        margin: 0 auto;
    }
        [class*="section__head"] {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }
            [class*="section__lead"] {
                margin: 0;
                font-size: 14px;
                font-weight: 700;
                line-height: 1;
                letter-spacing: 0.04em;
                color: #998364;
                text-align: center;
            }
            [class*="section__ttl"] {
                margin: 0;
                font-size: 48px;
                font-weight: 700;
                line-height: 1;
                letter-spacing: 0.03em;
                color: #533e20;
                text-align: center;
            }
            [class*="section__en-ttl"] {
                margin: 12px 0 0;
                font-size: 24px;
                font-weight: 500;
                line-height: 1;
                letter-spacing: 0.2em;
                color: #fe9224;
                text-align: center;
            }

/*///////////////////// section more button hover ///////////////////////////*/
[class*="section__btn--"] {
    transition: background-color 0.25s ease;
}
[class*="section__btn--"]:hover {
    background-color: #fe9224;
}
[class*="section__btn-txt--"] {
    transition: color 0.25s ease;
}
[class*="section__btn--"]:hover [class*="section__btn-txt--"] {
    color: #fff;
}
[class*="section__btn-icon--"] {
    display: block;
    width: 19px;
    height: 19px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
[class*="section__btn-icon--"].section__btn-icon--on {
    display: none;
}
[class*="section__btn--"]:hover [class*="section__btn-icon--"].section__btn-icon--off {
    display: none;
}
[class*="section__btn--"]:hover [class*="section__btn-icon--"].section__btn-icon--on {
    display: block;
}


/*//////////////////// main MV buttons ////////////////////*/
.main__btn__wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}
    .main__btn-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
        .main__btn-label {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            gap: 8px;
            margin: 0;
        }
            .l-wrapper .l-main .main__btn-deco {
                display: block;
                width: 10.5px;
                height: 12.5px;
                flex-shrink: 0;
            }
            .main__btn-deco--r {
                transform: scaleX(-1);
            }
            .main__btn-label-txt {
                font-size: 24px;
                font-weight: 700;
                line-height: 1;
                color: #533e20;
                white-space: nowrap;
            }
            .main__btn-label-em--satei {
                color: #81bc39;
            }
            .main__btn-label-em--mail {
                color: #fe9224;
            }
        .main__btn {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            box-sizing: border-box;
            width: 380px;
            height: 80px;
            padding: 0;
            border: 2px solid transparent;
            border-radius: 9999px;
            text-decoration: none;
            transition: background-color 0.25s ease, border-color 0.25s ease;
        }
        
            .l-wrapper .l-main .main__btn-icon {
                display: block;
                width: 22px;
                height: 22px;
                flex-shrink: 0;
            }
            .main__btn-arrow {
                position: absolute;
                top: 50%;
                right: 35px;
                width: 29px;
                height: 29px;
                transform: translateY(-50%);
            }
            .main__btn-arrow-img {
                display: block;
                width: 29px;
                height: 29px;
            }
            /* .slick-slide img { display:inline!important } より詳細度を上げて打ち消し */
            .l-wrapper .l-main .main__btn-icon--on,
            .l-wrapper .l-main .main__btn-arrow-img--on {
                display: none !important;
            }
            .l-wrapper .l-main .main__btn:hover .main__btn-icon--off,
            .l-wrapper .l-main .main__btn:hover .main__btn-arrow-img--off {
                display: none !important;
            }
            .l-wrapper .l-main .main__btn:hover .main__btn-icon--on,
            .l-wrapper .l-main .main__btn:hover .main__btn-arrow-img--on {
                display: block !important;
            }
            .main__btn-txt {
                font-size: 24px;
                font-weight: 700;
                line-height: 1;
                letter-spacing: 0.04em;
                color: #fff;
                white-space: nowrap;
                transition: color 0.25s ease;
            }
        .main__btn--satei {
            background-color: #81bc39;
            border-color: #81bc39;
        }
        .main__btn--satei:hover {
            background-color: #fff;
        }
        .main__btn--satei:hover .main__btn-txt {
            color: #81bc39;
        }
        .main__btn--mail {
            background-color: #fe9224;
            border-color: #fe9224;
        }
        .main__btn--mail:hover {
            background-color: #fff;
        }
        .main__btn--mail:hover .main__btn-txt {
            color: #fe9224;
        }
        .main__inner {
            position: relative;
            width: 1350px;
            margin: 0 auto;
        }

        .mv-slider__items {
            position: relative;
        }
        .mv-slider__img-link {
            display: block;
        }
        .mv-slider__items .main__catch__wrap {
            /* full-bleed スライド内でも .main__inner(1350px) 左端に揃える */
            left: max(0px, calc((100% - 1350px) / 2));
            z-index: 2;
        }
        
        .main__catch__wrap {
            position: absolute;
            left: 0;
            top: 50%;
            left: 0%;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
        }
        .main__catch {
            margin-bottom: 76px;
            width: 80%;
        }
        @media screen and (max-width: 1280px) {
            .main__inner {
                width: 1140px;   
            }
            .mv-slider__items .main__catch__wrap {
                left: max(0px, calc((100% - 1140px) / 2));
            }
            .main__catch__wrap {
                width: 50%;
            }
            .main__btn-label-txt {
                font-size: 18px;
            }
            .main__btn__wrap {
                gap: 15px;
            }
            .main__btn {
                width: 300px;
                height: 70px;
            }
            .main__btn-txt {
                font-size: 19px;
            }
            .main__catch {
                margin-bottom: 38px;
                width: 100%;
            }
        }
/*//////////////////// we can ////////////////////*/
.section__wrap--wecan {
    position: relative;
    padding: 70px 0 100px;
    overflow: hidden;
}
    .wecan__bg {
        position: absolute;
        top: 0;
        left: 50%;
        z-index: 0;
        width: 1920px;
        height: 100%;
        max-width: none;
        transform: translateX(-50%);
        object-fit: cover;
        object-position: center top;
        pointer-events: none;
    }
    .section__inner--wecan {
        position: relative;
        z-index: 1;
        width: 1200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
        .section__head--wecan {
            width: fit-content;
            position: relative;
        }
        .section__lead--wecan {
            position:absolute;
            left: 56px;
            top: -14px;
        }
            .wecan__character {
                position: absolute;
                top: 45px;
                right: -170px;
                display: block;
                width: 144px;
                height: 143px;
            }
        .wecan__content {
            position: relative;
            width: 100%;
        }
            .wecan__deco {
                position: absolute;
                z-index: 2;
                display: block;
                pointer-events: none;
            }
            .wecan__deco--01 {
                top: 46.2%;
                right: 98px;
                width: 82px;
                height: 92px;
            }
            .wecan__deco--02 {
                top: -35px;
                left: 120px;
                width: 37px;
                height: 86px;
            }
            .wecan__list {
                display: grid;
                grid-template-columns: repeat(2, 550px);
                column-gap: 40px;
                row-gap: 0;
                justify-content: center;
                margin: 0;
                padding: 0;
                list-style: none;
            }
                .wecan__item {
                    position: relative;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 16px;
                    width: 550px;
                    padding: 40px;
                    border-radius: 20px;
                    background-color: #fff8da;
                }
                .wecan__item:nth-child(even) {
                    margin-top: 40px;
                    left: 0px;
                }
                 .wecan__item:nth-child(1) {
                    height: 494px;
                }
                .wecan__item:nth-child(2) {
                    padding-bottom: 70px;
                }
                .wecan__item:nth-child(3) {
                    width: 540px;
                    justify-self: end;
                    left: -40px;
                    height: 494px;
                }
                .wecan__item:nth-child(4) {
                    left: -40px;
                    height: 494px;
                }
                    .wecan__img-wrap {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 100%;
                        height: 231px;
                    }
                        .wecan__img {
                            display: block;
                            width: auto;
                            max-width: 100%;
                            height: 231px;
                            object-fit: contain;
                        }
                    .wecan__body {
                        display: flex;
                        flex-direction: column;
                        gap: 8px;
                        width: 100%;
                    }
                        .wecan__ttl {
                            margin: 0;
                            font-size: 24px;
                            font-weight: 700;
                            line-height: 1.8;
                            color: #fe9224;
                            text-align: center;
                        }
                        .wecan__txt {
                            margin: 0;
                            font-size: 16px;
                            font-weight: 500;
                            line-height: 1.8;
                            color: #533e20;
                        }
            .wecan__caption {
                position: absolute;
                top: calc(50% + 2.5px);
                left: 47%;
                z-index: 2;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 8px;
                width: 201px;
                height: 201px;
                border-radius: 50%;
                background-color: #fff;
                transform: translate(-50%, -50%);
            }
                .wecan__caption-label {
                    margin: 0;
                    font-size: 16px;
                    font-weight: 700;
                    line-height: 1;
                    letter-spacing: 0.04em;
                    color: #998364;
                    white-space: nowrap;
                }
                .wecan__caption-logo {
                    display: block;
                    width: 95px;
                    height: 88px;
                    object-fit: contain;
                }


/*//////////////////// news ////////////////////*/
.section__wrap--news {
    position: relative;
    padding: 0 0 100px;
    overflow: hidden;
}
    .news__bg {
        position: absolute;
        top: 0;
        left: 50%;
        z-index: 0;
        width: 1920px;
        height: 622px;
        max-width: none;
        transform: translateX(-50%);
        pointer-events: none;
    }
    .section__inner--news {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: flex-start;
        gap: 75px;
        width: 1140px;
        padding-left: 6px;
    }
        .section__head--news {
            flex-direction: row;
            align-items: flex-start;
            justify-content: center;
            flex-shrink: 0;
            gap: 20px;
        }
            .section__ttl--news {
                width: 39px;
                font-size: 48px;
                font-weight: 700;
                line-height: 1.1;
                letter-spacing: 0.11em;
                color: #533e20;
                writing-mode: vertical-rl;
                text-orientation: upright;
                padding-top: 5px;
            }
            .section__en-ttl--news {
                width: 11px;
                margin: 0;
                font-size: 24px;
                font-weight: 500;
                letter-spacing: -0.2em;
                color: #fe9224;
                writing-mode: vertical-rl;
                text-orientation: mixed;
                writing-mode: vertical-rl;
                text-orientation: upright;
            }
        .news__body {
            display: flex;
            flex: 1 1 auto;
            flex-direction: column;
            align-items: flex-end;
            gap: 30px;
            min-width: 0;
        }
            .news__scroll {
                width: 100%;
                max-height: 455px;
                padding-right: 53px;
            }
                .news__list {
                    display: flex;
                    flex-direction: column;
                    gap: 32px;
                    margin: 0;
                    padding: 0;
                    list-style: none;
                }
                    .news__item {
                        display: flex;
                        flex-direction: column;
                        align-items: flex-start;
                        gap: 12px;
                        width: 100%;
                        margin: 0;
                        padding: 0 0 32px;
                        border-bottom: 2px dashed #cfd8dc;
                    }
                    .news__item:last-child {
                        border-bottom: none;
                        padding-bottom: 0;
                    }
                        .news__date {
                            margin: 0;
                            font-size: 16px;
                            font-weight: 500;
                            line-height: 1.4;
                            color: #81bc39;
                            white-space: nowrap;
                        }
                        .news__txt {
                            margin: 0;
                            width: 100%;
                            font-size: 16px;
                            font-weight: 500;
                            line-height: 1.6;
                            color: #533e20;
                        }
            .section__btn--news {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 14px;
                width: 190px;
                height: 40px;
                border-radius: 9999px;
                background-color: #fff4e3;
                text-decoration: none;
                transition: background-color 0.25s ease;
                position: relative;
            }
                .section__btn-txt--news {
                    font-size: 16px;
                    font-weight: 500;
                    line-height: 1.5;
                    color: #533e20;
                    white-space: nowrap;
                }
                .section__btn-icon--news {
                    display: block;
                    width: 19px;
                    height: 19px;
                    position: absolute;
                    flex-shrink: 0;
                    right: 10px;
                }
.section__wrap--news .simplebar-track.simplebar-horizontal {
    display: none;
}
.section__wrap--news .simplebar-track.simplebar-vertical {
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background-color: #f5e4d3;
    border-radius: 9999px;
}
.section__wrap--news .simplebar-scrollbar {
    right: 0;
    width: 3px;
}
.section__wrap--news .simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 3px;
    background-color: #fe9224;
    border-radius: 9999px;
    opacity: 1;
}
.section__wrap--news .simplebar-scrollbar.simplebar-visible:before {
    opacity: 1;
}


/*//////////////////// about ////////////////////*/
.section__wrap--about {
    position: relative;
    padding: 117px 0 110px;
    overflow: hidden;
}
    .about__bg {
        position: absolute;
        top: 0;
        left: 50%;
        z-index: 0;
        width: 1040px;
        height: 652px;
        max-width: none;
        transform: translateX(-50%);
        pointer-events: none;
    }
    .section__inner--about {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 48px;
        width: 1140px;
    }
        .about__img {
            position: absolute;
            z-index: 0;
            display: block;
            pointer-events: none;
        }
        .about__img--01 {
            top: -56px;
            left: -132px;
            width: 371px;
            height: 301px;
        }
        .about__img--02 {
            top: 190px;
            right: -104px;
            width: 308px;
            height: auto;
        }
        .about__deco {
            position: absolute;
            z-index: 0;
            bottom: -5px;
            left: 44px;
            display: block;
            width: 139px;
            height: 146px;
            pointer-events: none;
        }
        .section__head--about {
            z-index: 1;
        }
        .section__lead--about {
            position: absolute;
            left: 55px;
            top: -15px;
        }
            .about__character {
                position: absolute;
                top: -53px;
                right: -162px;
                display: block;
                width: 118px;
                height: 154px;
            }
        .about__content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 21px;
            width: 860px;
        }
            .about__catch {
                display: block;
                width: 449px;
                height: 93px;
                object-fit: contain;
            }
            .about__txt {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 10px;
                width: 100%;
            }
                .about__txt-block {
                    margin: 0;
                    width: 100%;
                    font-size: 16px;
                    font-weight: 500;
                    line-height: 1.9;
                    color: #533e20;
                    text-align: center;
                }


/*//////////////////// reason ////////////////////*/
.section__wrap--reason {
    position: relative;
    padding: 100px 0 200px;
    overflow: hidden;
}
    .reason__bg {
        position: absolute;
        top: 368px;
        left: 50%;
        z-index: 0;
        width: 1920px;
        height: 1721px;
        max-width: none;
        transform: translateX(-50%);
        pointer-events: none;
    }
    .section__inner--reason {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 1140px;
    }
        .section__head--reason {
            width: fit-content;
        }
        .section__lead--reason {
            position: absolute;
            left: 57px;
            top: -13px;
        }
            .reason__chara {
                position: absolute;
                top: 55px;
                right: -280px;
                display: block;
                width: 306px;
                height: auto;
                z-index: 1;
            }
        .reason__list {
            display: flex;
            flex-direction: column;
            gap: 33px;
            width: 100%;
            margin: 0;
            padding: 0;
            list-style: none;
            z-index: 0;
        }
            .reason__item {
                display: flex;
                align-items: center;
                gap: 60px;
                width: 100%;
            }
            .reason__item--01,
            .reason__item--03 {
                padding-left: 60px;
            }
            .reason__item--02,
            .reason__item--04 {
                justify-content: flex-end;
                padding-right: 60px;
            }
                .reason__txt {
                    display: flex;
                    flex: 1 1 auto;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 11px;
                    min-width: 0;
                }
                    .reason__num {
                        margin: 0;
                        font-size: 110px;
                        font-weight: 700;
                        line-height: 1;
                        color: #fe9224;
                        font-family: "Palanquin", sans-serif;
                    }
                    .reason__item--02 .reason__num {
                        color: #81bc39;
                    }
                    .reason__item--03 .reason__num {
                        color: #ff9797;
                    }
                    .reason__item--04 .reason__num {
                        color: #5fc7de;
                    }
                    .reason__ttl {
                        margin: 0;
                        font-size: 30px;
                        font-weight: 700;
                        line-height: 1.6;
                        color: #533e20;
                        margin-bottom: 10px;
                    }
                        .reason__ttl-line {
                            display: block;
                        }
                        .reason__ttl-line--accent {
                            color: #fe9224;
                        }
                        .reason__item--02 .reason__ttl-line--accent {
                            color: #81bc39;
                        }
                        .reason__item--03 .reason__ttl-line--accent {
                            color: #ff9797;
                        }
                        .reason__item--04 .reason__ttl-line--accent {
                            color: #5fc7de;
                        }
                    .reason__desc {
                        margin: 0;
                        width: 100%;
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 2;
                        color: #533e20;
                    }
                .reason__img-wrap {
                    position: relative;
                    flex-shrink: 0;
                    width: 499px;
                    height: 333px;
                    margin-top: 20px;
                }

                    .reason__img {
                        position: relative;
                        z-index: 1;
                        display: block;
                        width: 499px;
                        height: 333px;
                        object-fit: contain;
                    }
                    .reason__item--02 .reason__img {
                        width: 495px;
                        height: 335px;
                    }


/*//////////////////// staff ////////////////////*/
.section__wrap--staff {
    position: relative;
    padding: 100px 0 50px;
}
    .staff__bg {
        position: absolute;
        top: -39px;
        left: -229px;
        width: 1397px;
        height: 703px;
        max-width: none;
        pointer-events: none;
    }
    .staff__character {
        position: absolute;
        top: 142px;
        left: calc(50% - 438px);
        z-index: 1;
        display: block;
        width: 144px;
        height: 144px;
        pointer-events: none;
    }
    .section__inner--staff {
        position: relative;
        z-index: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 1140px;
        margin: 0 auto;
    }
        .section__head--staff {
            margin-bottom: 0;
        }
    .staff__slider-area {
        position: relative;
        z-index: 1;
        width: 100%;
        margin-top: 40px;
        margin-bottom: 30px;
    }
        .staff__swiper {
            width: 100%;
            overflow: hidden;
        }
        .staff__swiper.noslide {
            display: flex;
            justify-content: center;
        }
        .staff__swiper.noslide .swiper-wrapper {
            display: flex;
            justify-content: center;
            gap: 30px;
            transform: none !important;
        }
        .staff__swiper.noslide .staff__slide,
        .staff__swiper.noslide .staff__slide--offset {
            margin-top: 0;
            padding-top: 0;
        }
            .staff__slide,
            .staff__slide--offset {
                width: 360px;
                height: auto;
                box-sizing: border-box;
            }
            .js-staff-swiper:not(.noslide) .staff__slide--offset {
                padding-top: 40px;
            }
                .staff-card {
                    position: relative;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 16px;
                    box-sizing: border-box;
                    width: 360px;
                    padding: 20px;
                    border-radius: 20px;
                    background-color: #fff;
                    text-decoration: none;
                    color: inherit;
                    transition: opacity 0.25s ease;
                }
                .staff-card:hover .staff-card__photo {
                    transform: scale(1.1);
                }
                    .staff-card__img {
                        width: 100%;
                        height: 240px;
                        border-radius: 20px;
                        overflow: hidden;
                        background-color: #f7f7f7;
                        position: relative;
                    }
                        .staff-card__photo {
                            display: block;
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
                            transform-origin: center center;
                            transition: transform 0.4s ease;
                        }
                    .staff-card__name {
                        position: absolute;
                        left: 0;
                        bottom: 0;
                        z-index: 2;
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;
                        max-width: calc(100% - 40px);
                        margin: 0;
                        padding: 6px 16px;
                        border-radius: 0 20px 0 20px;
                        background-color: #fe9224;
                        font-size: 18px;
                        font-weight: 700;
                        line-height: 1.4;
                        color: #fff;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                    }
                    .staff-card__body {
                        display: flex;
                        flex-direction: column;
                        gap: 8px;
                        width: 100%;
                    }
                        .staff-card__meta {
                            display: flex;
                            flex-direction: column;
                            gap: 8px;
                            width: 100%;
                        }
                            .staff-card__meta-row {
                                display: flex;
                                flex-wrap: wrap;
                                align-items: center;
                                gap: 16px;
                                width: 100%;
                            }
                            .staff-card__meta-item {
                                display: flex;
                                align-items: flex-start;
                                gap: 9px;
                                min-width: 0;
                            }
                            .staff-card__meta-item--license {
                                width: 100%;
                            }
                                .staff-card__label {
                                    display: inline-flex;
                                    align-items: center;
                                    justify-content: center;
                                    flex-shrink: 0;
                                    width: 82px;
                                    padding: 3px 9px;
                                    border-radius: 4px;
                                    background-color: #faffe3;
                                    font-size: 16px;
                                    font-weight: 500;
                                    line-height: 1.4;
                                    color: #81bc39;
                                    box-sizing: border-box;
                                }
                                .staff-card__value {
                                    font-size: 14px;
                                    font-weight: 500;
                                    line-height: 1.4;
                                    color: #533e20;
                                    padding-top: 4px;
                                }
                                .staff-card__meta-item--license .staff-card__value {
                                    display: -webkit-box;
                                    overflow: hidden;
                                    -webkit-box-orient: vertical;
                                    -webkit-line-clamp: 2;
                                }
                        .staff-card__comment {
                            width: 100%;
                            padding: 12px 16px;
                            border-radius: 4px;
                            background-color: #fffdf4;
                            box-sizing: border-box;
                        }
                            .staff-card__comment-txt {
                                margin: 0;
                                font-size: 16px;
                                font-weight: 500;
                                line-height: 1.4;
                                color: #9d8a70;
                                overflow: hidden;
                                display: -webkit-box;
                                -webkit-box-orient: vertical;
                                -webkit-line-clamp: 3;
                            }
    .staff__footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
    }
        .staff__controls {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .staff__controls--empty {
            flex: 1;
        }
            .staff__arrow {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 37px;
                height: 37px;
                padding: 0;
                border: none;
                border-radius: 9999px;
                background-color: #fff4e3;
                cursor: pointer;
                appearance: none;
                transition: background-color 0.25s ease;
            }
            .staff__arrow::before {
                content: '';
                display: block;
                width: 10px;
                height: 10px;
                border-top: 1px solid #fe9224;
                border-right: 1px solid #fe9224;
                box-sizing: border-box;
                transition: border-color 0.25s ease;
            }
            .staff__arrow:hover {
                background-color: #fe9224;
            }
            .staff__arrow:hover::before {
                border-top-color: #fff4e3;
                border-right-color: #fff4e3;
            }
            .staff__arrow--prev::before {
                transform: rotate(-135deg);
                margin-left: 3px;
            }
            .staff__arrow--next::before {
                transform: rotate(45deg);
                margin-right: 3px;
            }
            .section__inner--staff .staff__pagination {
                display: flex;
                align-items: center;
                gap: 16px;
                width: auto;
            }
            .staff__pagination .swiper-pagination-bullet {
                width: 10px;
                height: 10px;
                margin: 0 !important;
                background-color: #ffd7a8;
                opacity: 1;
                border-radius: 50%;
            }
            .staff__pagination .swiper-pagination-bullet-active {
                background-color: #fe9224;
                width: 13px;
                height: 13px;
            }
        .section__btn--staff {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-shrink: 0;
            width: 190px;
            height: 40px;
            margin-left: auto;
            border-radius: 9999px;
            background-color: #fff4e3;
            text-decoration: none;
            transition: background-color 0.25s ease;
            position: relative;
        }
            .section__btn-txt--staff {
                font-size: 16px;
                font-weight: 500;
                line-height: 1.5;
                color: #533e20;
                white-space: nowrap;
            }
            .section__btn-icon--staff {
                display: block;
                width: 19px;
                height: 19px;
                position: absolute;
                flex-shrink: 0;
                right: 10px;
            }


/*//////////////////// voice ////////////////////*/
.section__wrap--voice {
    position: relative;
    padding-bottom: 50px;
    padding-top: 47px;
}
.section__en-ttl--voice {
    writing-mode: vertical-rl;
    text-orientation: upright; 
}
    .voice__layout {
        position: relative;
        z-index: 1;
        display: flex;
        gap: 70px;
        align-items: flex-start;
        padding-left: max(20px, calc(50% - 578px));
    }
    .voice__head::before {
        content: '';
        position: absolute;
        top: 120px;
        left: -220px;
        z-index: -1;
        width: 430px;
        height: 377px;
        background: url(/images/top/deco_voice.svg) no-repeat center center / cover;
    }
        .voice__side {
            position: relative;
            flex-shrink: 0;
            width: 70px;
        }
            .voice__head {
                position: relative;
                z-index: 1;
                display: flex;
                gap: 9px;
                align-items: flex-start;
            }
                .section__ttl--voice {
                    margin: 0;
                    writing-mode: vertical-rl;
                    font-size: 48px;
                    font-weight: 700;
                    line-height: 1.1;
                    letter-spacing: 0.1em;
                    color: #533e20;
                    padding-top: 6px;
                }
                .section__en-ttl--voice {
                    margin: 0;
                    writing-mode: vertical-rl;
                    font-size: 24px;
                    font-weight: 500;
                    line-height: 0.8;
                    letter-spacing: -0.2em;
                    color: #fe9224;
                }
        .voice__content {
            display: flex;
            flex: 1 1 auto;
            flex-direction: column;
            min-width: 0;
            z-index: 1;
        }
            .voice__track {
                position: relative;
                width: 100%;
                overflow: hidden;
            }
                .voice__swiper {
                    overflow: hidden;
                    padding-bottom: 30px;
                }
                .voice__swiper.is-static .swiper-wrapper {
                    display: flex;
                    gap: 30px;
                    transform: none !important;
                }
                    .voice__slide {
                        width: 360px;
                        height: auto;
                        box-sizing: border-box;
                    }
                        .voice-card {
                            position: relative;
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                            gap: 12px;
                            box-sizing: border-box;
                            width: 360px;
                            height: 340px;
                            padding: 20px;
                            border-radius: 20px;
                            background-color: #fff;
                            text-decoration: none;
                            color: inherit;
                            transition: opacity 0.25s ease;
                        }
                            .voice-card__img {
                                width: 100%;
                                height: 240px;
                                border-radius: 20px;
                                overflow: hidden;
                                background-color: #f7f7f7;
                            }
                                .voice-card__photo {
                                    display: block;
                                    width: 100%;
                                    height: 100%;
                                    object-fit: contain;
                                    transform-origin: center center;
                                    transition: transform 0.4s ease;
                                }
                            .voice-card:hover .voice-card__photo {
                                transform: scale(1.1);
                            }
                            .voice-card__name {
                                position: absolute;
                                left: 20px;
                                top: 220px;
                                z-index: 2;
                                display: inline-flex;
                                align-items: center;
                                justify-content: center;
                                max-width: calc(100% - 40px);
                                margin: 0;
                                padding: 6px 16px;
                                border-radius: 0 20px 0 20px;
                                background-color: #fe9224;
                                font-size: 20px;
                                font-weight: 700;
                                line-height: 1.4;
                                color: #fff;
                                white-space: nowrap;
                                overflow: hidden;
                                text-overflow: ellipsis;
                            }
                            .voice-card__text {
                                width: 100%;
                                margin: 0;
                                font-size: 16px;
                                font-weight: 500;
                                line-height: 1.5;
                                color: #533e20;
                                overflow: hidden;
                                display: -webkit-box;
                                -webkit-box-orient: vertical;
                                -webkit-line-clamp: 2;
                            }
            .voice__footer {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 32px;
                width: 1010px;
            }
                .voice__controls {
                    display: flex;
                    align-items: center;
                    gap: 16px;
                }
                .voice__controls--empty {
                    flex: 1;
                }
                    .voice__arrow {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 37px;
                        height: 37px;
                        padding: 0;
                        border: none;
                        border-radius: 9999px;
                        background-color: #fff4e3;
                        cursor: pointer;
                        appearance: none;
                        transition: background-color 0.25s ease;
                    }
                    .voice__arrow::before {
                        content: '';
                        display: block;
                        width: 10px;
                        height: 10px;
                        border-top: 1px solid #fe9224;
                        border-right: 1px solid #fe9224;
                        box-sizing: border-box;
                        transition: border-color 0.25s ease;
                    }
                    .voice__arrow:hover {
                        background-color: #fe9224;
                    }
                    .voice__arrow:hover::before {
                        border-top-color: #fff4e3;
                        border-right-color: #fff4e3;
                    }
                    .voice__arrow--prev::before {
                        transform: rotate(-135deg);
                        margin-left: 3px;
                    }
                    .voice__arrow--next::before {
                        transform: rotate(45deg);
                        margin-right: 3px;
                    }
                    .section__wrap--voice .voice__pagination {
                        display: flex;
                        align-items: center;
                        gap: 16px;
                        width: auto;
                    }
                    [class*="section__wrap"] .voice__pagination .swiper-pagination-bullet {
                        width: 10px;
                        height: 10px;
                        margin: 0;
                        background-color: #ffd7a8;
                        opacity: 1;
                        border-radius: 50%;
                    }
                    [class*="section__wrap"] .voice__pagination .swiper-pagination-bullet-active {
                        background-color: #fe9224;
                        width: 13px;
                        height: 13px;
                    }
                .section__btn--voice {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 14px;
                    flex-shrink: 0;
                    width: 190px;
                    height: 40px;
                    margin-left: auto;
                    border-radius: 9999px;
                    background-color: #fff4e3;
                    text-decoration: none;
                    transition: background-color 0.25s ease;
                    position: relative;
                }
                    .section__btn-txt--voice {
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 1.5;
                        color: #533e20;
                        white-space: nowrap;
                    }
                    .section__btn-icon--voice {
                        display: block;
                        width: 19px;
                        height: 19px;
                        position: absolute;
                        flex-shrink: 0;
                        right: 10px;
                    }


/*//////////////////// service ////////////////////*/
.section__wrap--service {
    position: relative;
    padding-bottom: 100px;
    overflow: hidden;
    padding-top: 53px;
}
    .service__bg {
        position: absolute;
        top: 40px;
        left: 50%;
        z-index: 0;
        width: 1920px;
        height: 770px;
        max-width: none;
        transform: translateX(-50%);
        pointer-events: none;
    }
    .section__inner--service {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        width: 1140px;
        margin: 0 auto;
    }
        .section__head--service {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
        }
        .service__list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            width: 100%;
            margin: 0;
            padding: 0;
            list-style: none;
        }
            .service__item {
                position: relative;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 4px;
                width: 204px;
                height: 204px;
                margin: 0;
            }
                .service__item-bg {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    z-index: 0;
                    width: 204px;
                    height: 204px;
                    border-radius: 50%;
                    background-color: #fff;
                    transform: translate(-50%, -50%);
                    pointer-events: none;
                }
                .service__icon {
                    position: relative;
                    z-index: 1;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 70px;
                    height: 70px;
                    flex-shrink: 0;
                }
                    .service__icon img {
                        display: block;
                        width: 70px;
                        height: 70px;
                    }
                .service__label {
                    position: relative;
                    z-index: 1;
                    margin: 0;
                    font-size: 24px;
                    font-weight: 500;
                    line-height: 1.5;
                    color: #1f1f1f;
                    text-align: center;
                    white-space: nowrap;
                }


/*//////////////////// contact ////////////////////*/
.section__wrap--contact {
    position: relative;
    min-height: 590px;
    padding: 120px 0 100px;
    overflow: hidden;
}
    .contact__bg {
        position: absolute;
        top: 0;
        left: 50%;
        z-index: 0;
        width: 1920px;
        height: 590px;
        max-width: none;
        transform: translateX(-50%);
        pointer-events: none;
    }
    .section__inner--contact {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 1140px;
        margin: 0 auto;
    }
        .section__head--contact {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
            margin-bottom: 28px;
        }
        .contact__tel {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding-left: 2px;
        }
            .contact__tel-icon {
                display: block;
                width: 25px;
                height: 34px;
                flex-shrink: 0;
                position: relative;
                top: 5px;
            }
            .contact__tel-num {
                font-family: "Palanquin", sans-serif;
                font-size: 56px;
                font-weight: 700;
                line-height: 1;
                letter-spacing: 0.06em;
                color: #533e20;
                text-decoration: none;
                white-space: nowrap;
            }
        .contact__hours {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px 24px;
            margin: 8px 0 0;
            font-size: 14px;
            font-weight: 400;
            line-height: 1.5;
            color: #533e20;
            text-align: center;
        }
        .contact__form {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            width: 100%;
            margin-top: 20px;
        }
            .contact__lead {
                margin: 0;
                font-size: 0;
                line-height: 1.2;
                color: #533e20;
                text-align: center;
                white-space: nowrap;
            }
                .contact__lead-txt {
                    font-size: 24px;
                    font-weight: 500;
                }
                .contact__lead-accent {
                    font-size: 32px;
                    font-weight: 500;
                    color: #fe9224;
                }
            .contact__btns {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 24px;
            }
                .contact__btn {
                    position: relative;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 7px;
                    box-sizing: border-box;
                    width: 380px;
                    height: 80px;
                    padding: 0;
                    border: 2px solid transparent;
                    border-radius: 9999px;
                    text-decoration: none;
                    transition: background-color 0.25s ease, border-color 0.25s ease;
                }
                    .contact__btn-icon {
                        display: block;
                        width: 22px;
                        height: 22px;
                        flex-shrink: 0;
                    }
                    .contact__btn-icon--on {
                        display: none;
                    }
                    .contact__btn:hover .contact__btn-icon--off {
                        display: none;
                    }
                    .contact__btn:hover .contact__btn-icon--on {
                        display: block;
                    }
                    .contact__btn-txt {
                        font-size: 24px;
                        font-weight: 700;
                        line-height: 1;
                        letter-spacing: 0.04em;
                        color: #fff;
                        white-space: nowrap;
                        transition: color 0.25s ease;
                    }
                    .contact__btn-arrow {
                        position: absolute;
                        top: 50%;
                        right: 35px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 29px;
                        height: 29px;
                        border-radius: 50%;
                        transform: translateY(-50%);
                        transition: background-color 0.25s ease;
                    }
                    .contact__btn--satei .contact__btn-arrow {
                         background-color: #6B9E2C;
                    }
                    .contact__btn--mail .contact__btn-arrow {
                         background-color: #E98219;
                         right: 30px;
                    }
                    .contact__btn-arrow::before {
                        content: '';
                        display: block;
                        width: 7px;
                        height: 7px;
                        border-top: 2px solid #fff;
                        border-right: 2px solid #fff;
                        box-sizing: border-box;
                        transform: rotate(45deg);
                        margin-left: -2px;
                        transition: border-color 0.25s ease;
                    }
                .contact__btn--satei {
                    background-color: #81bc39;
                    border-color: #81bc39;
                }
                .contact__btn--satei:hover {
                    background-color: #fff;
                }
                .contact__btn--satei:hover .contact__btn-txt {
                    color: #81bc39;
                }
                .contact__btn--satei:hover .contact__btn-arrow {
                    background-color: #81bc39;
                }
                .contact__btn--mail {
                    background-color: #fe9224;
                    border-color: #fe9224;
                }
                .contact__btn--mail:hover {
                    background-color: #fff;
                }
                .contact__btn--mail:hover .contact__btn-txt {
                    color: #fe9224;
                }
                .contact__btn--mail:hover .contact__btn-arrow {
                    background-color: #fe9224;
                }

/*//////////////////// search ////////////////////*/
.section__wrap--search {
    position: relative;
    padding: 100px 0 160px;
    overflow: hidden;
}
    .search__bg {
        position: absolute;
        top: 0;
        left: 50%;
        z-index: 0;
        width: 1920px;
        height: 746px;
        max-width: none;
        transform: translateX(-50%);
        pointer-events: none;
    }
    .section__inner--search {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 45px;
        width: 1140px;
        margin: 0 auto;
    }
        .section__head--search {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .search__content {
            display: flex;
            flex-direction: column;
            gap: 32px;
            width: 100%;
        }
            .search__form-block,
            .search__category-col {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }
            .search__block-ttl {
                display: flex;
                align-items: center;
                gap: 10px;
                margin: 0;
                font-size: 24px;
                font-weight: 500;
                line-height: 1;
                color: #533e20;
                white-space: nowrap;
            }
                .search__dot {
                    display: block;
                    flex-shrink: 0;
                    width: 13px;
                    height: 13px;
                    border-radius: 50%;
                    background-color: #ff9797;
                }
            .search__form-row {
                display: flex;
                align-items: center;
                gap: 13px;
                width: 100%;
            }
                .search__freeword {
                    flex: 1 1 0;
                    min-width: 0;
                    border: none;
                    border-radius: 12px;
                }
                    .section__wrap--search .search__freeword-input {
                        box-sizing: border-box;
                        width: 100%;
                        height: 70px;
                        padding: 0 30px;
                        border: none;
                        border-radius: 12px;
                        background-color: #fff;
                        font-size: 20px;
                        font-weight: 500;
                        line-height: 1.6;
                        color: #533e20;
                        outline: none;
                    }
                    .section__wrap--search .search__freeword-input::placeholder {
                        color: #b3b3b3;
                    }
                .search__sep {
                    flex-shrink: 0;
                    font-size: 38px;
                    font-weight: 500;
                    line-height: 1;
                    color: #ff9797;
                }
                .search__price-box {
                    display: flex;
                    flex: 1 1 0;
                    align-items: center;
                    gap: 16px;
                    min-width: 0;
                }
                    .search__price-selects {
                        display: flex;
                        align-items: center;
                        gap: 8px;
                        flex-shrink: 0;
                    }
                        .search__select-wrap {
                            position: relative;
                        }
                            .search__select {
                                box-sizing: border-box;
                                width: 171px;
                                height: 70px;
                                padding: 0 36px 0 20px;
                                border: none;
                                border-radius: 12px;
                                background-color: #fff;
                                font-size: 20px;
                                font-weight: 500;
                                line-height: 1.6;
                                color: #533e20;
                                appearance: none;
                                cursor: pointer;
                                outline: none;
                                text-overflow: ellipsis;
                                white-space: nowrap;
                                overflow: hidden;
                            }
                            .search__select-wrap::after {
                                content: '';
                                position: absolute;
                                top: 50%;
                                right: 15px;
                                width: 10px;
                                height: 10px;
                                border-right: 2px solid #FF9797;
                                border-bottom: 2px solid #FF9797;
                                transform: translateY(-70%) rotate(45deg);
                                pointer-events: none;
                            }
                        .search__tilde {
                            font-size: 16px;
                            font-weight: 400;
                            line-height: 1.7;
                            color: #ff9797;
                        }
                    .search__submit {
                        display: flex;
                        flex: 1 1 0;
                        align-items: center;
                        justify-content: center;
                        gap: 6px;
                        min-width: 0;
                        height: 70px;
                        padding: 0px 26px 0 26px;
                        box-sizing: border-box;
                        border: 1px solid transparent;
                        border-radius: 12px;
                        background-color: #ff9797;
                        cursor: pointer;
                        transition: background-color 0.25s ease, border-color 0.25s ease;
                    }
                    .search__submit:hover {
                        background-color: #fff;
                        border-color: #ff9797;
                    }
                        .search__submit-txt {
                            font-size: 20px;
                            font-weight: 700;
                            line-height: 1;
                            color: #fffbf4;
                            white-space: nowrap;
                            transition: color 0.25s ease;
                        }
                        .search__submit:hover .search__submit-txt {
                            color: #ff9797;
                        }
                        .search__submit-icon {
                            display: block;
                            width: 23px;
                            height: 23px;
                            flex-shrink: 0;
                            transition: filter 0.25s ease;
                        }
                        .search__submit:hover .search__submit-icon {
                            filter: brightness(0) saturate(100%) invert(84%) sepia(21%) saturate(1677%) hue-rotate(299deg) brightness(101%) contrast(101%);
                        }
            .search__category {
                display: flex;
                align-items: flex-start;
                gap: 32px;
                width: 100%;
            }
                .search__category-col--buy {
                    flex-shrink: 0;
                }
                .search__category-col--sell {
                    flex: 1 1 0;
                    min-width: 0;
                    margin-top: 8px;
                }
                .search__buy-head {
                    display: flex;
                    align-items: center;
                    gap: 30px;
                }
                    .search__count {
                        display: flex;
                        align-items: baseline;
                        gap: 8px;
                        margin: 0;
                        white-space: nowrap;
                    }
                        .search__count-label,
                        .search__count-unit {
                            font-size: 18px;
                            font-weight: 500;
                            line-height: 1;
                            color: #533e20;
                        }
                        .search__count-num {
                            font-family: "Palanquin", sans-serif;
                            font-size: 32px;
                            font-weight: 700;
                            line-height: 1;
                            color: #fe9224;
                        }
                .search__type-list {
                    display: flex;
                    gap: 12px;
                    margin: 0;
                    padding: 0;
                    list-style: none;
                }
                    .search__type-item {
                        flex-shrink: 0;
                    }
                    .search__type-card {
                        position: relative;
                        width: 184px;
                        height: 160px;
                    }
                    .search__type-default,
                    .search__satei-btn {
                        position: relative;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        gap: 12px;
                        box-sizing: border-box;
                        width: 100%;
                        height: 100%;
                        border-radius: 20px;
                        background-color: #ff9797;
                    }
                    .search__type-menu {
                        position: absolute;
                        top: 0;
                        left: 0;
                        z-index: 1;
                        display: flex;
                        flex-direction: column;
                        justify-content: space-between;
                        box-sizing: border-box;
                        width: 100%;
                        height: 100%;
                        padding: 10px;
                        border-radius: 20px;
                        background-color: #fff;
                        opacity: 0;
                        visibility: hidden;
                        transition: opacity 0.25s ease, visibility 0.25s ease;
                    }
                    .search__type-card:hover .search__type-menu,
                    .search__type-card:focus-within .search__type-menu {
                        opacity: 1;
                        visibility: visible;
                    }
                        .search__type-menu-btn {
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            box-sizing: border-box;
                            width: 100%;
                            height: 43px;
                            border: 1px solid #ff9797;
                            border-radius: 8px;
                            background-color: #ff9797;
                            font-size: 18px;
                            font-weight: 700;
                            line-height: 1;
                            color: #fff;
                            text-decoration: none;
                            white-space: nowrap;
                            transition: background-color 0.25s ease, color 0.25s ease;
                        }
                        .search__type-menu-btn:hover {
                            background-color: #fff;
                            color: #ff9797;
                        }
                    .search__satei-btn:hover {
                        background-color: #fff;
                    }
                        .search__satei-btn:hover .search__satei-label {
                            color: #81bc39;
                        }
                        .search__satei-btn:hover .search__satei-icon img {
                            filter: brightness(0) saturate(100%) invert(58%) sepia(52%) saturate(456%) hue-rotate(56deg) brightness(95%) contrast(89%);
                        }
                        .search__satei-btn:hover .search__type-mark {
                            background-color: rgba(129, 188, 57, 0.25);
                        }
                        .search__satei-btn:hover .search__type-mark--arrow::before {
                            border-top-color: #81bc39;
                            border-right-color: #81bc39;
                        }
                        .search__type-icon,
                        .search__satei-icon {
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            width: 80px;
                            height: 60px;
                        }
                            .search__type-icon img,
                            .search__satei-icon img {
                                display: block;
                                width: 100%;
                                height: 100%;
                                object-fit: contain;
                                transition: filter 0.25s ease;
                            }
                        .search__type-label,
                        .search__satei-label {
                            font-size: 20px;
                            font-weight: 700;
                            line-height: 1;
                            color: #fffbf4;
                            white-space: nowrap;
                            transition: color 0.25s ease;
                        }
                        .search__type-mark {
                            position: absolute;
                            right: 10px;
                            bottom: 12px;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            width: 23px;
                            height: 23px;
                            border-radius: 50%;
                            background-color: rgba(255, 255, 255, 0.25);
                        }
                        .search__satei-btn .search__type-mark {
                            background-color: #6B9E2C;
                        }
                        .search__type-list .search__type-mark {
                            background-color: #FF7B7B;
                        }
                        .search__type-mark--plus::before,
                        .search__type-mark--plus::after {
                            content: '';
                            position: absolute;
                            background-color: #fff;
                            border-radius: 1px;
                        }
                        .search__type-mark--plus::before {
                            width: 10px;
                            height: 2px;
                        }
                        .search__type-mark--plus::after {
                            width: 2px;
                            height: 10px;
                        }
                        .search__type-mark--arrow::before {
                            content: '';
                            display: block;
                            width: 7px;
                            height: 7px;
                            border-top: 2px solid #fff;
                            border-right: 2px solid #fff;
                            box-sizing: border-box;
                            transform: rotate(45deg);
                            margin-left: -2px;
                        }
                .search__satei-btn {
                    width: 100%;
                    height: 160px;
                    border: 1px solid #81bc39;
                    background-color: #81bc39;
                    text-decoration: none;
                    transition: background-color 0.25s ease, border-color 0.25s ease;
                }


/*//////////////////// kodawari ////////////////////*/
.section__wrap--kodawari {
    position: relative;
    padding: 100px 0 50px;
    overflow: hidden;
}
    .kodawari__bg {
        position: absolute;
        top: 0;
        left: 50%;
        z-index: 0;
        width: 1920px;
        height: 759px;
        max-width: none;
        transform: translateX(-50%);
        pointer-events: none;
    }
    .section__inner--kodawari {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 1140px;
        margin: 0 auto;
    }

    .kodawari__slider-area {
        position: relative;
        z-index: 1;
        width: 100%;
        margin-top: 40px;
    }
        .kodawari__swiper {
            width: 100%;
            overflow: hidden;
            padding-left: max(20px, calc(50% - 612px));
            padding-right: max(20px, calc(50% - 600px));
            box-sizing: border-box;
        }
        .kodawari__swiper.is-static .swiper-wrapper {
            display: flex;
            justify-content: center;
            gap: 40px;
            transform: none !important;
        }
            .kodawari__slide {
                width: 380px;
                height: auto;
                box-sizing: border-box;
            }
                .kodawari-card {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 20px;
                    width: 380px;
                    text-decoration: none;
                    color: inherit;
                }
                    .kodawari-card__img {
                        position: relative;
                        flex-shrink: 0;
                        width: 380px;
                        height: 312px;
                        overflow: hidden;
                        -webkit-mask-size: 100% 100%;
                        mask-size: 100% 100%;
                        -webkit-mask-repeat: no-repeat;
                        mask-repeat: no-repeat;
                        -webkit-mask-position: center;
                        mask-position: center;
                    }
                    .kodawari-card__img--reform {
                        -webkit-mask-image: url('/images/top/kodawari__img05.webp');
                        mask-image: url('/images/top/kodawari__img05.webp');
                    }
                    .kodawari-card__img--10year {
                        -webkit-mask-image: url('/images/top/kodawari__img01.webp');
                        mask-image: url('/images/top/kodawari__img01.webp');
                    }
                    .kodawari-card__img--nearstation10 {
                        -webkit-mask-image: url('/images/top/kodawari__img02.webp');
                        mask-image: url('/images/top/kodawari__img02.webp');
                    }
                    .kodawari-card__img--park2 {
                        -webkit-mask-image: url('/images/top/kodawari__img03.webp');
                        mask-image: url('/images/top/kodawari__img03.webp');
                    }
                    .kodawari-card__img--2000 {
                        -webkit-mask-image: url('/images/top/kodawari__img04.webp');
                        mask-image: url('/images/top/kodawari__img04.webp');
                    }
                        .kodawari-card__photo {
                            display: block;
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
                            object-position: center;
                            transform-origin: center center;
                            transition: transform 0.4s ease;
                        }
                    .kodawari-card:hover .kodawari-card__photo {
                        transform: scale(1.1);
                    }
                    .kodawari-card__foot {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        gap: 16px;
                    }
                        .kodawari-card__label {
                            font-size: 24px;
                            font-weight: 700;
                            line-height: 1.1;
                            color: #533e20;
                            white-space: nowrap;
                        }
                        .kodawari-card__arrow {
                            position: relative;
                            flex-shrink: 0;
                            width: 25px;
                            height: 25px;
                            border-radius: 50%;
                            background-color: #ff9797;
                        }
                        .kodawari-card__arrow::before {
                            content: '';
                            position: absolute;
                            top: 50%;
                            left: 45%;
                            width: 8px;
                            height: 8px;
                            border-top: 1px solid #fff;
                            border-right: 1px solid #fff;
                            box-sizing: border-box;
                            transform: translate(-60%, -50%) rotate(45deg);
                        }
    .kodawari__footer {
        margin-top: 38px;
    }
        .kodawari__controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }
        .kodawari__controls--empty {
            display: none;
        }
            .kodawari__arrow {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 37px;
                height: 37px;
                padding: 0;
                border: none;
                border-radius: 9999px;
                background-color: #fff4e3;
                cursor: pointer;
                appearance: none;
                transition: background-color 0.25s ease;
            }
            .kodawari__arrow::before {
                content: '';
                display: block;
                width: 10px;
                height: 10px;
                border-top: 1px solid #fe9224;
                border-right: 1px solid #fe9224;
                box-sizing: border-box;
                transition: border-color 0.25s ease;
            }
            .kodawari__arrow:hover {
                background-color: #fe9224;
            }
            .kodawari__arrow:hover::before {
                border-top-color: #fff4e3;
                border-right-color: #fff4e3;
            }
            .kodawari__arrow--prev::before {
                transform: rotate(-135deg);
                margin-left: 3px;
            }
            .kodawari__arrow--next::before {
                transform: rotate(45deg);
                margin-right: 3px;
            }
            .section__wrap--kodawari .kodawari__pagination {
                display: flex;
                align-items: center;
                gap: 16px;
                width: auto;
            }
            .section__wrap--kodawari .kodawari__pagination .swiper-pagination-bullet {
                width: 10px;
                height: 10px;
                margin: 0;
                background-color: #ffd7a8;
                opacity: 1;
                border-radius: 50%;
            }
            .section__wrap--kodawari .kodawari__pagination .swiper-pagination-bullet-active {
                background-color: #fe9224;
                width: 13px;
                height: 13px;
            }


/*//////////////////// new / recommend bkn ////////////////////*/
.section__wrap--new,
.section__wrap--recommend {
    position: relative;
    padding: 47px 0;
    overflow: hidden;
}
.section__en-ttl--bkn-rail {
    writing-mode: vertical-rl;
    text-orientation: upright; 
}
    .bkn-rail__bg {
        position: absolute;
        top: 50px;
        left: 50%;
        z-index: 0;
        width: 1920px;
        height: 620px;
        max-width: none;
        transform: translateX(-50%);
        pointer-events: none;
    }
    .bkn-rail {
        position: relative;
        z-index: 1;
        display: flex;
        gap: 70px;
        align-items: flex-start;
    }
    .bkn-rail--left {
        padding-left: max(20px, calc(50% - 580px));
    }
    .bkn-rail--right {
        padding-right: max(20px, calc(50% - 560px));
    }
    .bkn-rail--reverse {
        flex-direction: row-reverse;
        gap: 50px;
    }
        .bkn-rail__side {
            flex-shrink: 0;
            width: 70px;
        }
            .bkn-rail__head {
                display: flex;
                gap: 10px;
                align-items: flex-start;
            }
                .section__ttl--bkn-rail {
                    margin: 0;
                    writing-mode: vertical-rl;
                    font-size: 48px;
                    font-weight: 700;
                    line-height: 1.1;
                    letter-spacing: 0.1em;
                    color: #533e20;
                    padding-top: 10px;
                }
                .section__en-ttl--bkn-rail {
                    margin: 0;
                    writing-mode: vertical-rl;
                    font-size: 24px;
                    font-weight: 500;
                    line-height: 0.8;
                    letter-spacing: -0.2em;
                    color: #fe9224;
                    padding-top: 3px;
                }
        .bkn-rail__content {
            display: flex;
            flex: 1 1 auto;
            flex-direction: column;
            min-width: 0;
            padding-top: 5px;
        }
            .bkn-rail__track {
                position: relative;
                min-width: 0;
                width: 100%;
                overflow: hidden;
            }
            .bkn-rail--right .bkn-rail__track {
                direction: ltr;
            }
                .bkn-rail__swiper {
                    overflow: hidden;
                    padding-bottom: 30px;
                }
                .bkn-rail--right .js-recommend-bkn-swiper {
                    direction: rtl;
                    overflow: hidden;
                }
                .bkn-rail--right .js-recommend-bkn-swiper .bkn-card,
                .bkn-rail--right .js-recommend-bkn-swiper .bkn-card--member {
                    direction: ltr;
                }
                .bkn-rail__swiper.is-static .swiper-wrapper {
                    display: flex;
                    gap: 30px;
                    transform: none !important;
                }
                    .bkn-card {
                        position: relative;
                        width: 360px;
                        height: auto;
                        box-sizing: border-box;
                    }
                        .bkn-card__link {
                            display: flex;
                            flex-direction: column;
                            gap: 12px;
                            box-sizing: border-box;
                            width: 360px;
                            padding: 20px;
                            border-radius: 20px;
                            background-color: #fff;
                            text-decoration: none;
                            color: inherit;
                        }
                        .bkn-card__img {
                            position: relative;
                            width: 100%;
                            height: 240px;
                            border-radius: 20px;
                            overflow: hidden;
                            background-color: #f7f7f7;
                        }
                            .bkn-card__photo {
                                display: block;
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                transform-origin: center center;
                                transition: transform 0.4s ease;
                            }
                            .bkn-card__link:hover .bkn-card__photo {
                                transform: scale(1.1);
                            }
                            .bkn-card__new {
                                position: absolute;
                                top: 12px;
                                left: 12px;
                                z-index: 2;
                                display: inline-flex;
                                align-items: center;
                                justify-content: center;
                                min-width: 54px;
                                height: 24px;
                                padding: 0 0 1px;
                                border-radius: 9999px;
                                background-color: #faffe3;
                                font-size: 16px;
                                font-weight: 700;
                                line-height: 1.4;
                                color: #81bc39;
                            }
                            .bkn-card__type {
                                position: absolute;
                                left: 0;
                                bottom: 0;
                                z-index: 2;
                                display: inline-flex;
                                align-items: center;
                                justify-content: center;
                                padding: 6px 16px;
                                border-radius: 0 20px 0 20px;
                                background-color: #ff9797;
                                font-size: 16px;
                                font-weight: 700;
                                line-height: 1.4;
                                color: #fff;
                                white-space: nowrap;
                            }
                        .bkn-card__body {
                            display: flex;
                            flex-direction: column;
                            gap: 0px;
                            width: 100%;
                        }
                            .bkn-card__name {
                                margin: 0;
                                padding: 0 16px;
                                overflow: hidden;
                                font-size: 18px;
                                font-weight: 500;
                                line-height: 1.5;
                                color: #533e20;
                                text-overflow: ellipsis;
                                white-space: nowrap;
                            }
                            .bkn-card__price-row {
                                padding: 0 16px;
                                margin-bottom: 7px;
                                display: flex;
                                justify-content: space-between;
                                align-items: baseline;
                            }
                            .bkn-card__price {
                                font-size: 16px;
                                font-weight: 500;
                                display: flex;
                                align-items: end;
                            }
                            .bkn-card__pricechange {
                                font-weight: 500;
                                font-size: 16px;
                                color: #FF9797;
                            }
                                .bkn-card__price span {
                                    margin: 0;
                                    font-family: "Palanquin", sans-serif;
                                    font-size: 32px;
                                    font-weight: 700;
                                    line-height: 1;
                                    color: #ef5350;
                                    margin-right: 4px;
                                }
                            .bkn-card__meta {
                                display: flex;
                                flex-direction: column;
                                gap: 6px;
                                padding: 12px 16px;
                                border-radius: 4px;
                                background-color: #fffdf4;
                            }
                                .bkn-card__meta-item {
                                    margin: 0;
                                    overflow: hidden;
                                    font-size: 16px;
                                    font-weight: 500;
                                    line-height: 1.2;
                                    color: #9d8a70;
                                    text-overflow: ellipsis;
                                    white-space: nowrap;
                                }
                                .favorite__icon {
                                    background: url(/images/top/favorite-icon.svg) no-repeat center / cover;
                                    display: block;
                                    width: 69px;
                                    height: 69px;
                                    position: absolute;
                                    top: 0;
                                    right: 0;
                                    z-index: 2;
                                }
                                .favorite__icon.is-checked {
                                    background: url(/images/top/favorite-icon-on.svg) no-repeat center / cover;
                                }
                                                                
                        .bkn-card--member {
                            width: 360px;
                            height: 450px;
                        }
                            .bkn-card__member {
                                position: relative;
                                width: 360px;
                                height: 450px;
                            }
                                .bkn-card__member-bg {
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    display: block;
                                    width: 100%;
                                    height: 100%;
                                    object-fit: cover;
                                    border-radius: 20px;
                                }
                                .bkn-card__member-content {
                                    position: relative;
                                    z-index: 1;
                                    display: flex;
                                    flex-direction: column;
                                    align-items: center;
                                    justify-content: center;
                                    gap: 20px;
                                    width: 100%;
                                    height: 100%;
                                    padding: 20px;
                                    box-sizing: border-box;
                                }
                                    .bkn-card__member-head {
                                        display: flex;
                                        flex-direction: column;
                                        align-items: center;
                                        gap: 12px;
                                    }
                                        .bkn-card__member-icon {
                                            display: block;
                                            width: 66px;
                                            height: auto;
                                        }
                                        .bkn-card__member-text {
                                            display: flex;
                                            flex-direction: column;
                                            align-items: center;
                                            gap: 8px;
                                        }
                                            .bkn-card__member-ttl {
                                                margin: 0;
                                                font-size: 32px;
                                                font-weight: 500;
                                                line-height: 1;
                                                color: #533e20;
                                            }
                                            .bkn-card__member-lead {
                                                margin: 0;
                                                font-size: 16px;
                                                font-weight: 500;
                                                line-height: 1;
                                                color: #533e20;
                                            }
                                    .bkn-card__member-btns {
                                        display: flex;
                                        flex-direction: column;
                                        gap: 8px;
                                        width: 220px;
                                    }
                                        .bkn-card__member-btn {
                                            display: flex;
                                            align-items: center;
                                            justify-content: center;
                                            gap: 4px;
                                            height: 50px;
                                            padding: 10px;
                                            border: 1px solid transparent;
                                            border-radius: 9999px;
                                            font-size: 18px;
                                            font-weight: 500;
                                            line-height: 1;
                                            text-decoration: none;
                                            box-sizing: border-box;
                                            transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
                                        }
                                        .bkn-card__member-btn--register {
                                            background-color: #5fc7de;
                                            border-color: #5fc7de;
                                            color: #fff;
                                        }
                                        .bkn-card__member-btn--register:hover {
                                            background-color: #fff;
                                            color: #5fc7de;
                                        }
                                        .bkn-card__member-btn--login {
                                            border-color: #5fc7de;
                                            background-color: #fff;
                                            color: #5fc7de;
                                        }
                                        .bkn-card__member-btn--login:hover {
                                            background-color: #5fc7de;
                                            color: #fff;
                                        }
                                            .bkn-card__member-btn-icon {
                                                display: block;
                                                width: 20px;
                                                height: 20px;
                                                flex-shrink: 0;
                                            }
                                            .bkn-card__member-btn-icon--on {
                                                display: none;
                                            }
                                            .bkn-card__member-btn:hover .bkn-card__member-btn-icon--off {
                                                display: none;
                                            }
                                            .bkn-card__member-btn:hover .bkn-card__member-btn-icon--on {
                                                display: block;
                                            }
                                            .bkn-card__member-btn-txt {
                                                transition: color 0.25s ease;
                                            }
            .bkn-rail__footer {
                width: 1010px;
                display: flex;
                align-items: center;
                gap: 32px;
            }
            .bkn-rail--right .bkn-rail__footer {
                width: 1010px;
                margin-left: auto;
            }
                .bkn-rail__controls {
                    display: flex;
                    align-items: center;
                    gap: 16px;
                }
                .bkn-rail__controls--empty {
                    flex: 1;
                }
                    .bkn-rail__arrow {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 37px;
                        height: 37px;
                        padding: 0;
                        border: none;
                        border-radius: 9999px;
                        background-color: #fff4e3;
                        cursor: pointer;
                        appearance: none;
                        transition: background-color 0.25s ease;
                    }
                    .bkn-rail__arrow::before {
                        content: '';
                        display: block;
                        width: 10px;
                        height: 10px;
                        border-top: 1px solid #fe9224;
                        border-right: 1px solid #fe9224;
                        box-sizing: border-box;
                        transition: border-color 0.25s ease;
                    }
                    .bkn-rail__arrow:hover {
                        background-color: #fe9224;
                    }
                    .bkn-rail__arrow:hover::before {
                        border-top-color: #fff4e3;
                        border-right-color: #fff4e3;
                    }
                    .bkn-rail__arrow--prev::before {
                        transform: rotate(-135deg);
                        margin-left: 3px;
                    }
                    .bkn-rail__arrow--next::before {
                        transform: rotate(45deg);
                        margin-right: 3px;
                    }
                    .section__wrap--new .bkn-rail__pagination,
                    .section__wrap--recommend .bkn-rail__pagination{
                        display: flex;
                        align-items: center;
                        gap: 16px;
                        width: auto;
                    }
                    [class*="section__wrap"] .bkn-rail__pagination .swiper-pagination-bullet {
                        width: 10px;
                        height: 10px;
                        margin: 0;
                        background-color: #ffd7a8;
                        opacity: 1;
                        border-radius: 50%;
                    }
                    [class*="section__wrap"] .bkn-rail__pagination .swiper-pagination-bullet-active {
                        background-color: #fe9224;
                        width: 13px;
                        height: 13px;
                    }
                .section__btn--bkn-rail {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 14px;
                    flex-shrink: 0;
                    width: 190px;
                    height: 40px;
                    margin-left: auto;
                    border-radius: 9999px;
                    background-color: #fff4e3;
                    text-decoration: none;
                    transition: background-color 0.25s ease;
                    position: relative;
                }
                    .section__btn-txt--bkn-rail {
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 1.5;
                        color: #533e20;
                        white-space: nowrap;
                    }
                    .section__btn-icon--bkn-rail {
                        display: block;
                        width: 19px;
                        height: 19px;
                        position: absolute;
                        flex-shrink: 0;
                        right: 10px;
                    }


/*//////////////////// column ////////////////////*/
.section__wrap--column {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
    .column__bg {
        position: absolute;
        top: 0;
        left: 50%;
        z-index: 0;
        width: 1920px;
        height: 709px;
        max-width: none;
        transform: translateX(-50%);
        pointer-events: none;
    }
    .column__character {
        position: absolute;
        top: -1px;
        left: calc(50% - 354px);
        z-index: 2;
        display: block;
        width: 130px;
        height: 152px;
        pointer-events: none;
    }
    .section__inner--column {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        width: 1140px;
        margin: 0 auto;
    }
        .section__head--column {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }
            .section__ttl--column {
                margin: 0;
                font-size: 48px;
                font-weight: 700;
                line-height: 1;
                letter-spacing: 0.03em;
                color: #533e20;
                text-align: center;
            }
            .section__en-ttl--column {
                margin: 0;
                font-size: 24px;
                font-weight: 500;
                line-height: 1;
                letter-spacing: 0.2em;
                color: #fe9224;
                text-align: center;
            }
        .column__content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            width: 100%;
        }
            .column__tabs {
                display: flex;
                gap: 3px;
                align-items: center;
                width: 100%;
                padding: 4px;
                border-radius: 9999px;
                background-color: #ffeded;
                box-sizing: border-box;
            }
                .column__tab {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex: 1 1 0;
                    min-width: 0;
                    height: 45px;
                    padding: 10px;
                    border: none;
                    border-radius: 9999px;
                    background-color: transparent;
                    font-size: 16px;
                    font-weight: 700;
                    line-height: 1;
                    color: #533e20;
                    white-space: nowrap;
                    cursor: pointer;
                    appearance: none;
                }
                .column__tab.is-active {
                    background-color: #ff9797;
                    color: #fff;
                }
            .column__panel {
                display: none;
                width: 100%;
            }
            .column__panel.is-active {
                display: block;
            }
                .column__track {
                    width: 100vw;
                    margin-left: calc(50% - 50vw);
                    overflow: hidden;
                }
                    .column__swiper {
                        overflow: hidden;
                        padding-bottom: 30px;
                        padding-left: max(20px, calc(50% - 570px));
                        padding-right: max(20px, calc(50% - 570px));
                        box-sizing: border-box;
                    }
                    .column__swiper.is-static .swiper-wrapper {
                        display: flex;
                        gap: 30px;
                        transform: none !important;
                    }
                        .column-card {
                            width: 380px;
                            height: auto;
                            box-sizing: border-box;
                        }
                            .column-card__link {
                                display: flex;
                                flex-direction: column;
                                gap: 12px;
                                box-sizing: border-box;
                                width: 380px;
                                padding: 20px;
                                border-radius: 20px;
                                background-color: #fff;
                                box-shadow: 0 8px 24px rgba(83, 62, 32, 0.08);
                                text-decoration: none;
                                color: inherit;
                            }
                            .column-card__img {
                                position: relative;
                                width: 100%;
                                height: 255px;
                                border-radius: 20px;
                                overflow: hidden;
                                background-color: #fffdf4;
                            }
                                .column-card__photo-wrap {
                                    width: 100%;
                                    height: 100%;
                                    overflow: hidden;
                                }
                                .column-card__photo-wrap img {
                                    display: block;
                                    width: 100%;
                                    height: 100%;
                                    object-fit: contain;
                                    object-position: center;
                                    transform-origin: center center;
                                    transition: transform 0.4s ease;
                                }
                                .column-card__link:hover .column-card__photo-wrap img {
                                    transform: scale(1.1);
                                }
                                .column-card__date {
                                    position: absolute;
                                    left: 20px;
                                    bottom: 20px;
                                    z-index: 2;
                                    display: inline-flex;
                                    align-items: center;
                                    justify-content: center;
                                    margin: 0;
                                    padding: 6px 16px;
                                    border-radius: 0 20px 0 20px;
                                    background-color: #fe9224;
                                    font-size: 20px;
                                    font-weight: 700;
                                    line-height: 1.4;
                                    color: #fff;
                                    white-space: nowrap;
                                }
                            .column-card__body {
                                display: flex;
                                flex-direction: column;
                                gap: 4px;
                                width: 100%;
                            }
                                .column-card__title {
                                    margin: 0;
                                    overflow: hidden;
                                    font-size: 18px;
                                    font-weight: 500;
                                    line-height: 1.5;
                                    color: #533e20;
                                    display: -webkit-box;
                                    -webkit-box-orient: vertical;
                                    -webkit-line-clamp: 2;
                                }
                                .column-card__text {
                                    margin: 0;
                                    overflow: hidden;
                                    font-size: 16px;
                                    font-weight: 500;
                                    line-height: 1.4;
                                    color: #9d8a70;
                                    display: -webkit-box;
                                    -webkit-box-orient: vertical;
                                    -webkit-line-clamp: 3;
                                }
                .column__footer {
                    display: flex;
                    align-items: center;
                    gap: 32px;
                    width: 100%;
                }
                    .column__controls {
                        display: flex;
                        align-items: center;
                        gap: 16px;
                    }
                    .column__controls--empty {
                        flex: 1;
                    }
                        .column__arrow {
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            width: 37px;
                            height: 37px;
                            padding: 0;
                            border: none;
                            border-radius: 9999px;
                            background-color: #fff4e3;
                            cursor: pointer;
                            appearance: none;
                            transition: background-color 0.25s ease;
                        }
                        .column__arrow::before {
                            content: '';
                            display: block;
                            width: 7px;
                            height: 7px;
                            border-top: 2px solid #fe9224;
                            border-right: 2px solid #fe9224;
                            box-sizing: border-box;
                            transition: border-color 0.25s ease;
                        }
                        .column__arrow:hover {
                            background-color: #fe9224;
                        }
                        .column__arrow:hover::before {
                            border-top-color: #fff4e3;
                            border-right-color: #fff4e3;
                        }
                        .column__arrow--prev::before {
                            transform: rotate(-135deg);
                            margin-left: 3px;
                        }
                        .column__arrow--next::before {
                            transform: rotate(45deg);
                            margin-right: 3px;
                        }
                        .section__wrap--column .column__pagination {
                            display: flex;
                            align-items: center;
                            gap: 8px;
                            width: auto;
                        }
                        .column__pagination .swiper-pagination-bullet {
                            width: 8px;
                            height: 8px;
                            margin: 0 !important;
                            background-color: #ffd7a8;
                            opacity: 1;
                            border-radius: 50%;
                        }
                        .column__pagination .swiper-pagination-bullet-active {
                            background-color: #fe9224;
                        }
                    .section__btn--column {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        gap: 14px;
                        flex-shrink: 0;
                        width: 190px;
                        height: 40px;
                        margin-left: auto;
                        border-radius: 9999px;
                        background-color: #fff4e3;
                        text-decoration: none;
                        transition: background-color 0.25s ease;
                        position: relative;
                    }
                        .section__btn-txt--column {
                            font-size: 16px;
                            font-weight: 500;
                            line-height: 1.5;
                            color: #533e20;
                            white-space: nowrap;
                        }
                        .section__btn-icon--column {
                            display: block;
                            width: 19px;
                            height: 19px;
                            position: absolute;
                            flex-shrink: 0;
                            right: 10px;
                        }


/*//////////////////// company ////////////////////*/
.section__wrap--company {
    position: relative;
    padding: 50px 0 95px;
    overflow: hidden;
}
    .company__bg {
        position: absolute;
        top: 50px;
        left: 50%;
        z-index: 0;
        width: 1920px;
        height: 638px;
        max-width: none;
        transform: translateX(-50%);
        pointer-events: none;
    }
    .company__character {
        position: absolute;
        top: 88px;
        left: calc(50% + 505px);
        z-index: 2;
        display: block;
        width: 117px;
        height: 155px;
        pointer-events: none;
    }
    .section__inner--company {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        width: 1140px;
        margin: 0 auto;
    }
        .section__head--company {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }
            .section__ttl--company {
                margin: 0;
                font-size: 48px;
                font-weight: 700;
                line-height: 1;
                letter-spacing: 0.03em;
                color: #533e20;
                text-align: center;
            }
            .section__en-ttl--company {
                margin: 0;
                font-size: 24px;
                font-weight: 500;
                line-height: 1;
                letter-spacing: 0.2em;
                color: #fe9224;
                text-align: center;
            }
        .company__content {
            display: flex;
            gap: 60px;
            align-items: center;
            width: 100%;
        }
            .company__img {
                flex-shrink: 0;
                width: 550px;
                height: 414px;
                border-radius: 20px;
                overflow: hidden;
                background-color: #fffdf4;
            }
                .company__photo {
                    display: block;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            .company__list {
                display: flex;
                flex: 1 1 auto;
                flex-direction: column;
                gap: 12px;
                min-width: 0;
                margin: 0;
                padding: 0;
            }
                .company__item {
                    display: flex;
                    gap: 30px;
                    align-items: flex-start;
                    width: 100%;
                    margin: 0;
                    padding: 0 0 12px;
                    border-bottom: 1px solid #edeaea;
                    box-sizing: border-box;
                }
                    .company__label {
                        flex-shrink: 0;
                        width: 113px;
                        margin: 0;
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 1.6;
                        color: #81bc39;
                    }
                    .company__value {
                        flex: 1 1 auto;
                        min-width: 0;
                        margin: 0;
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 1.6;
                        color: #533e20;
                    }
                    .company__value a {
                        font-size: 15px;
                        font-weight: 500;
                        line-height: 1.6;
                    }
