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


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


/********************************
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;
            }
        }
    }
    .ovh header:before {
        clip-path: none;
    }
    .menu_toggle .inside .ft_link .ttl {
        position: relative;
        pointer-events: auto;
        padding-top: 0.5em;
        padding-bottom: 0.5em;
        --left: 1.5em;
        font-weight: 600;
        font-size: 16px;
        letter-spacing: 0;
        margin-bottom: 0;
        line-height: 1.5em;
    }
    .ft_link .noaccContainer li {
        margin-bottom: 0;
        border-bottom: 1px solid #ccc !important;
    }
    .ft_link .noaccContainer a {
        font-size: 16px;
        font-weight: 600;
        color: var(--main-color);
        font-weight: 600;
        line-height: 1.5em;
        padding-top: 0.5em;
        padding-bottom: 0.5em;
        display: block;
        position: relative;
        width: 100% !important;
    }
    .ft_link .noaccContainer a:after {
        content: "";
        position: absolute;
        right: 15px;
        top: 0;
        bottom: 0;
        width: 0;
        height: 0;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-left: 6px solid var(--main-color);
        margin: auto 0;
    }
    .ft_link .noaccContainer a:before {
        display: none;
    }
    .ft_link .noaccContainer a .en {
        display: block;
        color: var(--clr1);
        font-size: 14px;
        letter-spacing: 0;
        margin-top: 0;
    }
    .menu_toggle .inside .ft_link .ttl span {
        display: block;
        color: var(--clr1);
        font-size: 14px;
        letter-spacing: 0;
        margin-top: 0;
    }
    .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 a {
        font-weight: 600;
        display: block;
        padding-bottom: 7px;
        padding-top: 7px;
    }
    .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: 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 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: #007292;
    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: #e5f1f4;
    width: min(13.33vw, 50px);
    height: 50px;
    position: fixed;
    bottom: 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;
    border: 1px solid var(--clr1);
    display: block !important;
    border-left: 0;
}

.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: 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;
    }
    .idx-btn-link li {
        max-width: 100%;
        width: calc(50% - 5px);
        margin-right: 10px;
    }
    .idx-btn-link li a {
        width: 100%;
        line-height: 1.5em;
        min-height: 62px;
        padding-left: min(3.73vw, 14px);
        font-size: min(3.73vw, 14px);
    }
    .idx-btn-link li a:before {
        width: 12px;
        height: 7px;
        right: min(3.47vw, 13px);
    }
    .idx-btn-link li.last {
        margin-bottom: 0;
    }
    .idx-btn-link li.last a {
        min-height: 52px;
    }
    .f-calendar {
        margin-top: 20px;
    }
    .f-list-ct {
        flex-direction: column;
    }
    .f-list-ct li {
        width: 100%;
        margin: 0 auto 10px;
    }
    .f-list-ct li:last-child {
        margin-bottom: 0;
    }
    .f-calendar {
        margin-bottom: 20px;
        width: 100%;
        aspect-ratio: 464 / 300;
    }
}


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


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


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

@media only screen and (max-width: 768px) {
    .btn-tbl:before {
        display: none !important;
    }
    .wrapper {
        min-width: inherit;
    }
    .header_top {
        width: 100%;
        height: 100%;
        padding: 0;
    }
    .header_top p {
        margin-bottom: 0;
    }
    .header_top .logo {
        max-width: calc(100% - 100px);
        width: auto;
        margin-left: min(5.33vw, 20px);
        transform: none;
    }
    .header_top .logo img {
        width: min(32vw, 160px);
        max-height: 45px;
    }
    .right_head {
        width: auto;
    }
    .idx-list-ct ul li:not(:last-child) a .ico img {
        width: 31px !important;
        height: auto;
    }
    .idx-list-ct ul li:not(:last-child) {
        margin-right: 10px;
    }
    .idx-list-ct ul li a {
        min-width: min(25.87vw, 110px);
        min-height: min(17vw, 65px);
        clip-path: polygon(100% 0, 100% 85%, 91% 100%, 0 100%, 0 0);
        padding-bottom: 5px;
    }
    .idx-list-ct ul li a .ico img {
        width: auto !important;
    }
    .idx-list-ct ul li a .ttl {
        font-size: min(4.27vw, 16px);
        flex-direction: column;
        line-height: 1.3em;
    }
    .idx-list-ct ul li a .ttl img {
        width: 12px;
        height: auto;
    }
    header {
        width: 100%;
        height: 70px;
        padding-right: min(2.67vw, 20px);
        font-size: initial;
    }
    header:before {
        clip-path: polygon(100% 0, 100% 73%, 95% 100%, 0 100%, 0 0);
    }
    .sliderbar-fixed {
        width: calc(100% - min(13.33vw, 50px));
        border-right: 1px solid var(--clr1);
    }
    .sliderbar-fixed li {
        margin-right: 0;
    }
    .sliderbar-fixed li a {
        border-right: 0;
        height: 100%;
        min-width: 100%;
        line-height: 1.3em;
        text-align: left;
        font-size: min(2.93vw, 14px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-left: 0;
        padding-right: 5px;
    }
    .sliderbar-fixed li a br {
        display: none !important;
    }
    .sliderbar-fixed li a:before {
        width: min(3.2vw, 12px);
        height: min(1.87vw, 7px);
        right: min(1.33vw, 5px);
        top: min(0.93vw, 11px);
    }
    .sliderbar-fixed li a .ico {
        flex-shrink: 0;
        margin-right: 0;
    }
    .fixed_banner .sliderbar-fixed li a .ico {
        flex-shrink: 0;
        margin-bottom: 3px;
    }
    .fixed_banner .sliderbar-fixed li a .ico img {
        width: min(4.6vw, 22px);
        height: auto;
    }
    .fixed_banner .sliderbar-fixed li:nth-child(3) a .ico img {
        width: min(5.53vw, 22px);
    }
    .fixed_banner .sliderbar-fixed li:nth-child(3) a .ico img.close,
    .fixed_banner .sliderbar-fixed li:nth-child(4) a .ico img.close {
        width: min(4vw, 20px);
    }
    .fixed_banner .sliderbar-fixed li:nth-child(4) a {
        padding-left: 2px;
    }
    .fixed_banner .sliderbar-fixed li:nth-child(4) a .ico {
        margin-right: min(0.53vw, 10px) !important;
    }
    .fixed_banner .sliderbar-fixed li:nth-child(4) a .ico img {
        width: min(4.87vw, 22px);
    }
    .idx_gallery ul li .img {
        width: 225px;
        height: 500px;
        background-size: 100% auto;
    }
    .f-list-ct {
        max-width: 500px;
        margin: 16px auto 1.55em;
    }
    .f-list-ct li a {
        min-height: 60px;
        padding-left: min(4vw, 15px);
        line-height: 1.3em;
        font-size: min(3.9vw, 16px);
        padding-right: 10px;
    }
    .f-list-ct li a .ico {
        flex-shrink: 0;
        margin-right: 15px !important;
    }
    .f-list-ct li a .ico img {
        width: min(5.87vw, 22px);
        height: auto;
    }
    .f-list-ct li:last-child a {
        padding-left: min(2.13vw, 8px);
    }
    .f-list-ct li:last-child a .ico {
        margin-right: 5px;
        bottom: 0;
    }
    .f-list-ct li:last-child a .ico img {
        width: min(10.13vw, 38px);
        height: auto;
    }
    .txt-tbl-time {
        font-size: min(3.73vw, 14px);
        line-height: 1.55em;
        letter-spacing: 0.05em;
        max-width: 500px;
        margin: -3px auto 0;
    }
    .tbl-time tr th,
    .tbl-time tr td {
        padding: 18px 5px 20px;
        letter-spacing: 0;
        text-align: center;
        font-size: min(4.27vw, 16px);
        letter-spacing: -0.5px;
    }
    .tbl-time tr:first-child th {
        left: 0;
        font-size: min(4.27vw, 16px);
    }
    .tbl-time tr td {
        left: 0;
    }
    .pd-tbl {
        font-size: 12px !important;
    }
    .pd-tbl span {
        font-size: min(4.27vw, 16px);
        margin-top: -5px;
        display: inline-block;
        line-height: 1em;
    }
    .copyright {
        padding: 13px 15px 13px;
    }
    .copyright>p {
        font-size: 12px !important;
    }
    .tbl-time {
        max-width: 500px;
        margin: 0 auto;
    }
    footer {
        padding: 41px 0 50px;
    }
    footer .f-map {
        line-height: 0;
    }
    footer .f-map iframe {
        height: 350px;
    }
    footer .f-box02 {
        padding-top: 0;
    }
    footer .f-box02 .inner {
        display: none;
    }
    footer .f-box01 {
        padding-bottom: 20px;
    }
    footer .f-box01 .inner_big {
        padding: 0;
    }
    footer .f-box01-fx {
        flex-direction: column;
        padding-bottom: 1.35em;
    }
    footer .f-box01-r {
        padding-right: 20px;
        padding-top: 22px;
        padding-left: 20px;
    }
    footer .f-box01-r .sliderbar-fixed {
        flex-wrap: wrap;
        max-width: 500px;
        margin: 0 auto 7px;
        border-right: 0;
        width: 100%;
    }
    footer .f-box01-r .sliderbar-fixed li {
        width: calc(50% - 5px);
        margin-right: 10px;
        margin-bottom: 10px;
    }
    footer .f-box01-r .sliderbar-fixed li:nth-child(2n) {
        margin-right: 0;
    }
    footer .f-box01-r .sliderbar-fixed li:last-child a .ico {
        margin-right: 5px;
    }
    footer .f-box01-r .sliderbar-fixed li a {
        min-height: 62px;
        font-size: min(3.73vw, 14px);
        padding-left: min(4vw, 15px);
        min-width: 100%;
        border-right: 1px solid var(--clr1)
    }
    footer .f-box01-r .sliderbar-fixed li a:before {
        width: 12px;
        height: 7px;
        right: min(3.73vw, 14px);
        top: 0;
    }
    footer .f-box01-r .sliderbar-fixed li:last-child a {
        padding-left: 10px;
    }
    footer .f-box01-r .idx-btn-link {
        max-width: 500px;
        margin: 0 auto;
        display: flex;
        flex-wrap: nowrap;
    }
    .f-fx-bnr {
        flex-direction: column;
        padding-bottom: 2em;
    }
    .f-fx-bnr .f-bnr .ttl-bnr {
        margin-bottom: 15px;
    }
    .f-fx-bnr .f-bnr {
        margin: 0 auto 20px !important;
    }
    .f-fx-bnr .f-bnr:last-child {
        margin-bottom: 0 !important;
        width: 250px;
    }
    .f-logo {
        margin-bottom: 15px;
    }
    .f-logo img {
        width: 250px;
        height: auto
    }
    footer .f-box01-r .idx-btn-link li {
        width: calc(50% - 6px);
        margin-right: 10px;
    }
    footer .f-box01-r .idx-btn-link li a {
        line-height: 1.1em;
        min-height: 60px;
    }
    footer .f-box01-l {
        margin-right: 0;
        display: flex;
        flex-direction: column;
        padding-top: 20px;
        min-width: auto;
    }
    footer .f-box01-l .f-address {
        padding-left: 20px;
        padding-right: 20px;
        font-size: min(4.27vw, 16px);
        max-width: 500px;
        margin: 0 auto;
        letter-spacing: 0.02em;
    }
    .fixed_banner .time_sheet .txt-tbl-time:before {
        display: none;
    }
    .fixed_banner .address_box .f-address {
        font-weight: 500;
        line-height: 1.5em;
    }
    .fixed_banner .btn-tbl a {
        font-weight: 500;
    }
    .fixed_banner .address_box .f-list-ct {
        margin: 15px auto 20px;
        max-width: 400px;
    }
    .fixed_banner .time_sheet .txt-tbl-time span {
        display: block;
    }
    .fixed_banner .time_sheet .txt-tbl-time {
        line-height: 1.5em;
        font-weight: 500;
    }
    footer .f-box01-l .f-logo {
        padding-left: 0;
        text-align: center;
        margin-bottom: 26px;
    }
    footer .f-box01-l .f-logo img {
        width: 232px;
        height: auto;
    }
    footer .f-box01-l .f-img {
        order: 1;
        margin-bottom: 0;
    }
    footer .f-box01-l .f-img img {
        height: min(66.67vw, 350px);
        width: 100%;
        object-fit: cover;
    }
    footer .ft_info {
        width: auto;
        margin: 0 auto;
    }
    footer .ft_map iframe {
        height: 100%;
    }
    footer .ft_link {
        width: auto;
    }
    .fixed_banner.active .hamburder-btn,
    .fixed_banner.active02 .hamburder-btn {
        display: block !important;
    }
    .hamburger-btn {
        display: block !important;
        position: relative;
    }
    .fixed_banner {
        display: flex;
        flex-wrap: wrap;
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: auto;
        width: 100%;
        height: 50px;
        transition: transform 0.3s ease-in-out;
        z-index: 99;
    }
    .fixed_banner.active {
        transform: translateY(0%);
        bottom: 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: 40%;
    }
    .fixed_banner .web {
        width: 30%;
    }
    .fixed_banner .mail {
        width: 30%;
    }
    .fixed-bnr {
        left: 10px;
        bottom: 60px;
        width: 110px;
        height: 110px;
    }
    .fixed-bnr.active {
        left: 10px;
        bottom: 60px;
    }
    .fixed-bnr .close {
        right: 5px;
        top: 8px;
    }
    .fixed_banner02 .bg {
        font-size: 11px;
    }
    .fixed_banner02 .bg:before {
        bottom: 8px;
    }
    .fixed_banner02 .bg .ico {
        width: 26px;
        height: auto;
    }
}

@media only screen and (min-width: 639px) and (max-width: 768px) {
    .sliderbar-fixed li a br {
        display: none !important;
    }
    .sliderbar-fixed li a:before {
        top: 0;
        bottom: 0;
        margin: auto 0;
        right: min(0.47vw, 10px);
    }
}

@media only screen and (max-width: 320px) {
    .f-list-ct li a {
        font-size: min(3.9vw, 16px);
    }
}


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


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


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


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


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


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


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


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


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