/* 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: 26px;
        --wrapper: 60px;
    }
    header.active #nav-icon span {
        background: #fff;
    }
    header.active #menu_btn {
        color: #fff !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;
    }
    @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: 15px;
        padding-bottom: 15px;
        font-size: 16px;
        --left: 1.5em;
        line-height: 1.5em;
        margin-bottom: 0 !important;
        background: transparent;
    }
    .menu_toggle .inside .ft_link .ttl:not(.rotate) {
        padding-bottom: 15px;
        border-bottom: 1px solid #ccc;
    }
    .menu_toggle .inside .ft_link .ttl.rotate {
        padding-bottom: 0;
    }
    .menu_toggle .inside .ft_link .ttl.rotate::before {
        transform: rotate(0deg);
    }
    .menu_toggle .inside .ft_link .menu01.noToggle li {
        border: 0;
    }
    .menu_toggle .inside .ft_link .menu01.noToggle li a {
        padding: 15px 0;
        border-bottom: 1px solid #ccc;
        font-size: 16px;
        color: var(--main-color);
        font-weight: 600;
        display: block;
        line-height: 1.5em;
    }
    .menu_toggle .inside .ft_link .menu01.noToggle li a:before {
        display: none;
    }
    .ft_link a {
        padding-bottom: 10px;
        padding-top: 10px;
        font-size: 14px;
        padding-left: 12px;
        font-weight: 500;
    }
    .ft_link a::before {
        top: 1.35em;
    }
    .ft_link li {
        margin-bottom: 0;
    }
    .menu_toggle .inside .ft_link .ttl::before,
    .menu_toggle .inside .ft_link .ttl::after {
        content: "";
        display: block !important;
        position: absolute;
        top: 1.7em;
        right: 0;
        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 li {
        border-bottom: 1px dashed #ccc;
    }
    .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: var(--main-color);
    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: 17px;
    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%;
    height: 100%;
    margin: 0 auto;
    text-align: center;
    color: inherit;
}

.hamburger-btn .button-toggle #menu_btn {
    color: var(--main-color);
    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: 125px;
        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;
    }
    .hamburger-btn {
        display: block;
    }
}


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


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


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

@media only screen and (max-width: 768px) {
    .wrapper {
        min-width: inherit;
    }
    header.active .header_top,
    .ovh header .header_top {
        padding-left: 10px;
    }
    .header_top {
        width: 100%;
        align-items: center;
        height: 75px;
        padding: 10px 10px 10px 18px;
    }
    .header_top p {
        margin-bottom: 0;
    }
    .header_top .logo {
        width: 120px;
    }
    .header_top .logo img {
        width: auto;
        max-height: min(12vw, 60px);
    }
    .f-map {
        --mask: url(../images/idx-map-mask-sp.svg);
    }
    .index07-list li .idx-btn .tel_click {
        padding-left: 0.7em !important;
    }
    .f-map iframe {
        height: 270px;
        min-height: auto;
    }
    .f-box02 {
        padding-top: 30px;
        margin-top: 0;
    }
    .f-list-btn {
        justify-content: center;
    }
    .f-list-btn li {
        width: 50%;
        min-width: auto;
        max-width: min(43.2vw, 200px);
    }
    .f-list-btn li a {
        width: 100%;
        min-width: auto !important;
        min-height: 60px;
        max-width: min(43.2vw, 200px);
    }
    .f-list-btn li:last-child a {
        min-height: 60px;
        padding-right: 10px;
    }
    .f-list-btn li a:before {
        width: 15px;
        height: 15px;
        right: 8px;
    }
    .f-box02-fx {
        flex-direction: column;
        max-width: 500px;
        margin: 0 auto;
    }
    .f-box02-fx .box-left {
        width: 100%;
        margin: 0 auto 30px;
    }
    .f-box02-fx .box-left .f-logo img {
        width: 255px;
        height: auto;
    }
    .f-box02-fx .box-right {
        margin-top: 0;
    }
    .f-box02-fx .box-right .f-fx-right {
        padding-right: 0;
        margin-bottom: -1.5em;
    }
    .f-box02-fx .box-right .f-fx-right .box-ttl {
        background: url(../images/f-bg-ttl-sp.svg) no-repeat center;
        background-size: 100% 100%;
        width: 253px;
        height: 92px;
        padding: 15px 10px 5px;
        font-size: 14px;
        flex-shrink: 0;
    }
    .f-box02-fx .box-right .f-fx-right .img {
        flex-shrink: 0;
    }
    .f-box02-fx .box-right .f-fx-right .img img {
        width: 100px;
        height: auto;
    }
    .tbl-time tr th,
    .tbl-time tr td {
        padding: 1em 0.5em;
    }
    .inner_big>.fblock {
        width: 100%;
        background: transparent;
        padding: 0;
    }
    .inner_big>.fblock:before {
        display: none;
    }
    .inner_big>.fblock .copyright {
        text-align: center;
        margin-top: 0;
        width: 100%;
    }
    .idx_gallery ul li .img {
        width: 225px;
        height: 500px;
        background-size: 100% auto;
    }
    footer {
        padding: 60px 0 130px;
    }
    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: 55px;
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
        border: 1px solid #72abd8;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
    }
    .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: 35%;
    }
    .ttl-fx {
        display: flex;
        color: var(--clr1) !important;
    }
    .f-box02-fx:before {
        display: none;
    }
    .fixed_banner .tel a {
        border-top-left-radius: 10px;
        padding-right: 15px;
    }
    .fixed_banner .line a {
        border-top-right-radius: 10px;
    }
    .fixed_banner .web {
        width: 30%;
        position: relative;
    }
    .fixed_banner .web:before,
    .fixed_banner .tel:before {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto 0;
        width: 1px;
        height: 45px;
        background: #72abd8;
        z-index: 1;
    }
    .fixed_banner .web a {
        padding-right: 18px;
    }
    .fixed_banner .line {
        flex: 1;
    }
    .fixed_banner .line a .ttl:after {
        top: 0;
    }
    .fixed_banner .line a .ttl:before {
        content: "";
        position: absolute;
        left: -27px;
        top: 0;
        bottom: 0;
        margin: auto 0;
        width: min(5.87vw, 22px);
        height: min(5.87vw, 22px);
        background: url(../images/idx-ico-line.png) no-repeat center;
        background-size: contain;
    }
    .fixed_banner a {
        display: flex;
        flex-direction: column;
        background: #fff;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
        color: var(--clr2);
        font-weight: 600;
        text-decoration: none;
        position: relative;
    }
    .fixed_banner a .sub-ttl {
        font-size: min(2.5vw, 12px);
        line-height: 1em;
    }
    .fixed_banner a .ttl {
        font-size: min(3.9vw, 22px);
        line-height: 1.2em;
        position: relative;
    }
    .fixed_banner .line a .ttl {
        color: #06c755 !important;
    }
    .fixed_banner a .ttl .fs-sm {
        font-size: 0.8em
    }
    .fixed_banner a .ttl:after {
        content: "";
        position: absolute;
        right: -20px;
        top: 0;
        bottom: 0;
        margin: auto 0;
        background: url(../images/idx-ico-arr.svg) no-repeat center;
        background-size: contain;
        width: min(3.73vw, 14px);
        height: min(3.73vw, 14px);
    }
    .idx-slider>div.map .box-toggle .idx-btn {
        max-width: 200px;
        margin: 0 auto;
    }
    .idx-slider>div.map>a {
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
    }
    .ovh header {
        background: #fff;
    }
    .ovh header.active .hamburger-btn {
        top: 11px;
    }
    .ovh header.active {
        background: rgba(114, 171, 216, 0.9);
    }
    .ovh header.active .header_top {
        height: 65px;
    }
    .idx-slider>div.time>a {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    .box-toggle {
        position: absolute;
        left: 0;
        width: 100vw;
        padding: 0.625em;
        bottom: 110%;
        transform: none;
        opacity: 0;
        z-index: 11;
        display: none;
    }
    .idx-slider {
        position: fixed;
        bottom: 54px;
        left: 0;
        display: none;
        z-index: 10;
        width: 100%;
    }
    .idx-slider.active {
        display: flex;
    }
    .idx-slider>div>a:before {
        left: calc(50% - 60px);
    }
    .idx-slider>div.map {
        margin-right: 0;
    }
    .idx-slider>div {
        width: Calc(100% / 2);
        height: 40px;
    }
    .modal_list {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 0;
    }
    .modal_list li {
        width: calc(100% / 2);
        padding: 20px 10px;
        max-width: 500px;
        margin: 0;
        border-right: 3px dotted #e6e6e6;
    }
    .modal_list li:nth-child(2n),
    .modal_list li:last-child {
        border-right: 0;
        border-bottom: 0;
    }
    .modal_list li .idx-btn {
        max-width: 135px;
        margin: 0 auto;
    }
    .modal_list li .ttl {
        font-size: 1em;
    }
    .modal_list li .idx-btn a {
        min-height: 45px;
    }
    .modal_list li:nth-child(2n):before,
    .modal_list li:nth-child(2n):after {
        display: none;
    }
    .modal__heading {
        flex-direction: column;
        padding: 30px 5px 15px;
    }
    .modal {
        overflow: hidden;
        overflow-y: scroll;
    }
    .modal__box {
        width: 90%;
    }
    .modal_list {
        padding: 0 15px;
    }
    .modal__heading h2 {
        margin-right: 0;
        margin-bottom: 3em !important;
        position: relative;
    }
    .idx-btn02:before {
        bottom: 10px;
        width: 6.25em;
        height: 8.625em;
    }
    .modal_list li .ico img {
        height: 45px;
        width: auto;
    }
    .modal__heading h2 span {
        background: linear-gradient(0deg, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 0) 40%);
    }
    .modal_list li .ttl span {
        background: linear-gradient(0deg, rgba(234, 242, 249, 1) 40%, rgba(234, 242, 249, 0) 40%);
    }
}

@media only screen and (max-width: 320px) {
    .modal_list li {
        width: 100%;
        border-bottom: 3px dotted #e6e6e6;
        border-right: 0;
    }
    .modal_list li .ttl {
        font-size: 1.3em;
    }
    .modal__heading h2 {
        margin-bottom: 4em !important;
    }
    .fixed_banner a .ttl:after {
        top: -10px;
    }
}

@media only screen and (min-width: 639px) and (max-width: 768px) {
    .header_top {
        padding: 10px 10px 10px 20px;
    }
    .modal_list li .idx-btn {
        max-width: 165px;
        margin: 0 auto;
    }
}


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


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


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


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


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


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


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


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


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