.al-c {
    text-align: center!important;
}

.benefits-area {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #F9F7F1;
    text-align: center;
    margin-top: 50px;
    .text {
        display: inline-block;
        position: relative;
        padding: 0px 60px;
        white-space: nowrap;
        font-weight: 600;
        font-size: clamp(0.6rem, 0.6rem + 1vw, 1.6rem);
        letter-spacing: 0.05em;
    }
    .text::before,
    .text::after {
        content: "";
        position: absolute;
        top: 0px;
        display: block;
        width: 2px;
        height: 100%;
        background: #333333;
    }
    .text::before {
        left: 29px;
        transform: rotate(-30deg)
    }
    .text::after {
        right: 29px;
        transform: rotate(30deg)
    }
    .benefits-link {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px 0;
        .tconb-link {
            position: relative;
            margin-top: 10px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--orange-color-02);
            font-size: clamp(1.125rem, 0.75rem + 1vw, 1.375rem);
            font-weight: 700;
            color: #fff;
            border-radius: 5rem;
        }
        @media screen and (max-width: 1024px) {
            .tconb-link {
                width: 100%;
            }
        }
        .logo-texture {
            position: absolute;
            top: 50%;
            left: 14px;
            transform: translateY(-50%);
            width: auto;
            height: 80%;
        }
        .direction-area {
            position: absolute;
            top: 50%;
            right: 14px;
            transform: translateY(-50%);
            width: 53px;
            height: auto;
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #fff;
            border-radius: 5rem;
        }
        a {
            width: calc(96% / 2);
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }
    a.cta {
        display: block;
        max-width: 70%;
        text-align: center;
        margin: 30px auto 0;
        img {
            max-width: 100%;
        }
    }
    .notes {
        font-size: 13px;
        margin-top: 16px;
        font-weight: 700;
        text-align: center;
    }
    @media screen and (max-width: 1024px) {
        a.cta {
            max-width: 100%;
            margin: 30px 0 0 10px;
        }
    }
}

@media screen and (max-width: 600px) {
    .benefits-area {
        .text {
            padding: 0px 30px;
        }
        .text::before,
        .text::after {}
        .text::before {
            left: 0px;
        }
        .text::after {
            right: 0px;
        }
        .benefits-link {
            .logo-texture {
                height: 60%;
                opacity: .8;
            }
            .direction-area {
                right: 14px;
                width: 40px;
                padding: 10px;
            }
        }
    }
}

.strength-heading {
    position: relative;
    .strength {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 200px;
        z-index: -1;
    }
    .strength.hig {
        z-index: 2;
        width: 220px;
        right: 50px;
    }
    @media screen and (max-width: 600px) {
        .strength,
        .strength.hig {
            width: 110px;
            right: -15px;
        }
    }
}

.page-heading {
    text-align: center;
    span {
        color: var(--orange-color-02);
        font-weight: 600;
        font-size: 1.2em;
    }
    h2 {
        font-size: clamp(1.5rem, 1.031rem + 1.5vw, 2.5rem);
        font-weight: 600;
        margin: 10px 0 0;
        padding-bottom: 50px;
        position: relative;
        z-index: 9;
    }
    img {
        width: 150px;
        margin-bottom: 15px;
    }
}

.strength-area {
    margin-top: var(--header-height);
    padding-top: 80px;
    h3 {
        padding: 10px 5px;
        background: linear-gradient(to bottom right, #FF8343 40%, var(--orange-color-02) 50%);
        font-size: clamp(0.5rem, 0.8rem + 1.25vw, 1.8rem);
        color: #fff;
        font-weight: 600;
        font-family: "Manrope", sans-serif;
        letter-spacing: .05em;
        margin-bottom: 30px;
        span {
            font-size: .5em;
            top: 5px;
            vertical-align: 25%;
        }
        span.no {
            font-weight: 400;
            letter-spacing: .1em;
            font-size: 1.3em;
            line-height: 0.5;
            padding-left: 5px;
            vertical-align: -15%;
        }
    }
    .strength-box {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 40px;
        p {
            width: 78%;
            height: auto;
            padding-right: 20px;
            line-height: 2;
            margin-bottom: 15px;
        }
        img {
            max-width: 300px;
            width: 22%;
            height: auto;
            display: flex;
            justify-content: end;
            border-radius: 10px;
        }
        @media screen and (max-width: 600px) {
            p {
                width: 100%;
                padding-right: 0px;
            }
            img {
                max-width: 100%;
                width: 100%;
            }
        }
    }
}

.show-area {
    padding-top: 60px;
}

.staff-area {
    border-top: solid 2px var(--orange-color-02);
    border-bottom: solid 2px var(--orange-color-02);
    padding-top: 60px;
    padding-bottom: 80px;
    background-color: #F9F7F1;
    text-align: center;
    margin-top: 30px;
    background-image: url(img/staff-back.webp) !important;
    background-size: 100% auto !important;
    /* 横幅100%、縦は画像サイズそのまま */
    background-position: center top !important;
    background-repeat: repeat-y;
    overflow: hidden;
    .splide__slide img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        border-radius: 10px 10px 0 0;
    }
    .splide__slide {
        text-align: left;
        div.staff {
            background: #fff;
            padding: 28px 20px 15px;
            border-radius: 10px;
            h3 {
                font-weight: 600;
                font-size: 1.1em;
                margin-bottom: 10px;
                position: relative;
            }
            h3:before {
                content: '';
                position: absolute;
                top: -28px;
                display: inline-block;
                width: 60px;
                height: 8px;
                left: 0%;
                background-color: var(--orange-color-02);
            }
            @media screen and (max-width: 600px) {
                h3:before {
                    top: -20px;
                    width: 50px;
                    height: 7px;
                }
            }
            p {
                line-height: 1.4;
                font-size: 1.5em;
                span {
                    font-size: .55em;
                }
            }
        }
    }
    .splide__track {
        max-width: 1000px;
        margin: auto;
        overflow: visible;
    }
}

@media screen and (min-width: 1200px) {
    .about .staff-back {
        margin-right: calc(50% - 50vw)!important;
        margin-left: calc(50% - 50vw)!important;
        margin-left: 0;
    }
    .products .staff-back {
        margin-right: calc(50% - 50vw)!important;
        margin-left: calc(50% - 50vw)!important;
        margin-left: 0;
    }
}

@media screen and (max-width: 600px) {
    .staff-area {
        margin-top: 0;
        padding-bottom: 30px;
        .splide__slide {
            div {
                padding: 20px 10px 10px;
                h3 {
                    font-size: 15px;
                }
                p {
                    font-size: 1.15em;
                    span {
                        font-size: .6em;
                    }
                }
            }
        }
    }
}

.showroom-box {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 20px 15px;
    background: #fff;
    border: solid 2px var(--orange-color-02);
    border-radius: 12px;
    .room {
        width: 50%;
        height: auto;
        display: block;
    }
    img {
        width: 50%;
        height: 100%;
        display: flex;
        justify-content: end;
        border-radius: 10px;
    }
    h3 {
        font-weight: 600;
        font-size: clamp(1.5rem, 1.031rem + 1.1vw, 1.813rem);
        line-height: 1.35;
        margin-bottom: 15px;
    }
    .equip {
        width: 20%;
        display: inline-block;
        text-align: center;
        border: solid 2px var(--orange-color-02);
        border-radius: 6px;
        margin-right: 5px;
        font-size: 50px;
        font-family: "Manrope", sans-serif;
        color: var(--orange-color-02);
        margin-top: 23px;
        .hed {
            background: var(--orange-color-02);
            color: #fff;
            display: block;
            padding: 5px 0 2px;
            font-size: 17px;
        }
        .vertical {
            -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
            font-size: 17px;
            margin-left: -8px;
            letter-spacing: 0.05em;
        }
    }
    a {
        display: inline-block;
        background: var(--orange-color-02);
        border-radius: 50px;
        color: #fff;
        padding: 8px 30px;
        margin-top: 20px;
    }
    dl {
        margin-bottom: 7px;
    }
    dt {
        font-size: 15px;
        display: inline-block;
        width: 18%;
        margin-right: 12px;
        text-align: center;
        background: var(--orange-color-02);
        color: #fff;
        border-radius: 4px;
        padding: 5px 2px;
    }
    dd {
        vertical-align: text-top;
        display: inline-block;
        width: 78%;
    }
    @media screen and (max-width: 1024px) {
        .equip {
            width: 20%;
            font-size: 37px;
            .hed {
                font-size: 14px;
            }
            .vertical {
                font-size: 12px;
            }
        }
        dt {
            width: 16%;
        }
    }
    @media screen and (max-width: 600px) {
        .room {
            width: 100%;
        }
        img {
            width: 100%;
        }
        dl {
            font-size: 14px;
        }
        dt {
            font-size: 14px;
            width: 25%;
        }
        dd {
            width: 68%;
        }
        a {
            margin-bottom: 30px;
        }
    }
}

@media screen and (min-width: 600px) {
    .pc-none {
        display: none!important;
    }
    .showroom-box {
        padding: 20px 30px;
    }
}

