:root{

    --vk-color-header-bg: rgba(255,255,255,.8);
    --vk-color-text-body: #717171;
    --vk-color-text-link-hover: currentColor;
    --vk-color-header-bg: rgba(255,255,255,.8);
}

body:has(#wpadminbar){
    --wpadminbar_height: 32px;
}

html,body{
    scroll-behavior: smooth;
}
@media (max-width: 991.98px) {
    body,html{
        font-size: var(--vk-size-text);
    }
}
body{
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    letter-spacing: .1em;
}
@media(min-width: 768px){
    .d-pc-none{
        display: none !important;
    }
}
@media(max-width: 767px){
    .d-sp-none{
        display: none !important;
    }
}
.roboto{
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings:"wdth" 100;
}

.post-edit-link{
    text-decoration: underline;
    color: blue;
}

.anchor{
    pointer-events: none;
    display: block;
    position: relative;
    top: calc(var(--site_header_height) * -1);
}

body.device-pc .vk-mobile-nav{
    display: block;
}

.header_scrolled .site-header-logo{
    display: block;
}

/* スライドインナビ */
.veu_adminEdit.alert{
    display: none;
}
.vk-mobile-nav{
    padding-top: 1.8dvw;
    background: url("../../imgs/common/bg.webp");
}
.custom_slide_nav__line1{
    & .logo_link{
        width: max(10rem,20.27dvw);
        display: inline-block;
    }
}
.custom_slide_nav_container{
    display: grid;
    grid-template-columns: 1fr 740px;
    grid-template-rows: auto auto 1fr auto;
    margin-top: 60px;
}
.vk-mobile-nav .custom_slide_nav__nav{
    grid-row: 1/3;
    padding-right: 2rem;
        & ul {
            border: none;
            & li {
                margin: 0 0 1.1em;
                & a {
                    padding: 0 0 0 1em;
                    text-indent: -1em;
                    line-height: 1.4;
                    border: none;
                    letter-spacing: .01em;
                    &:hover {
                        color: var(--teal);
                    }
                    &:before{
                        content: "-";
                        display: inline-block;
                        width: 1em;
                        text-indent: 0;
                    }
                }
            }
        }
}
.custom_slide_nav__cta{
    grid-row: 1/2;
    grid-column: 2/3;
    align-self: flex-start;
    margin-bottom: 54px;
    & .container{
        padding-left: 0;
        padding-right: 0;
    }
    & .aside_contact_banners{
        margin-top: 0;
        padding-bottom: 0;
    }
}
.custom_slide_nav__reform{
    grid-row: 2/-1;
    & .header{
        font-size: min(2.18rem,4.21dvw);
        font-weight: bold;
        text-align: center;
        margin-bottom: .8rem;
        & .orange{
            color: var(--orange);
            display: inline-block;
            margin-right: .5em;
            &:before,&:after{
                content: "";
                display: inline-block;
                width: 1px;
                height: .8em;
                background: var(--orange);
            }
            &:before{
                transform-origin: right;
                transform: rotate(-30deg);
                margin-right: .5em;
            }
            &:after{
                transform-origin: left;
                transform: rotate(30deg);
                margin-left: .5em;
            }
        }
    }
    & .plans{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: min(20px,1.62dvw);
    }
    & .item{
        display: grid;
        position: relative;
        aspect-ratio: 234/170;
        border-radius: 8px;
        overflow: hidden;
        &:before{
            content: '';
            background: #808080;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: .7;
            mix-blend-mode: multiply;
        }
        &:hover{
            text-shadow: 2px 2px 4px #666, -2px -2px 4px #666;
            &:before{
                opacity: 0;
                transition: opacity .2s ease;
            }
        }
    }
    & .name{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: grid;
        place-items: center;
        color: #fff;
        font-weight: bold;
        font-size: min(1rem,2.97dvw);
        white-space: nowrap;
        text-align: center;
    }
    & .img{
        display: block;
        height: 100%;
        & img{
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}
.widget .custom_slide_nav__sns{
    margin: 26px 0 0;
    padding: 0;
    grid-row: 4/5;
    display: flex;
    gap: 18px;
    & li{
        margin: 0;
        padding: 0;
        list-style: none;
    }
    & a{
        font-size: 0%;
        display: block;
        width: 1.86rem;
        aspect-ratio: 1;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: left center;
    }
    & .insta{
        & a{
            background-image: url("../../imgs/common/icon-insta.svg");
        }
    }
    & .youtube{
        & a{
            background-image: url("../../imgs/common/icon-youtube.svg");
        }
    }
}
.widget .custom_slide_nav__mini{
    grid-row: 3/4;
    margin-top: 80px;
    display: flex;
    margin: 60px 0 0;
    padding: 0 !important;
    & li{
        list-style: none;
        margin: 0;
        padding: 0;
        &:nth-child(n+2){
            &:before{
                content: '／';
            }
        }
        & a{
            text-decoration: none;
            font-size: .93rem;
        }
    }
}

@media (max-width: 991.98px){
    .custom_slide_nav_container{
        grid-template-columns: 1fr;
    }
    .vk-mobile-nav{
        & .custom_slide_nav__nav{
            grid-column: 1/-1;
            grid-row: 3/4;
            margin-top: 3rem;
            & ul{
                column-count: 2;
            }
        }
    }
    .custom_slide_nav__cta{
        grid-column: 1/-1;
        grid-row: 1/2;
    }
    .custom_slide_nav__reform{
        grid-column: 1/-1;
        grid-row: 2/3;
    }
}

@media(max-width: 767px) {
    .vk-mobile-nav{
        & .custom_slide_nav__nav{
            & ul{
                column-count: 1;
            }
        }
    }
}

/* END スライドインナビ*/

.site-footer{
    & .aside_contact_banners{
        margin-top: 4rem;
    }
}

.site-footer_bg_gray{
    margin-top: 130px;
    background: var(--gray);
    color: #fff;
    padding-top: 60px;
    @media(max-width: 767px){
        margin-bottom: 16dvw;
    }
}

.site_footer_line1{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 90px;
    & p{
        font-size: .93rem;
        line-height: 1.8;
        flex: 16em 1 0;
        margin-top: -.4em;
    }
}
.site_footer_logo_a{
    display: block;
    & img {
        width: 263px;
        display: block;
    }
}

.site_footer_line2{
    margin-top: 70px;
    @media(max-width: 767px){
        margin-top: 2rem;
    }
}

.footerNav{
    display: grid;
    gap: 0 1px;
    grid-template-columns: repeat(4, auto);
    margin-left: -50px;
    margin-right: -50px;
    @media(max-width: 1200px){
        grid-template-columns: repeat(2, auto);
        gap: 4em 0;
    }
    @media(max-width: 767px){
        grid-template-columns: 1fr auto;
        gap: 0;
        margin-left: 0;
        margin-right: 0;
        background: none;
    }

    & .footer-nav {
        padding: 0;
        background: var(--gray);
        margin: -1px 0;
    }
    & .menu{
        height: 100%;
        margin: 0;
        padding: 0 50px;
        display: grid;
        gap: 1em;
        font-size: .81rem;
        line-height: 1.4;
        @media(max-width: 767px){
            height: auto;
            padding: 0;
        }
    }
    & li{
        display: block;
        margin: 0;
        padding: 0;
        & a{
            display: block;
            color: #fff;
            padding-left: 1.25em;
            text-indent: -1.25em;
            @media(max-width: 767px){
                padding-top: 0;
                padding-bottom: 0;
            }
            &:before{
                content: '';
                display: inline-block;
                text-indent: 0;
                width: 1em;
                height: 1px;
                background: currentColor;
                vertical-align: middle;
                display: inline-block;
                margin-right: .25em;
                margin-bottom: .1em;
            }
        }
    }
    @media(max-width: 767px){
        & .footer-nav2{
            grid-column: 1/-1;
            order: -1;
            border-bottom: solid 1px #fff;
            padding-bottom: 1.75rem;
            margin-bottom: 1.5rem;
            &:before{
                content: 'おすすめリフォームメニュー';
                display: block;
                font-size: .93rem;;
                margin-bottom: 1em;
            }
            & .menu{
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: .75em 1em;
                padding-left: 0;
                padding-right: 0;
            }
            & a{
                padding: 0 0 0 1.5em;
            }
        }
        & .footer-nav3{
            order: 1;
            grid-column: 1/-1;
            border-top: solid 1px #fff;
            padding-top: 1.5rem;
            margin-top: 1.75rem;
            & .menu{
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: .75em 1em;
            }
        }
    }
}

.site_footer_line3{
    margin-top: 70px;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto 3.625rem;
    gap: 40px 2rem;
    justify-content: space-between;
    align-items: center;
    @media(max-width: 767px){
        grid-template-columns: 1fr auto;
        grid-template-rows: unset;
        margin-top: 1.5rem;
        border-top: solid 1px #fff;
        padding-top: 1rem;
    }
    & .info{
        font-size: .81rem;
        @media(max-width: 767px){
            grid-column: 1/-1;
        }
        &>span{
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            margin-top: .5em;
            @media(max-width: 767px){
                margin-top: .5rem;
                flex-direction: column;
                align-items: flex-start;
            }
        }
    }
    & .copytext{
        position: relative;
        z-index: 1;
        margin-bottom: 0;
        color: var(--vk-color-text-body);
        @media(max-width: 767px){
            grid-column: 1/-1;
            margin-left: -15px;
            margin-right: -15px;
            padding-left: 15px;
            padding-right: 15px;
            background: #fff;
            padding-top: .5em;
            padding-bottom: .5em;
        }
        & a{
            color: var(--vk-color-text-body);
            text-decoration: none;
        }
    }
}
.footer-sns{
    @media(max-width: 767px){
        grid-column: 2/3;
        grid-row: 1/2;
    }
    & ul{
        margin: 0;
        padding: 0;
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(2, auto);
        justify-content: flex-end;
    }
    & li{
        & a{
            font-size: 0%;
            display: block;
            width: 33px;
            height: 26px;
            background-size: contain;
            background-position: right center;
            background-repeat: no-repeat;
        }
    }
    & .insta a{
        background-image: url("../../imgs/common/icon-insta-wh.svg");
    }
    & .youtube a{
        background-image: url("../../imgs/common/icon-youtube-wh.svg");
    }
}

.site-footer-copyright{
    padding-top: 0;
    padding-bottom: 0;
}
.footer_fix{
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 2100;
    will-change: transform;
    @media(min-width: 768px){
        display: none;
    }
}
.mobile_fix_cta{
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    width: 100%;
    height: 16dvw;
    @media(min-width: 768px){
        width: 100%;
        height: 2rem;
        display: flex;
        justify-content: flex-end;
        height: auto;
    }
    & li{
        list-style: none;
        margin: 0;
    }
    & a{
        font-size: 3.4dvw;
        color: #fff;
        display:flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: .25em;
        text-decoration: none;
        height: 100%;
        @media(min-width: 768px){
            font-size: .8rem;
        }
    }
    & .tel{
        background: var(--teal);
    }
    & .contact{
        background: var(--orange);
    }
    & .line{
        background: var(--olive);
    }
    & img{
        width: 2.2em;
    }
}
.button_pagetop{
    font-size: 2.4dvw;
    background: #000;
    color: #fff;
    position: relative;
    padding-top: 50%;
    width: 13.6dvw;
    @media(min-width: 768px){
        font-size: 1rem;
        width: 6em;
    }
    &:after{
        content: '';
        display: block;
        position: absolute;
        top: 30%;
        left: 50%;
        width: 1.4em;
        height: 1.4em;
        border-style: solid;
        border-width: 1px;
        border-color: currentColor currentColor transparent transparent;
        transform: translate(-50%) rotate(-45deg);
    }
}

.menu-footer_mini_nav-container{
    position: relative;
    height: 100%;
    display: grid;
    place-items: center;
    @media(max-width: 767px){
        justify-content: flex-start;
        align-items: center;
        order: -1;
    }
    &:before{
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: -100dvw;
        right: -100dvw;
        bottom: 0;
        background: #fff;
        @media(max-width: 767px){
            content: none;
        }
    }
}
.footer-mininav{
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1em;
    position: relative;
    @media(max-width: 767px){
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 0;
    }
    & li{
        &:nth-child(n+2){
            &:before{
                content: '／';
            }
        }
    }
    & a {
        &:before{
            content: '・';
        }
        &:hover{
            opacity: .85;
            color: var(--vk-color-text-body);
        }
        @media(max-width: 767px){
            color: #fff;
            &:before {
                content: none;
            }
        }
    }
}

.sub-section{
    & .widget{
        border-radius: .5rem;
        border: solid 2px #e5e5e5;
        padding: 1rem .5rem;
    }
}

.header_has_en{
    font-size: 2.18rem;
    font-weight: bold;
    &:after{
        content: attr(data-en);
        font-size: .45em;
        display: block;
        line-height: 1.1;
        margin-top: .5em;
        font-family: "Roboto", sans-serif;
        font-optical-sizing: auto;
        font-weight: normal;
        font-style: normal;
        font-variation-settings:
                "wdth" 100;
    }
    @media(max-width: 767px){
        font-size: 1.56rem;
    }
}
.header_has_en__center{
    text-align: center;
}

.link_has_icon{
    display: inline-flex;
    align-items: center;
    font-size: .81rem;
    min-height: 3.62em;
    padding-right: 4em;
    background: url("../../imgs/common/button-right.svg") right center/3.62em no-repeat;
    &:hover{
        background-image: url("../../imgs/common/button-right-gray.svg");
    }
}
.link_small_icon{
    transform: translate .4s ease;
    &:hover {
        & i {
            translate: 10% 0;
            transform: transform .4s ease;
        }
    }
}
.button_simple{
    border: solid 1px currentColor;
    font-size: 1.125rem;
    display: inline-grid;
    min-width: 16.66em;
    place-content: center;
    min-height: 3.33em;
    border-radius: 1.66em;
    position: relative;
    padding-left: 2.44em;
    padding-right: 2.44em;
    &:after{
        content: '';
        display: inline-block;
        width: 1.22em;
        height: 1.22em;
        position: absolute;
        left: calc(100% - 2.22em);
        top: calc(50% - .61em);
        background: url("../../imgs/common/button-right-gray.svg") right/contain no-repeat;
    }
    &:hover{
        color: ;
        &:after{
            transform: scale(1.4);
            transition: transform .2s;
        }
    }
    @media(max-width: 767px){
        font-size: .875rem;
    }
}
.button_simple_wh{
    color: #fff;
    &:after{
        background-image: url("../../imgs/common/button-right-wh.svg");
    }
    &:hover{
        color: #fff;
    }
}
.button_simple_dark{
    color: #fff;
    background: var(--vk-color-text-link);
    &:after{
        background-image: url("../../imgs/common/button-right-wh.svg");
    }
    &:hover{
        color: #fff;
    }
}

.loop-plans{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px, 1fr));
    gap: 26px;
    @media(max-width: 767px){
        grid-template-columns: 1fr 1fr;
        gap: 11px;
    }
    & .loop-item{
        text-align: center;
        background: #fff;
        border: solid 10px #fff;
        border-radius: 10px;
        position: relative;
        @media(max-width: 767px){
            display: grid;
            grid-template-rows: auto auto 1fr;
            border-width: 4px;
            border-radius: 6px;
        }
        &:after{
            content: '';
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            border: solid 1px #bebdbd;
            pointer-events: none;
            border-radius: 10px;
        }
    }
    & .img{
        display: block;
        aspect-ratio: 344/200;
        background: #e5e5e5;
        border-radius: 10px 10px 0 0;
        overflow: hidden;
        @media(max-width: 767px){
            grid-row: 1/2;
            aspect-ratio: 152/88;
            border-radius: 6px 6px 0 0;
        }
        & img{
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: bottom;
        }
    }
    & h3{
        margin: 0;
        background: var(--orange);
        color: #fff;
        font-size: 1.25rem;
        padding: .25em .5em .25em 1.1em;
        @media(max-width: 767px){
            grid-row: 2/3;
            font-size: .81rem;
            padding-left: .2em;
            padding-right: .2em;
            letter-spacing: 0;
        }
        &:after{
            content: '';
            display: inline-block;
            width: .4em;
            height: .8em;
            background: #fff;
            clip-path: polygon(0 0,100% 50%,0 100%);
            margin-left: .6em;
            opacity: 0;
            translate: -.6em 0;
            transition: all .2s;
            @media(max-width: 767px){
                content: none;
            }
        }
    }
    & .text_area{
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 18px;
        padding-bottom: 18px;
        gap: 16px;
        @media(max-width: 767px){
            grid-row: 3/4;
            gap: .4rem;
            padding-top: .5rem;
            padding-bottom: .5rem;
        }
    }
    & .meyasu{
        background: var(--gray);
        color: #fff;
        font-size: .875rem;
        width: 4.43em;
        aspect-ratio: 1;
        border-radius: 50%;
        display: grid;
        place-content: center;
        line-height: 1.2;
        margin: 0;
        @media(max-width: 767px){
            font-size: .5rem;
        }
    }
    & .price{
        text-align: left;
    }
    & .pricenum{
        font-size: 2em;
        font-weight: bold;
    }
    & .line1{
        font-size: 1.25rem;
        line-height: 1.1;
        @media(max-width: 767px){
            font-size: .72rem;
        }
    }
    & .line2{
        font-size: .875rem;
        line-height: 1.1;
        margin-top: .25em;
        @media(max-width: 767px){
            font-size: .5rem;
        }
    }
    & .loop-item{
        &:hover{
            color: currentColor;
            & h3:after{
                translate: none;
                opacity: 1;
                transition: all .2s;
            }
        }
    }
}

