/* CSS Document */

@media only screen and (max-width: 768px) {
    .blurFixSP {
        image-rendering: optimizeSpeed;
        /* STOP SMOOTHING, GIVE ME SPEED  */
        image-rendering: -moz-crisp-edges;
        /* Firefox                        */
        image-rendering: -o-crisp-edges;
        /* Opera                          */
        image-rendering: -webkit-optimize-contrast;
        /* Chrome (and eventually Safari) */
        image-rendering: pixelated;
        /* Chrome */
        image-rendering: optimize-contrast;
        /* CSS3 Proposed                  */
        -ms-interpolation-mode: nearest-neighbor;
        /* IE8+                           */
    }
     :root {
        --ttl_size: 24px;
        --wrapper: 70px;
    }
    .fixed_banner>div:before {
        display: none;
    }
    .fixed_banner .box-time {
        width: calc(100% + 1px) !important;
        max-width: calc(100% + 1px) !important;
        border: 0;
        bottom: 60px;
        right: -1px;
    }
    .fixed_banner .box-time .txt-tbl {
        text-align: left;
        display: block;
    }
    .fixed_banner .box-time .txt-tbl:before {
        display: none;
    }
}


/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/


/********************************
Menu Toogle
********************************/

body:not(.ovh) .menu_toggle .inside {
    pointer-events: none;
}

.menu_toggle {
    background-color: #fff;
    position: fixed;
    top: var(--wrapper);
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: calc(100vh - var(--wrapper));
    padding: 0px 0px 150px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
}

.menu_toggle.active {
    opacity: 1;
    visibility: visible;
}

.menu_toggle ul li {
    position: relative;
    overflow: hidden;
}

.menu_toggle p {
    margin-bottom: 0;
}

.menu_toggle .inside {
    -webkit-overflow-scrolling: touch;
    /* Lets it scroll lazy */
    transition: all 0.5s ease;
    height: 100%;
    overflow: auto;
}

.menu_toggle .inside .ttl {
    color: var(--main-color);
}

.menu_toggle .inside li {
    color: var(--clr1);
}

@media only screen and (min-width: 769px) {
    .menu_toggle .inside .ttl+ul {
        display: flex !important;
    }
}

@media only screen and (max-width: 768px) {
    .menu_toggle .inside .ft_link {
        padding: 20px 10px 20px;
    }
    @supports (-webkit-touch-callout: none) {
        .menu_toggle .inside .ft_link {
            /* Specific to iOS devices */
            padding-bottom: 120px;
        }
    }
    @media not all and (min-resolution: 0.001dpcm) {
        @supports (-webkit-appearance: none) {
            .menu_toggle .inside .ft_link {
                /* Safari */
                padding-bottom: 120px;
            }
        }
    }
    .noaccContainer ul li {
        margin-bottom: 0;
        border-bottom: 1px solid #ccc !important;
    }
    .noaccContainer ul li a {
        display: block;
        line-height: 1.5em;
        font-size: 18px;
        font-weight: 600;
        padding-top: 0.5em;
        padding-bottom: 0.5em;
        color: var(--main-color);
        border-bottom: 0;
    }
    .noaccContainer ul li a:before {
        display: none;
    }
    .menu_toggle .inside .ft_link .ttl {
        position: relative;
        pointer-events: auto;
        padding-top: 0.5em;
        padding-bottom: 0.5em;
        font-weight: 600;
        display: block;
        font-size: 18px;
        line-height: 1.5em;
        margin-bottom: 0;
        font-family: var(--f-notosans);
    }
    .menu_toggle .inside .ft_link .ttl:not(.rotate) {
        padding-bottom: 0.5em;
        border-bottom: 1px solid #ccc;
    }
    .menu_toggle .inside .ft_link .ttl.rotate::before {
        transform: rotate(0deg);
    }
    .ft_link li {
        margin-bottom: 0;
    }
    .ft_link a {
        display: block;
        font-weight: 500;
        font-size: 16px;
        border-bottom: 1px dashed #c6c6c6;
        padding-bottom: 0.5em;
        padding-top: 0.5em;
    }
    .menu_toggle .inside .ft_link .ttl::before,
    .menu_toggle .inside .ft_link .ttl::after {
        content: "";
        display: block !important;
        position: absolute;
        top: 1.15em;
        right: 0.5em;
        margin: auto;
        background-color: var(--main-color);
        transition: 0.3s all;
        width: 14px;
        height: 2px;
        z-index: 2;
        opacity: 1;
    }
    .ft_link .ttl::before {
        display: block !important;
    }
    .menu_toggle .inside .ft_link .ttl::before {
        transform: rotate(90deg);
    }
    .menu_toggle .inside .ft_link .menu01 .ttl {
        margin-top: 0;
    }
}