.lineup-hed {
    margin-top: calc((var(--header-height)) + 30px);
    position: relative;
    .lineup-slide {
        position: absolute;
        width: auto;
        height: 100%;
        z-index: 2;
        left: 50%;
        transform: translateX(-460px);
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.9);
        .point-list {
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            gap: 5px;
            .point-item {
                font-size: clamp(0.938rem, 0.703rem + 0.63vw, 1.125rem);
                font-weight: 700;
                color: #fff;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 5rem;
                line-height: 1;
                width: 32%;
                height: auto;
                aspect-ratio: 1/1;
                background: linear-gradient(142deg, #FF8343 40.47%, #FF6817 47.06%);
            }
        }
        .heading {
            margin-top: 8px;
            font-size: clamp(1.5rem, 1.109rem + 1.04vw, 1.813rem);
            font-weight: 700;
            line-height: 1.4;
        }
        .ls-box {
            margin-top: 8px;
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            gap: 5px;
            .label {
                text-align: center;
                width: 100%;
                height: auto;
                font-size: clamp(1rem, 0.844rem + 0.42vw, 1.125rem);
                line-height: 1.4;
                font-weight: 700;
                color: #fff;
                background: linear-gradient(142deg, #FF8343 40.47%, #FF6817 47.06%);
            }
            .ls-price {
                margin-top: 5px;
                width: 100%;
                height: auto;
                display: flex;
                align-items: end;
                justify-content: center;
                .big {
                    font-size: clamp(4.063rem, 2.969rem + 2.92vw, 4.938rem);
                    line-height: .8;
                    font-weight: 700;
                    color: var(--orange-color-02);
                }
                .mini-wrap {
                    display: flex;
                    flex-direction: column;
                    gap: 2px;
                    font-size: clamp(1.25rem, 0.547rem + 1.88vw, 1.813rem);
                    font-weight: 700;
                    color: var(--orange-color-02);
                    line-height: 1;
                }
            }
        }
    }
    .lineup-splide {
        overflow: hidden;
        .splide__track {
            overflow: visible;
            max-width: 1100px;
            width: 100%;
            height: 100%;
            margin: auto;
        }
        .splide__slide {
            width: 100%;
            height: auto;
            img {
                width: 100%;
                height: auto;
                aspect-ratio: 10 / 3.94;
                object-fit: cover;
            }
        }
    }
}

@media screen and (max-width: 1100px) {
    .lineup-hed {
        .lineup-slide {
            left: 5%;
            transform: translateX(0);
        }
        .lineup-splide {
            height: 45vh;
            .splide__slide {
                img {
                    width: 100%;
                    height: 100%;
                    aspect-ratio: unset;
                }
            }
        }
    }
}

@media screen and (max-width: 600px) {
    .lineup-hed {
        margin-top: var(--header-height);
        margin-bottom: 30px;
        .lineup-slide {
            padding: 20px;
            .point-list {
                gap: 5px;
            }
            .heading {
                font-size: 20px;
            }
            .ls-box {
                .label {
                    font-size: 16px;
                    line-height: 1.8;
                }
                .ls-price {
                    .big {
                        font-size: 50px;
                    }
                    .mini-wrap {
                        font-size: 16px;
                    }
                }
            }
        }
        .lineup-splide {
            height: 50vh;
        }
    }
}

.service-area {
    padding-top: 80px;
    .service-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px;
        div {
            width: 300px;
            text-align: center;
            transition: transform 0.3s;
            position: relative;
            p {
                position: absolute;
                bottom: 0;
                text-align: center;
                background: #fff;
                width: 100%;
                padding: 15px 10px;
                font-weight: 600;
                text-align: center;
                background: #ffffffa3;
            }
            span {
                position: absolute;
                top: -25px;
                left: -25px;
                width: 60px;
                height: auto;
                aspect-ratio: 1/1;
                font-size: clamp(1.375rem, 0.906rem + 1.25vw, 1.75rem);
                color: #fff;
                font-weight: 700;
                line-height: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 5rem;
                background-color: var(--orange-color-02);
            }
            img {
                border-radius: 10px;
                width: 100%;
                height: auto;
                aspect-ratio: 16/ 9;
                object-fit: cover;
            }
        }
    }
}

@media screen and (max-width: 1024px) {
    .service-area {
        .service-list {
            div {
                width: auto;
                flex: 1 1 calc(50% - 10px);
            }
        }
    }
}

@media screen and (max-width: 600px) {
    .service-area {
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
        .service-list {
            div {
                flex: 1 1 100%;
            }
        }
    }
}

.highlight-box {
    border-radius: 5px;
    background: #fff;
    border: solid 2px var(--orange-color-02);
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
    padding: 40px 50px 25px;
    align-items: center;
    .highlight-heading {
        position: absolute;
        top: 0;
        left: 0;
        background: var(--orange-color-02);
        color: #fff;
        display: inline-block;
        border-radius: 0 0 3px 0;
        padding: 6px 20px;
    }
    .highlight-text {
        width: calc(60% - 12.5px);
        text-align: left;
        h3 {
            font-weight: 600;
            font-size: clamp(1.5rem, 1.031rem + 1.1vw, 1.813rem);
            line-height: 1.35;
            margin-bottom: 20px;
            color: var(--orange-color-02);
        }
        dl {
            display: flex;
            margin-bottom: 30px;
            line-height: 1.5;
        }
        dt {
            width: 45%;
            font-size: 1.1em;
            .label {
                border: solid 1px;
                font-size: .7em;
                padding: 0 7px;
                margin-right: 8px;
            }
        }
        dd {
            width: 55%;
            font-size: .9em;
        }
        p {
            line-height: 1.8;
        }
    }
    .highlight-image {
        width: calc(40% - 12.5px);
        img {
            width: 100%;
            height: auto;
        }
    }
    .highlight-points {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px;
        div {
            width: 90px;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 10px;
            img {
                width: 100%;
                height: auto;
            }
            p {
                font-size: 14px;
                font-weight: 700;
                color: var(--orange-color-02);
            }
        }
    }
}

