@charset "utf-8";
/* 202507 改修 */
/* common */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho+B1&display=swap');

.noto {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
/* shippori-mincho-b1
regular:  400
medium: 500
semibold: 600
bold: 700 */
.shippori {
  font-family: "Shippori Mincho B1", serif;
  font-style: normal;
  font-weight: 600;
}

.onlySP {
    display: none;
}
#wrap {
    padding-top: 150px;
}
@media screen and (max-width: 640px) {
    .onlyPC {
        display: none;
    }
    .onlySP {
        display: block;
    }
    #wrap {
        padding-top: 0;
    }
}

a {
    text-decoration: none;
    transition: all .4s ease-in;

    &:hover {
        opacity: .6;
    }
}
img {
    max-width: 100%;
    vertical-align: top;
}
ul {
    list-style: none;
}









/* animation */
.fadein {
    opacity: 0;
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in;
}
.fadein.looked {
    opacity: 1;
}
.fadeinb-t {
    opacity: 0;
    -webkit-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
}
.fadeinb-t.looked {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.fadeinb-t-child {
    opacity: 0;
    -webkit-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
}
.fadeinb-t-child.looked {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.fadeinl-r {
    translate: none;
    rotate: none;
    scale: none;
    transform: translate(-32px, 0px);
    opacity: 0;
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in;
}
.fadeinl-r.looked {
    transform: translate(0px, 0px);
    opacity: 1;
}

.fadeinr-l {
    translate: none;
    rotate: none;
    scale: none;
    transform: translate(32px, 0px);
    opacity: 0;
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in;
}
.fadeinr-l.looked {
    transform: translate(0px, 0px);
    opacity: 1;
}

.fadeinscale {
    translate: none;
    rotate: none;
    scale: none;
    transform: scale(0);
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.fadeinscale.looked {
    transform: scale(1);
    opacity: 1;
}

.textb-t {
    opacity: 0;
}
@keyframes showTextB-T{
    0%{
        opacity: 0;
        transform: translateY(100%);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}
.textb-t span {
    display: inline-block;
}
.textb-t > span{
    overflow: hidden;
}
.textb-t.looked {
    opacity: 1;
}
.textb-t.looked > span > span {
    animation: showTextB-T .5s backwards;
}
















/* header */
.header {
    width: 100%;
    overflow: visible;
    position: fixed;
    top: 0;
    transition: all .4s ease-in-out;
    width: 100%;
    z-index: 10;

    .h-info {
        background-color: #f9f9f6;

        .inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1140px;
            width: 100%;
            margin: 0 auto;
            padding: 6px 0;

            .txt-desc {
                font-size: 12px;
                font-weight: 500;
            }

            .box-tel {
                display: flex;
                align-items: center;
                gap: 0 55px;

                .tel {
                    a {
                        display: flex;
                        align-items: center;

                        .num {
                            font-size: 26px;
                            font-weight: 600;
                            letter-spacing: .1em;
                            line-height: 1;
                            color: #517420;
                        }
                    }
                }

                .time {
                    border: 1px solid #bfd243;
                    line-height: 1;
                    padding: 7px 20px;
                    border-radius: 50px;
                    font-size: 12px;
                    font-weight: 500;
                    letter-spacing: .05em;
                    font-weight: 500;
                }
            }
        }
    }


    .box-nav {
        background-color: #e7f0d8;
        padding: 25px 0 26px;

        .inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1140px;
            width: 100%;
            margin: 0 auto;

            .logo {
                width: 201px;

                img {
                    width: 100%;
                }
            }

            .gnav {
                position: relative;

                .elem-gnav {
                    padding: 0 62px 40px;
                    visibility: hidden;
                    background-color: #e7f0d8;
                    position: fixed;
                    top: 151px;
                    left: auto;
                    right: 0;
                    transform: translate(120%, 0);
                    opacity: 0;
                    transition: all .5s ease-in-out;

                    .nav-list {
                        margin-bottom: 60px;
                        display: flex;
                        gap: 0 68px;

                        .list-gnav {
                            display: flex;
                            flex-direction: column;
                            gap: 20px 0;

                            .item-gnav {
                                a {
                                    text-decoration: none;
                                    font-size: 12px;
                                    line-height: 22px;
                                    letter-spacing: .05em;
                                    color: #545454;
                                    font-weight: 500;
                                    padding-left: 30px;
                                    background: transparent url(../img/home/icon_link-arr.svg) left center / 22px auto no-repeat;
                                    display: block;
                                }
                            }
                        }
                    }

                    .list-sns {
                        display: flex;
                        justify-content: flex-end;
                        gap: 0 11px;

                        .link-btn {
                            display: flex;
                            background-color: #8abe3a;
                            border-radius: 50px;
                            justify-content: center;
                            gap: 0 4px;
                            align-items: center;
                            text-decoration: none;
                            height: 39px;
                            box-sizing: border-box;
                            width: 155px;

                            &.face {
                                background-color: #ffffff;
                                border: 1px solid #3878ea;
                                margin-top: 11px;
                                margin-bottom: 11px;
                                gap: 0 15px;

                                img {
                                    width: 11px;
                                    height: 21px;
                                }

                                span {
                                    color: #545454;
                                }
                            }

                            &.inst {
                                border: 1px solid transparent;
                                margin-top: 11px;
                                margin-bottom: 11px;
                                gap: 0 10px;
                                background: linear-gradient(white, white) padding-box,
                        linear-gradient(to right, #fddf82, #f94583, #5e4eeb) border-box;

                                img {
                                    width: 20px;
                                    height: 20px;
                                }

                                span {
                                    color: #545454;
                                }
                            }

                            span {
                                color: #ffffff;
                                font-size: 12px;
                                font-weight: 500;
                                letter-spacing: -.025em;
                            }
                        }
                    }
                }

                .box-hamb {
                    display: flex;
                    align-items: center;

                    .link-btn {
                        display: flex;
                        background-color: #8abe3a;
                        border-radius: 50px;
                        justify-content: center;
                        gap: 0 4px;
                        align-items: center;
                        text-decoration: none;
                        height: 39px;
                        width: 195px;
                        box-sizing: border-box;

                        &.contact {
                            background-color: #ef8b34;
                            margin-left: 15px;
                            margin-right: 60px;
                        }

                        span {
                            color: #ffffff;
                            font-size: 12px;
                            font-weight: 500;
                            letter-spacing: -.025em;
                        }
                    }

                    .hamburger {
                        cursor: pointer;
                        height: 18px;
                        position: relative;
                        transition: all .4s ease-in-out;
                        width: 26px;
                        z-index: 100;

                        .icon {
                            background-color: #517420;
                            display: block;
                            height: 2px;
                            left: 0;
                            position: absolute;
                            transition: all .4s ease-in-out;
                            width: 26px;
                            border-radius: 3px;
                            top: 0;

                            &:nth-child(2) {
                                top: 8px;
                            }
                            &:nth-child(3) {
                                top: 16px;
                            }
                        }
                    }
                }

                &.nav-open {
                    .elem-gnav {
                        opacity: 1;
                        transform: translate(0, 0);
                        visibility: visible;
                        z-index: 5;
                        position: fixed;
                    }
                    .box-hamb {
                        .hamburger {
                            .icon:nth-child(1) {
                                top: 7px;
                                transform: rotate(-45deg);
                            }
                            .icon:nth-child(2) {
                                opacity: 0;
                            }
                            .icon:nth-child(3) {
                                top: 7px;
                                transform: rotate(45deg);
                            }
                        }
                    }
                }
            }
        }
    }

    &.is-view {
        opacity: 1;
        pointer-events: auto;
    }
}


/* header SP */
@media screen and (max-width: 640px) {
    .header {
        background-color: #ffffff;
        position: relative;

        .h-info {
            .inner {
                max-width: 100%;
                padding: 5px 16px 10px;
                flex-direction: column;

                .txt-desc {
                    font-size: 10px;
                }

                .box-tel {
                    flex-direction: column;
                    gap: 2px 0;

                    .tel {
                        a {
                            display: flex;
                            align-items: center;

                            img {
                                width: 40px;
                            }

                            .num {
                                font-size: 26px;
                                letter-spacing: .05em;
                            }
                        }
                    }

                    .time {
                        padding: 3px 10px;
                        font-size: 10px;
                        letter-spacing: .01em;
                    }
                }
            }
        }


        .box-nav {
            padding: 10px 16px 10px 5px;

            .inner {
                max-width: 100%;

                .logo {
                    width: 150px;
                }

                .gnav {
                    .elem-gnav {
                        padding: 30px 16px 30px;
                        top: 174px;
                        overflow: auto;
                        width: 100vw;
                        height: 100vh;

                        .nav-list {
                            margin-bottom: 20px;
                            gap: 15px 0;
                            flex-wrap: wrap;

                            .list-gnav {
                                gap: 15px 0;
                                width: calc(100% / 2);

                                .item-gnav {
                                    a {
                                        text-decoration: none;
                                        font-size: 12px;
                                        line-height: 22px;
                                        letter-spacing: .05em;
                                        color: #545454;
                                        font-weight: 500;
                                        padding-left: 30px;
                                        background: transparent url(../img/home/icon_link-arr.svg) left center / 22px auto no-repeat;
                                        display: block;
                                    }
                                }
                            }
                        }

                        .list-sns {
                            gap: 0 10px;
                            justify-content: center;

                            .item-sns {
                                a {
                                    img {
                                        /* width: 34px; */
                                    }
                                }
                            }
                        }
                    }

                    .box-hamb {
                        flex-direction: column;

                        .link-btn {
                            gap: 0 2px;
                            height: 29px;
                            width: 160px;

                            &.contact {
                                margin-left: 0;
                                margin-right: 0;
                                margin-top: 5px;
                            }

                            img {
                                width: 15px;
                            }

                            span {
                                font-size: 10px;
                            }
                        }

                        .hamburger {
                            position: fixed;
                            top: 33px;
                            right: 20px;
                        }
                    }

                    &.nav-open {
                        .elem-gnav {
                            opacity: 1;
                            transform: translate(0, 0);
                            visibility: visible;
                            z-index: 5;
                            position: fixed;
                        }
                    }
                }
            }
        }

        &.fixed {
            position: fixed;
            opacity: 1;
        }

        &.is-view {
            opacity: 1;
            pointer-events: auto;
        }
    }
}




/* breadcrumbs */
#path {
    margin: 30px auto 0 !important;
}




/* footer */
.sec-info {
    background-color: #ffffff;
    overflow: hidden;
    position: relative;

    &::before {
        content: "";
        display: block;
        background-color: #e7f0d8;
        border-radius: 1500px 1500px 0 0;
        height: 100%;
        width: 120%;
        margin: 0 auto;
        transform: translateX(-50%);
        left: 50%;
        position: absolute;
        top: 0;
        z-index: 0;
        min-width: 1500px;
    }

    .inner {
        position: relative;
        z-index: 1;
        padding: 135px 0 90px;
        max-width: 980px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;

        .elem-l {
            .logo {
                width: 307px;
                margin-bottom: 30px;

                a {
                    display: block;

                    img {
                        width: 100%;
                    }
                }
            }

            .txt-info {
                font-size: 13px;
                letter-spacing: .1em;
                line-height: 2;
                color: #545454;
                margin-bottom: 25px;
                font-weight: 500;
            }

            .dl-add {
                display: flex;
                align-items: center;
                gap: 0 20px;

                &.first {
                    margin-bottom: 15px;
                }

                dt {
                    padding: 9px 5px;
                    box-sizing: border-box;
                    width: 110px;
                    text-align: center;
                    display: flex;
                    gap: 0 6px;
                    align-items: center;
                    border: 1px solid #8abe3a;
                    border-radius: 6px;

                    span {
                        width: 6em;
                        font-size: 13px;
                        letter-spacing: .1em;
                        color: #517420;
                        display: block;
                        text-align: center;
                        line-height: 1;
                    }
                }

                dd {
                    font-size: 13px;
                    line-height: 1.46;
                    letter-spacing: .1em;
                    color: #545454;
                    font-weight: 500;
                }

            }

        }

        .elem-r {
            background-color: #f3f7ea;
            border-radius: 10px;
            padding: 40px 38px 42px;

            .ttl-info {
                color: #517420;
                font-size: 18px;
                line-height: 1;
                letter-spacing: .1em;
                padding-bottom: 6px;
                margin-bottom: 20px;
                position: relative;

                &::after {
                    content: '';
                    display: block;
                    width: 100%;
                    height: 1px;
                    background: linear-gradient(to right,  #7ac300 0%,#bcd600 100%);
                    position: absolute;
                    bottom: 0;
                }
            }

            .txt-rese {
                font-size: 15px;
                font-weight: 500;
                letter-spacing: .1em;
                line-height: 1;
                margin-bottom: 30px;
            }

            .tel {
                display: flex;
                justify-content: center;
                gap: 0 5px;
                align-items: center;

                span {
                    font-size: 32px;
                    line-height: 1;
                    letter-spacing: .1em;
                    color: #517420;
                    font-weight: 600;
                }
            }

            .tel-time {
                text-align: center;
                font-size: 13px;
                letter-spacing: .1em;
                line-height: 1;
                color: #545454;
                margin-bottom: 28px;
            }

            .link-contact {
                display: flex;
                background-color: #ef8b34;
                border-radius: 50px;
                justify-content: center;
                gap: 0 10px;
                align-items: center;
                text-decoration: none;

                span {
                    color: #ffffff;
                    font-size: 16px;
                    font-weight: 500;
                    letter-spacing: .1em;
                }
            }
        }
    }
}

@media screen and (max-width: 640px) {
    .sec-info {
        &::before {
            border-radius: 200px 200px 0 0;
            height: 100%;
            width: 140%;
            min-width: 140%;
        }

        .inner {
            padding: 60px 16px 40px;
            max-width: 100%;
            flex-direction: column;
            gap: 30px 0;

            .elem-l {
                .logo {
                    width: 180px;
                    margin-bottom: 20px;

                    a {
                        display: block;

                        img {
                            width: 100%;
                        }
                    }
                }

                .txt-info {
                    font-size: 12px;
                    letter-spacing: .05em;
                    line-height: 1.6;
                    margin-bottom: 20px;
                }

                .dl-add {
                    gap: 0 10px;

                    &.first {
                        margin-bottom: 10px;
                    }

                    dt {
                        padding: 5px 0 5px 5px;
                        box-sizing: border-box;
                        width: 90px;
                        gap: 0;
                        border-radius: 5px;

                        img {
                            width: 20px;
                        }

                        span {
                            width: 5em;
                            font-size: 12px;
                            letter-spacing: .05em;
                        }
                    }

                    dd {
                        font-size: 12px;
                        line-height: 1.4;
                        letter-spacing: .05em;
                    }

                }

            }

            .elem-r {
                border-radius: 6px;
                padding: 30px 16px 30px;

                .ttl-info {
                    font-size: 16px;
                    letter-spacing: .05em;
                    margin-bottom: 10px;
                }

                .txt-rese {
                    font-size: 12px;
                    letter-spacing: .05em;
                    margin-bottom: 10px;
                }

                .tel {
                    gap: 0;

                    img {
                        width: 40px;
                    }

                    span {
                        font-size: 28px;
                        letter-spacing: .05em;
                    }
                }

                .tel-time {
                    font-size: 12px;
                    letter-spacing: .05em;
                    margin-bottom: 20px;
                }

                .link-contact {
                    gap: 0 5px;

                    img {
                        width: 45px;
                    }

                    span {
                        font-size: 14px;
                        letter-spacing: .02em;
                    }
                }
            }
        }
    }
}



/* map */
.f-map {
    width: 100%;
    overflow: hidden;
    position: relative;

    iframe {
        height: 263px;
        width: 100%;
    }
}



/* pager */
.wp-pagenavi{
	display: flex;
	justify-content: center;
	align-items: center;
    flex-wrap: wrap;
    margin: 50px auto 0;
}
@media screen and (max-width: 640px) {
    .wp-pagenavi{
        margin: 20px auto 0;
    }
}


/* footer */
.footer {
    background-color: #f9f9f6;
    padding: 85px 0 35px;

    .inner {
        max-width: 975px;
        margin: 0 auto 60px;
        width: 100%;
        display: flex;

        .elem-nav {
            display: flex;
            flex: 1;

            .list-nav {
                width: calc(100% / 3);
                display: flex;
                flex-direction: column;
                gap: 20px 0;

                .item-nav {
                    a {
                        text-decoration: none;
                        font-size: 16px;
                        line-height: 1;
                        letter-spacing: .1em;
                        color: #545454;
                        font-weight: 500;
                        padding-left: 40px;
                        background: transparent url(../img/home/icon_link-arr.svg) left center / 22px auto no-repeat;
                    }
                }
            }
        }

        .elem-btn {
            width: 195px;

            .link-btn {
                display: flex;
                background-color: #8abe3a;
                border-radius: 50px;
                justify-content: center;
                gap: 0 4px;
                align-items: center;
                text-decoration: none;
                height: 39px;
                box-sizing: border-box;

                &.contact {
                    background-color: #ef8b34;
                    margin-top: 11px;
                    margin-bottom: 11px;
                }

                &.face {
                    background-color: #ffffff;
                    border: 1px solid #3878ea;
                    margin-top: 11px;
                    margin-bottom: 11px;
                    gap: 0 15px;

                    span {
                        color: #545454;
                    }
                }

                &.inst {
                    border: 1px solid transparent;
                    margin-top: 11px;
                    margin-bottom: 11px;
                    gap: 0 10px;
                    background: linear-gradient(white, white) padding-box,
               linear-gradient(to right, #fddf82, #f94583, #5e4eeb) border-box;

                    span {
                        color: #545454;
                    }
                }

                span {
                    color: #ffffff;
                    font-size: 12px;
                    font-weight: 500;
                    letter-spacing: -.025em;
                }
            }

            .list-sns {
                display: flex;
                justify-content: flex-end;
                gap: 0 11px;
            }
        }
    }

    .copy {
        text-align: center;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: -.025em;
        line-height: 1;
    }
}

@media screen and (max-width: 640px) {
    .footer {
        padding: 40px 16px 40px;

        .inner {
            max-width: 100%;
            margin: 0 auto 40px;
            flex-direction: column;
            gap: 30px 0;

            .elem-nav {
                flex-wrap: wrap;
                gap: 15px 0;

                .list-nav {
                    width: calc(100% / 2);
                    gap: 15px 0;

                    .item-nav {
                        a {
                            font-size: 14px;
                            letter-spacing: .05em;
                            padding-left: 30px;
                            display: block;
                            line-height: 22px;
                        }
                    }
                }
            }

            .elem-btn {
                width: 100%;
                margin: 0 auto;

                .link-btn {
                    &.contact {
                        margin-top: 10px;
                    }

                    &.face {
                        margin-top: 10px;
                        margin-bottom: 10px;
                        gap: 0 15px;
                        img {
                            width: 11px;
                            height: 20px;
                        }
                    }

                    &.inst {
                        margin-top: 10px;
                        margin-bottom: 10px;
                        gap: 0 10px;
                        img {
                            width: 20px;
                            height: 20px;
                        }
                    }


                    span {
                        font-size: 14px;
                        letter-spacing: -.025em;
                        display: block;
                    }
                }

                .list-sns {
                    display: flex;
                    justify-content: flex-end;
                    gap: 0 11px;

                    .item-sns {
                        a {
                            img {
                                width: 34px;
                            }
                        }
                    }
                }
            }
        }

        .copy {
            font-size: 10px;
        }
    }
}