#nav-icon {
    width: 22px;
    height: 27px;
    position: relative;
    margin: 0 auto 0px;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

#nav-icon span {
    background-color: var(--main-color);
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
    border-radius: 2px;
}

#nav-icon span:nth-child(1) {
    top: 3px;
}

#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
    top: 11px;
}

#nav-icon span:nth-child(4) {
    top: 19px;
}

#nav-icon.open span:nth-child(1) {
    top: 11px;
    width: 0%;
    left: 50%;
}

#nav-icon.open span:nth-child(2) {
    transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
    transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
    top: 11px;
    width: 0%;
    left: 50%;
}

.hamburger-btn {
    background-color: var(--main-color);
    width: var(--wrapper);
    height: var(--wrapper);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s;
}

@media only screen and (min-width: 769px) {
    .hamburger-btn:hover {
        background-color: var(--clr1);
    }
}

.hamburger-btn .button-toggle {
    position: relative;
    width: 100%;
    padding-top: 18px;
    height: 100%;
    margin: 0 auto;
    text-align: center;
    color: inherit;
}

.hamburger-btn .button-toggle #menu_btn {
    color: #fff;
    font-size: 13px;
    text-align: center;
    line-height: 1;
    letter-spacing: 0px;
}


/* END Menu
********************************/


/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/


/********************************
General
********************************/

@media only screen and (max-width: 768px) {
    body {
        font-size: 87.5%;
    }
    figure {
        text-align: center;
    }
    .totop {
        bottom: 70px;
        right: 5px;
    }
    .totop .icon {
        width: 40px;
        height: 40px;
    }
    .under .ud_map iframe {
        height: 100%;
    }
    .fblock {
        display: block;
    }
    .fblock.true {
        display: flex;
    }
    .under .topic_path {
        padding-bottom: 10px;
    }
    .txt_l,
    .txt_r {
        float: none;
        width: auto;
    }
    .image_l,
    .image_r {
        float: none;
        width: auto;
        margin: 0 0 20px;
        text-align: center;
        max-width: none;
    }
    .btn-group {
        font-size: 8.75px;
    }
    .btn-group .btn.style01,
    .btn-group .btn.style02 {
        max-width: 280px;
    }
    .btn-group .btn.style01.md,
    .btn-group .btn.style02.md {
        min-width: 100px;
    }
    .btn-group .btn.style01.md a,
    .btn-group .btn.style02.md a {
        min-height: 45px;
        font-size: 14px;
    }
    p {
        margin-bottom: 13px;
        line-height: 2;
    }
    a .tel_click:hover {
        opacity: 1;
        color: inherit;
    }
    .slick-prev {
        left: 0px;
    }
    .slick-next {
        right: 0px;
    }
    .slick-arrow {
        z-index: 1;
        top: 15vw;
    }
}


/* END General
********************************/


/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/


/********************************
Header & Footer
********************************/