@media screen and (max-width: 600px) {
    .highlight-box {
        padding: 50px 15px 25px;
        .highlight-text {
            width: 100%;
            -ms-flex-order: 2;
            order: 2;
            dl {
                display: block;
            }
            dt {
                width: 100%;
                margin-bottom: 20px;
            }
            dd {
                width: 100%;
            }
        }
        .highlight-image {
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
        .highlight-points {
            gap: 15px;
            -ms-flex-order: 3;
            order: 3;
            div {
                width: auto;
                flex-direction: row;
                align-items: center;
                flex-wrap: wrap;
                gap: 10px;
                img {
                    width: 45px;
                    height: auto;
                }
                p {
                    font-size: 14px;
                    font-weight: 700;
                }
            }
        }
    }
}

.our-area {
    background: #fff;
    padding: 80px 0px 0px;
    .tc-content-link {
        display: block;
        width: 100%;
        height: auto;
        padding: 5px;
        border-radius: 5px;
        border: 1px solid var(--black-color);
        .tc-content-thumbnail {
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
            object-fit: cover;
        }
        .tc-content-txtarea {
            margin-top: 18px;
            padding: 0 15px 15px 15px;
            .tcct-heading-area {
                display: flex;
                flex-direction: column-reverse;
                gap: 15px;
                h3 {
                    font-size: clamp(1.25rem, 0.875rem + 1vw, 1.5rem);
                    line-height: 1.6;
                    font-weight: 700;
                }
                .area {
                    font-size: clamp(0.875rem, 0.688rem + 0.5vw, 1rem);
                    line-height: 1;
                    font-weight: 700;
                }
            }
            .tcct-detail {
                margin-top: 20px;
                width: 100%;
                height: auto;
                display: flex;
                justify-content: space-between;
                align-items: end;
                .tccd-price {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                    dt {
                        font-size: 14px;
                        font-weight: 500;
                    }
                    dd {
                        font-size: clamp(1.125rem, 0.938rem + 0.5vw, 1.25rem);
                        line-height: 1;
                        font-weight: 700;
                    }
                }
                .more-btn-area {
                    .more-btn {
                        font-size: var(--text-font);
                        font-weight: 500;
                        line-height: 2;
                        display: flex;
                        flex-direction: row;
                        align-items: center;
                        gap: 12px;
                        svg {
                            width: 45px;
                            height: auto;
                            aspect-ratio: 1 / 1;
                            border-radius: 5rem;
                            border: 1px solid var(--black-color);
                            padding: 12px;
                        }
                    }
                }
            }
        }
    }
    .te-btn {
        margin-top: 30px;
    }
}

.process-area {
    padding-bottom: 80px;
    background: #F9F7F1;
    .step-flow {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .step {
        flex: 1 1 calc(20% - 10px);
        background: #fff;
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        box-sizing: border-box;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
        img {
            max-width: 120px;
            height: auto;
            margin-top: 15px;
        }
        .step-header {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .step-number {
            text-align: center;
            font-weight: bold;
            color: var(--orange-color-02);
            position: relative;
        }
        .step-label {
            display: block;
            font-size: 15px;
            line-height: 1;
            letter-spacing: 0.06em;
        }
        .step-num {
            font-size: 32px;
            line-height: 1;
            position: relative;
            display: inline-block;
            letter-spacing: 0.06em;
        }
        .step-text {
            text-align: center;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.05em;
            line-height: 1.4;
        }
    }
    .arrow {
        align-self: center;
        font-size: 24px;
        color: black;
        flex: 0 0 auto;
    }
    @media screen and (max-width: 600px) {
        .step {
            flex: 1 1 calc(50% - 20px);
            /* SP: 2列 */
            .step-label {
                font-size: 12px;
            }
            .step-num {
                font-size: 26px;
            }
            .step-text {
                text-align: center;
                font-size: 10px;
                font-weight: 600;
                letter-spacing: 0.05em;
                line-height: 1.4;
            }
        }
        .arrow {
            display: none;
        }
    }
}

.quo-area {
    text-align: center;
    padding: 30px 0;
    margin: 0 auto;
    background: #4457B9;
}

.staff-area.products {
    border: none;
    background: none;
    background-image: none!important;
}

.product-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    border: 3px solid var(--orange-color-02);
    border-radius: 16px;
    overflow: hidden;
    font-family: "Helvetica", sans-serif;
    background: #fff;
    width: 100%;
    height: 100%;
}

.product-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.product-content {
    padding: 15px;
    position: relative;
}

.brand-label {
    display: inline-block;
    font-size: 10px;
    border: 1px solid #999;
    padding: 2px 8px;
    border-radius: 5px;
    margin-bottom: 8px;
}

.product-title {
    position: relative;
    padding: 0;
    .discount {
        float: right;
        width: 60px;
        height: 60px;
        border: 2px solid var(--orange-color-02);
        border-radius: 50%;
        color: var(--orange-color-02);
        padding: 10px;
        border-radius: 8px;
        font-weight: bold;
        font-size: 35px;
        line-height: 1;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-family: "Manrope", sans-serif;
    }
    .discount span {
        font-size: 12px;
        line-height: 1;
    }
}

.product-title h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.product-title h3:before {
    display: none;
}

.description {
    font-size: 14px;
    margin: 10px 0;
    line-height: 1.5;
}

.price-box {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.price-label {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff7a00, #ff6600);
    /* オレンジグラデ */
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
}

.price {
    color: var(--orange-color-02);
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    font-size: 0;
    font-family: "Manrope", sans-serif;
    .big {
        font-size: 48px;
        line-height: 1;
    }
    .mini-wrap {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-left: 2px;
        height: 100%;
        .sup {
            font-size: 20px;
            line-height: 1;
            transform: translateY(0px);
        }
        .sub {
            font-size: 14px;
            line-height: 1;
            transform: translateY(1px);
        }
    }
}

.duration {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.duration-label {
    background-color: #fff;
    border: solid 1px var(--orange-color-02);
    color: var(--orange-color-02);
    font-size: 12px;
    padding: 3px;
    border-radius: 5px;
    margin-right: 8px;
}

.days {
    font-size: 38px;
    font-weight: bold;
    color: var(--orange-color-02);
    font-family: "Manrope", sans-serif;
    span {
        font-size: 14px;
    }
}

.btn-detail {
    display: inline-block;
    margin-top: 16px;
    padding: 2px 10px 2px 12px;
    background-color: var(--orange-color-02);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px;
    line-height: 1;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 12px;
    .discount {
        width: 60px;
        height: 60px;
        border: 2px solid var(--orange-color-02);
        border-radius: 50%;
        color: var(--orange-color-02);
        padding: 10px;
        border-radius: 8px;
        font-weight: bold;
        font-size: 35px;
        line-height: 1;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-family: "Manrope", sans-serif;
    }
    .discount span {
        font-size: 12px;
        line-height: 1;
    }
}

.product-header {
    .maker {
        display: inline-block;
        font-size: 10px;
        border: 1px solid #999;
        padding: 2px 8px;
        border-radius: 5px;
        margin-bottom: 8px;
        margin-right: 10px;
    }
    .name {
        font-size: 28px;
        font-weight: bold;
        margin: 0;
    }
}

.item-area {
    padding-top: calc((var(--header-height)) + 30px);
    background: #fff;
    /* padding-top: 80px; */
    padding-bottom: 40px;
}

.product-box {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px 0;
    .description {
        border-bottom: dashed 2px var(--orange-color-02);
        padding-bottom: 20px;
        margin-bottom: 20px;
        margin-top: 0;
    }
    .price {
        .big {
            font-size: 70px;
            line-height: 1;
        }
        .mini-wrap {
            .sup {
                font-size: 30px;
            }
            .sub {
                font-size: 24px;
            }
        }
    }
    .product-left {
        width: calc(50% - 20px);
    }
    .product-image {
        width: calc(50% - 20px);
        img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }
    }
}

@media screen and (max-width: 600px) {
    .product-box {
        gap: 20px;
        .product-left {
            width: 100%;
        }
        .product-image {
            width: 100%;
        }
    }
}

.recommend {
    position: relative;
    background-color: #fff;
    padding: 20px 0 60px;
    overflow: hidden;
    .bg-shape {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #ff8a33;
        clip-path: polygon(0 20%, 50% 0%, 100% 20%, 100% 100%, 0 100%);
        z-index: 0;
    }
    .recommend-inner {
        position: relative;
        z-index: 1;
        max-width: 1000px;
        margin: 0 auto;
        text-align: center;
    }
    .heading {
        color: white;
        margin-bottom: 20px;
        position: relative;
        h2 {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: bold;
            img {
                width: 45px;
                margin-right: 10px;
            }
        }
    }
    @media (max-width: 600px) {
        .bg-shape {
            clip-path: polygon(0 50px, 50% 0%, 100% 50px, 100% 100%, 0 100%);
        }
        .heading {
            h2 {
                font-size: 24px;
            }
        }
    }
    .point-label {
        text-align: center;
        img {
            width: 70px;
            display: inline-block;
        }
    }
    .recommend-box {
        background: white;
        padding: 10px 20px 20px;
        border-radius: 10px;
        position: relative;
        display: inline-block;
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    @media (max-width: 600px) {
        .recommend-box {
            max-width: 90%;
        }
    }
    .recommend-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: inline-block;
        text-align: left;
        width: auto;
        li {
            font-size: 16px;
            font-weight: bold;
            border-bottom: 1px dotted #ccc;
            padding: 5px 30px;
            display: flex;
            align-items: center;
            line-height: 1.6;
        }
        @media (max-width: 600px) {
            li {
                display: list-item;
                padding: 12px 30px;
            }
        }
    }
    .check {
        img {
            width: 30px;
            padding: 10px 5px 10px 0;
        }
    }
    @media (max-width: 600px) {
        .check {
            img {
                width: 30px;
                padding: 0 5px;
            }
        }
    }
    .illust {
        position: absolute;
        bottom: -60px;
        width: 150px;
    }
    @media (max-width: 600px) {
        .illust {
            width: 70px;
        }
        .illust.left {
            left: 0px!important;
        }
        .illust.right {
            right: 0px!important;
        }
    }
    .illust.left {
        left: 0px;
    }
    .illust.right {
        right: 0px;
    }
}

.contact-area {
    padding-top: 60px;
    line-height: 1.4;
    text-align: center;
    .page-heading {
        p {
            text-align: center;
        }
        img {
            width: 60px;
        }
    }
    .contact-heading h2 {
        font-size: 22px;
        color: var(--orange-color-02);
        margin-bottom: 20px;
        padding: 0;
    }
    .contact-tel {
        margin-top: -50px;
    }
    @media (max-width: 600px) {
        .contact-tel {
            margin-top: 0px;
        }
    }
}

@media (max-width: 600px) {
    .contact-area {
        padding-top: 30px;
        .page-heading {
            p {
                text-align: center;
            }
        }
    }
}

.shop-info {
    margin-top: var(--header-height);
    padding: 40px 20px;
    text-align: center;
    .shop-box {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        border: 1px solid #000;
        max-width: 1000px;
        margin: 0 auto 20px;
        flex-wrap: wrap;
        color: #ff6600;
        font-weight: bold;
    }
    .shop-left,
    .shop-right {
        flex: 1;
        min-width: 300px;
    }
    .shop-left {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        h3 {
            font-size: 26px;
            line-height: 1.4;
            letter-spacing: 0.05em;
            text-align: left;
        }
        @media (max-width: 600px) {
            h3 {
                font-size: 24px;
            }
        }
    }
    .shop-right img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        display: block;
    }
    .shop-description {
        font-size: 15px;
        color: #333;
        max-width: 1000px;
        margin: 0 auto;
        line-height: 1.8;
        text-align: left;
    }
}

.oon-area {
    padding-top: 60px;
    .map iframe {
        max-width: 1000px;
    }
    @media (max-width: 1024px) {
        .map iframe {
            max-width: 100%;
        }
    }
    .orange {
        color: var(--orange-color-02);
    }
    .access-info {
        padding: 40px 20px;
        font-family: sans-serif;
    }
    .access-wrapper {
        display: flex;
        gap: 30px 0;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 30px;
    }
    .access-left {
        width: 45%;
        img {
            width: 100%;
            height: auto;
            aspect-ratio: 1/1;
            border-radius: 8px;
            object-fit: cover;
        }
    }
    .access-right {
        width: 54%;
    }
    .info-table {
        width: 100%;
        border: 1px solid #ccc;
        border-collapse: collapse;
        font-size: 15px;
        th,
        td {
            padding: 12px;
            border-bottom: 1px solid #ccc;
            vertical-align: middle;
            text-align: left;
        }
        th {
            width: 100px;
            white-space: nowrap;
        }
        a {
            color: #007BFF;
            text-decoration: underline;
        }
    }
    .review-img {
        max-width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 1024px) {
    .oon-area {
        .access-left {
            width: 100%;
            height: auto;
            img {
                aspect-ratio: 16 / 9;
            }
        }
        .access-right {
            width: 100%;
        }
        .info-table {
            width: 100%;
        }
    }
}

@media screen and (max-width: 600px) {
    .oon-area {
        .access-left {
            width: 100%;
            height: auto;
            img {
                aspect-ratio: 16 / 9;
            }
        }
        .access-right {
            width: 100%;
        }
        .info-table {
            font-size: 15px;
            tr {
                width: 100%;
                height: auto;
                display: flex;
                flex-direction: column;
            }
            th,
            td {
                padding: 12px;
                border-bottom: 1px solid #ccc;
                vertical-align: middle;
                text-align: left;
            }
            th {
                width: 100%;
                background-color: #ccc;
            }
        }
        .review-img {
            max-width: 100%;
            height: auto;
        }
    }
}

.oon-back {
    max-width: 1000px;
    margin: 0 auto;
}

.oon-splide {
    margin-top: 30px;
    overflow: hidden;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    .splide__track {
        /* padding-left: 0!important; */
        /* padding-right: 24vw !important; */
        overflow: visible;
        max-width: 1000px;
        margin: auto;
    }
    img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        display: block;
    }
    .splide__pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-top: 20px;
    }
    /* 各ドットのスタイル */
    .splide__pagination__page {
        width: 5px;
        height: 5px;
        padding: 0;
        background-color: var(--orange-color-02);
        border-radius: 50%;
        opacity: 1;
        transition: all 0.3s ease;
        border: none;
        aspect-ratio: 1 / 1;
        flex-shrink: 0;
    }
    @media (max-width: 600px) {
        .splide__track {
            padding-left: 10%!important;
            padding-right: 10%!important;
            margin-left: 0;
            img {
                height: 250px;
            }
        }
    }
}

h2.oon {
    font-size: 32px!important;
}

@media (max-width: 600px) {
    h2.oon {
        font-size: 20px!important;
    }
}

.exhibition-area {
    padding-top: 60px;
    .orange2 {
        color: var(--orange-color-02);
        font-size: 2em;
    }
    .item-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 40px;
        margin: 0px auto;
        max-width: 1100px;
    }
    .item {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .item-text {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    @media (max-width: 600px) {
        .item-grid {
            display: block;
            margin: 0px auto;
            max-width: 100%;
            .item-img {
                margin-bottom: 50px;
            }
        }
    }
    .item-label {
        min-width: 100px;
        text-align: center;
        span {
            display: block;
            background: #f26522;
            color: #fff;
            font-size: 14px;
            padding: 4px 10px;
            border-radius: 4px 4px 0 0;
        }
        strong {
            display: block;
            border: 2px solid #f26522;
            color: #f26522;
            font-size: 20px;
            font-weight: bold;
            padding: 30px 2px;
            border-radius: 0 0 4px 4px;
        }
    }
    .item-text p {
        font-size: 16px;
        line-height: 1.6;
    }
    .item-img img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
    }
}

.merit-area {
    padding-top: 80px;
    .house-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        background: #f9f9f9;
        padding: 0px 20px 80px;
    }
    @media (max-width: 600px) {
        .house-wrap {
            gap: 15px;
            padding: 0px 0px 20px;
        }
    }
    .house-box {
        width: 300px;
        height: 215px;
        text-align: center;
        font-weight: bold;
        color: #f26522;
    }
    @media (max-width: 600px) {
        .house-box {
            width: 45%;
            height: 125px;
        }
    }
    .house-box svg {
        width: 100%;
        height: auto;
    }
    .house-text {
        position: relative;
        top: -190px;
        /* 数字によって調整 */
        padding: 0 20px;
        font-size: 28px;
        line-height: 1.4;
    }
    .house-text span {
        font-size: 45px;
        display: block;
        margin-bottom: 5px;
    }
    @media (max-width: 600px) {
        .house-box {
            width: 45%;
            height: 125px;
        }
        .house-text {
            position: relative;
            top: -102px;
            padding: 0;
            font-size: 16px;
            line-height: 1.4;
        }
        .house-text span {
            font-size: 30px;
        }
    }
}


