@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Jost:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap');


/*========================================================
    変数
==========================================================*/
/* フォント */
:root {
    --font-ja-gothic: "Noto Sans JP", sans-serif;
    --font-ja-mincho: "Noto Serif JP", serif;
    --font-en-gothic: "Merriweather Sans", sans-serif;
    --font-en-mincho: "Noto Serif JP", serif;
    --font-point: "Kumbh Sans", sans-serif;
    --font-point02: "Jost", sans-serif;
}

/* カラー */
:root {
    --main-color01: ;
    --design-color01: #606060;
    --design-color02: #464646;
    --design-color03: #2376dd;
    --design-color04: #e0e0e0;
    --design-color05: #bebebe;
    --accent-color: #ffb900;

    --font-color01: ;
    --font-color02: ;
}

::selection {
  background: rgba(255, 185, 0, .4); /* 選択時の背景色 */
}
/*========================================================
    表示・非表示
==========================================================*/
@media (min-width: 960px) { /* PC */
    .is_tab {
        display: none;
    }
    .is_sp {
        display: none;
    }
    .is_tab-sp {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 959px) { /* TAB */
    .is_pc {
        display: none;
    }
    .is_sp {
        display: none;
    }
}

@media (max-width: 767px) { /* SP */
    .is_pc {
        display: none;
    }
    .is_tab {
        display: none;
    }
    .is_pc-tab {
        display: none;
    }
}

.is_w330 {
    @media (min-width: 331px) {
        display: none;
    }
}


/*========================================================
    基本設定
==========================================================*/
html {
    overflow-x: hidden;

    @media (min-width: 960px) {
        scroll-padding-top: clamp(4.75rem, 2rem + 5.73vw, 8.875rem);
    }
}

body {
    font-family: var(--font-ja-gothic);
}

button {
    padding: 0;
    border: none;
    outline: none;
}

a {
    transition: all .3s;

    &:hover {
        opacity: .65;
        cursor: pointer;
    }
}

.section-tit {
    font-family: var(--font-en-gothic);
    font-size: clamp(2.125rem, 1.87rem + 1.05vw, 3.125rem);
    font-weight: 500;
    letter-spacing: .12em;
    color: var(--design-color01);

    .sub {
        display: block;
        font-family: var(--font-ja-gothic);
        font-size: clamp(1rem, 0.92rem + 0.33vw, 1.313rem);
        letter-spacing: .1em;
        margin-top: 1em;

        @media (max-width: 767px) {
            margin-top: 0.7em;
        }
    }
}

/* ボタン */
.btn {
    width: fit-content;
    background-color: var(--design-color04);
    border-radius: 10px;

    @media (max-width: 767px) {
        border-radius: 8px;
    }

    a {
        width: clamp(10.625rem, 8.92rem + 6.99vw, 17.313rem);
        font-size: clamp(0.875rem, 0.763rem + 0.46vw, 1.313rem);
        letter-spacing: .1em;
        color: var(--design-color03);
        padding: 1.5em 1.3em;
        position: relative;

        &::before {
            position: absolute;
            content: '';
            top: 50%;
            right: 1.3em;
            transform: translateY(-50%);
            width: 1.7em;
            aspect-ratio: 1 / 1;
            background: url(../img/arrow01.png) no-repeat center center / contain;
            background-size: 0.76em auto;
            background-color: #fff;
            border-radius: 50%;
            transition: all .4s;
        }

        &:hover {
            opacity: 1;

            &::before {
                transform: translate(.5em, -50%);
            }
        }

        @media (max-width: 767px) {
            padding: 1.7em 2em;

            &::before {
                right: 2em;
                width: 1.2em;
                background-size: 0.6em auto;
            }
        }
    }

    &.btn02 a{
        width: clamp(13.688rem, 11.887rem + 7.39vw, 20.75rem);
        font-size: clamp(1rem, 0.92rem + 0.33vw, 1.313rem);
        display: flex;
        align-items: center;
        padding: 2em 1.7em 2em 2.4em;

        &::before {
            right: 1.7em;
            background: url(../img/arrow03.png) no-repeat center center / contain;
            background-size: 0.76em auto;
            background-color: #2376dd;
        }

        @media (max-width: 767px) {
            &::before {
                background-size: 0.6em auto;
            }
        }
    }
}


.btn.line {
    background: none;

    a {
        font-size: clamp(1.063rem, 0.951rem + 0.46vw, 1.5rem);
        padding: 1em 2em 1em .5em;

        &::before {
            right: 0.5em;
            width: 1em;
            background-size: .55em;
        }

        &::after {
            position: absolute;
            content: "";
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 100%;
            height: 1px;
            background-color: var(--design-color03);
            transition: all .4s;
        }

        &:hover {
            &:before {
                transform: translate(0, -50%);
            }
            &::after {
                width: 120%;
            }
        }
    }
}

.more {
    display: flex;
    justify-content: right;

    a {
        font-family: var(--font-en-gothic);
        font-size: clamp(0.625rem, 0.529rem + 0.39vw, 1rem);
        color: var(--design-color03);
        letter-spacing: .16em;
        padding: 8px 1em 8px 8px;
        position: relative;

        &::before {
            position: absolute;
            content: '';
            top: calc(50% + 1px);
            right: 0;
            transform: translateY(-50%);
            background: url(../img/arrow01.png) no-repeat center center / contain;
            width: 0.875em;
            aspect-ratio: 14 / 9;
        }

        &:hover {
            letter-spacing: .2em;
        }

        @media (max-width: 767px) {
            padding: 4px 1em 4px 4px;
        }
    }
}


/*========================================================
    出現アニメーション
==========================================================*/
.fadeUp,
.order_kind {
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s;

    @media (max-width: 767px) {
        transform: translateY(30px);

        &.img01 {
            transform: translate(18px, 30px) !important;
        }
    }

    &.on {
        opacity: 1;
        transform: translateY(0);

        @media (max-width: 767px) {
            &.img01 {
                transform: translate(18px, 0) !important;
            }
        }
    }
}

.fadeUp_txt {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.3s;

    .sub {
        opacity: 0;
        transform: translateY(25px);
        transition: all 1s;

        &.sub_on {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 767px) {
        transform: translateY(20px);

        .sub {
            transform: translateY(10px);
        }
    }

    &.on {
        opacity: 1;
        transform: translateY(0);
    }
}

.line {
    opacity: 0;
    transform: translateX(-20px);

    &::before {
        opacity: 0;
    }
    &.on {
        animation: lineShowUp 1s ease-out forwards;

        &::before {
            animation: lineFadeIn 2s ease-out forwards;
        }
    }
}
@keyframes lineShowUp {
    0% {
    opacity: 0;
    transform: translateX(-20px);
    }
    100% {
    opacity: 1;
    transform: translateX(0);
    }
}
@keyframes lineFadeIn {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: clamp(2.875rem, -1.554rem + 18.17vw, 20.25rem);
        opacity: 1;
    }
}


/* 出現中～出現後1秒後までホバーアニメーションなし */
.no-hover {
    pointer-events: none;
}


/*========================================================
    マウスストーカー
==========================================================*/
#cursor-stalker {
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    letter-spacing: .1em;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease-out;
    z-index: 9999;

    &.visible {
        opacity: 1;
        /* backdrop-filter: blur(1px); */
    }

    .stalker-text {
        position: relative;

        &::after {
            content: "";
            position: absolute;
            top: -12px;
            right: -5px;
            width: 12px;
            height: 12px;
            background-image: url('../img/link_cursor.png');
            background-size: contain;
            background-repeat: no-repeat;
        }
    }

    &.willing-cursor .stalker-text::after {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(78deg) brightness(110%) contrast(101%);
    }
}



