/* 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;
    }
	.fixed_banner .box-map iframe{
		height:12em;
	}
.fixed_banner .box-time.active, .fixed_banner .box-map.active {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
	.fixed_banner .box-time, .fixed_banner .box-map {
    background: rgba(230, 239, 225, 1);
    position: absolute;
    right: 0;
    left: 0;
    bottom: 60px;
    top: initial;
    margin: 0 auto;
    height: 290px;
    width: 100%;
    border: 0;
    padding: 0.9375em;
    border-radius: 0;
    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 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;
    }
    @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 .title {
        position: relative;
        pointer-events: auto;
        padding-top: 0.5em;
        padding-bottom: 0.5em;
        font-family: var(--f-jp);
        line-height: 1.5em;
        display: block;
        --left: 1.5em;
        font-weight: 500;
    }
    .menu_toggle .inside .ft_link .title.rotate::before {
        transform: rotate(0deg);
    }
    .menu_toggle .inside .ft_link .title::before,
    .menu_toggle .inside .ft_link .title::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 .title::before {
        transform: rotate(90deg);
    }
    .menu_toggle .inside .ft_link li.col3>ul ul {
        display: block !important;
    }
    .menu_toggle .inside .ft_link li.col3>ul ul>li>a:before {
        display: block;
    }
    .menu_toggle .inside .ft_link li.col3>ul>li>a {
        padding-left: 0;
        color: var(--main-color);
        display: block;
        line-height: 1.5em;
        padding: 10px 0;
    }
    .menu_toggle .inside li>a:before {
        display: none;
    }
    .menu_toggle .inside ul>li {
        border-bottom: 1px solid #ccc;
        margin-bottom: 0;
    }
    .menu_toggle .inside ul>li>ul>li>a:before {
        display: block;
    }
    .menu_toggle .inside ul>li:last-child {
        border-bottom: 0;
    }
    .menu_toggle .inside li>a {
        border-bottom: 0;
        font-weight: 500;
    }
    .menu_toggle .inside ul>li>ul>li>a {
        font-weight: 400;
    }
    .ft_link a {
        line-height: 1.5em;
        padding-top: 0.5em;
        padding-bottom: 0.5em;
        border-bottom: 1px solid #ccc;
        font-size: 15px;
        font-weight: 400;
    }
    .menu_toggle .inside .ft_link .menu01 .ttl {
        margin-top: 0;
    }
}

#nav-icon {
    width: 32px;
    height: 27px;
    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: 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: calc(var(--wrapper) / 2 - 19px);
    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: 130px;
        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.active,
    .ovh header {
        background-color: #fff;
        border-radius: 0;
        max-width: 100%;
        right: 0;
        top: 0;
    }
    header.active .logo,
    .ovh header .logo {
        padding: 0;
    }
    footer .f-box01-r {
        flex: 1;
        padding-top: 25px;
    }
    header.active .header_top,
    .ovh header .header_top {
        padding: 0 10px;
    }
    .header_top {
        width: 100%;
        align-items: center;
        height: 60px;
        padding: 0 10px;
        flex-wrap: nowrap;
    }
    .header_top p {
        margin-bottom: 0;
    }
    .header_top .logo {
        max-width: calc(100% - 100px);
        width: auto;
        margin-left: 0;
        transform: none;
        height: 100%;
        border-bottom-right-radius: 10px;
        padding: 0;
    }
    .header_top .logo img {
        width: auto;
        max-height: 58px;
        height: auto !important;
    }
    header.active .logo img,
    .ovh header .logo img {
        height: auto;
    }
    header {
        font-size: initial;
        background: #fff;
        max-width: 100%;
    }
    header .right_head {
        display: block !important;
        padding-bottom: 0;
        padding-right: 0;
        flex: 1;
    }
    header .right_head .pc_navi {
        display: none;
    }
    header .right_head .idx-h-ct {
        margin-left: 10px;
        justify-content: flex-end;
        margin-right: 60px;
    }
    header .right_head .idx-h-ct .h-btn {
        margin-right: 5px;
    }
    header .right_head .idx-h-ct .h-btn img {
        width: 26px;
        height: auto;
        filter: none;
    }
    .right_head .idx-h-ct .h-btn a img.img-under {
        display: block;
    }
    .right_head .idx-h-ct .h-btn a img.img-top {
        display: none;
    }
    header .right_head .idx-h-ct .h-btn:last-child img {
        width: 30px;
    }
    header.active {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        top: 0;
    }
    header.active .header_top {
        padding: 0 10px;
        width: 100%;
    }
    header.active .logo {
        padding: 0;
    }
    .hamburger-btn {
        display: block;
    }
    .idx_gallery ul li .img {
        width: 225px;
        height: 500px;
        background-size: 100% auto;
    }
    .txt-tbl-time {
        font-size: min(3.2vw, 12px);
    }
    .tbl-time tr th,
    .tbl-time tr td {
        padding: 10px 0 20px !important;
        font-size: min(2.93vw, 12px) !important;
        line-height: 1.5em;
    }
    .tbl-time tr th:not(:first-child),
    .tbl-time tr td:not(:first-child) {
        width: 10%;
    }
    .tbl-time tr th:last-child,
    .tbl-time tr td:last-child {
        padding-right: 10px !important;
    }
    .tbl-time tr th {
        padding-bottom: 10px !important;
        font-size: min(3.2vw, 13px) !important;
    }
    .tbl-time tr td.td-time {
        font-size: min(2.67vw, 11px) !important;
    }
    footer {
        padding: 0 0 60px;
    }
    footer .inner_sm {
        padding: 0 20px;
    }
    footer .f-box01 {
        padding: 40px 0;
    }
    footer .f-box01 .ft_logo {
        padding: 0;
        margin-bottom: 10px;
    }
    footer .f-box01 .ft_logo img {
        width: min(80vw, 300px);
        height: auto;
    }
    footer .f-box01-fx {
        flex-direction: column;
        max-width: 500px;
        margin: 0 auto;
    }
    footer .f-box01-l {
        width: 100%;
        margin-right: 0;
    }
    footer .f-box01-l .f-list-address {
        flex-direction: column;
    }
    footer .f-box01-l .f-list-address li {
        width: 100%;
        max-width: 100%;
        margin: 0 auto 10px;
    }
    footer .f-box01-l .f-list-address li:last-child {
        margin-bottom: 0;
    }
    footer .f-box01-l .f-list-address li a .ttl {
        font-size: 16px;
    }
    footer .f-box01 .f-address {
        align-items: flex-start;
    }
    footer .f-box01 .f-address .ico {
        margin-right: 5px;
    }
    footer .f-box01 .f-box-btn {
        max-width: 500px;
        margin-top: 20px;
    }
    footer .f-box01 .f-box-btn .btn-group {
        justify-content: center;
    }
    footer .f-box01 .f-box-btn .btn {
        width: calc(50% - 5px);
        margin-bottom: 10px;
        margin-right: 10px;
    }
    footer .f-box01 .f-box-btn .btn:nth-child(2n) {
        margin-right: 0 !important;
    }
    footer .f-box01 .f-box-btn .btn a {
        font-size: min(3.73vw, 14px);
        padding: 10px 20px 10px 15px;
        min-height: auto;
        min-height: 50px;
    }
    footer .f-box02 {
        padding: 10px;
    }
    footer .f-box02 .f-bg-menu .copyright {
        position: relative;
        bottom: 0;
        right: 0;
        text-align: center;
        padding: 0;
    }
    footer .f-box02 .f-bg-menu .copyright>p {
        font-size: min(3.2vw, 12px);
        line-height: 1.5em;
    }
    footer .f-box02 .f-bg-menu {
        padding: 10px;
    }
    footer .f-box02 .ft_link {
        display: block !important;
    }
    footer .f-box02 .ft_link .f-box-menu {
        display: none;
    }
    footer .f-box02 .ft_link .menu01 {
        display: none;
    }
    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: 60px;
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
    }
    .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>div {
        width: 25%;
        border-radius: 0;
        height: 100%;
    }
}


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


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


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


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


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


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


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


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


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