/* repair */

.side-cta {
    width: 200px;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    .cta-link {
        display: block;
        width: 100%;
        height: auto;
        img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }
    }
}

.side-cta.active {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 600px) {
    .side-cta {
        bottom: 10px;
        right: 10px;
        width: 130px;
    }
}

.main {
    position: relative;
    margin-top: var(--header-height);
    img {
        width: 100%;
        height: auto;
    }
    .repair-tel {
        z-index: 4;
        display: block;
        position: absolute;
        bottom: -6%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
        img {
            width: 400px;
            height: auto;
            margin: -150px auto 0;
        }
    }
    @media (max-width: 600px) {
        .repair-tel {
            img {
                width: 75%;
                height: auto;
                margin: -135px auto 0;
            }
        }
    }
}

.repair-fv {
    position: relative;
    height: calc(100vh - 180px);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden;
    img.fv-back {
        position: absolute;
        z-index: 2;
        width: auto;
        height: calc(90vh - 180px);
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -0%);
    }
    img.fv-staff {
        position: absolute;
        z-index: 3;
        bottom: 0;
        left: 3%;
        height: auto;
        width: 38%;
    }
}

@media (max-width: 1024px) {
    .repair-fv {
        height: calc(100vh - 70px);
        img.fv-back {
            position: absolute;
            z-index: 2;
            width: auto;
            height: calc(90vh - 180px);
            bottom: 0;
            left: 50%;
            transform: translate(-50%, -0%);
        }
        img.fv-staff {
            position: absolute;
            z-index: 3;
            width: 38%;
            height: auto;
            bottom: 0;
            left: 3%;
        }
    }
}

@media (max-width: 600px) {
    .repair-fv {
        height: calc(575px - 70px);
        img.fv-back {
            transform: translate(-50%, 0%);
            width: 114%;
            height: auto;
        }
        img.fv-staff {
            display: none;
        }
    }
}

.trouble {
    padding-top: 60px;
    .photo {
        max-width: 1300px;
        margin: 30px auto 90px;
        padding: 20px;
        background-size: cover;
        background-position: center;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
        c
    }
    .panel {
        margin: 5% auto;
        background: rgba(255, 255, 255, 0.85);
        max-width: 1000px;
        border-radius: 6px;
        padding: 40px;
        box-sizing: border-box;
        position: relative;
    }
    h2 {
        text-align: center;
        font-size: 28px;
        margin: 0 0 30px;
        line-height: 1.5;
        font-weight: bold;
        span {
            background: linear-gradient(transparent 70%, #ffe43b 70%);
            span {
                font-size: 1.2em;
            }
        }
    }
    .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        position: relative;
        img {
            width: 62px;
            height: 62px;
            flex-shrink: 0;
        }
    }
    .full.item {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        text-align: left;
        justify-self: center;
        p {
            line-height: 1.8;
        }
    }
    .full.item .icon-head {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .grid>.item {
        display: flex;
        flex-direction: column;
        gap: 10px;
        border-top: 2px dotted #999;
        padding-top: 20px;
        position: relative;
        z-index: 1;
        p {
            line-height: 1.8;
        }
    }
    .icon-head {
        display: flex;
        align-items: center;
        gap: 15px;
        img {
            width: 62px;
            height: 62px;
            flex-shrink: 0;
        }
    }
    .grid>.item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        border-top: 2px dotted #999;
        padding-top: 20px;
    }
    .grid::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 1px;
        border-left: 2px dotted #999;
        transform: translateX(-50%);
        z-index: 0;
        pointer-events: none;
    }
    .grid>div {
        display: flex;
        gap: 15px;
        border-top: 1px dotted #ccc;
        padding-top: 20px;
    }
    h3 {
        margin: 0 0 8px;
        font-size: 18px;
        font-weight: bold;
    }
    .orange {
        color: var(--orange-color-02);
        font-size: 1.3em;
    }
    small {
        font-weight: normal;
        font-size: 13px;
    }
    .illust {
        position: absolute;
        bottom: -90px;
        width: 160px;
    }
    .illust.left {
        left: 60px;
    }
    .illust.right {
        right: 60px;
    }
    @media (max-width: 1024px) {
        .illust.left {
            left: 10px;
        }
        .illust.right {
            right: 10px;
        }
    }
    .dotted-line {
        border-top: 2px dotted #999;
        margin: 40px 0 20px;
    }
}

@media (max-width: 600px) {
    .trouble {
        padding-left: 15px;
        padding-right: 15px;
        .panel {
            margin: 7%;
            padding: 40px 24px;
        }
        .grid {
            grid-template-columns: 1fr;
            .full {
                grid-column: auto;
            }
        }
        .grid::before {
            display: none;
        }
        .illust {
            width: 70px;
            bottom: -35px;
        }
        .illust.left {
            left: 0px;
        }
        .illust.right {
            right: 0px;
        }
        .dotted-line {
            margin: 20px 0 20px;
        }
    }
}

.repair-section {
    background: #fff;
    .l-inner {
        max-width: 1200px;
        padding: 0px;
    }
    ul {
        list-style: disc;
        padding-left: 1.2em;
        margin: 0;
        font-size: .9em;
        li {
            padding-top: 15px;
        }
    }
    .strength-heading {
        .strength {
            bottom: -40px;
            width: 170px;
            right: 15%;
            z-index: 0;
        }
        @media (max-width: 1024px) {
            .strength {
                right: -30px;
                width: 110px;
            }
        }
    }
    .page-heading {
        img {
            width: 60px;
        }
    }
    .catchcopy {
        text-align: center;
        margin-bottom: 40px;
        h2 {
            font-size: 24px;
            margin-bottom: 0;
            font-weight: bold;
            line-height: 1.6;
        }
        .logo {
            color: #003087;
            /* 青色 */
        }
        p {
            font-size: 30px;
            font-weight: bold;
            line-height: 1.6;
        }
        .emphasis {
            background: linear-gradient(transparent 70%, #ffe43b 70%);
            span {
                color: var(--orange-color-02);
                font-size: 1.2em;
            }
        }
    }
    .menu-title {
        background-color: #666;
        color: #fff;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        padding: 10px 0;
        margin-bottom: 30px;
    }
    .repair-menu {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    .menu-block {
        h3 {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
            ul {
                padding-left: 20px;
                li {
                    font-size: 14px;
                    line-height: 1.8;
                    list-style: disc;
                }
            }
        }
    }
    .logo-img {
        height: 32px;
        vertical-align: middle;
        margin: 12px 0 12px;
    }
}

@media screen and (max-width: 991px) {
    .repair-section {
        .repair-menu {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
    }
}

@media screen and (max-width: 600px) {
    .repair-section {
        .page-heading {
            img {
                margin-top: -15px;
            }
        }
        .logo-img {
            height: 16px;
        }
        .strength-heading {
            .strength {
                right: -20px;
                width: 105px;
            }
        }
        .repair-menu {
            grid-template-columns: repeat(1, 1fr);
            gap: 25px;
        }
    }
    .repair-section {
        & .catchcopy {
            h2 {
                font-size: 18px;
                margin-bottom: 0;
                font-weight: bold;
            }
            p {
                font-size: 22px;
            }
        }
    }
}

.tel {
    .repair-tel {
        width: 100%;
        display: block;
        text-align: center;
        img {
            width: 500px;
            height: auto;
            margin: -50px auto 50px;
        }
    }
}

@media (max-width: 600px) {
    .tel {
        .repair-tel {
            img {
                width: 80%;
                height: auto;
                margin: 0 auto 25px;
            }
        }
    }
}

.tel.city {
    background: #FFD4BF;
    div {
        background: #fff
    }
}


/* 背景の斜線パターン */

.bg-pattern {
    background: repeating-linear-gradient( -45deg, #fef6ed, #fef6ed 20px, #fff8f1 20px, #fff8f1 40px);
    padding: 60px;
    .page-heading {
        h2 {
            font-size: 28px;
            padding-bottom: 15px;
            span {
                display: inline-block;
                background-color: #ff6600;
                color: #fff;
                padding: 5px 10px;
                margin-right: 2px;
                font-size: 36px;
            }
        }
        .desc {
            padding-bottom: 40px;
        }
    }
}


/* スライド基本 */

#youtubeslider {
    visibility: unset;
    overflow: hidden;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    .splide__track {
        width: 260px;
        border-top: 4px solid orange;
        border-bottom: 4px solid orange;
        border-left: 4px solid orange;
        border-right: 4px solid orange;
        overflow: visible;
        margin: auto;
        position: relative;
    }
    .youtube-arrows {
        position: absolute;
        bottom: 13%;
        left: 50%;
        transform: translate(-50%);
        width: 280px;
        height: auto;
        .splide__arrow {
            position: absolute;
            top: 50%;
            width: 55px;
            height: auto;
            aspect-ratio: 1 / 1;
            background: transparent;
            svg {
                display: none;
            }
            &::before {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 60%;
                height: auto;
                aspect-ratio: 1 / 1;
                background-color: var(--orange-color-02);
            }
            &.splide__arrow--prev {
                left: 0;
                transform: translateX(-100%);
                &::before {
                    clip-path: polygon(100% 0, 0 50%, 100% 100%);
                }
            }
            &.splide__arrow--next {
                right: 0;
                transform: translateX(100%);
                &::before {
                    clip-path: polygon(100% 50%, 0 0, 0 100%);
                }
            }
        }
    }
    .splide__slide {
        width: 100%;
        height: auto;
        padding: 10px;
        position: relative;
        transition: transform 0.3s ease, opacity 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        filter: brightness(0.5);
        transition: all .3s ease;
    }
    /* YouTube iframe */
    .splide__slide iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 9 / 16;
        object-fit: cover;
        border-radius: 8px;
        border: none;
        display: block;
        transform: scale(0.9);
        pointer-events: none;
        transition: all .3s ease;
    }
    /* アクティブスライドのみ強調 */
    .splide__slide.is-active {
        box-sizing: border-box;
        filter: brightness(1);
    }
    .splide__slide.is-active iframe {
        box-sizing: border-box;
        pointer-events: all;
        transform: scale(1);
    }
    /* テキスト表示 */
    .slide-content {
        display: none;
        margin-top: 15px;
        text-align: center;
        color: #333;
    }
    .splide__slide.is-active .slide-content {
        display: block;
    }
    /* 工事費バッジ */
    .badge {
        background: #ff6b1c;
        color: #fff;
        border-radius: 50%;
        width: 70px;
        height: 70px;
        font-size: 14px;
        font-weight: bold;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto 10px;
    }
    .slide-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: bold;
    }
    .slide-content .price {
        font-size: 28px;
        color: #ff6b1c;
        font-weight: bold;
    }
    .slide-content small {
        display: block;
        font-size: 12px;
        margin-top: 5px;
        color: #444;
    }
}

@media (max-width: 768px) {
    #youtubeslider {
        .youtube-arrows {
            position: absolute;
            bottom: 13%;
            left: 50%;
            transform: translate(-50%);
            width: 280px;
            height: auto;
            .splide__arrow {
                width: 35px;
                &::before {
                    aspect-ratio: 1 / 1.5;
                }
            }
        }
    }
}

