/* 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: 60px;
    }
    .inner_big,
    .inner,
    .inner_sm {
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
    }
    .sp {
        display: block !important;
    }
    .pc {
        display: none !important;
    }
}


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


/********************************
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 0px;
    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;
    }
    .menu_toggle .inside .ft_link li {
        margin-bottom: 0;
    }
    .menu_toggle .inside .ft_link li a {
        display: block;
        position: relative;
        padding: 0.5em 1em;
        border-bottom: 1px dashed #ccc;
        color: var(--clr1);
    }
    .menu_toggle .inside .ft_link li a::before {
        content: "";
        position: absolute;
        left: 0;
        margin-left: 0;
        top: 19px;
        width: 7px;
        height: 2px;
        background: var(--clr1);
    }
    @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;
            }
        }
    }
    .menu_toggle .inside .ft_link .ttl {
        position: relative;
        pointer-events: auto;
        padding-top: 0.8em;
        margin-bottom: 0;
        padding-bottom: 0.8em;
        font-size: 16px;
        font-weight: 600;
        --left: 1.5em;
    }
    .menu_toggle .inside .ft_link .ttl:not(.rotate) {
        padding-bottom: 0.8em;
        border-bottom: 1px solid #ccc;
    }
    .menu_toggle .inside .ft_link .ttl.rotate {
        margin-bottom: 0;
    }
    .menu_toggle .inside .ft_link .ttl.rotate::before {
        transform: rotate(0deg);
    }
    .menu_toggle .inside .ft_link .ttl::before,
    .menu_toggle .inside .ft_link .ttl::after {
        content: "";
        display: block !important;
        position: absolute;
        top: 1.2em;
        right: 1em;
        margin: auto;
        background-color: var(--main-color);
        transition: 0.3s all;
        width: calc(var(--left) / 2);
        height: 2px;
        z-index: 2;
    }
    .menu_toggle .inside .ft_link .ttl::before {
        transform: rotate(90deg);
    }
    .menu_toggle .inside .ft_link .noToggle ul li a {
        padding-left: 0;
        font-size: 16px;
        color: var(--clr2);
        font-weight: 600;
        border-bottom: 1px solid #ccc;
    }
    .menu_toggle .inside .ft_link .noToggle ul li a:before {
        display: none;
    }
}

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

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

#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: 40px;
    height: 40px;
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 10px;
}

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

.hamburger-btn .button-toggle {
    position: relative;
    width: 100%;
    padding-top: 8px;
    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: 55px;
        right: 5px;
    }
    .totop .icon {
        width: 35px;
        height: 35px;
    }
    .totop .icon:before {
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #fff;
    }
    .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 {
        max-width: calc(100% - 100px);
        width: auto;
        margin-left: 10px;
        transform: none;
    }
    .header_top .logo img {
        width: 238px;
    }
    .hamburger-btn {
        display: block;
    }
    .idx_gallery ul li .img {
        width: 225px;
        height: 500px;
        background-size: 100% auto;
    }
    .idx-tbl tr th,
    .idx-tbl tr td {
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid #F9E0E2;
        padding: 0;
        border-top: 0;
        padding-top: 0.85em;
        padding-bottom: 0.85em;
    }
    .idx-tbl tr th {
        width: 29%;
    }
    footer p,
    footer a {
        font-size: min(3.2vw, 14px);
    }
    footer .f-box01 {
        padding: 1.2em 1.375em 2em;
        border-radius: 30px;
    }
    footer .f-box01 .f-fx-box01 {
        padding-bottom: 0;
        margin-bottom: 0;
        flex-direction: column;
    }
    footer .f-box01 .f-fx-box01:before {
        display: none;
    }
    footer .f-box01 .f-fx-box01 .box-cnt {
        margin-right: 0;
    }
    footer .f-box01 .f-fx-box01 .box-cnt .f-ttl {
        margin-bottom: 0.2625em;
    }
    footer .f-box01 .f-fx-box01 .box-map {
        width: 100%;
        max-width: 100%;
        height: 295px;
        max-height: 295px;
        margin-top: 1.5em;
    }
    footer {
        padding: 50px 0 50px;
    }
    footer .ft_info {
        width: auto;
        margin: 0 auto;
    }
    footer .ft_map iframe {
        height: 100%;
    }
    footer .ft_link {
        width: auto;
    }
    .fixed_banner {
        display: flex;
        flex-wrap: wrap;
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: auto;
        width: 100%;
        height: 50px;
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        overflow: hidden;
    }
    .fixed_banner.active {
        transform: translateY(0%);
    }
    .fixed_banner p {
        font-weight: normal;
        font-size: 13px;
        line-height: 1;
    }
    .fixed_banner p::before {
        height: 1.4em;
    }
    .fixed_banner p::before {
        margin-bottom: 5px;
    }
    .fixed_banner .tel {
        width: 50%;
    }
    .fixed_banner div>a {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--clr2);
        color: #fff;
        font-size: min(5.333vw, 19px);
        font-weight: 600;
        position: relative;
        width: 100%;
        height: 100%;
        padding-right: 15px;
    }
    .fixed_banner div:last-child>a {
        font-size: min(5.333vw, 15px);
    }
    .fixed_banner div>a .ico {
        line-height: 0;
        margin-right: 5px;
        position: relative;
        top: 1px;
    }
    .fixed_banner div>a .ico img {
        width: min(4vw, 20px);
        height: auto;
    }
    .fixed_banner div>a:before {
        content: "";
        position: absolute;
        right: 3vw;
        top: 0;
        bottom: 0;
        margin: auto 0;
        width: 0.75em;
        height: 0.625em;
        background-color: #fff;
        -webkit-mask-image: url(../images/idx-ico-arr-w.svg);
        mask-image: url(../images/idx-ico-arr-w.svg);
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-size: contain;
        mask-size: contain;
        max-width: 11px;
        max-height: 10px;
    }
    .fixed_banner .web {
        width: 50%;
    }
    .fixed_banner .web a {
        text-decoration: none;
        color: var(--clr2);
        background: #FAE5E6;
    }
    .fixed_banner .web a:before {
        background: var(--clr2);
        right: 3.5vw;
    }
}


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


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


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


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


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


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


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


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


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