/*========================================================
    ヘッダー
==========================================================*/
.header-container {
    width: 100vw;
    position: fixed;
    top: 0;
    transition: .5s;

    &.scroll {
        background-color: rgba(163, 163, 163, 0.55);
        backdrop-filter: blur(7px);
    }

    @media (min-width: 768px) {
        z-index: 999;
    }
    @media (max-width: 767px) {
        position: absolute;
        top: 3%;
    }

    >.inner {
        width: min(90%, 1487px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 auto;
        padding: 3% 0 1.5%;

        .logo {
            width: max(160px, 16.2%);
            z-index: 999;

            @media (max-width: 767px) {
                width: max(195px, 37%);
            }
        }
    }
}



.header-nav {
    z-index: 1000;
}

.header_menu {
    display: flex;
    column-gap: 3em;
    align-items: center;
    justify-content: space-between;

    a {
        font-size: clamp(1rem, 0.563rem + 0.73vw, 1.438rem);
        color: #fff;
        letter-spacing: 0.1em;
        padding-bottom: 10px;
        background-image: linear-gradient(white, white);
        background-repeat: no-repeat;
        background-position: bottom right;
        background-size: 0 1.5px;
        transition: background-size 0.3s, color 0.4s;

        &:hover {
            opacity: 1;
            background-position: bottom left;
            background-size: 100% 1.5px;
        }

        @media (max-width: 767px) {
            transition: all .4s;

            &:hover {
                background-size: 0;
            }
        }

        .sub_en {
            display: block;
            font-family: var(--font-en-gothic);
            font-size: clamp(0.438rem, 0.25rem + 0.31vw, 0.625rem);
            margin-bottom: 1.3em;
        }
    }

    @media (max-width: 1100px) {
        column-gap: 1.2em;
    }
}

.header_menu .works-menu {
    position: relative;

    @media (min-width: 768px) {
        padding-right: 0.5em;

        &:hover .works-list {
            visibility: visible;
            opacity: 1;
        }

        .is_pc-tab {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;

            &::before {
                position: absolute;
                content: "";
                display: block;
                bottom: .7em;
                left: 4.5em;
                background: url(../img/arrow06_sub.png) no-repeat center center / contain;
                width: .5em;
                height: .5em;
                transition: all .4s;
                transform-origin: center center;
                z-index: 1;
            }
        }
    }

    >a {
        position: relative;

        &::before {
            position: absolute;
            content: "";
            display: block;
            bottom: .7em;
            left: 4.5em;
            background: url(../img/arrow06.png) no-repeat center center / contain;
            width: .5em;
            height: .5em;
            transition: all .4s;
            transform-origin: center center;
            z-index: 1;
        }

        @media (max-width: 767px) {
            &::before {
                top: 55%;
                left: -0.8em;
                bottom: auto;
                transform: translateY(-50%);
                width: .6em;
                height: .6em;
            }
        }
    }

    @media (min-width: 768px) {
        &:hover a::before {
            transform: rotate(180deg);
        }
        &:hover span.is_pc-tab::before {
            transform: rotate(180deg);
        }
    }

    @media (max-width: 767px) {
        width: calc(100% - 1em) !important;
        padding-left: 1em;

        &.active a::before {
            transform: translateY(-50%) rotate(180deg);
        }
    }


    .works-list {
        position: absolute;
        top: 3.5em;
        left: 0;
        width: fit-content;
        visibility: hidden;
        opacity: 0;
        transition: all .3s;

        @media (max-width: 767px) {
            position: relative;
            width: 100%;
            top: 0;
            left: 0.5em;
            visibility: visible;
            opacity: 1;
            display: none;
            transition: none;
        }

        li {
            padding: .7em .5em 0;
            width: fit-content;

            @media (max-width: 767px) {
                padding: .5em .5em 0;
            }

            a {
                white-space: nowrap;
                font-size: 100%;

                @media (max-width: 767px) {
                    font-size: clamp(0.813rem, 0.683rem + 0.53vw, 0.938rem);
                }
            }
        }
    }
}



/* サブ */
.sub-header {

    &.scroll {
        background-color: rgba(255, 255, 255, 0.55);
        backdrop-filter: blur(7px);
    }

    .header_menu {
        a {
            color: var(--design-color01);
            background-image: linear-gradient(#a3a3a3, #a3a3a3);
        }
    }
}

/*  ハンバーガーボタン
==========================================================*/
@media (max-width: 767px) {
    .drawer-hamburger {
        top: 3%;
        right: min(5%, 23px) !important;
        width: 26px;
        aspect-ratio: 1 / 1;
        border-radius: 100vh;
        padding: 17px;
        z-index: 1001;
        background: url(../img/drawer-hamburger_bg.png) no-repeat center center / contain;
    }

    .drawer-hamburger-icon {
        margin: 0;
    }

    .drawer-hamburger-icon::before,
    .drawer-hamburger-icon,
    .drawer-hamburger-icon::after {
        background: linear-gradient(90deg, rgba(35, 118, 221, 1), rgba(255, 207, 108, 1));
        height: 1.5px;
    }

    .drawer-hamburger-icon::before,
    .drawer-hamburger-icon::after {
        left: 50%;
        transform: translateX(-50%);
        width: 130%;
    }

}

.drawer-overlay {
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.5);
}

.drawer-open {
    .drawer-hamburger-icon {
        background: none;
    }
    .drawer-hamburger-icon::before,
    .drawer-hamburger-icon::after {
        width: 100%;
        left: 0;
    }
    .drawer-hamburger-icon::before {
        transform: rotate(45deg) translateX(0);
    }
    .drawer-hamburger-icon::after {
        transform: rotate(-45deg) translateX(0);
    }
}


/*  ドロワーメニュー
==========================================================*/
@media (max-width: 767px) {
    .drawer-nav {
        background-color: #c9c9c9;

        .inner {
            padding: 38px 10px;

            .logo {
                width: min(67%, 150px);
            }
        }

        .drawer-menu {
            width: 80%;
            padding: 45px 0;
            margin: 0 auto;
            flex-flow: column;
            gap: 12px;

            li {
                width: 100%;
            }

            a {
                display: flex;
                flex-direction:row-reverse;
                align-items: end;
                justify-content: left;
                gap: 12px;
                width: 100%;
                padding: .3em;
                font-size: clamp(0.938rem, 0.808rem + 0.53vw, 1.063rem);
                color: #fff;

                .sub_en {
                    margin: 0;
                }
            }
        }

        .associate {
            width: 225px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid #fff;

            .tit {
                width: 80%;
                font-family: var(--font-en-gothic);
                font-size: clamp(0.875rem, 0.75rem + 0.63vw, 1.125rem);
                margin-bottom: 1.3em;
                color: #fff;
            }

            .asso-link {
                display: flex;
                align-items: center;
                margin: 0 auto;
                padding: 5px 5px 5px 0;
                background-color: #fff;
                box-shadow: 0px 0px 5px 0px rgba(163, 163, 163, 0.55);

                &:nth-of-type(n+2) {
                    margin-top: 12px;
                }

                .asso-logo {
                    margin: 0 auto;

                    &.logo_willing {
                        width: 90px;
                    }
                    &.logo_ndw {
                        width: 110px;
                    }
                }

                .photo {
                    width: 87px;
                }
            }
        }
    }
}


/*========================================================
    フッター
==========================================================*/
.footer-container {
    --footer-top: clamp(4.5rem, 9.38vw, 11.25rem);
    padding: var(--footer-top) 0 8%;
    background: linear-gradient(90deg, rgba(35, 118, 221, 1), rgba(255, 207, 108, 1));
    position: relative;
    border-radius: clamp(4.5rem, 9.38vw, 11.25rem) 0 0 0;
    margin-top: calc(var(--footer-top)*-1);

    &::before {
        position: absolute;
        content: "";
        right: 0;
        bottom: calc(100% - 1px);
        width: min(10%, 184px);
        aspect-ratio: 92 / 147;
        background: url(../img/footer_bg-top.png) no-repeat bottom right / cover;
    }

    @media (max-width: 767px) {
        padding: min(15%, 76px) 0 min(27%, 107px);
        border-radius: 163px 0 0 0;
        margin-top: -163px;

        &::before {
            display: none;
        }
    }

    .inner {
        display: grid;
        width: min(90%, 1465px);
        column-gap: clamp(3.125rem, -0.958rem + 8.51vw, 9.25rem);
        margin: 0 auto;

        @media (max-width: 767px) {
            display: flex;
            flex-direction: column;
            width: 80%;
        }
    }

    .text-box {
        color: #fff;

        @media (max-width: 767px) {
            order: 2;
            margin-top: 68px;
        }

        .inc {
            font-weight: 700;
            font-size: clamp(1.25rem, 0.75rem + 1.04vw, 2rem);
            letter-spacing: 0.04em;

            @media (max-width: 767px) {
                font-size: clamp(1.375rem, 1.181rem + 0.8vw, 1.563rem);
            }
        }

        .info {
            padding-top: 2.7em;
            font-size: clamp(0.813rem, 0.646rem + 0.35vw, 1.063rem);
            line-height: 1.7em;
            letter-spacing: 0.1em;
            white-space: nowrap;

            @media (max-width: 767px) {
                padding-top: 1.8em;
            }
            @media (max-width: 371px) {
                li > .is_tab {
                    display: block;
                }
            }

            >li:nth-of-type(2n) {
                margin-top: .2em;
            }

            .comm {
                display: flex;
                gap: 2.7em;

                @media (max-width: 959px) {
                    flex-direction: column;
                    gap: 0;
                }
            }

            .open {
                margin-top: 2.47em;

                @media (max-width: 767px) {
                    margin-top: 2em;
                }
            }
        }
    }

    .logo {
        grid-column-start: 1;
        grid-row-start: 2;
        margin-top: 20%;
        width: clamp(9.375rem, 5.625rem + 7.81vw, 15rem);

        @media (max-width: 767px) {
            order: 1;
            width: min(44%, 400px);
            margin: 0 auto;
        }
    }

    .footer-nav {
        grid-row: span 2 / span 2;
        grid-column-start: 2;
        grid-row-start: 1;
        width: fit-content;
        padding-left: clamp(0.125rem, -8.625rem + 14.58vw, 8.875rem);

        @media (max-width: 959px) {
            padding: 0;
        }
        @media (max-width: 767px) {
            order: 4;
            margin-top: clamp(68px, -9.75rem + 70vw, 117px);
        }

        .footer_menu {
            li {
                width: fit-content;
                font-family: var(--font-en-gothic);
                font-weight: 600;
                color: #fff;
                font-size: clamp(1.5rem, 1.167rem + 0.69vw, 2rem);
                letter-spacing: 0.12em;

                &:nth-of-type(n+2) {
                    margin-top: 1.4em;
                }

                @media (max-width: 767px) {
                    font-style: 32px;
                }

                .sub_ja {
                    display: block;
                    font-family: var(--font-ja-gothic);
                    font-weight: 400;
                    font-size: 13px;
                    letter-spacing: 0.1em;
                    padding-top: .7em;
                }
            }
        }
    }

    .associate {
        grid-row: span 2 / span 2;
        grid-column-start: 3;
        grid-row-start: 1;

        @media (max-width: 767px) {
            order: 3;
            margin-top: clamp(25px, -8.438rem + 50vw, 60px);
        }

        .tit {
            font-family: var(--font-en-gothic);
            font-weight: 700;
            color: #fff;
            font-size: clamp(1.25rem, 0.75rem + 1.04vw, 2rem);
            letter-spacing: 0.08em;

            .sub_ja {
                display: block;
                font-family: var(--font-ja-gothic);
                font-weight: 400;
                font-size: clamp(0.563rem, 0.483rem + 0.33vw, 0.875rem);
                letter-spacing: 0.1em;
                margin-top: .7em;
            }
        }

        .asso-link {
            width: min(92%, 445px);
            display: flex;
            align-items: center;
            margin-top: 28px;
            padding: clamp(0.313rem, -0.104rem + 0.87vw, 0.938rem);
            padding-left: 0;
            background-color: #fff;
            transition: all .3s ease;

            &:nth-of-type(n+2) {
                margin-top: 12px;
            }

            @media (max-width: 767px) {
                width: min(94%, 445px);
                margin: 22px auto 0;
                padding: 10px 10px 10px 0;
            }

            .asso-logo {
                margin: 0 auto;
                transition: all.2s;

                &.logo_willing {
                    width: 35%;
                }
                &.logo_ndw {
                    width: 44%;
                }

                @media (max-width: 767px) {
                    &.logo_ndw {
                        width: 45.5%;
                    }
                }
            }

            .photo {
                width: 40%;
                overflow: hidden;

                img {
                    transition: all.2s;
                }
            }

            &:hover {
                opacity: 1;
                transform: scale(1.01);
                box-shadow: 0px 0px 7px 0px rgba(90, 90, 90, .4);
            }
        }
    }
}


/* サブフッター */
.sub-footer {
    --sub-footer-top:clamp(4.875rem, -1.25rem + 12.76vw, 14.063rem);
    margin-top: calc(var(--sub-footer-top)*-1);

    &::before {
        display: none;
    }

    @media (max-width: 767px) {
        margin-top: -163px;
    }

    @media (min-width: 768px) {
        border-radius: var(--sub-footer-top) var(--sub-footer-top) 0 0;
    }
}



/*  コピーライト
==========================================================*/
.copyright {
    display: block;
    text-align: center;
    font-family: var(--font-en-gothic);
    font-size: 9px;
    padding: 1em 0;
}



/*========================================================
    メインビジュアル
==========================================================*/
.mv-container {
    position: relative;

    .mainvisual {
        position: relative;
        &::before {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(5, 0, 45, .35);
        }

        @media (max-width: 767px) {
            &::before {
                display: none;
            }
        }
    }

    .text-box {
        position: absolute;
        content: "";
        top: clamp(7.5rem, -6rem + 28.13vw, 27.75rem);
        left: 12%;
        color: #fff;

        @media (max-width: 767px) {
            top: 36%;
            left: 10%;
        }

        .policy {
            font-family: var(--font-ja-mincho);
            font-size: clamp(2.625rem, 0.958rem + 3.47vw, 5.125rem);
            line-height: 1.2em;
            letter-spacing: .1em;

            @media (max-width: 767px) {
                text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.6);
                line-height: 1.5em;
            }
        }

        .en {
            margin-top: 3em;
            font-family: var(--font-en-gothic);
            font-size: clamp(0.563rem, 0.435rem + 0.52vw, 1.063rem);
            line-height: 1.58em;

            @media (max-width: 959px) {
                margin-top: 2em;
            }
            @media (max-width: 767px) {
                text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.6);
            }
        }
    }
}