.case-youtube {
    margin-top: 30px !important;
}

.lnquiry-area {
    padding-top: 80px;
    padding-bottom: 20px;
    .strength-heading {
        .strength.hig {
            z-index: 2;
            width: 220px;
            bottom: -20px;
        }
    }
    @media (max-width: 600px) {
        .strength-heading {
            .strength.hig {
                z-index: -2;
                width: 110px;
            }
        }
    }
    .process {
        padding-top: 20px;
    }
}

.lnquiry.tel {
    position: relative;
    z-index: 2;
    & .repair-tel {
        display: block;
        width: 100%;
        img {
            width: 500px;
            height: auto;
            margin: 50px auto -110px;
        }
    }
    @media (max-width: 1024px) {
        & .repair-tel {
            img {
                width: 80%;
                height: auto;
                margin: 50px auto 30px;
            }
        }
    }
}

.choose {
    padding-top: 120px;
    padding-bottom: 120px;
    .page-heading {
        & h2 {
            span {
                display: inline-block;
                background: none;
                color: var(--orange-color-02);
            }
        }
    }
    p {
        line-height: 1.9;
    }
}

.points {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 80px;
}

.point-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    text-align: left;
}

.point-item .text,
.point-item .img {
    width: 100%;
}

.point-num {
    font-size: 14px;
    color: #fff;
    background-color: #f26522;
    border-radius: 50%;
    text-align: center;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
    font-family: "Manrope", sans-serif;
    margin-bottom: 10px;
}

.point-num strong {
    font-size: 32px;
    margin-top: 5px;
    font-weight: 500;
}

.text {
    min-width: 300px;
}

.text h3 {
    font-size: clamp(1.4rem, 1.031rem + 1.1vw, 1.613rem);
    margin: 10px 0;
    font-weight: 600;
    line-height: 1.5;
    .highlight {
        color: var(--orange-color-02);
        font-size: 1.2em;
    }
}

.text p {
    font-size: 15px;
    line-height: 1.6;
}

.img {
    position: relative;
}

.orange-shadow::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    background: rgba(255, 112, 34, 0.40);
    border-radius: 8px;
    z-index: 0;
}

.orange-shadow img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 8px;
}

@media screen and (min-width: 600px) {
    .point-item {
        flex-direction: row;
    }
    .point-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    .point-item .text,
    .point-item .img {
        width: 44%;
    }
}

.worry-section {
    background-color: #f1eeee;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    &::after {
        content: "";
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        border-width: 30px 30px 0 30px;
        border-style: solid;
        border-color: #f1eeee transparent transparent transparent;
        width: 0;
        height: 0;
    }
    .inner {
        max-width: 1080px;
        margin: 0 auto;
    }
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
        .orange-bold {
            color: var(--orange-color-02);
            font-weight: bold;
            border-bottom: 6px solid #fdd835;
            display: inline-block;
            font-size: 1.2em;
        }
    }
    .worry-box {
        background: white;
        padding: 10px 20px 20px;
        border-radius: 10px;
        position: relative;
        display: inline-block;
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        .illust {
            position: absolute;
            bottom: -60px;
            width: 150px;
        }
        .illust.left {
            left: 0px;
        }
        .illust.right {
            right: 0px;
        }
        @media (max-width: 600px) {
            .illust {
                width: 100px;
            }
            .illust.left {
                left: -38px;
                bottom: -10px;
            }
            .illust.right {
                right: -22px;
                bottom: -10px;
            }
        }
        .recommend-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: inline-block;
            text-align: left;
            width: auto;
            li {
                font-size: 16px;
                font-weight: bold;
                border-bottom: 1px dotted #ccc;
                padding: 5px 30px;
                display: flex;
                align-items: center;
                line-height: 1.6;
                .check {
                    img {
                        width: 30px;
                        padding: 10px 5px 10px 0;
                    }
                    @media (max-width: 600px) {
                        img {
                            width: 30px;
                            padding: 0 5px 3px;
                        }
                    }
                }
            }
            @media (max-width: 600px) {
                li {
                    display: list-item;
                    padding: 12px 20px;
                }
            }
        }
    }
}

.orange-bold {
    color: #f37021;
    font-weight: bold;
    font-size: 1.2em;
}

.solution-area {
    padding-top: 60px;
}

.faq-area {
    padding-top: 80px;
    padding-bottom: 80px;
    .faq-list {
        list-style: none;
        padding: 0;
        margin: 0;
        .faq-item {
            background: #ffe4d5;
            border-radius: 6px;
            margin-bottom: 12px;
            overflow: hidden;
            .faq-question {
                width: 100%;
                display: flex;
                align-items: center;
                padding: 16px;
                font-size: 16px;
                font-weight: bold;
                background: none;
                border: none;
                cursor: pointer;
                text-align: left;
                .faq-label.q {
                    background: #f37021;
                    color: #fff;
                    font-weight: bold;
                    border-radius: 4px;
                    padding: 4px 10px;
                    margin-right: 12px;
                }
            }
            .faq-answer {
                display: none;
                padding: 16px 16px 20px;
                font-size: 15px;
                line-height: 1.6;
                .faq-label.a {
                    background: #fff;
                    color: #f37021;
                    font-weight: bold;
                    border-radius: 4px;
                    padding: 4px 10px;
                    margin-right: 12px;
                    display: inline-block;
                }
            }
            &.open {
                .faq-answer {
                    display: block;
                }
            }
        }
    }
}

.custom-section {
    background: #f9f9f9;
    padding: 40px 50px;
    margin-top: 50px;
    .inner {
        max-width: 1000px;
        margin: 0 auto;
        text-align: center;
    }
    .custom-title {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        font-size: 20px;
        font-weight: bold;
        color: #f37021;
        .icon {
            border: 2px dashed #f37021;
            padding: 4px 10px;
            border-radius: 50%;
            font-size: 12px;
        }
        .text {
            font-size: 22px;
            font-weight: bold;
        }
    }
    .dotted {
        border-top: 2px dashed #333;
        margin: 20px auto;
        max-width: 100%;
    }
    .custom-list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
        list-style: none;
        padding: 0;
        margin: 0 auto;
        max-width: 100%;
        li {
            font-weight: bold;
            font-size: 16px;
            text-align: center;
            line-height: 1.6;
            padding-bottom: 12px;
            border-bottom: 1px solid #DEDEDE;
            &:nth-last-of-type(1) {
                border-bottom: 0;
            }
        }
    }
}

@media (max-width: 768px) {
    .custom-section {
        padding: 30px 20px;
        margin-top: 40px;
    }
}

