/* 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;
    }
}


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


/********************************
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;
    z-index: 99;
}

.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 .ttl {
        position: relative;
        pointer-events: auto;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 16px;
        color: var(--clr1);
        padding-left: 0;
        line-height: 1.6em;
        margin-bottom: 0 !important;
    }
    .menu_toggle .inside .ft_link .ttl .en {
        display: block;
        color: var(--main-color);
        font-size: 13px;
        line-height: 1em;
    }
    .menu_toggle .inside .ft_link .ttl:not(.rotate) {
        border-bottom: 1px solid #ccc;
    }
    .menu_toggle .inside .ft_link .ttl.rotate::before {
        transform: rotate(0deg);
    }
    .menu_toggle .inside .ft_link .ttl::after {
        bottom: 0;
        top: 0;
        margin: auto 0;
    }
    .menu_toggle .inside .ft_link .ttl::before,
    .menu_toggle .inside .ft_link .ttl::after {
        content: "";
        display: block !important;
        position: absolute;
        top: 0;
        right: 0.5em;
        margin: auto;
        background-color: var(--main-color);
        transition: 0.3s all;
        width: 12px;
        height: 2px;
        z-index: 2;
        left: initial;
    }
    .menu_toggle .inside .ft_link .ttl::before {
        transform: rotate(90deg);
    }
    .menu_toggle .inside .ft_link li {
        border-bottom: 1px solid #ccc;
    }
    .menu_toggle .inside .ft_link .menu01 .ttl {
        margin-top: 0;
    }
    .accContainer ul li {
        margin-bottom: 0;
    }
    .accContainer ul li a {
        font-weight: 500;
        font-size: 15px;
        padding: 6px 0;
        display: block;
        width: 100%;
    }
    .menu01.noaccContainer ul li a:before {
        display: none;
    }
    .menu01.noaccContainer ul li {
        margin-bottom: 0;
    }
    .menu01.noaccContainer ul li a :after {
        content: "";
        position: absolute;
        right: 0.5em;
        top: 0;
        bottom: 0;
        margin: auto 0;
        width: 10px;
        height: 9px;
        background: url(../images/idx-ico-arr.svg) no-repeat center;
        background-size: contain;
    }
    .menu01.noaccContainer ul li a {
        display: block;
        padding: 10px 0;
        font-size: 16px;
        color: var(--clr1);
        line-height: 1.6em;
        font-weight: 600;
        position: relative;
    }
    .menu01.noaccContainer ul li a .en {
        color: var(--main-color);
        font-size: 13px;
        line-height: 1em;
        display: block;
    }
}

#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: #444444;
    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 {
    position: fixed;
    top: 20px;
    right: 20px;
    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: 0;
    height: 100%;
    margin: 0 auto;
    text-align: center;
    color: inherit;
}

.hamburger-btn .button-toggle #menu_btn {
    color: #444444;
    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: 100px;
        right: 10px;
    }
    .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 {
        padding-top: 0;
    }
    .header_top {
        width: 100%;
        align-items: center;
        height: 100%;
        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: auto;
        max-height: 50px;
    }
    .idx_gallery ul li .img {
        width: 225px;
        height: 500px;
        background-size: 100% auto;
    }
    .tbl-time tr th:first-child,
    .tbl-time tr td:first-child {
        left: 0;
    }
    .txt-tbl-time {
        font-size: 12px;
    }
    .txt-tbl-time .txt-fx .txt-pd {
        padding-left: 10px;
    }
    footer .f-box01:before {
        display: none;
    }
    .idx_gallery .item img {
        width: 224px;
        height: auto;
    }
    footer {
        padding: 0 0 50px;
    }
    footer .f-map iframe {
        height: 300px;
    }
    footer .f-box01 {
        margin: -340px auto 0;
        max-width: calc(100% - 40px);
    }
    footer .f-box01-fx {
        flex-direction: column;
        padding: 30px 25px;
    }
    footer .f-box01-cnt {
        max-width: 420px;
        margin: 0 auto;
    }
    footer .f-box01-cnt .f-box-tbl {
        padding-left: 0;
        margin-bottom: 28px;
    }
    footer .f-box01-cnt .f-box-tbl li {
        margin-bottom: 11px;
    }
    footer .f-box01-cnt .f-box-tbl li .ttl {
        font-size: min(4vw, 15px);
        min-width: 66px;
        margin-right: min(2.13vw, 8px);
    }
    footer .f-box01-cnt .f-box-tbl li .txt {
        font-size: min(4vw, 15px);
        letter-spacing: 0.01em;
        line-height: 1.4em;
    }
    footer .f-box01-cnt .f-logo {
        width: calc(100% + 32px);
        position: relative;
        left: 50%;
        transform: translate(-50%);
        margin-bottom: 13px;
        text-align: center;
    }
    footer .f-box01-cnt .f-tel {
        margin-left: 0;
    }
    footer .f-box01-cnt .f-tel a {
        font-size: min(7.27vw, 31px);
        margin: 0 auto;
    }
    footer .f-box01-cnt .f-tel a .ico {
        width: min(8.27vw, 31px);
    }
    footer .f-box01-cnt .f-tel a:before {
        top: -10px;
    }
    footer .f-box01-right {
        width: calc(100% + 50px);
        position: relative;
        left: 50%;
        transform: translate(-50%);
        padding-top: 32px;
    }
    footer .f-box02 {
        padding-top: 0;
    }
    footer .f-box02:before {
        left: 0;
        top: -44px;
        background: url(../images/f-box02-bg-sp.png) no-repeat center;
        background-size: 100% auto;
        width: 44px;
        height: 44px;
    }
    footer .f-box02 .ft_link {
        display: block !important;
    }
    footer .f-box02 .ft_link .link_list {
        display: none;
    }
    footer .f-box02 .copyright {
        position: relative;
        bottom: 0;
        text-align: center;
        padding-top: 25px;
        padding-bottom: 25px;
    }
    footer .ft_info {
        width: auto;
        margin: 0 auto;
    }
    footer .ft_map iframe {
        height: 100%;
    }
    footer .ft_link {
        width: auto;
    }
    .ft_link a {
        width: 100%;
    }
    .under .header_top .logo {
        margin-top: 0;
    }
    header.active .logo img,
    .ovh header .logo img {
        width: auto;
    }
    .hamburger-btn {
        display: block;
    }
    .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;
    }
    .fixed_banner.active {
        transform: translateY(0%);
    }
    .fixed_banner p {
        font-weight: normal;
        font-size: 13px;
        line-height: 1;
    }
    .fixed_banner .tel.toggle a {
        min-height: auto;
        text-decoration: none;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding-top: 0;
    }
    .fixed_banner .tel.toggle a:before {
        top: 1px !important;
        bottom: 0;
        margin: auto;
        right: 0;
        left: -90px;
    }
    .fixed_banner .tel.toggle a {
        font-size: 16px;
        padding-left: 20px;
    }
    .idx-box-toggle .txt-tbl-time:before {
        display: none;
    }
    .idx-box-toggle .txt-tbl-time {
        writing-mode: initial;
        margin-top: 10px;
        font-weight: 500;
    }
    .idx-box-toggle {
        left: 0;
        transition: 0.3s ease all;
        opacity: 1;
        transform: translateX(-50%);
        width: 101vw;
        top: initial;
        bottom: -100%;
        opacity: 0;
        right: initial;
    }
    .fixed_banner .tel.toggle.active .idx-box-toggle {
        left: 0;
        transition: 0.3s ease all;
        opacity: 1;
        transform: translateX(-50%);
        width: 100vw;
        top: initial;
        bottom: 102%;
        right: initial;
    }
    .fixed_banner .tel:first-child {
        margin-bottom: 0;
        border-right: 1px solid #fff;
    }
    .fixed_banner p::before {
        height: 1.4em;
    }
    .fixed_banner p::before {
        margin-bottom: 5px;
    }
    .fixed_banner .tel {
        width: 50%;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }
    .fixed_banner .tel a {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        background: #77c176;
        color: #fff;
        font-size: 18px;
        font-family: var(--f-en);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
    }
    .fixed_banner .tel a .ico {
        line-height: 0;
        margin-right: 5px;
        position: relative;
        bottom: 0;
    }
    .fixed_banner .tel a .ico img {
        width: 18px;
    }
}

@media only screen and (max-width: 320px) {
    .fixed_banner .tel a {
        font-size: 15px;
    }
    .tbl-time tr th,
    .tbl-time tr td {
        padding: 1.1em 0.05em 1.05em;
        font-size: 12px;
    }
    .txt-tbl-time {
        font-size: 10px;
    }
    footer .f-box01-cnt .f-box-tbl li .txt {
        font-size: 11px;
    }
    footer .f-box01-cnt .f-tel a {
        font-size: 24px;
    }
}


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


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


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


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


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


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


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


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


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