.scroll-line {
    position: absolute;
    content: "";
    display: flex;
    bottom: 6.5%;
    left: 12%;
    flex-direction: column;
    font-family: var(--font-en-gothic);
    font-weight: 300;
    font-size: clamp(0.625rem, 0.333rem + 0.61vw, 1.063rem);
    letter-spacing: .08em;
    color: #fff;
    gap: 1em;

    @media (max-width: 767px) {
        left: 10%;
        bottom: 12%;
    }

    .line_scroll {
        position: relative;
        left: 0.5em;
        width: 1px;
        height: 90px;
        background-color: rgba(255,255,255,.2);

        &::after {
            position: absolute;
            content: '';
            top: 0;
            left: 0;
            background-color: #fff;
            width: 100%;
            height: 100%;
            animation: scrollBar 3s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        @media (max-width: 767px) {
            height: clamp(3.75rem, -1.306rem + 25.28vw, 10.813rem);
        }
    }
}

@keyframes scrollBar {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    42%{
        transform: scaleY(1);
        transform-origin: top;
    }
    42.1% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    72% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}




/*========================================================
    ビジョン
==========================================================*/
.vision-container {
    background:  linear-gradient(150deg, rgba(255, 207, 108, 1), rgba(35, 118, 221, 1));
    padding: max(279px, 18%) 0 14%;
    position: relative;
    overflow: hidden;

    @media (max-width: 767px) {
        padding: min(23%, 120px) 0 min(35.8%, 185px);
    }

    .vision_slideText {
        position: absolute;
        top: -5px;
        display: flex;
        pointer-events: none;

        .txt {
            font-family: var(--font-en-gothic);
            font-size: clamp(3.5rem, 2.321rem + 4.84vw, 8.125rem);
            font-weight: 700;
            color:rgba(255, 255, 255 , .55);
            white-space: nowrap;
            padding-right: 1em;
            animation: loopTxt 40s linear infinite;
        }
    }

    .inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: min(90%, 1390px);
        margin: 0 auto;

        @media (min-width: 1301px) {
            padding-left: 2.7%;
        }
        @media (max-width: 767px) {
            flex-flow: column-reverse;
            width: 100%;
        }
    }

    .text-box {
        width: min(50%, 558px);

        @media (max-width: 767px) {
            width: 83%;
            padding-top: min(21%,80px);
        }

        .tit-sub_en {
            display: block;
            font-family: var(--font-en-gothic);
            font-size: 18px;
            font-weight: 300;
            letter-spacing: 0.16em;
            color: #fff;

            @media (max-width: 767px) {
                text-align: center;
            }
        }

        .tit {
            font-family: var(--font-ja-mincho);
            font-size: clamp(1.31rem, 0.583rem + 1.39vw, 2.25rem);
            color: #fff;
            line-height: 1.72em;
            letter-spacing: 0.1em;
            margin-bottom: 1.7em;
            padding-top: .6em;

            @media (max-width: 767px) {
                padding-top: 2em;
            }
        }

        .txt {
            font-size: clamp(0.938rem, 0.906rem + 0.13vw, 1.063rem);
            color: #fff;
            line-height: 2.94em;
            text-align:justify;

            @media (max-width: 959px) {
                line-height: 2.3em;
            }
        }
    }

    .img-box {
        width: min(45%, 735px);
        display: grid;
        gap: clamp(1.5rem, 0.575rem + 1.54vw, 2.425rem) clamp(1.75rem, 0.375rem + 2.29vw, 3.125rem);

        @media (max-width: 767px) {
            width: min(100%, 613px);
            gap: 15px 27px;
        }

        .img {
            border-radius: 17px;
            overflow: hidden;

            @media (max-width: 767px) {
                border-radius: 6.7px;
            }

            img {
                height: 100%;
                object-fit: cover;
                object-position: center;
            }
        }

        .img01 {
            grid-column: span 2 / span 2;
            width: clamp(12.5rem, 2.208rem + 21.44vw, 27.938rem);
            aspect-ratio: 112 / 127;
            margin-left: clamp(2.063rem, 0.25rem + 3.02vw, 3.875rem);

            @media (max-width: 767px) {
                width: min(46%, 306px);
                margin: 0 auto;
                transform: translateX(18px);
            }
        }
        .img02 {
            grid-row-start: 2;
            width: clamp(7.5rem, 0.125rem + 15.36vw, 18.563rem);
            aspect-ratio: 1 / 1 ;
            margin-top: clamp(1.688rem, 0.063rem + 2.71vw, 3.313rem);

            @media (max-width: 767px) {
                width: min(94%, 296px);
                aspect-ratio: 91 / 66;
                margin: 0 auto 0 min(4%, 20px);
            }
        }
        .img03 {
            grid-row-start: 2;
            width: clamp(10rem, 0.5rem + 19.79vw, 24.25rem);
            aspect-ratio: 97 / 71;

            @media (max-width: 767px) {
                width: min(93%, 300px);
                aspect-ratio: 1 / 1;
                margin-top: 14px;
            }
        }
    }
}