.form-heading {
    background: linear-gradient(to bottom right, #FF8343 40%, var(--orange-color-02) 50%);
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    padding: 1px 0;
    margin-bottom: 30px;
    margin-top: 30px;
}

.contact-form-table {
    width: 100%;
    border-collapse: collapse;
    background: #f8f8f8;
}

.contact-form-table th,
.contact-form-table td {
    border: 1px solid #333;
    padding: 10px;
    vertical-align: top;
    text-align: left;
}

@media (max-width: 768px) {
    .contact-form-table th,
    .contact-form-table td {
        font-size: 14px;
    }
    .contact-form-table th {
        width: 30%!important;
    }
    .contact-form-table .required {
        padding: 2px 2px!important;
        font-size: 10px!important;
    }
    .page-heading p {
        font-size: 14px;
    }
}

.contact-form-table th {
    width: 25%;
    font-weight: bold;
    background: #F5F5F5;
}

@media (max-width: 600px) {
    .contact-form-table {
        border: solid 1px #ccc;
    }
    .contact-form-table th {
        width: 100%!important;
        display: block;
        background: #ccc;
        border: none;
    }
    .contact-form-table td {
        width: 100%!important;
        display: block;
        background: #fff;
        border: none;
    }
}

.contact-form-table .required {
    float: right;
    background: #d80000;
    color: #fff;
    font-size: 0.8rem;
    padding: 2px 12px;
    border-radius: 2px;
}

.contact-form-table .note {
    font-size: 0.85rem;
    color: #333;
    margin-top: 4px;
}

.contact-form-table .attention {
    color: #d80000;
    font-size: 0.85rem;
    margin-top: 10px;
}

input.fullwidth,
textarea.fullwidth,
select {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px;
    background: #f8f8f8;
    font-size: 1rem;
}

input.fullwidth,
textarea.fullwidth,
select {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px;
    background: #f8f8f8;
    font-size: 1rem;
}

input.width {
    min-width: 100px;
    width: 25%;
    border: 1px solid #ccc;
    padding: 10px;
    background: #f8f8f8;
    font-size: 1rem;
    margin-bottom: 10px;
}

.contact-link {
    text-align: left;
    margin-top: 20px;
    color: #5E5E5E;
    line-height: 1.9;
    a {
        text-decoration: underline;
    }
}

input.daywidth,
select.daywidth {
    min-width: 138px;
    width: 35%;
    border: 1px solid #ccc;
    padding: 10px;
    background: #f8f8f8;
    height: 45px;
    font-size: ;
    margin-right: 10px;
    margin-bottom: 5px;
}

.submit-area {
    position: relative;
    margin-top: 30px;
    text-align: center;
}

.img-submit-button {
    background: url('http://vanico.info/test2/wp-content/uploads/2025/07/send.webp') no-repeat center center;
    background-size: contain;
    width: 300px;
    height: 130px;
    border: none;
    margin-bottom: 30px;
    cursor: pointer;
    padding: 0;
    text-indent: -9999px;
}

.reform-menu {
    background: #f7f7f7;
    padding: 40px 20px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #fff;
    border: 1px solid #ccc;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: box-shadow 0.3s ease;
    .price-info {
        justify-content: center;
        padding: 10px 0;
        .price-label {
            width: 45px;
            height: 45px;
            font-size: 10px;
        }
    }
}

.menu-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.image-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}

.image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.card-title {
    position: absolute;
    top: 0;
    font-weight: bold;
    font-size: 20px;
    color: #f60;
    margin: 0;
    width: 100%;
    text-align: left;
    padding: 5px 15px;
    background: #ffffffa6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-links {
    background-color: #fefaf3;
    text-align: center;
    padding: 40px 0;
    .link-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #ff6c0f;
        color: #fff;
        font-weight: bold;
        font-size: 20px;
        text-decoration: none;
        border-radius: 999px;
        padding: 15px 40px;
        margin: 0 10px;
        transition: background-color 0.3s ease;
        .arrow {
            margin-left: 12px;
            font-size: 22px;
        }
        &:hover {
            background-color: #e85a00;
        }
    }
}

.works-section {
    padding-top: 60px;
    .scroll-area {
        display: contents;
    }
    .works-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto;
    }
    .work-card {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        background: #f9f9f9;
        border: 3px solid #ff6d00;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        aspect-ratio: 1/1;
        img {
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            display: block;
        }
        .work-content {
            padding: 15px;
            width: 100%;
            .work-label {
                display: inline-block;
                background: #ff6d00;
                color: #fff;
                font-size: 14px;
                font-weight: bold;
                padding: 4px 10px;
                border-radius: 5px;
                margin-bottom: 10px;
            }
            .work-text {
                font-size: 18px;
                line-height: 1.5;
                color: #333;
            }
        }
        &.more {
            align-items: center;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            .title {
                font-size: 40px;
                font-weight: bold;
                color: #ff6d00;
                margin-bottom: 15px;
                line-height: 1.5;
                span {
                    border-bottom: solid 2px;
                }
            }
            .more-btn {
                display: inline-block;
                background: #ff6d00;
                color: #fff;
                font-weight: bold;
                padding: 10px 20px;
                border-radius: 5px;
                text-decoration: none;
                display: flex;
                align-items: center;
                .arrow {
                    margin-left: 5px;
                }
            }
        }
    }
}