.vk_posts-mainSection{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px, 1fr));
    gap: 30px 15px;
    padding-left: 15px;
    padding-right: 15px;
}
@keyframes gallery_hover {
    50%{
       transform: scale(0,1);
    }
    100%{
        transform: scale(1);
    }
}
.vk_post-postType-gallery{
    text-decoration: none;
    & .thumb{
        aspect-ratio: 420/278;
        position: relative;
        &:not(:has(img)){
            background: var(--no_image_src) center/cover;
        }
        & img{
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        &:before,&:after{
            content: '';
            display: block;
            position: absolute;
            border-style: solid;
            border-color: #fff;
            width: 33%;
            height: 33%;
            transform: scale(0);
        }
        &:before{
            border-width: 1px 0 0 1px;
            left: 8px;
            top: 8px;
            transform-origin: top left;
        }
        &:after{
            border-width: 0 1px 1px 0;
            right: 8px;
            bottom: 8px;
            transform-origin: right bottom;
        }
    }
    & h3{
        font-size: 1.06rem;
        margin: .6em 0 0;
    }
    & .meta{
        font-size: .875rem;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 0 1em;
        & li{
            margin: 0;
            padding: 0;
            list-style: none;
        }
        & img{
            display: inline-block;
            width: 1.21em;
            vertical-align: text-bottom;
        }
    }
    &:hover{
        & .thumb {
            &:before, &:after {
                animation: gallery_hover .6s ease forwards;
            }
        }
    }
}
.vk_post-postType-post{
    & .frame{
        position: relative;
        &:before,&:after{
            content: '';
            display: block;
            position: absolute;
            z-index: 1;
            border-style: solid;
            border-color: currentColor;
            width: 2em;
            height: 2em;
            opacity: 0;
        }
        &:before{
            left: 0;
            top: 0;
            border-width: 1px 0 0 1px;
        }
        &:after{
            right: 0;
            bottom: 0;
            border-width: 0 1px 1px 0;
        }
    }
    & .img{
        aspect-ratio: 340/194;
        &:not(:has(img)){
            background: url("../../imgs/common/no_image.webp") center/cover no-repeat;
        }
        & img{
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    & h3{
        font-size: 1rem;
        line-height: 1.625;
        margin: 0;
    }
    & .date{
        font-size: .75rem;
        line-height: 1.1;
        margin: 1em 0;
    }
    &:hover{
        & .frame{
            &:before,&:after{
                opacity: 1;
            }
        }
        & .img{
            transform: scale(.9);
        }
        & h3{
            text-decoration: underline;
            text-decoration-style: dashed;
            text-underline-offset: .4em;
            text-decoration-color: var(--teal);
            text-decoration-thickness: 1px;
        }
    }
}

.schema-faq-question{
    background: var(--orange);
    color: #fff;
    padding: .5rem;
    display: block;
    position: relative;
    letter-spacing: .05em;
    &:after{
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        width: 2rem;
        height: 1rem;
        background: #cc612c;
        clip-path: polygon(0 0,100% 0,100% 100%);
    }
}
.schema-faq-answer{
    padding: .5rem;
    border-style: solid;
    border-width: 0 1px 1px 1px;
    border-color: var(--olive);
    margin-left: 2rem;
    line-height: 2;
}

.vk_post-postType-event{
    &:has(a[href*="closed"]){
        .vk_post_imgOuter:after{
            content: "終了しました";
            position: absolute;
            left: calc(50% - 3.5em);
            top: calc(50% - 1em);
            width: 100%;
            height: 100%;
            color: var(--red);
            font-weight: bold;
            font-size: 2rem;
            display: inline-grid;
            place-items: center;
            width: 7em;
            height: 2em;
            border: solid 4px currentColor;
            background: rgba(255,255,255,.8);
            pointer-events: none;
        }
    }
}

.faq_anchors{
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    list-style: none;
    padding: 0;
    margin-bottom: 4rem;
    & li{
        margin: 0;
    }
    & a{
        display: flex;
        height: 100%;
        gap: .5rem;
        align-items: center;
        text-decoration: none;
        font-weight: bold;
        border: solid 1px var(--olive);
        border-radius: 2em;
        padding: .5rem 1rem .5rem 2px;
    }
    & .icon{
        display: grid;
        place-items: center;
        border-radius: 50%;
        flex: 0 0 2em;
        height: 2em;
        background: var(--olive);
        color: #fff;
    }
}


.aside_contact_banners{
    & ul{
        display: grid;
        grid-template-columns: repeat(4,1fr);
        margin: 0;
        padding: 0;
        gap: 0;
    }
    & li{
        margin: 0;
        padding: 0;
        list-style: none;
    }
    & a{
        display: block;
        position: relative;
        aspect-ratio: 278/230;
        & img{
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        &:after{
            content: '';
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-width: 8px;
            border-style: solid;
            border-color: rgba(255,255,255,.2) rgba(0,0,0,.2) rgba(0,0,0,.2) rgba(255,255,255,.2);
            pointer-events: none;
            visibility: hidden;
        }
        &:hover{
            &:after{
                visibility: visible;
            }
        }
    }
}
@media(max-width: 767px){
    .aside_contact_banners{
        & ul{
            grid-template-columns: 1fr 1fr;
        }
    }
}

.imgToGo{
    background-repeat: repeat-x !important;
    background-position: center 67px !important;
}

.vk_flow{
    & .vk_flow_frame_text_title{
        text-align: center;
    }
    &.free{
        & .vk_flow_frame_text_title{
            &:before{
                content: '無料';
                display: inline-grid;
                place-content: center;
                left: 0;
                top: 0;
                background: var(--red);
                color: #fff;
                font-weight: bold;
                padding: 0 .75em;
                margin-right: .5em;
                border-radius: .5em;
            }
        }
    }
    & .vk_flow_frame_image{
        max-width: 300px;
    }
}

.block_button_tel{
    border: solid 1px currentColor;
    border-radius: 5px;
    min-width: 326px;
    aspect-ratio: 326/60;
    display: inline-grid;
    place-content: center;
    & img{
        display: block;
        width: 192px;
        height: 38px;
        object-fit: contain;

    }
}
@media(max-width: 767px){
    .block_button_tel{
        display: grid;
    }
}

.entry-title,.archive-header-title{
    border: solid 4px var(--orange);
    border-width: 4px 0;
    position: relative;
    padding: 1.5rem .75rem;
    &:after,&:before{
        content: '';
        display: block;
        position: absolute;
        width: 1.25em;
        aspect-ratio: 3;
        background: linear-gradient(to right,var(--orange), var(--orange) 20%,#fff 20%,#fff 25%,var(--teal) 25%,var(--teal) 45%,#fff 45%,#fff 50%,var(--gold) 50%,var(--gold) 70%,#fff 70%,#fff 75%,var(--olive) 75%,var(--olive) 95%,#fff 95%);
    }
    &:before{
        left: -4px;
        top: -4px;
    }
    &:after{
        right: -4px;
        bottom: -4px;
        transform: scaleX(-1);
    }
}

.loop-item-staff{
    display: grid;
    align-self: stretch;
    text-align: center;
    padding: 15px 15px 30px;
    box-shadow: 4px 8px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    & .thumb{
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        aspect-ratio: 1;
        overflow: hidden;
        & img{
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 10%;
        }
    }
    & .name{
        display: block;
      color: var(--teal);
        line-height: 1.25;
        font-size: 2rem;
        margin-bottom: 0;
    }
    & .position{
        display: inline-block;
        line-height: 1.25;
        margin-top: .5rem;
        font-size: .6em;
    }
    & .link_has_icon{
        justify-content: flex-end;
    }
    &:hover .link_has_icon{
        background-image: url("../../imgs/common/button-right-gray.svg");
    }
}

.card-img-overlay{
    &:empty{
        background: #e5e5e5;
    }
}