@keyframes loopTxt {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


/* お知らせトップ */
.news_mv {
    position: absolute;
    content: "";
    top: 14%;
    left: 0;
    width: min(54%, 790px);
    height: 55px;
    border-radius: 0 100vh 100vh 0;
    background-color: #fff;
    transition: bottom 0.3s ease;

    @media (max-width: 767px) {
        position: relative;
        width: 100%;
        height: 48px;
        border-radius: 0;
    }

    .swiper {
        height: 55px;

        @media (max-width: 767px) {
            height: 48px;
        }

        .news-item_mv {
            display: flex;
            align-items: center;
            width: fit-content;
            padding: 0 max(13px, 5%);
            transition: all .3s;
            max-width: min(70%, 460px);

            @media (max-width: 767px) {
                max-width: min(77%, 460px);
                padding: 0 max(11px, 3%);
            }

            .date {
                font-family: var(--font-en-gothic);
                font-size: 9px;
                color: var(--design-color03);
                padding-top: 3px;
            }

            .tit {
                font-size: clamp(0.688rem, 0.5rem + 0.31vw, 0.875rem);
                font-weight: 400;
                letter-spacing: 0.1em;
                padding-left: 2em;
                overflow: hidden;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                line-clamp: 2;
                -webkit-line-clamp: 2;

                @media (max-width: 767px) {
                    padding-left: 1.2em;
                }
            }
        }
    }

    .news-btns {
        position: absolute;
        content: "";
        top: 0;
        right: clamp(20px, -2.083rem + 6.94vw, 100px);
        display: flex;
        flex-flow: column;
        width: calc(30rem / 16);
        height: 100%;

        @media (max-width: 767px) {
            right: 0;
        }
    }

    .news-btn_prev,
    .news-btn_next {
        width: 100%;
        height: 50%;
        top: 46%;
        left: 0;
        right: 0;

        &:after {
            position: absolute;
            content: "";
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: url(../img/arrow04.png) no-repeat center center / contain;
            width: 10px;
            height: 7px;
        }

        &.news-btn_next {
            top: auto;
            bottom: 0;

            &::after {
                transform: translate(-50%, -50%) scale(1, -1);
            }
        }

        @media (max-width: 767px) {
            height: 100%;

            &.news-btn_prev {
                display: none;
            }
        }
    }
}



/*========================================================
    ギャラリーループ
==========================================================*/
.loopGallery-container {
    margin-top: -7%;
    padding-bottom: 16%;

    @media (max-width: 767px) {
        margin-top: -15%;
        padding-bottom: 13%;
    }

    .loopGallery-wrap {
        display: flex;
        overflow: hidden;

        .gallery-list {
            display: flex;
            animation: loopGallery 80s infinite linear 0.5s both;

            .item01 {
                width: 110vw;
                @media (max-width: 767px) {
                    width: 190vw;
                }
            }
            .item02 {
                width: 81vw;
                @media (max-width: 767px) {
                    width: 140vw;
                }
            }
        }
    }
}

@keyframes loopGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


/*========================================================
    事業内容
==========================================================*/

/* 事業内容ページと店舗施工事例と共通 */
.service-type,
.store-type {
    border-radius: 20px;
    overflow: hidden;
    position: relative;

    @media (max-width: 767px) {
        border-radius: 7px;
    }

    .txt {
        position: absolute;
        left: 1em;
        bottom: 1.36em;
        font-family: var(--font-en-gothic);
        font-weight: 700;
        letter-spacing: .06em;
        color: #fff;
        transition: .3s;

        @media (max-width: 959px) {
            left: .5em;
            bottom: .8em;
        }

        .sub {
            display: block;
            font-family: var(--font-ja-gothic);
            font-weight: 500;
            letter-spacing: .3em;
            margin-top: .3em;
            transition: .3s;
        }
    }
}



.services-container {
    padding-bottom: 10%;

    @media (max-width: 767px) {
        padding-bottom: 28.3%;
    }

    .tit-wrap {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: min(85%, 1500px);
        margin: 0 auto;

        @media (max-width: 767px) {
            flex-flow: column;
            width: min(90%);
            margin: 0 0 0 auto;

            .btn {
                margin: 22px 0 0 auto;
                border-radius: 8px 0 0 0;
            }
        }
    }

    .inner {
        padding-top: 5.2%;
        width: min(90%, 1300px);
        margin: 0 auto;

        @media (max-width: 767px) {
            width: 100%;
            padding: 0;
        }

        .services-wrap {
            display: flex;
            gap: clamp(0.875rem, -0.708rem + 3.3vw, 3.25rem);

            @media (max-width: 767px) {
                flex-flow: column;
                gap: 0;
            }

            .service-type {

                @media (max-width: 767px) {
                    border-radius: 0;
                    aspect-ratio: 13 / 8;
                }

                .txt {
                    font-size: clamp(1.313rem, 0.563rem + 1.56vw, 2.438rem);

                    @media (max-width: 959px) {
                        left: .5em;
                        bottom: .8em;
                    }

                    @media (max-width: 767px) {
                        top: 50%;
                        bottom: auto;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        text-align: center;
                        font-weight: 500;
                        font-size: clamp(1.813rem, 1.231rem + 2.39vw, 2.375rem);
                    }

                    .sub {
                        font-size: clamp(0.625rem, 0.333rem + 0.61vw, 1.063rem);

                        @media (max-width: 767px) {
                            font-size: clamp(0.813rem, 0.489rem + 1.33vw, 1.125rem);
                            margin-top: 1em;
                        }
                    }
                }

                .back {
                    transition: .3s;
                    position: relative;

                    &::before {
                        position: absolute;
                        content: "";
                        top: 0;
                        left: 0;
                        background-color: rgba(70, 70, 70, .3);
                        width: 100%;
                        height: 100%;
                        transition: .6s;
                    }
                }

                &:hover {
                    opacity: 1;

                    .txt {
                        text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
                    }

                    .back {
                        transform: scale(1.2);
                        transition: .6s;

                        &::before {
                            opacity: 0;
                            transition: 1.2s;
                        }
                    }
                }
            }
        }
    }
}







/*========================================================
    施工事例
==========================================================*/
.works-container {
    padding: 13% 0 20%;
    position: relative;

    &::before {
        position: absolute;
        content: '';
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: url(../img/top/jpg_png/works_bg.png) no-repeat center center / cover;
        width: 100%;
        height: 100%;
    }

    @media (max-width: 767px) {
        padding: 21% 0 min(30%, 161px);
    }

    @media (max-width: 500px) {
        &::before {
            background: url(../img/top/jpg_png/works_bg_sp.png) no-repeat center center / cover;
        }
    }

    .section-tit {
        text-align: center;
        position: relative;
        z-index: 1;

        @media (max-width: 767px) {
            text-align: left;
            margin-left: 10%;
        }
    }

    .inner {
        padding-top: 8%;
        position: relative;
        z-index: 2;

        @media (max-width: 767px) {
            padding-top: min(22%, 100px);
        }
    }

    .swiper-wrapper {
        cursor: grab;
        z-index: auto !important;

        .works-item {
            transition: all 1s;
            border-radius: 18px;
            background-color: #fff;
            overflow: hidden;

            &:not(.swiper-slide-active) {
                transform: scale(0.9);
            }
        }
    }

    .img {
        aspect-ratio: 97 / 71;

        img {
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
    }

    .text-box {
        padding: 6.2% 8.2%;
        aspect-ratio: 194 / 87;

        @media (max-width: 767px) {
            padding: 5% 4% 7%;
            aspect-ratio: 132 / 70;
        }

        .tag {
            display: flex;
            flex-wrap: wrap-reverse;
            align-items: center;
            gap: min(4%,30px);
            row-gap: 5px;
            color: var(--design-color01);

            .date {
                font-size: clamp(0.563rem, 0.499rem + 0.26vw, 0.813rem);
                letter-spacing: .16em;
            }

            .category {
                display: flex;
                gap: 10px;

                p {
                    font-size: clamp(0.563rem, 0.515rem + 0.2vw, 0.75rem);
                    padding: 4px;
                    border: .5px solid var(--design-color01);
                }
            }
        }

        .tit {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            overflow: hidden;
            margin-top: 1em;
            font-size: clamp(0.875rem, 0.811rem + 0.26vw, 1.125rem);
            color: var(--design-color02);
            letter-spacing: .1em;
            line-height: 1.3em;
        }

        .more {
            position: absolute;
            right: 8.2%;
            bottom: 6.2%;

            @media (max-width: 767px) {
                padding-right: 7px;
                right: 4%;
                bottom: 5%;
            }
        }
    }

    .line {
        margin: min(18%, 70px) auto 0;
    }
}


/*  スクロールヒント
==========================================================*/

@media (min-width: 768px) {
    .scroll-hint-icon-wrap {
        display: none;
    }
}
.scroll-hint {
    scrollbar-width: none;
    -ms-overflow-style: none;

    &::-webkit-scrollbar {
        display: none;
    }

    .scroll-hint-icon {
        top: calc(50% - 90px);
        box-shadow: 0px 1px 5px rgba(108, 108, 108, .8);
        padding: 25px 5px 15px 5px;
        height: 120px;
        border-radius: 100vh;

        &::before {
            position: absolute;
            top: 46%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .scroll-hint-text {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            font-family: var(--font-ja-gothic);
            font-weight: 500;
            margin-top: 0;
        }

        &::after {
            top: 15px;
            margin: 0;
            transform: translateX(-50%);
        }
    }
}

@keyframes scroll-hint-appear {
    0% {
        transform: translateX(calc(-50% + 20px)) translateY(-50%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50%, 100% {
        transform: translateX(calc(-50% - 20px)) translateY(-50%);
        opacity: 0;
    }
}



/*========================================================
    お知らせ- トップ
==========================================================*/
.news-container {
    padding: 7% 0 10%;

    @media (max-width: 767px) {
        padding: max(14%, 100px) 0 max(13%, 90px);
    }

    .section-tit {
        margin-left: 13%;

        @media (max-width: 767px) {
            margin-left: 10%;
        }
    }

    .inner {
        padding-top: 5.2%;
        width: min(70%, 950px);
        margin: 0 auto;

        @media (max-width: 767px) {
            width: min(85%, 425px);
            padding-top: min(20%, 76px);
        }

        .news-item {
            padding: 2em 1em;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #a3a3a3;
            position: relative;

            &::before {
                position: absolute;
                content: '';
                top: 50%;
                right: 2em;
                transform: translateY(-50%);
                background: url(../img/arrow02.png) no-repeat center center / contain;
                width: 13px;
                aspect-ratio: 7 / 4;
                transition: all .4s;
            }

            &:hover::before {
                right: 1.5em;
            }

            @media (max-width: 767px) {
                display: grid;
                grid-template-columns: clamp(4.375rem, 3.48rem + 4.47vw, 5.625rem) auto;
                padding: 1.3em 2em 1.3em 0.5em;

                &::before {
                    display: none;
                }

                &:first-of-type {
                    border-top: 1px solid #a3a3a3;
                }
            }

            .date {
                font-size: clamp(0.563rem, 0.515rem + 0.2vw, 0.75rem);
                color: var(--design-color03);
                letter-spacing: .16em;
            }

            .tit {
                font-size: clamp(0.813rem, 0.75rem + 0.31vw, 1.125rem);
                font-weight: 400;
                letter-spacing: .1em;
                color: var(--design-color02);
                margin: 0 1.5em 0 2.5em;

                @media (min-width: 768px) {
                    white-space: nowrap;
                    text-overflow: ellipsis;
                    overflow: hidden;
                }

                @media (max-width: 767px) {
                    grid-column: span 2 / span 2;
                    grid-column-start: 1;
                    grid-row-start: 2;
                    margin: 5px 0 0;
                    width: fit-content;
                    position: relative;

                    &::before {
                        position: absolute;
                        content: '';
                        top: 0.4em;
                        right: -1.5em;
                        background: url(../img/arrow02.png) no-repeat center center / contain;
                        width: 9px;
                        aspect-ratio: 7 / 4;
                    }
                }
            }

            /* 新着 */
            .new {
                display: flex;
                font-family: var(--font-en-gothic);
                font-size: clamp(0.688rem, 0.608rem + 0.33vw, 1rem);
                color: #fabd40;
                letter-spacing: .16em;

                span {
                    display: inline-block;
                    animation: bounce  5.4s ease infinite;
                    animation-fill-mode: both;
                    /* 0.6 秒ずつ遅らせる */
                    &:nth-child(2) { animation-delay: .2s; }
                    &:nth-child(3) { animation-delay: .4s; }
                    &:nth-child(4) { animation-delay: .6s; }
                }

                @media (max-width: 767px) {
                    grid-column-start: 2;
                    grid-row-start: 1;
                }
            }
        }

        .btn {
            margin: 9% 0 0 auto;

            @media (max-width: 767px) {
                margin: 60px auto 0;
            }
        }
    }
}

@keyframes bounce {
  0%, 100%   { transform: translateY(0); }
  5.5%       { transform: translateY(-3px); } /* 高さのピーク */
  11.1%      { transform: translateY(0); }
  /* 残り 88.9% = 4.8s は静止：全体で 5.4s になる */
}



/*========================================================
    私たちについて
==========================================================*/
.about-container {
    padding: 12.5% 0 20%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url(../img/top/jpg_png/about_bg.jpg) no-repeat center center / cover;

    @media (max-width: 767px) {
        padding: min(26%, 100px) 0 min(74%, 300px);
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                    url(../img/top/jpg_png/about_bg_sp.jpg) no-repeat center center / cover;
    }

    .section-tit {
        text-align: center;
        color: #fff;
    }

    .inner {
        padding-top: 4.3%;
        width: fit-content;
        margin: 0 auto;

        @media (max-width: 767px) {
            padding-top: min(16%, 62px);
        }

        .btn {
            background-color: #fff;

            &:nth-of-type(n+2) {
                margin-top: 30px;

                @media (max-width: 767px) {
                    margin-top: 25px;
                }
            }

            &.btn_tel {
                
                a {
                    padding: 1.6em 1.7em 1.4em 2.4em;
                }

                .tel {
                    .sub_tel {
                        display: block;
                        font-size: clamp(0.688rem, 0.64rem + 0.2vw, 0.875rem);
                        text-align: center;
                        margin-top: 0.5em;
                    }
    
                }
            }

            a {
                .sub_en {
                    font-size: clamp(0.5rem, 0.468rem + 0.13vw, 0.625rem);
                    color: var(--design-color01);
                    padding-left: 2em;
                }
            }
        }
    }
}



/*========================================================
    派生ページ - 共通
==========================================================*/
.sub-section-top {
    padding:  min(18%, 266px) 0 min(19%, 190px);
    width: min(87%, 1300px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;

    @media (max-width: 767px) {
        width: 84%;
        flex-direction: column;
        align-items: baseline;
        gap: 8.2%;
        padding: min(42%, 190px) 0 18.5%;
        border-bottom: 1px solid var(--design-color05);
    }

    .sub-top-img {
        width: min(55%, 580px);

        @media (max-width: 767px) {
            margin-top: 8.2%;
            width: 100%;
        }
    }
}




/*========================================================
    お知らせページ
==========================================================*/
.derived_news-wrap .sub-section-top {
    @media (max-width: 767px) {
        padding-bottom: 10%;
    }
}

/* 最新ニュース */
.latest-news {
    padding-bottom: min(13%, 133px);

    @media (max-width: 767px) {
        padding: 21% 0 26%;
    }

    .inner {
        width: min(78%, 1165px);
        margin: 0 auto;
        display: flex;
        align-items: center;
        padding: 2% 0 2% 2%;
        border: 1px solid #a3a3a3;

        @media (max-width: 767px) {
            width: min(72.5%, 420px);
            flex-direction: column;
            padding: 20px;
        }

        .latest-img {
            width: min(45%, 475px);
            aspect-ratio: 95 / 56;

            @media (max-width: 767px) {
                width: 100%;
                height: auto;
                aspect-ratio: 141 / 83;
            }
        }

        .text-box {
            width: min(47%, 550px);
            margin: 0 auto;
            padding-top: 1rem;

            @media (max-width: 767px) {
                width: 100%;
                padding-top: 1.5rem;
            }

            .date {
                font-family: var(--font-en-gothic);
                font-size: clamp(0.625rem, 0.593rem + 0.13vw, 0.75rem);
                color: var(--design-color03);
                letter-spacing: .14em;
            }

            .tit {
                font-size: clamp(1.125rem, 1.077rem + 0.2vw, 1.313rem);
                letter-spacing: .1em;
                color: var(--design-color01);
                font-weight: 400;
                margin-top: 1em;

                @media (max-width: 767px) {
                    margin-top: 0.5em;
                }
            }

            .txt {
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 3;
                line-clamp: 3;
                overflow: hidden;
                text-align:justify;
                font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
                line-height: 1.9em;
                margin: 2em 0;

                @media (max-width: 959px) {
                    margin: 1em 0;
                }

                @media (max-width: 767px) {
                    -webkit-line-clamp: 4;
                    line-clamp: 4;
                    margin: 1.5em 0;
                }
            }

            .more {
                a {
                    font-size: 16px;
                }
            }
        }
    }
}

/* アーカイブ一覧 */
.archive-container {
    padding: 0 0 min(20%, 380px);

    @media (max-width: 767px) {
        padding: 0 0 min(70%, 280px);

        .news-list .first-in-page {
            border-top: 1px solid #a3a3a3;
        }
    }

    .news-categories {
        border-bottom: 1px solid var(--design-color02);
        position: relative;
        
        .news-category-list {
            width: min(100% - 4rem, 1523px);
            margin: 0 auto;
            display: flex;
            gap: 0 50px;
            padding-top: 100px;

            @media (max-width: 767px) {
                gap: 20px;
                overflow-x: scroll;
                overflow-y: visible;
                scrollbar-width: none;

                &::-webkit-scrollbar {
                    display: none;
                }
            }

            .category-name {
                font-size: clamp(14px, calc(13.538461538461538px + 0.1282051282051282vw), 16px);
                letter-spacing: 0.01em;
                padding-bottom: 27px;
                white-space: nowrap;
                position: relative;

                &::before {
                    position: absolute;
                    content: "";
                    background-color: var(--design-color03);
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    height: 5px;
                    transition: all .4s ease;
                    opacity: 0;
                }

                &.active {
                    color: var(--design-color03);
                    font-weight: 600;

                    &:hover {
                        opacity: 1;
                    }

                    &::before {
                        opacity: 1;
                    }
                }
            }
        }

    }

    .inner {

        .news-list {
            .news-item.dummy {
                visibility: hidden;
                display: flex;
                color: transparent;
            }
        }
    }


    .pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: clamp(2.813rem, 0.104rem + 5.64vw, 6.875rem);

        @media (max-width: 767px) {
            margin-top: 15%;
        }

        .page-numbers {
            background: none;
            border: none;
            margin: 0 5px;
            padding: 5px 10px;
            font-size: 24px;
            color: var(--design-color05);
            transition: all .2s;

            &:hover {
                cursor: pointer;
                opacity: .7;
            }

            &.current {
                color: var(--design-color03);
                font-weight: bold;
            }
        }

        .prev,
        .next {
            color: var(--design-color01);
        }

        .dummy {
            opacity:0;
            pointer-events:none;
            font-size: 24px;
        }
    }
}



/*========================================================
    会社概要ページ
==========================================================*/
.sub_section-tit {
    width: min(87%, 1300px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: clamp(1.313rem, 1.105rem + 0.85vw, 2.125rem);
    letter-spacing: .1em;
    color: var(--design-color01);
    padding-left: 0.6em;

    @media (max-width: 767px) {
        width: 82.5%;
        padding: 0;
        color: #737373;
    }

    .sub_en {
        display: block;
        font-family: var(--font-en-gothic);
        font-weight: 400;
        font-size: max(9px, 48%);
        letter-spacing: .16em;
        margin-left: 1.2em;
    }
}

.derived_company-wrap .sub-section-top {
    border-bottom: 1px solid var(--design-color05);
}

/* 理念 */
.policy-container {
    padding: 39px 0 max(124px, 9%);

    @media (max-width: 767px) {
        padding: 26px 0 min(34%, 100px);
    }

    .inner {
        width: min(85%, 1300px);
        margin: 0 auto;
        display: flex;
        justify-content: right;
        padding-top: 11.5%;

        @media (max-width: 959px) {
            flex-direction: column;
            width: 77%;
        }

        @media (max-width: 767px) {
            padding-top: min(11.5%, 90px);
        }

        .policy-tit {
            white-space: nowrap;
            font-family: var(--font-ja-mincho);
            text-align: center;
            font-size: 36px;
            letter-spacing: .02em;
            padding-top: 1.3em;

            @media (max-width: 959px) {
                font-weight: 500;
                padding: 0;
            }

            @media (max-width: 767px) {
                font-size: 20px;
            }

            .policy_en {
                display: block;
                color: var(--accent-color);
                font-family: var(--font-point);
                letter-spacing: .13em;
                font-weight: 300;
                font-size: 19px;
                margin-top: 1em;

                @media (max-width: 767px) {
                    font-size: 11px;
                    font-weight: 400;
                }
            }
        }

        .text-box {
            width: min(50%, 642px);
            padding-left: min(4%, 120px);

            @media (max-width: 959px) {
                width: 100%;
                padding: min(20%, 55px) 0 0 0;
            }

            .txt {
                font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
                line-height: 2.125em;
                text-align: justify;
            }

            .president {
                display: flex;
                align-items: center;
                justify-content: right;
                padding-top: 44px;

                .post {
                    font-family: var(--font-ja-mincho);
                    font-weight: 600;
                    letter-spacing: .1em;
                    font-size: clamp(0.781rem, 0.725rem + 0.23vw, 1rem);
                    margin-right: 1.5em;
                }

                .sig {
                    width: min(40%, 191px);

                    @media (max-width: 767px) {
                        width: min(50%, 177px);
                    }
                }
            }
        }
    }
}

/* 沿革 */
.history-container {
    padding: 7% 0 9.3%;
    background: #D1EFFF;
    background: linear-gradient(135deg, rgba(209, 239, 255, 1) 0%, rgba(227, 222, 179, 1) 23%, rgba(234, 215, 153, 1) 39%, rgba(253, 197, 90, 1) 64%, rgba(249, 200, 102, 1) 83%, rgba(255, 255, 255, 1) 100%);
    position: relative;

    @media (max-width: 767px) {
        padding: 18.8% 0 23%;
        background: linear-gradient(135deg, rgba(221, 240, 253, 1) 0%, rgba(231, 227, 195, 1) 23%, rgba(235, 221, 174, 1) 39%, rgba(246, 207, 123, 1) 64%, rgba(243, 209, 132, 1) 83%, rgba(255, 255, 255, 1) 100%);
    }

    .tit-wrap {
        display: flex;
        align-items: center;
        width: min(87%, 1300px);
        margin: 0 auto;

        .sub_section-tit {
            width: auto;
            margin: 0;
        }

        @media (max-width: 767px) {
            width: 82.5%;
            justify-content: space-between;
        }
    }

    .inner {
        padding-top: 5.3%;
        margin-left: 15%;
        overflow: hidden;

        @media (max-width: 767px) {
            padding-top: min(24.5%, 103px);
            margin-left: 7.6%;
        }

        .swiper {
            overflow: visible;
        }

        .history-item {
            width: min(55%, 400px);
            border-radius: 20px;
            background-color: #fff;
            min-height: 380px;
            position: relative;

            @media (max-width: 767px) {
                width: min(89%, 330px);
                min-height: 304px;
                border-radius: 16px;

                &:last-of-type {
                    margin-right: 10px;
                }
            }

            .history-year {
                position: absolute;
                top: 15px;
                right: 15px;
                font-family: var(--font-ja-mincho);
                font-size: clamp(3.813rem, 3.558rem + 1.05vw, 4.813rem);
                font-weight: 500;
                color: var(--design-color03);
                letter-spacing: .06em;
                opacity: .25;
            }

            .text-box {
                padding: 143px 0 26px 26px;

                @media (max-width: 767px) {
                    padding: 115px 0 20px 20px;
                }

                .date {
                    font-size: 10px;
                    color: var(--design-color03);
                    letter-spacing: .16em;
                }

                .tit {
                    font-size: clamp(1.188rem, 1.108rem + 0.33vw, 1.5rem);
                    letter-spacing: .02em;
                    margin-top: 10px;
                }

                .txt {
                    font-size: clamp(0.75rem, 0.686rem + 0.26vw, 1rem);
                    letter-spacing: .08em;
                    line-height: 1.5em;
                    padding: 1.2em 0 1em;

                    .blankspace {
                        display: block;
                        --blank-font-size: clamp(0.75rem, 0.686rem + 0.26vw, 1rem);
                        font-size: var(--blank-font-size);
                        --line-height: calc(var(--blank-font-size)*1.5);
                        height: var(--line-height);
                    }
                }

                .img {
                    width: min(70%, 222px);
                }
            }
        }
    }
}

.history-container .swiper-nav {
    margin-left: 147px;
    display: flex;
    align-items: center;
    gap: 18px;
    height: auto !important;

    @media (max-width: 767px) {
        margin: 0;
        gap: 14px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: block;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        /* border: 1px solid var(--design-color03); */
        background-color: #fff;
        cursor: pointer;
        position: relative;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        transition: .3s;
        margin: 0;

        &::after {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: calc(100% + 2px);
            height: calc(100% + 2px);
            background: url(../img/arrow05.png) no-repeat center center / contain;
            border-radius: 50%;
            content: "";
            transition: .3s;
        }

        &.swiper-button-prev::after {
            transform: translate(-50%, -50%) scaleX(-1);
        }

        &.swiper-button-disabled {
            opacity: .6 !important;
        }

        &:hover {
            opacity: .8;

            /* &::after {
                background: url(../img/arrow05_hov.png) no-repeat center center / contain;
            } */
        }

        @media (max-width: 767px) {
            width: 34px;
            height: 34px;
        }
    }
}

.history-container .scrollbar {
    margin-top: 70px;

    @media (max-width: 767px) {
        margin-top: 46px;
    }

    .swiper-scrollbar {
        position: relative;
        top: 0;
        left: 0;
        width: min(70%, 1300px);
        height: 4px;
        background-color: #fff;
        border-radius: 0;

        @media (max-width: 767px) {
            width: 90%;
        }

        .swiper-scrollbar-drag {
            background-color: var(--design-color03);
            border-radius: 0;
        }
    }
}

/* 概要 */
.summary-container {
    padding: 10% 0 25%;

    @media (max-width: 767px) {
        padding: min(29%, 145px) 0 280px;
    }

    .inner {
        width: min(80%, 1300px);
        margin: 0 auto;
        padding-top: 40px;

        @media (max-width: 767px) {
            width: min(85%, 500px);
        }

        .summary-wrap {
            padding-left: min(10%, 470px);

            @media (max-width: 767px) {
                padding: 0;
            }

            dl {
                padding: 28px 0 28px 5px;
                display: flex;
                width: 100%;
                flex-wrap: wrap;
                border-bottom: 1px solid #c0c0c0;
                color: #4a4a4a;
                font-size: clamp(0.813rem, 0.749rem + 0.26vw, 1.063rem);
                letter-spacing: .075em;
                line-height: 1.76em;

                @media (max-width: 767px) {
                    padding: 25px 0 25px 5px;
                }

                .item {
                    width: 18%;
                    font-weight: 500;

                    @media (max-width: 767px) {
                        width: 36%;
                    }
                }

                .content {
                    width: 82%;
                    letter-spacing: .04em;
                    line-height: 2em;
                    white-space: nowrap;

                    @media (max-width: 767px) {
                        width: 64%;

                    }

                    @media (max-width: 330px) {
                        .sp_tyou {
                            display: inline-block;
                            transform: scaleX(0.8) translateX(-1.2em);
                        }
                    }
                }
            }
        }
    }
}


/*  事業内容ページ
==========================================================*/
.derived_services-wrap .sub-section-top {
    border-bottom: none;
}

.services-container_sub {
    padding: 52px 0 min(20%, 395px);

    @media (max-width: 767px) {
        padding: min(29%, 60px) 0 85px;
    }

    @media (max-width: 767px) {
        padding-top: 44px;
    }

    >.inner {
        width: min(87%, 1190px);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;

        @media (max-width: 959px) {
            width: min(83%, 600px);
            flex-direction: column-reverse;
        }
        @media (max-width: 330px) {
            width: 88%;
        }

        .services-wrap {
            --cardWidth: clamp(18.75rem, 14.063rem + 7.81vw, 23.438rem);
            width: var(--cardWidth);
            margin: 0;
            padding-right: clamp(0.625rem, -4.375rem + 8.33vw, 5.625rem);

            @media (max-width: 959px) {
                --cardWidth: clamp(13.75rem, 9.723rem + 16.52vw, 19.625rem);
                padding-right: 10px;
            }

            @media (max-width: 330px) {
                --cardWidth: 200px;
            }

            .service-type {
                .txt {
                    font-size: clamp(1.188rem, 0.933rem + 1.05vw, 2.188rem);
                    font-weight: 500;

                    .sub {
                        font-size: clamp(0.625rem, 0.545rem + 0.33vw, 0.938rem);
                        font-weight: 400;
                    }
                }
            }
        }

        .text-box {
            width: min(50%, 572px);

            @media (max-width: 959px) {
                width: 100%;
                padding-top: min(18%, 70px);
            }

            .tit {
                font-family: var(--font-ja-mincho);
                font-size: clamp(1.313rem, 1.074rem + 0.98vw, 2.25rem);
                font-weight: 600;
                letter-spacing: .1em;
                line-height: 1.7em;
    
                @media (max-width: 767px) {
                    width: fit-content;
                    margin: 0 auto;
                }
                @media (max-width: 330px) {
                    font-size: 18px;
                }
            }
            .txt {
                padding-top: clamp(2.813rem, 0.375rem + 4.06vw, 5.25rem);
                font-size: clamp(0.875rem, 0.827rem + 0.2vw, 1.063rem);
                line-height: 2em;
                text-align: justify;
    
                @media (max-width: 959px) {
                    padding-top: min(3%, 57px);
                }
    
                @media (max-width: 767px) {
                    width: 93%;
                    margin: 0 auto;
                    padding-top: 2em;
                }
            }
            .btn {
                margin-top: 10%;
    
                @media (max-width: 959px) {
                    margin: 7% auto 0;
                }
    
                @media (max-width: 767px) {
                    margin-top: 12%;
                }
    
                a {
                    width: clamp(13.875rem, 12.983rem + 3.66vw, 17.375rem);
                    font-size: clamp(1rem, 0.92rem + 0.33vw, 1.313rem);
    
                    @media (max-width: 959px) {
                        &::before {
                            width: 1.75em;
                            background-size: 0.8em auto;
                        }
                    }
    
                    @media (max-width: 767px) {
                        padding: 1.5em 1.4em;
    
                        &::before {
                            right: 1.4em;
                        }
                    }
                }
            }
        }
    }

    .works-list {
        width: min(90%, 1052px);
        margin: 0 auto;
        padding-top: 10%;

        @media (max-width: 767px) {
            width: min(89vw, 600px);
        }

        >.works-block {
            height: clamp(25rem, 20.833rem + 8.68vw, 31.25rem);
            border-radius: 20px;
            overflow: hidden;
            position: relative;

            @media (max-width: 767px) {
                border-radius: 10px;
            }

            & + & {
                margin-top: 77px;

                @media (max-width: 767px) {
                    margin-top: 20px;
                }
            }

            .img_bg {
                height: 100%;

                img {
                    height: 100%;
                    object-fit: cover;
                    object-position: center center;
                }
            }

            .text-box {
                position: absolute;
                top: 50%;
                left: 66px;
                transform: translateY(-50%);
                width: 464px;

                @media (max-width: 767px) {
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 83%;
                }

                .tit {
                    font-size: clamp(1.938rem, 1.842rem + 0.39vw, 2.313rem);
                    font-weight: 500;
                    letter-spacing: .06em;
                    color: #fff;

                    .sub {
                        display: block;
                        font-size: clamp(0.75rem, 0.702rem + 0.2vw, 0.938rem);
                        margin-top: 1.2em;
                    }
                }
                .txt {
                    color: #fff;
                    font-size: clamp(0.875rem, 0.859rem + 0.07vw, 0.938rem);
                    line-height: 1.8em;
                    padding: 3.8em 0 2.5em;
                    text-align: justify;

                    @media (max-width: 959px) {
                        padding: 2em 0 1em;
                    }
                    @media (max-width: 767px) {
                        padding: 3em 0 2em;
                    }
                }

                .btn {

                    @media (max-width: 767px) {
                        margin: 0 auto;
                    }
                    a {
                        @media (max-width: 767px) {
                            width: clamp(10rem, 8.658rem + 6.71vw, 11.875rem);
                            padding: 1.5em 1em;
                            box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.1);

                            &::before {
                                right: 1em;
                            }
                        }
                    }
                }
            }
        }
    }
}



/*  カードエフェクト　共通
==========================================================*/
.services-container_sub .service-type,
.category-wrap .store-type {

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0;
        transition: opacity 1s;
    }

    /* 1つ目 */
    &:first-of-type {
        /* next */
        transform: translate(calc(13% - 75px), -29px) rotateZ(18deg) scale(1) !important;

        &::before {
            opacity: 1;
            background-image: url(../img/services/jpg_png/service-swiper_next.jpg);
        }

        @media (max-width: 767px) {
            transform: translate(calc(13% - 48px), -18px) rotateZ(18deg) scale(1) !important;
        }

        /* active */
        &.swiper-slide-active {
            transform: translate(0px, 0px) rotateZ(0deg) scale(1) !important;

            &::before {
                opacity: 0;
            }
        }

        /* prev */
        &.swiper-slide-prev {
            transform: translate(calc(3% - 0px), 0px) rotateZ(-10deg) scale(1) !important;

            &::before {
                opacity: 1;
                background-image: url(../img/services/jpg_png/service-swiper_prev.jpg);
            }
        }
    }

    /* ２つ目 */
    &:nth-of-type(2) {
        /* prev */
        &.swiper-slide-prev {
            transform: translate(calc(3% - var(--cardWidth)), 0px) rotateZ(-10deg) scale(1) !important;

            &::before {
                opacity: 1;
                background-image: url(../img/services/jpg_png/service-swiper_prev.jpg);
            }
        }

        /* next */
        &.swiper-slide-next {
            transform: translate(calc(7.25% - calc(var(--cardWidth) + 75px)), -29px) rotateZ(18deg) scale(1) !important;

            &::before {
                opacity: 1;
                background-image: url(../img/services/jpg_png/service-swiper_next.jpg);
            }

            @media (max-width: 959px) {
                transform: translate(calc(7.25% - calc(var(--cardWidth) + 40px)), -18px) rotateZ(18deg) scale(1) !important;
            }

        }
    }

    /* ３つ目 */
    &:nth-of-type(3) {
        /* prev */
        transform: translate(calc(3% - calc(var(--cardWidth) * 2)), 0px) rotateZ(-10deg) scale(1) !important;

        &::before {
            opacity: 1;
            background-image: url(../img/services/jpg_png/service-swiper_prev.jpg);
        }

        /* active */
        &.swiper-slide-active {
            transform: translate(calc(var(--cardWidth) * -2), 0px) rotateZ(0deg) scale(1) !important;

            &::before {
                opacity: 0;
            }
        }

        /* next */
        &.swiper-slide-next {
            transform: translate(calc(7.25% - calc(var(--cardWidth)*2 + 75px)), -29px) rotateZ(18deg) scale(1) !important;

            &::before {
                opacity: 1;
                background-image: url(../img/services/jpg_png/service-swiper_next.jpg);
            }

            @media (max-width: 959px) {
                transform: translate(calc(7.25% - calc(var(--cardWidth)*2 + 40px)), -18px) rotateZ(18deg) scale(1) !important;
            }
        }
    }

    &.swiper-slide-active .back {
        position: relative;

        &::before {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            background-color: rgba(70, 70, 70, .3);
            width: 100%;
            height: 100%;
            transition: .6s;
        }
    }
}

.project-container {
    padding: 10% 0 24%;
    background-color: #eef2f2;

    @media (max-width: 767px) {
        padding: min(19%, 100px) 0 min(74%, 300px);
    }

    .project-map {
        width: min(60%, 900px);
        margin: 0 auto;

        @media (max-width: 767px) {
            width: min(86%, 500px);
        }
    }

    .point-wrap {
        width: min(80%, 1100px);
        margin: 0 auto;
        padding-top: 9%;

        @media (max-width: 959px) {
            width: 90%;
        }

        @media (max-width: 767px) {
            width: min(82%, 370px);
            padding-top: min(23%, 80px);
        }

        @media (max-width: 330px) {
            width: 84%;
        }

        .point-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
            padding: 28px 90px 28px 28px;
            background-color: #fff;
            border-radius: 20px;

            & + & {
                margin-top: 40px;

                @media (max-width: 767px) {
                    margin-top: 46px;
                }
            }

            @media (max-width: 959px) {
                padding: 20px 30px 20px 20px;
                gap: 20px;
            }

            @media (max-width: 767px) {
                display: block;
                padding: 16px;
            }

            .img {
                width: 25%;
                border-radius: 20px;
                overflow: hidden;
                aspect-ratio: 1 / 1;

                @media (max-width: 767px) {
                    width: 100%;
                    border-radius: 16px;
                    aspect-ratio: 29 / 21;
                }

                img {
                    object-fit: cover;
                    object-position: center;
                }
            }

            .text-box {
                width: 67%;

                @media (max-width: 767px) {
                    width: 95%;
                    margin: 0 auto;
                    padding-top: 30px;
                }

                @media (max-width: 330px) {
                    width: 100%;
                }

                .point {
                    font-family: var(--font-point);
                    font-size: clamp(0.75rem, 0.718rem + 0.13vw, 0.875rem);
                    color: var(--accent-color);
                    letter-spacing: .16em;
                }

                .tit {
                    padding: .5em 0;
                    font-size: clamp(1.063rem, 0.951rem + 0.46vw, 1.5rem);
                    font-weight: 500;
                    letter-spacing: .12em;
                    border-bottom: 1px solid #000;

                    @media (max-width: 767px) {
                        text-align: center;
                    }
                    @media (max-width: 330px) {
                        line-height: 1.25em;

                        &.w330_small {
                            font-size: 14px;
                        }
                    }
                }

                .txt {
                    padding-top: 1.2em;
                    font-size: clamp(0.875rem, 0.827rem + 0.2vw, 1.063rem);
                    line-height: 1.8em;
                    text-align: justify;

                    @media (max-width: 767px) {
                        padding-bottom: 2.4em;
                    }
                }
            }
        }
    }
}




/*========================================================
    店舗施工事例
==========================================================*/
.store-works-container {
    .sub-section-top {
        border: none;
    }
    .store-top {
        overflow: hidden;
        z-index: 2;

        @media (max-width: 767px) {
            max-height: 500px;
        }

        img {
            object-fit: cover;
            object-position: center;
        }
    }
}


.category-wrap {
    padding: 7% 0 11%;
    position: relative;

    @media (max-width: 767px) {
        padding: min(24%, 115px) 0 23%;
    }

    >.container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: min(80%, 1050px);
        margin: 0 auto;

        @media (max-width: 767px) {
            width: max(195px, 80%);
            justify-content: center;
            flex-wrap: wrap;
            gap: 130px;
        }
    }

    .store-category {
        --cardWidth: clamp(12.188rem, 9.32rem + 11.76vw, 23.438rem);
        width: var(--cardWidth);

        .store-type {

            .txt {
                position: absolute;
                bottom: 1em;
                left: .7em;
                font-family: var(--font-en-gothic);
                font-size: clamp(1.125rem, 0.854rem + 1.11vw, 2.188rem);
                line-height: 1.2em;
                letter-spacing: .06em;
                color: #fff;
                font-weight: 500;
                z-index: 5;

                .sub {
                    display: block;
                    margin-top: 1em;
                    font-family: var(--font-ja-gothic);
                    font-size: clamp(0.438rem, 0.31rem + 0.52vw, 0.938rem);
                    font-weight: 300;
                    line-height: 1em;
                }
            }

        }

        .btn {
            margin: 90px auto 0;

            @media (max-width: 767px) {
                margin-top: 46px;
            }

            a {
                width: clamp(6.875rem, 5.839rem + 4.25vw, 10.938rem);
                font-size: clamp(0.875rem, 0.763rem + 0.46vw, 1.313rem);
                padding: 1.5em 2em;

                &::before {
                    right: 2em;
                }

                @media (max-width: 767px) {
                    &::before {
                        width: 1.8em;
                    }
                }
            }
        }
    }
}

.store-works-container .category-name,
.container_renovation .category-name,
.container_apt .category-name {
    position: absolute;
    padding-left: clamp(4rem, -0.397rem + 18.04vw, 21.25rem);
    top: clamp(2.125rem, 0.914rem + 4.97vw, 6.875rem);
    left: 0;
    font-size: clamp(0.688rem, 0.624rem + 0.26vw, 0.938rem);
    color: var(--design-color01);
    letter-spacing: .08em;

    &::before {
        position: absolute;
        content: "";
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: clamp(2.875rem, -1.554rem + 18.17vw, 20.25rem);
        height: 1px;
        background-color: var(--design-color01);
    }

    &.option {
        top: -20px;
    }
}

.works-container_sub {
    background-image: linear-gradient(135deg, rgba(161, 140, 209, 1), rgba(240, 217, 178, 1) 39%, rgba(231, 214, 172, 1) 67%, rgba(161, 140, 209, 1));

    .container {
        padding: 11% 0 20%;
        position: relative;

        @media (max-width: 767px) {
            padding: min(138px, 28%) 0 min(33%, 140px);

            &.cafe {
                padding-bottom: min(100%, 420px);
            }
        }

        >.text-box {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            width: min(90%, 1100px);
            margin: 0 auto;
            padding-bottom: 7.2%;

            @media (max-width: 767px) {
                flex-direction: column;
                width: min(76%, 700px);
                padding-bottom: min(18.3%, 92px);
            }

            .tit {
                font-family: var(--font-ja-mincho);
                font-weight: 700;
                line-height: 1.7em;
                font-size: clamp(1.25rem, 1.05rem + 1vw, 2.25rem);
                letter-spacing: .1em;

                @media (max-width: 767px) {
                    width: 100%;
                }
            }

            .txt {
                width: 48%;
                font-size: clamp(0.875rem, 0.827rem + 0.2vw, 1.063rem);
                line-height: 2.05em;
                text-align: justify;
                padding-top: 5px;

                @media (max-width: 959px) {
                    padding-top: 0;
                }

                @media (max-width: 767px) {
                    width: 100%;
                    padding-top: 2em;
                }
            }
        }

        >.inner {
            width: min(82%, 1378px);
            margin: 0 auto;
            position: relative;

            .store-works-wrap {
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                gap: clamp(1.875rem, 0.917rem + 2vw, 3.313rem);

                @media (max-width: 767px) {
                    gap: 30px 15px;
                    position: relative;

                    &::after {
                        content: "";
                        display: block;
                        width: 230px;
                        padding: 0 17px;
                    }
                }
            }
    
            .works-item_store {
                width: clamp(13.75rem, 11.85rem + 9.5vw, 23.25rem);
                padding: 24px 24px 18px;
                border: 1px var(--design-color01) solid;

                @media (max-width: 959px) {
                    width: 230px;
                    padding: 17px 17px 18px;
                }

                .img {
                    border-radius: 15px;
                    aspect-ratio: 37 / 23;
                    overflow: hidden;

                    @media (max-width: 767px) {
                        border-radius: 10px;
                    }

                    img {
                        height: 100%;
                        object-fit: cover;
                        object-position: center;
                    }
                }
    
                .text-box {
                    padding-top: 31px;
                    position: relative;

                    @media (max-width: 767px) {
                        padding-top: 22px;
                    }
    
                    .date {
                        font-family: var(--font-en-gothic);
                        font-weight: 300;
                        font-size: clamp(0.525rem, 0.468rem + 0.24vw, 0.75rem);
                        color: var(--design-color01);
                        letter-spacing: .16em;
                    }
    
                    .tit {
                        font-size: clamp(0.875rem, 0.763rem + 0.46vw, 1.313rem);
                        color: var(--design-color02);
                        font-weight: 500;
                        letter-spacing: .1em;
                        margin-top: 14px;
                    }
    
                    .txt {
                        font-size: clamp(0.613rem, 0.546rem + 0.27vw, 0.875rem);
                        letter-spacing: .16em;
                        line-height: 1.7em;
                        color: var(--design-color02);
                        padding: 2em 0 4em;
                    }
                }

                .more {
                    position: absolute;
                    right: 0;
                    bottom: 0;

                    a {
                        font-size: clamp(0.625rem, 0.545rem + 0.33vw, 0.938rem);
                        color: var(--design-color03);
                        width: clamp(2.813rem, 2.494rem + 1.31vw, 4.063rem);
                        padding: .9em 1.2em;
                        border-radius: 100vh;
                        background-color: #fff;
                        letter-spacing: 0.16em;
                        transition: all .3s;

                        &::before {
                            position: absolute;
                            content: "";
                            top: 50%;
                            right: 1.2em;
                            transform: translateY(-50%);
                            background: url(../img/arrow01.png) no-repeat center center / contain;
                            width: 13px;
                            aspect-ratio: 13 / 8;
                            transition: all .3s;
                        }

                        &:hover {
                            opacity: 1;
                            letter-spacing: 0.25em;

                            &::before {
                                transform: translate(4px, -50%);
                            }
                        }
                    }
                }
            }
        }
    }

    &.cafe-works {
        background-color: #f7f5f1;
        background-image: none;
        position: relative;

        .container {
            position: relative;

            &::before {
                position: absolute;
                content: '';
                top: 23px;
                right: -43px;
                background: url(../img/store/jpg_png/footprints.png) no-repeat center center / contain;
                width: clamp(6.688rem, 4.441rem + 9.22vw, 15.5rem);
                height: clamp(14.625rem, 9.75rem + 20vw, 33.75rem);
            }
            &::after {
                position: absolute;
                content: '';
                bottom: 60px;
                left: -35px;
                background: url(../img/store/jpg_png/footprints.png) no-repeat center center / contain;
                width: clamp(6.688rem, 4.441rem + 9.22vw, 15.5rem);
                height: clamp(14.625rem, 9.75rem + 20vw, 33.75rem);
            }

            @media (max-width: 767px) {
                &::before {
                    top: 3px;
                    right: -26px;
                }
                &::after {
                    left: -42px;
                    bottom: 88px;
                }
            }
            >.inner {
                width: min(82%, 910px);
            }
        }
    }

    .other-store {
        width: min(90%, 1378px);
        margin: 5.2% auto 0;
        padding: 50px 0;
        border-top: 1px solid var(--design-color01);
        border-bottom: 1px solid var(--design-color01);

        @media (max-width: 767px) {
            width: min(90%, 550px);
            border: none;
            padding: 0;
            margin-top: min(34%, 100px);
        }

        .inner {
            width: min(95%, 1100px);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;

            @media (max-width: 767px) {
                flex-direction: column;
            }

            .other-tit {
                font-size: clamp(1rem, 0.952rem + 0.2vw, 1.188rem);
                color: var(--design-color02);
                font-weight: 400;
                letter-spacing: .1em;

                @media (max-width: 767px) {
                    width: 95%;
                    padding: 1.8em 0;
                    border-top: 1px solid var(--design-color01);
                    border-bottom: 1px solid var(--design-color01);
                    text-align: center;
                }
            }

            .other-store-wrap {
                width: 66%;
                display: flex;
                flex-wrap: wrap;
                gap: 10px clamp(1.563rem, 0.938rem + 1.3vw, 2.5rem);

                @media (max-width: 767px) {
                    padding-top: 13%;
                    gap: 32px clamp(0.938rem, -0.271rem + 6.04vw, 2.625rem);
                    width: clamp(13.75rem, 2.112rem + 47.75vw, 25rem);
                    text-align: center;
                    position: relative;

                    &::after {
                        content: "";
                        width: 8em;
                        display: block;
                    }
                }

                .store-name {
                    width: 4em;
                    font-size: clamp(0.938rem, 0.906rem + 0.13vw, 1.063rem);
                    color: var(--design-color02);
                }
            }
        }
    }
}



/*  店舗個別ページ
==========================================================*/
.single-works_wrap {
    padding-bottom: 152px;
    position: relative;

    @media (max-width: 767px) {
        padding: 27% 0 0 0;
    }

    .works_Bg {
        position: absolute;
        content: "";
        width: 100%;
        height: clamp(18.125rem, 9.667rem + 17.62vw, 30.813rem);
        left: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(161, 140, 209, 1), rgba(240, 217, 178, 1) 39%, rgba(231, 214, 172, 1) 67%, rgba(161, 140, 209, 1));
        z-index: 1;

        @media (max-width: 767px) {
            height: clamp(19.375rem, 8.189rem + 55.93vw, 35rem);
        }
    }

    .inner {
        display: flex;
        align-items: center;
        position: relative;
        z-index: 2;

        @media (max-width: 767px) {
            display: block;
        }

        .works-img {
            width: min(50%, 1032px);
            aspect-ratio: 95 / 59;

            @media (max-width: 767px) {
                width: 75%;
            }

            img {
                height: 100%;
                object-fit: cover;
                object-position: center;
            }
        }
        .text-box {
            padding-left: 5.4%;
            margin-top: -5%;

            @media (max-width: 767px) {
                width: fit-content;
                margin: 0 auto;
                padding: 9% 0 min(20%, 110px);
            }
            
            .date {
                font-size: clamp(0.75rem, 0.623rem + 0.52vw, 1.25rem);
                color: var(--design-color01);
                letter-spacing: .16em;
            }
            .tit {
                font-size: clamp(1.375rem, 1.168rem + 0.85vw, 2.188rem);
                font-weight: 500;
                color: var(--design-color02);
                letter-spacing: .1em;
                padding-top: 0.7em;
            }
            .txt {
                font-size: clamp(0.813rem, 0.653rem + 0.65vw, 1.438rem);
                letter-spacing: .16em;
                line-height: 1.78em;
                color: var(--design-color01);
                padding-top: 3em;

            }
        }
    }

}

.container_single-store {
    .scroll-infinity {
        padding: 0 !important;
    }
    
    .category-wrap {
        padding: 14.2% 0 23.3%;

        @media (max-width: 767px) {
            padding: min(46%, 180px) 0 min(87%, 337px);
        }
    }
}


/*========================================================
    お知らせ_詳細ページ
==========================================================*/
.single-container {
    .single-wrap {
        width: min(95%, 1532px);
        margin: 0 auto;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        gap: clamp(1.563rem, -0.313rem + 3.91vw, 4.375rem);
        padding-bottom: min(27%, 530px);

        @media (max-width: 767px) {
            flex-direction: column;
            padding: 21% 0 max(40%, 270px);
        }

        .single-contents {
            width: min(63%, 977px);
            border: 1px solid var(--design-color02);

            @media (max-width: 767px) {
                width: min(90%, 450px);
                margin: 0 auto;
            }

            .inner {
                width: min(84%, 830px);
                margin: 0 auto;
                padding: 9% 0 22%;

                .date {
                    font-size: clamp(0.625rem, 0.561rem + 0.26vw, 0.875rem);
                    color: var(--design-color03);
                    letter-spacing: .16em;
                }
                .tit {
                    font-size: clamp(1.188rem, 1.06rem + 0.52vw, 1.688rem);
                    color: var(--design-color01);
                    letter-spacing: .1em;
                    padding: 1em 0 .8em;

                    @media (max-width: 767px) {
                        padding: 0.6em 0 .8em;
                    }
                }
                .img {
                    img {
                        object-fit: cover;
                        object-position: center;
                    }
                }
                .txt {
                    p {
                        font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
                        line-height: 1.9em;
                        margin-top: min(9%, 63px);

                        &+ & {
                            margin-top: 1.35em;
                        }
                    }

                    a {
                        color: var(--accent-color);
                    }
                }
            }
        }

        .sidebar {
            width: min(32%, 370px);

            @media (max-width: 767px) {
                width: 80%;
                margin: 0 auto;
                display: flex;
                flex-direction: column;
            }

            .sidebar-inner {
                padding: 20% 10% 22%;
                background-color: #e9e9e9;

                @media (max-width: 767px) {
                    order: 2;
                    margin-top: 20%;
                    padding: 13% 10% 15%;
                }

                .article-wrap {

                    &.category {
                        margin-top: min(40%, 83px);

                        @media (max-width: 767px) {
                            margin-top: 50px;
                        }
                    }

                    .side-tit {
                        display: block;
                        font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
                        color: var(--design-color03);
                        letter-spacing: .16em;

                        @media (max-width: 767px) {
                            font-size: 12px;
                        }
                    }
                    .article-list {
                        margin-top: clamp(1.563rem, 1.063rem + 1.04vw, 2.313rem);

                        @media (max-width: 767px) {
                            margin-top: 20px;
                        }
    
                        li {
    
                            &+& {
                                margin-top: 1.5em;

                                @media (max-width: 959px) {
                                    margin-top: 0.8em;
                                }
                            }

                            a {
                                display: inline-block;
                                width: 100%;
                                font-size: clamp(0.938rem, 0.813rem + 0.26vw, 1.125rem);
                                color: var(--design-color01);
                                letter-spacing: .1em;
                                overflow: hidden;
                                white-space: nowrap;
                                text-overflow: ellipsis;

                                @media (max-width: 767px) {
                                    font-size: 14px;
                                }
                            }
                        }
                    }
                }
            }

            .btn {
                margin: 38px auto 0;
                background-color: var(--design-color03);

                @media (max-width: 767px) {
                    order: 1;
                }

                a {
                    color: #fff;
                }
            }
        }
    }
}


/*========================================================
    リノベーション
==========================================================*/

.container_renovation {
    .sub-section-top {
        border: none;
    }
}

.works-inner {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;

    @media (max-width: 767px) {
        flex-direction: column;
    }

    .text-box {
        width: min(48%, 642px);

        @media (max-width: 767px) {
            width: 100%;
        }

        .sub-tit {
            width: fit-content;
            padding: 0.75em 1.75em;
            margin: 0 auto;
            border: 1px solid #fff;
            border-radius: 100vh;
            display: flex;
            align-items: center;
            font-size: clamp(0.563rem, 0.451rem + 0.46vw, 1rem);
            color: #fff;
            letter-spacing: .16em;

            .en {
                font-family: var(--font-point);
                font-size: 12px;
                padding-left: 1em;
            }
        }
        .tit-wrap {
            display: flex;
            align-items: self-start;
            justify-content: center;
            padding: 1em 0 1.8em;

            @media (max-width: 767px) {
                flex-direction: column;
                align-items: center;
                padding: 1.2em 0 2em;
            }

            .num {
                font-family: var(--font-point02);
                font-size: clamp(1.25rem, 0.667rem + 1.22vw, 2.125rem);
                letter-spacing: 0.02em;
                line-height: 1.6em;
                color: #fff;
                font-weight: 400;
                padding-right: 0.5em;

                @media (max-width: 767px) {
                    padding: 0;
                }
            }
            .tit {
                font-family: var(--font-ja-mincho);
                font-weight: 500;
                font-size: clamp(1.25rem, 0.667rem + 1.22vw, 2.125rem);
                color: #fff;
                letter-spacing: .02em;
                line-height: 1.6em;

                @media (max-width: 767px) {
                    text-align: center;
                    font-size: clamp(1.25rem, 1.056rem + 0.8vw, 1.438rem);
                }
            }
        }
        .txt {
            font-size: clamp(0.813rem, 0.765rem + 0.2vw, 1rem);
            color: #fff;
            line-height: 2.125em;
        }
    }

    .img-wrap {
        width: min(47%, 665px);
        position: relative;

        @media (max-width: 767px) {
            width: 100%;
            padding-top: 14%;
        }

    }
    .sub-txt {
        width: fit-content;
        display: flex;
        align-items: flex-start;

        dt,
        dd {
            font-size: clamp(0.563rem, 0.483rem + 0.33vw, 0.875rem);
            color: #fff;
            letter-spacing: .16em;
        }

        dt {
            width: 4em;
            line-height: 1.5em;

        }
        dd {
            width: 74%;
            line-height: 1.5em;
            padding-left: 1em;
        }
    }
}


.container_renovation,
.container_apt {
    .category-name {
        top: 0;
    }
    .top-text {
        padding: 9% 0 6%;
        position: relative;

        @media (max-width: 767px) {
            padding: 0 0 min(24%, 30px);
        }

        .inner {
            width: min(90%, 1136px);
            margin: 0 auto;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;

            @media (max-width: 767px) {
                flex-direction: column;
                padding-top: min(16%, 70px);
            }

            .tit {
                font-family: var(--font-ja-mincho);
                font-weight: 500;
                font-size: clamp(1.313rem, 1.074rem + 0.98vw, 2.25rem);
                letter-spacing: .1em;
                line-height: 1.72em;

                @media (max-width: 767px) {
                    margin: 0 auto;
                }
            }
            .txt {
                width: 50%;
                font-size: clamp(0.875rem, 0.827rem + 0.2vw, 1.063rem);
                line-height: 2.05em;
                padding-top: 4px;

                @media (max-width: 767px) {
                    width: 90%;
                    margin: 0 auto;
                    padding-top: 2em;
                }
            }
        }
    }

}

.container_renovation {

    .mainvisual_sub {
        @media (max-width: 767px) {
            height: 200px;

            img {
                height: 100%;
                object-fit: cover;
                object-position: center;
            }
        }
    }

    .works-wrap_renovation {
        background-color: #676767;
        padding: 7.8% 0 32%;

        @media (max-width: 767px) {
            padding: 23% 0 min(90%, 380px);
        }

        .works-inner {
            width: min(95%, 1544px);
            justify-content: space-between;
            position: relative;
            padding: 14px 0;
            border-top: 1px solid #fff;

            &:last-of-type {
                border-bottom: 1px solid #fff;
            }

            @media (max-width: 767px) {
                flex-direction: column;
                padding: 50px 0;
            }

            .text-box {
                margin: 0 auto;
            }
    
            .sub-txt {
                position: absolute;
                bottom: 1.5em;
                left: min(2%, 48px);

                @media (max-width: 959px) {
                    bottom: 0.9em;
                }

                @media (max-width: 767px) {
                    position: static;
                    margin: 0 .5em 0 auto;
                    padding-bottom: .6em;
                }
            }

            .btn {
                position: absolute;
                margin: 0;
                left: 37%;
                bottom: 1.5em;

                @media (max-width: 959px) {
                    left: 33%;
                    bottom: 0.9em;
                }

                @media (max-width: 767px) {
                    position: static;
                    order: 4;
                    margin-top: min(9%, 40px);
                }

                a {
                    width: clamp(6.875rem, 3.125rem + 7.81vw, 12.5rem);
                    font-size: clamp(0.75rem, 0.375rem + 0.78vw, 1.313rem);
                    padding: 1.2em 1em;

                    &::before {
                        right: 1em;
                        /* background: url(../img/arrow03.png) no-repeat center center / contain;
                        background-color: var(--design-color03);
                        background-size: 0.76em auto; */
                    }

                    @media (max-width: 959px) {
                        padding: 1.3em 2em;
                    }
                }
            }
    
            .img-wrap {
                width: min(43%, 665px);
                padding: 0;
                aspect-ratio: 133 / 83;
                overflow: hidden;

                img {
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                }

                @media (max-width: 767px) {
                    width: 90%;
                    margin: 0 auto;
                }
            }
        }
    }
}





/*========================================================
    リノベーション_詳細ページ
==========================================================*/
.container_renovation {

    .container_reno-single {
        padding: 7% 0 23%;
        background-color: #676767;

        @media (max-width: 767px) {
            padding: 18% 0 min(90%, 310px);
        }

        .works-inner {
            width: min(80%, 1413px);

            .img-wrap {
                position: relative;

                .img {
                    aspect-ratio: 133 / 83;
                    overflow: hidden;
    
                    img {
                        height: 100%;
                        object-fit: cover;
                        object-position: center;
                    }
                }

                .sub-txt {
                    position: absolute;
                    top: calc(100% + 41px);
                    left: 11px;

                    @media (max-width: 767px) {
                        top: calc(100% + 20px);
                    }
                }
            }
        }
    }

    .works-container_reno-single {
        margin-top: 12%;

        @media (max-width: 767px) {
            margin-top: min(42%, 170px);
        }

        .works-img {
            display: flex;

            &+& {
                margin-top: 33px;
            }

            @media (max-width: 767px) {
                aspect-ratio: 8 / 5;
                flex-direction: column;

                &+& {
                    margin-top: 25px;
                }
            }

            .img {
                width: 50%;
                aspect-ratio: 19 / 13;
                position: relative;

                &::before {
                    position: absolute;
                    content: "Before";
                    bottom: .8em;
                    left: 1em;
                    font-family: var(--font-en-mincho);
                    font-size: clamp(0.938rem, 0.619rem + 1.31vw, 2.188rem);
                    color: #fff;
                    font-weight: 400;
                }

                &.after::before {
                    content: "After";
                }

                &.before {
                    filter: grayscale(100%);
                }

                @media (max-width: 767px) {
                    width: 100%;
                    aspect-ratio: auto;
                    height: clamp(12.5rem, 1.509rem + 45.09vw, 23.125rem);
                }

                img {
                    object-fit: cover;
                    object-position: center;
                    height: 100%;
                }
            }
        }
    }

    .btn {
        margin: 8.5% auto 0;

        @media (max-width: 767px) {
            margin: min(21%, 80px) auto 0;
        }
        a {
            width: clamp(13.125rem, 11.213rem + 7.84vw, 20.625rem);
        }
    }
}



/*========================================================
    賃貸事業
==========================================================*/
.container_apt {

    .sub-section-top {
       border: none;
    }

    .top-text .inner .tit {
        font-size: clamp(1.25rem, 0.995rem + 1.05vw, 2.25rem);
        @media (max-width: 767px) {
            letter-spacing: 0;
        }
    }
}
.scroll-infinity {
    padding-top: min(9%, 138px);

    .scroll-infinity-wrap {
        display: flex;
        overflow: hidden;
    
        .scroll-infinity__list {
            display: flex;
            animation: scroll-infinity 80s infinite linear 0.5s both;

            @media (max-width: 767px) {
                animation: scroll-infinity 65s infinite linear 0.5s both;
            }
    
            .item {
                width: calc(100vw / 2.8);
    
                @media (max-width: 767px) {
                    width: calc(100vw / 3.3);
                }
    
                @media (max-width: 420px) {
                    width: calc(100vw / 1.5);
                }
    
                img {
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                }
            }
        }
    }
}
@keyframes scroll-infinity {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.ADC-series-container {
    padding: min(9%, 180px) 0 min(30%, 530px);
    background-color: #eef2f2;

    @media (max-width: 767px) {
        padding: 15% 0 min(70%, 240px);
    }

    .main-content {
        width: min(85%, 1300px);
        margin: 0 auto;

        .tit {
            font-family: var(--font-ja-mincho);
            font-size: clamp(1.188rem, 0.975rem + 1.06vw, 2.25rem);
            font-weight: 500;
            letter-spacing: .1em;
            line-height: 1.72em;
        }

        .top-wrap {
            width: 82%;
            margin: 0 auto;
            padding-bottom: min(9%, 210px);

            @media (max-width: 767px) {
                padding: min(9%, 40px) 0 min(23%, 150px);
                width: 90%;
            }

            .txt {
                width: fit-content;
                font-size: clamp(0.688rem, 0.544rem + 0.59vw, 1.25rem);
                letter-spacing: .02em;
                line-height: 1.5em;
                padding: 1.2em 1.9em 1.2em 0;
                position: relative;

                &::before {
                    position: absolute;
                    content: "";
                    background: url(../img/apt/text_line01.png) no-repeat center center / contain;
                    top: 100%;
                    left: 0;
                    width: 100%;
                    aspect-ratio: 95 / 14;
                    background-position: left center;
                }

                &.txt01 {
                    margin: 0 0 3.5em auto;
                    padding-left: 0.5em;
                }
                &.txt02 {
                    margin-top: 1em;
                    padding-right: 2.35em;

                    &::before {
                        background: url(../img/apt/text_line02.png) no-repeat center center / contain;
                        top: auto;
                        bottom: 100%;
                        aspect-ratio: 263 / 25;
                        background-position: left center;
                    }

                    @media (max-width: 767px) {
                        margin-top: 2em;
                        padding-right: 1.8em;

                        &::before {
                            background: url(../img/apt/text_line02_sp.png) no-repeat center center / contain;
                            aspect-ratio: 35 / 4;
                            background-position: left center;
                        }
                    }
                }
            }
            .img {
                width: 80%;
                margin: 0 auto;

                @media (max-width: 767px) {
                    width: 100%;
                }
            }
        }
    }

    .inner {
        width: min(86%, 1662px);
        margin: 0 auto;

        @media (max-width: 767px) {
            width: 92%;
        }

        .series-wrap {
            display: flex;
            position: relative;

            .img img {
                object-fit: cover;
                height: 100%;
            }

            @media (max-width: 767px) {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(2, 1fr);
                gap: 0;

                .img {
                    position: relative;

                    &::before {
                        position: absolute;
                        content: "";
                        background-color: rgba(255, 255, 255, 0.2);
                        width: 100%;
                        height: 100%;
                    }
                }
            }

            .series-title {
                position: absolute;
                content: "ADC Series";
                --font-size: clamp(2.813rem, 1.8rem + 5.06vw, 7.875rem);
                font-family: var(--font-en-gothic);
                font-size: var(--font-size);
                color: var(--design-color01);
                letter-spacing: 0.08em;
                bottom: calc(calc(var(--font-size) * 0.6) * -1);
                left: 50%;
                transform: translateX(-50%);
                white-space: pre;
                height: fit-content;
                
                @media (max-width: 767px) {
                    font-weight: 700;
                }
                
                span {
                    font-weight: 500;
                    display: inline-block;
                    transform: translateY(20px);
                    opacity: 0;
                    transition: transform 0.8s ease, opacity 0.8s ease;

                    &.show {
                        transform: translateY(0);
                        opacity: 1;
                    }
                }
            }

            img {
                object-fit: cover;
                object-position: center;
            }
        }

        .feature-wrap {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            margin-top: min(12%, 117px);

            @media (max-width: 767px) {
                display: block;
            }
        }
        .feature-wrap_inner {
            width: min(40%, 558px);
            padding: 64px 0 18px;

            @media (max-width: 767px) {
                width: 95%;
                margin: 0 auto;
                padding: 30px 0;
            }

            &.type {
                padding-right: 6%;
                border-right: 1.1px solid #000;

                @media (max-width: 767px) {
                    padding-right: 0;
                    border-bottom: 1.1px solid #000;
                    border-right: none;
                }
            }
            &.detail {
                padding-left: 6%;

                @media (max-width: 767px) {
                    padding-left: 0;
                }

                .img-wrap {
                    margin-top: 50px;
                    left: auto;
                    right: 0;
                    display: flex;
                    justify-content: right;
                    gap: 30px;

                    @media (max-width: 767px) {
                        margin-top: 12%;
                        justify-content: center;
                    }

                    .img01 {
                        width: min(40%,214px);

                    }
                    .img02 {
                        width: min(36%,200px);
                        margin-top: 60px;
                    }
                }
            }
            .tit {
                font-family: var(--font-ja-mincho);
                font-weight: 500;
                font-size: clamp(1.313rem, 1.275rem + 0.19vw, 1.5rem);
                letter-spacing: .1em;
                line-height: 1.75em;
                @media (max-width: 767px) {
                    letter-spacing: 0;
                    white-space: nowrap;
                }
                @media (max-width: 370px) {
                    white-space: wrap;
                }
            }
            .txt {
                font-size: clamp(0.813rem, 0.749rem + 0.26vw, 1.063rem);
                line-height: 2.05em;
                padding: 1.6em 0 1em;
            }
            .asso-link {
                width: min(92%, 445px);
                display: flex;
                align-items: center;
                margin-top: 28px;
                padding: clamp(0.313rem, -0.104rem + 0.87vw, 0.938rem);
                padding-left: 0;
                background-color: #fff;
                transition: all .3s ease;

                @media (max-width: 767px) {
                    width: min(90%, 445px);
                    margin: 22px auto 0;
                    padding: 10px 10px 10px 0;
                }

                .asso-logo {
                    margin: 0 auto;
                    transition: all.2s;
                    width: 35%;
                }

                .photo {
                    width: 40%;
                    overflow: hidden;

                    img {
                        transition: all.2s;
                    }
                }

                &:hover {
                    opacity: 1;
                    transform: scale(1.01);
                    box-shadow: 0px 0px 7px 0px rgba(90, 90, 90, .4);
                }
            }

        }
    }
}


.single-cafe {
    .works_Bg {
        background: #f7f5f1;

        &::before {
            position: absolute;
            content: '';
            top: -82px;
            right: -50px;
            background: url(../img/store/jpg_png/footprints.png) no-repeat center center / contain;
            width: clamp(7.5rem, 2.167rem + 11.11vw, 15.5rem);
            aspect-ratio: 62 / 135;
        }

        @media (max-width: 767px) {
            &::before {
                top: -62px;
                width: clamp(7.5rem, 5.934rem + 7.83vw, 9.688rem);
            }
            &::after {
                position: absolute;
                content: '';
                bottom: -30px;
                left: -70px;
                background: url(../img/store/jpg_png/footprints.png) no-repeat center center / contain;
                width: clamp(7.5rem, 5.934rem + 7.83vw, 9.688rem);
                aspect-ratio: 62 / 135;
            }
        }
    }
    .scroll-infinity {
        position: relative;
        z-index: 1;
    }
}