@media (max-width: 1024px) {
    .works-section {
        .works-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
}

@media (max-width: 600px) {
    .works-section {
        .works-grid {
            grid-template-columns: repeat(1, 1fr);
        }
    }
}


/* @media (max-width: 600px) {
    .works-section {
        .scroll-area {
            display: block;
            width: 100%;
            height: auto;
            overflow: scroll;
            .works-grid {
                width: max-content;
                display: flex;
                gap: 15px;
                .work-card {
                    width: 300px;
                    height: auto;
                }
            }
        }
    }
    .works-section {
        & .work-card {
            &.more {
                padding: 20px 0;
            }
        }
    }
} */

.page-heading {
    span.orange {
        font-size: 1em;
    }
}

.staff-section {
    padding: 50px 20px;
    background: #f9f9f9;
    .scroll-area {
        display: contents;
    }
    .staff-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding: 20px;
        .staff-card {
            display: flex;
            align-items: flex-start;
            background: #fff;
            border: 2px solid var(--orange-color-02);
            border-radius: 8px;
            padding: 8px;
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
            transition: 0.3s ease;
            justify-content: space-between;
            &:hover {
                transform: translateY(-5px);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            .staff-photo {
                flex: 0 0 120px;
                img {
                    width: auto;
                    height: 250px;
                    display: block;
                }
            }
            .staff-info {
                .staff-dept {
                    font-size: 18px;
                    font-weight: 600;
                    color: #333;
                    margin-top: 5px;
                    margin-bottom: 20px;
                }
                .staff-role {
                    font-size: 13px;
                    color: #666;
                    margin-bottom: 6px;
                }
                .staff-name {
                    font-size: 22px;
                    color: #000;
                }
            }
        }
    }
    @media (max-width: 600px) {
        .scroll-area {
            display: block;
            width: 100%;
            height: auto;
            overflow: scroll;
        }
        .staff-grid {
            width: max-content;
            display: flex;
            gap: 15px;
            padding: 0;
            .staff-card {
                margin-bottom: 0;
                width: 300px;
                img {
                    height: 250px;
                    width: auto;
                    object-fit: cover;
                }
            }
            .staff-card:last-child {
                margin-bottom: 0px;
            }
        }
    }
}

@media (max-width: 600px) {
    .staff-section {
        padding: 50px 20px 0;
    }
}

.visitor-area {
    margin-top: var(--header-height);
    padding-top: 80px;
    padding-bottom: 80px;
    .flow-back {
        background: #fff;
        margin: 50px 0;
        padding: 0 0 55px;
        border-radius: 15px;
    }
    .flow {
        padding: 0px 20px;
        border-radius: 10px;
        max-width: 700px;
        margin: 0 auto;
        .flow-title {
            text-align: center;
            font-size: 20px;
            color: #fff;
            background: #ff6a00;
            display: inline-block;
            padding: 10px 30px;
            border-radius: 20px;
            margin: -30px auto 30px;
        }
        .flow-list {
            list-style: none;
            margin: 0;
            padding: 0;
            li {
                display: flex;
                align-items: center;
                gap: 40px;
                &:last-child {
                    border-bottom: none;
                }
                .step-number {
                    background: #ff6a00;
                    color: #fff;
                    border-radius: 50%;
                    width: 60px;
                    height: 60px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-weight: bold;
                    font-size: 20px;
                    flex-shrink: 0;
                    padding: 20px 0;
                }
                .step-content {
                    padding: 20px 0;
                    border-bottom: 1px solid #ff6a00;
                    display: block;
                    width: 100%;
                    h3 {
                        font-size: 18px;
                        color: #ff6a00;
                        margin: 0 0 8px;
                    }
                    p {
                        margin: 0;
                        font-size: 14px;
                        color: #333;
                    }
                }
            }
            li:last-child {
                .step-content {
                    border-bottom: none;
                }
            }
        }
        @media (max-width: 768px) {
            .flow-list {
                li {
                    gap: 10px;
                    padding-top: 20px;
                    .step-number {
                        width: 50px;
                        height: 50px;
                        font-size: 18px;
                    }
                    .step-content {
                        h3 {
                            font-size: 16px;
                        }
                    }
                }
            }
        }
    }
}

.archive-area {
    max-width: 1200px;
    padding: 80px 20px;
    margin-top: var(--header-height);
    margin-left: auto;
    margin-right: auto;
    .container {
        display: flex;
        gap: 40px;
        align-items: flex-start;
        flex-wrap: wrap;
        padding-bottom: 80px;
        @media (max-width: 1024px) {
            flex-direction: column;
        }
    }
    .tc-list-container {
        flex: 1;
    }
    .tc-content-list {
        margin-top: 0;
    }
    .case-sidebar {
        flex: 0 0 260px;
        .accordion-box {
            margin-bottom: 20px;
            border: 2px solid #000000;
            border-radius: 8px;
            overflow: hidden;
            padding: 10px;
            background: #fff;
            img {
                width: 100%;
                height: auto;
            }
            .accordion-title {
                width: 100%;
                background: #fff!important;
                padding: 15px 20px;
                font-weight: bold;
                font-size: 16px;
                text-align: left;
                border: none;
                cursor: pointer;
                position: relative;
                transition: background 0.3s;
                &::after {
                    content: "\f078";
                    /* fa-chevron-down */
                    font-family: "Font Awesome 6 Free";
                    font-weight: 900;
                    /* solidアイコンは900 */
                    position: absolute;
                    right: 15px;
                    top: 50%;
                    transform: translateY(-50%);
                    font-size: 20px;
                    transition: transform 0.3s;
                }
                &.active {
                    background: #e8e8e8;
                    &::after {
                        content: "\f077";
                        /* fa-chevron-up */
                        transform: translateY(-50%);
                    }
                }
            }
            .accordion-content {
                display: none;
                background: #fff;
                .sidebar-category-list {
                    list-style: none;
                    margin: 0;
                    padding: 0;
                    li {
                        border-top: 1px solid #000000;
                        margin: 0 20px;
                        &:first-child {
                            border-top: none;
                        }
                        a {
                            display: block;
                            padding: 15px 0;
                            color: #333;
                            text-decoration: none;
                            font-size: 18px;
                            font-weight: 600;
                            &:hover {
                                color: #ff7f2a;
                            }
                        }
                    }
                }
            }
        }
        .accordion-box.column {
            max-width: 100%!important;
        }
        .accordion-box.category {
            background: #F6F3F2;
            height: auto;
            aspect-ratio: 1 / 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 20px;
            img {
                width: 60%;
            }
            p {
                font-weight: 700;
            }
            .all-category {
                width: 70%;
                height: auto;
                aspect-ratio: 1 / 1;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: #fff;
                border-radius: 5rem;
            }
        }
    }
    @media (max-width: 1024px) {
        .case-sidebar {
            width: 100%;
            margin: 0 auto;
            order: 2;
            .accordion-box.category {
                max-width: 150px;
                width: 50%;
            }
        }
    }
    @media (max-width: 600px) {
        .case-sidebar {
            width: 100%;
            margin: 0 auto;
        }
    }
    .tc-content-list {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch;
        gap: 30px 0;
        .accordion-box {
            width: 100px;
            border: 2px solid #000000;
            border-radius: 8px;
            overflow: hidden;
            padding: 10px;
            background: #F6F3F2;
            height: auto;
            aspect-ratio: 1 / 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            img {
                width: 75%;
            }
            p {
                font-weight: 700;
                font-size: .75rem;
            }
            .all-category {
                width: 70%;
                height: auto;
                aspect-ratio: 1 / 1;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: #fff;
                border-radius: 5rem;
            }
        }
        .tc-content-item {
            width: 49%;
            height: auto;
            .tc-content-link {
                display: block;
                width: 100%;
                height: auto;
                padding: 5px;
                border-radius: 5px;
                border: 1px solid var(--black-color);
                .tc-content-thumbnail {
                    width: 100%;
                    height: auto;
                    aspect-ratio: 16 / 9;
                    object-fit: cover;
                }
                .tc-content-thumbnail.archive {
                    width: 100%;
                    height: auto;
                    aspect-ratio: 12 / 9;
                    object-fit: cover;
                }
                @media (max-width: 600px) {
                    .tc-content-thumbnail.archive {
                        aspect-ratio: 16 / 9;
                    }
                }
                .tc-content-txtarea {
                    margin-top: 18px;
                    padding: 0 15px 15px 15px;
                    .tcct-heading-area {
                        display: flex;
                        flex-direction: column-reverse;
                        gap: 15px;
                        h3 {
                            font-size: clamp(1.25rem, 0.875rem + 1vw, 1.5rem);
                            line-height: 1.6;
                            font-weight: 700;
                        }
                        .area {
                            font-size: clamp(0.875rem, 0.688rem + 0.5vw, 1rem);
                            line-height: 1;
                            font-weight: 700;
                        }
                    }
                    .tcct-detail {
                        margin-top: 20px;
                        width: 100%;
                        height: auto;
                        display: flex;
                        justify-content: space-between;
                        align-items: end;
                        .tccd-price {
                            display: flex;
                            flex-direction: column;
                            gap: 10px;
                            dt {
                                font-size: 14px;
                                font-weight: 500;
                            }
                            dd {
                                font-size: clamp(1.125rem, 0.938rem + 0.5vw, 1.25rem);
                                line-height: 1;
                                font-weight: 700;
                            }
                        }
                        .more-btn-area {
                            .more-btn {
                                font-size: var(--text-font);
                                font-weight: 500;
                                line-height: 2;
                                display: flex;
                                flex-direction: row;
                                align-items: center;
                                gap: 12px;
                            }
                            svg {
                                width: 45px;
                                height: auto;
                                aspect-ratio: 1 / 1;
                                border-radius: 5rem;
                                border: 1px solid var(--black-color);
                                padding: 12px;
                            }
                        }
                    }
                }
                @media (max-width: 600px) {
                    .tc-content-txtarea {
                        .tcct-heading-area {
                            padding-bottom: 0px;
                            gap: 0px;
                        }
                    }
                }
            }
        }
        @media (max-width: 1024px) {
            .tc-content-item {
                width: 100%;
                margin: 0 auto;
                h3 {
                    font-size: 18px!important;
                }
            }
        }
        @media (max-width: 600px) {
            .tc-content-item {
                .tc-content-link.column2 {
                    .tc-content-txtarea {
                        margin-top: 15px!important;
                    }
                }
            }
        }
    }
    @media (max-width: 1024px) {
        .tc-content-list {
            width: 100%;
            order: 1;
        }
        .pagination {
            order: 2;
        }
    }
    .accordion-box.column {
        background: #F9F7F1;
        .accordion-content {
            display: block;
            background: #F9F7F1;
        }
    }
}

@media (max-width: 1024px) {
    .archive-area {
        max-width: 600px;
        /* margin: auto; */
        .accordion-box.column {
            max-width: 70%;
            margin: 0 auto;
        }
    }
}

@media (max-width: 600px) {
    .archive-area {
        padding-top: 60px;
        padding-bottom: 60px;
        .accordion-box.column {
            max-width: 80%;
            margin: 0 auto;
        }
        .container {
            padding-bottom: 0;
        }
    }
}

.archive-area.beside {
    & .tc-content-list {
        .tc-content-item {
            width: 100%!important;
            height: auto;
            .tc-content-link.column2 {
                display: flex !important;
                flex-wrap: wrap!important;
                justify-content: space-between!important;
                align-items: stretch;
                .tc-content-thumbnail.archive {
                    width: 40%;
                }
                .tc-content-txtarea {
                    width: 60%;
                    position: relative;
                    .tcct-detail {
                        padding: 0 20px 0 0;
                        bottom: 5px;
                        position: absolute;
                        justify-content: flex-end;
                    }
                }
            }
            @media (max-width: 1024px) {
                .tc-content-link.column2 {
                    .tc-content-txtarea {
                        margin-top: 5px;
                        .tcct-heading-area {
                            display: flex;
                            flex-direction: column-reverse;
                            gap: 8px;
                        }
                    }
                }
            }
            @media (max-width: 600px) {
                .tc-content-link.column2 {
                    display: block !important;
                    .tc-content-thumbnail.archive {
                        width: 100%!important;
                        aspect-ratio: 16 / 9;
                    }
                    .tc-content-txtarea {
                        width: 100%!important;
                        position: relative;
                        .tcct-detail {
                            padding: 0 0px 0 0;
                            bottom: 5px;
                            position: unset;
                            justify-content: flex-end;
                        }
                    }
                }
            }
        }
    }
}

.archive-area.beside2 {
    & .tc-content-list {
        .tc-content-item {
            width: 100%!important;
            height: auto;
            .tc-content-link.column2 {
                display: flex !important;
                flex-wrap: wrap!important;
                justify-content: space-between!important;
                align-items: stretch;
                border: none;
                background: #fff;
                border-radius: 15px;
                padding: 25px;
                .tc-content-thumbnail.archive {
                    width: 40%;
                    aspect-ratio: 14 / 9;
                }
                @media (max-width: 600px) {
                    .tc-content-thumbnail.archive {
                        aspect-ratio: 16 / 9;
                    }
                }
                .tc-content-txtarea {
                    width: 60%;
                    position: relative;
                    margin: 10px 0;
                    padding: 0 20px;
                    h3 {
                        color: #F6752F;
                    }
                    .tcct-heading-area {
                        display: unset;
                    }
                    @media (max-width: 1024px) {
                        .tcct-heading-area {
                            display: block;
                        }
                        .tcct-detail {
                            position: unset;
                        }
                    }
                    .area {
                        font-size: 14px;
                        line-height: 1;
                        font-weight: 600;
                        width: auto;
                        display: inline-block;
                        background: #F6752F;
                        color: #fff;
                        padding: 10px 20px;
                        border-radius: 5px;
                        margin: 20px 0;
                    }
                    .tcct-detail {
                        padding: 30px 25px 0 0;
                        bottom: 5px;
                        position: absolute;
                        justify-content: space-between;
                        border-top: solid 1px #CACACA;
                        margin: 0 25px 0 0;
                        .tccd-price {
                            gap: 18px;
                            dd {
                                font-size: 14px;
                                font-weight: 500;
                            }
                        }
                    }
                }
            }
            @media (max-width: 1024px) {
                .tc-content-link.column2 {
                    display: block !important;
                    padding: 25px 25px 5px;
                    .tc-content-thumbnail.archive {
                        width: 100%!important;
                    }
                    .tc-content-txtarea {
                        width: 100%!important;
                        position: relative;
                        padding: 0;
                        h3 {
                            margin-bottom: 15px;
                        }
                        .area {
                            margin-top: 0;
                        }
                        .tcct-detail {
                            display: block;
                            position: unset;
                            padding: 20px 0 0;
                            margin: 0;
                            .more-btn-area {
                                padding-top: 20px;
                            }
                        }
                    }
                }
            }
        }
    }
}

.single-area {
    margin-top: var(--header-height);
    padding-top: 60px;
    padding-bottom: 60px;
    img {
        width: 100%;
        height: auto;
    }
    p {
        line-height: 1.6;
        margin-bottom: 20px;
    }
    h2 {
        line-height: 1.6;
        font-size: 34px;
        margin-bottom: 10px;
        font-weight: 600;
    }
    h3 {
        line-height: 1.6;
        font-size: 27px;
        margin-bottom: 10px;
        font-weight: 600;
    }
    h4 {
        line-height: 1.6;
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: 600;
    }
}

@media (max-width: 600px) {
    .single-area {
        padding-top: 30px;
        h2 {
            font-size: 30px;
        }
        h3 {
            font-size: 24px;
        }
        h4 {
            font-size: 18px;
        }
    }
}

.event-info {
    margin: 50px 0;
    padding: 45px 0 30px;
    border-top: solid #CACACA;
    background: none;
    .event-heading {
        font-size: 22px;
        font-weight: bold;
        color: #ff7f2a;
        margin-bottom: 20px;
    }
    .event-list {
        list-style: none;
        margin: 0;
        padding: 0;
        li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 16px;
            color: #333;
            i {
                font-size: 20px;
                margin-right: 10px;
                width: 25px;
            }
            .label {
                font-weight: bold;
                margin-right: 10px;
                min-width: 50px;
            }
            .value {
                flex: 1;
            }
        }
    }
}