@media only screen and (max-width: 768px) {
    .wrapper {
        min-width: inherit;
    }
    .header_top {
        width: 100%;
        align-items: center;
        height: 60px;
        padding: 0;
    }
    .header_top p {
        margin-bottom: 0;
    }
    .header_top .logo {
        top: 0;
        max-width: 100%;
        width: auto;
        margin-left: 0;
        transform: none;
        margin-top: 20px;
    }
    .header_top .logo img {
        width: auto;
        max-height: 70px;
    }
    .idx_gallery ul li .img {
        width: 225px;
        height: 500px;
        background-size: 100% auto;
    }
    .tbl-time tr th:last-child {
        width: 60px !important;
        padding: 0 !important;
        letter-spacing: -1px !important;
    }
    .tbl-time tr th:first-child,
    .tbl-time tr td:first-child {
        padding: 0 0.3em;
    }
    .tbl-time tr th,
    .tbl-time tr td {
        font-size: min(4.27vw, 16px);
        letter-spacing: 0;
        color: #4c4948;
        text-align: center;
        padding: 0.875em 0em;
        border: 0;
        width: 11%;
        border-bottom: 1px solid #eae1ce;
        font-weight: 600;
    }
    footer {
        padding: 27px 0 60px;
    }
    footer .f-img {
        height: min(64.8vw, 350px);
        margin-top: -16px;
    }
    footer .f-img img {
        object-fit: initial;
    }
    footer .f-box02 {
        padding: 0 0 15px;
        margin-top: 0;
    }
    footer .f-box02 .inner {
        display: none;
    }
    footer .f-box02 .copyright {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: -7px;
        width: 100%;
        text-align: center;
    }
    footer .f-box02 .copyright>p {
        font-size: 12px;
    }
    footer .f-box01 {
        padding-bottom: 43px;
    }
    footer .f-box01 .f-logo {
        margin-bottom: 30px;
    }
    footer .f-box01 .inner_big {
        padding: 0 20px;
    }
    footer .f-box01-fx {
        flex-direction: column;
        max-width: 450px;
    }
    footer .f-box01-fx .f-left {
        margin-right: 0;
    }
    footer .f-box01-fx .f-left .f-fx-ct {
        flex-direction: column;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    footer .f-box01-fx .f-left .f-fx-ct .f-address {
        margin-bottom: 10px;
        justify-content: center;
        margin-right: auto;
        margin-left: auto;
        font-size: min(4.27vw, 16px);
        letter-spacing: 0.1em;
    }
    footer .f-box01-fx .f-left .f-fx-ct .f-address br {
        display: none;
    }
    footer .f-box01-fx .f-left .f-fx-ct .f-address02 {
        width: calc(100% - 40px);
        margin: 0 auto;
        height: 37px;
        font-size: min(4.27vw, 16px);
        min-width: auto;
        padding-left: 0;
        justify-content: center;
    }
    footer .f-box01-fx .f-left .f-list-ct {
        flex-direction: column;
        padding: 0 20px;
        max-width: 340px;
        margin: 0 auto;
    }
    footer .f-box01-fx .f-left .f-list-ct li {
        width: 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }
    footer .f-box01-fx .f-left .f-list-ct li:last-child a {
        font-size: min(6.67vw, 25px);
    }
    footer .f-box01-fx .f-left .f-list-ct li:last-child a .ico {
        margin-right: min(13.33vw, 50px);
    }
    footer .f-box01-fx .f-left .f-list-ct li a {
        font-size: min(7.73vw, 29px);
        line-height: 1em;
        min-height: 68px;
    }
    footer .f-box01-fx .f-left .f-list-ct li a:before {
        width: 7px;
        height: 12px;
        right: min(4.53vw, 17px);
    }
    footer .f-box01-fx .f-left .f-list-ct li a .ico {
        width: min(6.67vw, 25px);
        height: min(6.67vw, 25px);
        margin-right: min(3.47vw, 13px);
    }
    footer .f-box01-fx .f-right {
        margin-top: 16px;
        padding: 5px min(3.73vw, 14px);
    }
    footer .ft_info {
        width: auto;
        margin: 0 auto;
    }
    footer .ft_map iframe {
        height: 100%;
    }
    footer .ft_link {
        width: auto;
    }
    .ovh header .logo {
        margin-top: 0;
    }
    .ovh header .logo img {
        width: auto;
        height: 60px;
    }
    footer .f-box01 .f-logo img {
        height: 130px;
    }
    header.active {
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    }
    header.active .logo {
        margin-top: 0;
    }
    header.active .logo img {
        height: 54px;
        width: auto;
    }
    .fixed_banner {
        display: flex;
        flex-wrap: wrap;
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: auto;
        width: 100%;
        height: 60px;
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
        border-right: 1px solid var(--clr1);
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
        border-top: 1px solid var(--clr1);
        z-index: 99;
    }
    .fixed_banner.active {
        transform: translateY(0%);
    }
    .fixed_banner .tel {
        border-top-left-radius: 10px;
    }
    .fixed_banner .tel>p:before {
        width: 15px;
        height: 15px;
        margin-right: 0;
    }
    .fixed_banner .menu {
        width: 60px !important;
        padding-right: 0;
        flex-shrink: 0 !important;
        flex: initial !important;
        border-top-right-radius: 10px;
        background: #fff;
        border-right: 1px solid var(--clr3)
    }
    .fixed_banner .menu .hamburger-btn {
        position: relative;
        display: block;
        background: #fff;
        height: 100%;
        border-top-right-radius: 10px;
        width: 100%;
    }
    .fixed_banner>div {
        border-top: 0;
        flex: 1;
        margin-right: 0;
        width: 20% !important;
        border-radius: 0;
        border-right: 0;
        padding-right: 0;
        min-height: auto;
        max-width: 100%;
        height: 60px;
    }
    .fixed_banner>div>p {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: min(3.73vw, 14px) !important;
    }
    .fixed_banner>div>p:before {
        margin-bottom: 5px;
        margin-right: 0;
    }
}


/* End Header & Footer
********************************/


/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/


/********************************
Index
********************************/


/* END Index
********************************/


/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/


/********************************
Under
********************************/


/* END Under
********************************/


/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/


/*# sourceMappingURL=style_sp.css.map */