.single-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    .splide-main {
        width: 78%;
        height: auto;
        .splide__slide {
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 12;
        }
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .splide {
            .splide__slide {
                position: relative;
                .main-text {
                    margin-top: 10px;
                    font-size: 16px;
                    color: #fff;
                    text-align: left;
                    position: absolute;
                    bottom: 0;
                    width: 100%;
                    background: #424242B2;
                    padding: 20px 15px;
                }
            }
        }
    }
    .splide-sub {
        width: 20%;
        height: var(--splide-main-height);
        .splide {
            width: 100%;
            height: 100%;
            splide__track {
                overflow: hidden;
            }
            .splide__slide {
                cursor: pointer;
                opacity: 1!important;
                border: none!important;
                width: 100%;
                height: calc(100% / 4) !important;
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
        }
    }
    @media (max-width: 1100px) {
        #thumb-slider-track {
            height: auto!important;
        }
        .splide-main {
            width: 100%;
        }
        .splide-sub {
            width: 100%;
            height: auto;
            .splide {
                visibility: unset;
                .splide__slide {
                    width: 32.2% !important;
                    height: auto !important;
                    opacity: 1!important;
                    border: none!important;
                }
            }
        }
    }
}

.single-heading {
    display: flex;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    gap: 20px;
    margin-bottom: 20px;
    .page-heading-icon {
        width: 100px;
        height: auto;
        flex-shrink: 0;
        border: solid 1px;
    }
    @media (max-width: 768px) {
        font-size: 24px;
        .page-heading-icon {
            width: 60px;
        }
    }
}

.detail-box {
    display: flex;
    gap: 20px;
    padding: 10px 0 0;
    .detail-left {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 12px;
        .detail-item {
            display: flex;
            border: 1px solid #424242;
            border-radius: 5px;
            overflow: hidden;
            .label {
                width: 30%;
                background: linear-gradient(to bottom right, #FF8343 40%, var(--orange-color-02) 50%);
                color: #fff;
                text-align: center;
                line-height: 35px;
                font-size: 18px;
            }
            .value {
                flex: 1;
                line-height: 35px;
                padding-left: 20px;
                font-size: 18px;
            }
        }
    }
    .detail-right {
        flex: 1;
        border: 1px solid #424242;
        border-radius: 5px;
        padding: 10px;
        .staff {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 15px;
            .staff-img {
                width: 70px;
                height: 70px;
                border-radius: 50%;
                object-fit: cover;
            }
            .staff-name {
                font-size: 24px;
                font-weight: bold;
                margin: 0;
            }
        }
        .comment-box {
            background: #F9F7F1;
            padding: 15px;
            border-radius: 10px;
            font-size: 15px;
            line-height: 1.8;
        }
    }
    @media (max-width: 600px) {
        flex-direction: column;
        .detail-left,
        .detail-right {
            width: 100%;
        }
        .staff-name {
            font-size: 20px;
        }
        .comment-box {
            font-size: 16px;
        }
    }
}

.single-area {
    .ts-content {
        max-width: 705px;
        width: 100%;
        margin: 0 auto;
        height: auto;
        padding: 45px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-top: 60px;
        border-radius: 20px;
        background: #F9F7F1 url(./img/grid.svg) repeat;
        .ts-content-inner {
            width: 100%;
            .tsc-desc {
                margin: 0;
                background: #fff;
                text-align: center;
                padding: 15px 25px 25px;
                span {
                    display: block;
                    border-bottom: dotted 1px;
                    padding: 10px 0;
                }
            }
        }
    }
}

.our-area.case-study {
    padding-bottom: 80px;
}

.single-btn {
    padding-top: 80px;
}

@media (max-width: 1024px) {
    .quo-area {
        img {
            width: 100%;
            height: auto;
            margin: 0 auto;
        }
    }
}

.lnquiry-area {
    img.process {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
}

.our-area {
    .lineup-hed {
        margin-top: auto;
        .work-splide {
            overflow: hidden;
            .work-splide-container {
                max-width: 1200px;
                margin: auto;
                overflow: visible;
            }
        }
    }
}

.contact-telbtn {
    .sp-menu-content {
        width: 100%;
        height: auto;
        .tel-area {
            position: relative;
            width: 100%;
            height: auto;
            display: block;
            .tel-img {
                width: 100%;
                height: auto;
                object-fit: contain;
            }
            .tel-human {
                position: absolute;
                bottom: -25px;
                right: -20px;
                width: 32%;
            }
        }
    }
}

.item-text {
    .equip {
        display: inline-block;
        text-align: center;
        border: solid 2px var(--orange-color-02);
        border-radius: 6px;
        margin-right: 5px;
        font-size: 50px;
        font-family: "Manrope", sans-serif;
        color: var(--orange-color-02);
        min-width: 90px;
        height: 90px;
        .hed {
            background: var(--orange-color-02);
            color: #fff;
            display: block;
            padding: 5px 0 2px;
            font-size: 17px;
        }
        .vertical {
            -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
            font-size: 17px;
            margin-left: -8px;
            letter-spacing: 0.05em;
        }
    }
}

.exhibition-area {
    .item-text p {
        width: 80%;
    }
}

@media (max-width: 600px) {
    .sp-none {
        display: none!important;
    }
    .shop-info {
        .shop-description {
            font-size: 15px;
            color: #333;
            max-width: 1000px;
            margin: 0 auto;
            line-height: 1.8;
            text-align: left;
        }
    }
    .shop-info {
        padding: 40px 20px 0;
        text-align: center;
    }
    .info-links {
        .link-button {
            margin: 20px 0;
        }
    }
    .menu-grid {
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 20px 0;
        justify-content: space-between;
        .card-title {
            font-size: 18px;
        }
        .price-info {
            gap: 6px;
        }
        .price {
            .big {
                font-size: 35px;
            }
        }
    }
    .menu-card {
        width: 49%;
        height: auto;
    }
    .service-area {
        .service-list {
            padding: 0 20px;
        }
    }
    .points {
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 60px;
    }
    .bg-pattern {
        padding: 60px 20px;
        .page-heading {
            h2 {
                span {
                    margin-bottom: 5px;
                }
            }
        }
    }
    .our-area {
        .lineup-hed {
            padding: 0 20px;
        }
        .page-btn {
            margin: 0 auto;
            max-width: 88%;
        }
    }
    .product-card {
        padding: 0!important;
        .product-image {
            padding: 0!important;
        }
        .product-content {
            padding: 15px!important;
            position: relative;
        }
        .brand-label {
            padding: 2px 8px!important;
        }
        .product-title,
        .price-box,
        .price-label,
        .price,
        .duration,
        .days {
            padding: 0!important;
        }
        .product-title h3 {
            font-size: 18px!important;
            padding: 0!important;
        }
        .description {
            font-size: 14px!important;
            margin: 10px 0;
            line-height: 1.5;
        }
        .product-title {
            .discount {
                padding: 10px!important;
            }
        }
        .price-label {
            div {
                padding: 0!important;
            }
        }
        .duration-label {
            padding: 3px!important;
        }
    }
    .trouble {
        padding-top: 0;
        .photo {
            margin: 30px auto 60px;
            border-radius: 0;
            padding: 25px 15px;
            .illust.right {
                right: -10px;
            }
            .illust.left {
                left: -10px;
            }
        }
        .icon-head {
            img {
                width: 55px;
                height: 55px;
            }
        }
        .panel {
            margin: 0 auto 15px auto;
            padding: 30px 20px 65px;
        }
        .orange {
            font-size: 1.5em;
            display: inline-block;
            line-height: 1.6;
        }
        .grid {
            gap: 10px;
        }
        .grid>.item {
            padding-top: 15px;
        }
        small {
            font-size: 12px;
        }
    }
    .choose {
        padding-top: 60px;
        padding-bottom: 75px;
    }
    .point-item {
        .text {
            .sp-point {
                display: flex;
                .point-num {
                    width: 80px;
                    height: 80px;
                }
                h3 {
                    width: calc(100% - 80px);
                    padding-left: 10px;
                    line-height: 1.4;
                    margin: 0;
                }
            }
        }
        .orange-shadow {
            padding-left: 20px;
            &::after {
                width: calc(100% - 20px);
                left: 0;
            }
        }
    }
    .sp-al-l {
        text-align: left!important;
    }
    .faq-area {
        padding-top: 60px;
        padding-bottom: 20px;
    }
    .sp-m30-t {
        margin-top: 30px;
    }
}

.pagination nav {
    max-width: 1200px;
    width: 100%;
    height: auto;
    margin: auto;
    padding-top: 30px;
}

.pagination .nav-links {
    display: flex;
    flex-direction: row;
    gap: 15px;
    font-size: 20px;
    font-weight: 600;
}

.pagination .page-numbers {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: auto;
    aspect-ratio: 1 / 1;
    border: 1px solid #424242;
    border-radius: 3px;
}

.pagination .current {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 30px;
    color: #fff;
    background-color: var(--orange-color-02);
    border: 1px solid var(--orange-color-02);
    border-radius: 3px;
}

.prev-page,
.next-page {
    position: relative;
    display: block;
    width: 30px;
    height: auto;
    aspect-ratio: 1 / 1;
    border: 1px solid #424242;
    background-color: #424242;
}

.prev-page::before,
.next-page::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    width: 15px;
    height: 15px;
}

.prev-page::before {
    transform: translate(-30%, -50%) rotate(-135deg);
}

.next-page::before {
    transform: translate(-70%, -50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
    .pagination nav {
        padding-top: 20px;
    }
    .pagination .nav-links {
        font-size: 18px;
        gap: 12px;
    }
    .pagination .page-numbers {
        width: 25px;
    }
    .pagination .current {
        width: 40px;
        height: 25px;
    }
    .prev-page,
    .next-page {
        width: 25px;
    }
    .prev-page::before,
    .next-page::before {
        width: 12px;
        height: 12px;
    }
}

.screen-reader-text {
    display: none;
}