/* 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;
        font-size: ;
    }
    .fixed_banner .box-map,
    .fixed_banner .box-time {
        position: absolute;
        right: 0;
        top: initial;
        bottom: 60px;
        margin: auto 0;
        height: auto;
        width: 100%;
        border: 0;
        padding: 15px;
        border-radius: 0;
        display: none;
    }
    .fixed_banner .box-time .txt-tbl,
    .fixed_banner .box-map .txt-map,
    .fixed_banner .box-map .btn_map {
        font-size: 14px;
    }
    .fixed_banner .web.active .close,
    .fixed_banner .mail.active .close {
        display: block;
    }
    .fixed_banner .mail {
        margin-bottom: 0 !important;
        border-right: 0;
        border-top-right-radius: 10px;
    }
	.f-fx-ct{
		flex-direction:column;
	
	}
	.f-list-ct{
		width:100%;
	}
}


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


/********************************
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;
            }
        }
    }
    .idx-list-link li a span {
        display: block;
        font-size: 12px;
    }
    .ft_link ul {
        margin: 0;
    }
    .ft_link a::before {
        display: none;
    }
    .txt-l {
        font-size: 14px !important;
    }
    .menu_toggle .inside .ft_link .ttl,
    .noaccContainer ul li a {
        position: relative;
        pointer-events: auto;
        display: block;
        line-height: 1.5em;
        padding-top: 0.5em;
        padding-bottom: 0.5em;
        font-size: 18px;
        margin-bottom: 0;
        color: var(--main-color);
        padding-left: 0;
        font-weight: 500;
        border-bottom: 1px solid #ccc;
        font-family: var(--f-jp);
    }
    .ovh #nav-icon span {
        background: var(--main-color)
    }
    .menu_toggle .inside .ft_link .ttl.rotate::before {
        transform: rotate(0deg);
    }
    .menu_toggle .inside li {
        margin-bottom: 0;
    }
    .ft_link a {
        font-size: 14px;
        line-height: 1.5em;
        display: block;
        width: 100%;
        font-weight: 500;
        border-bottom: 1px solid #ccc;
        padding: 0.5em 0 0.5em 10px;
    }
    .ft_link .noaccContainer a:before {
        display: none;
    }
    .ft_link a:before {
        display: block;
        top: 14px;
    }
    .menu_toggle .inside .ft_link .ttl::before,
    .menu_toggle .inside .ft_link .ttl::after {
        content: "";
        display: block !important;
        position: absolute;
        top: 1.15em;
        right: 1em;
        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 .menu01 .ttl {
        margin-top: 0;
    }
}

#nav-icon {
    width: 24px;
    height: 18px;
    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%;
}

@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) {
    .txt-l {
        text-align: left !important;
    }
    .hamburger-btn {
        position: fixed;
        top: 5px;
        right: 15px;
        z-index: 10;
        cursor: pointer;
        display: block !important;
        transition: all 0.3s;
    }
    .idx-list-link li {
        width: calc(50% - 5px);
        margin-right: min(2.67vw, 10px);
        max-width: 132px;
        margin-bottom: min(2.67vw, 10px);
    }
    .idx-list-link li:nth-child(2n) {
        margin-right: 0;
    }
    .idx-list-link li a {
        min-height: min(16vw, 60px);
        font-size: min(3.73vw, 14px);
        padding-left: min(4vw, 15px);
        border-radius: min(8vw, 30px);
    }
    .idx-list-link li a:before {
        width: 15px;
        height: 15px;
        top: 0;
        right: min(2.67vw, 10px);
    }
    body {
        font-size: 87.5%;
    }
    figure {
        text-align: center;
    }
    .totop {
        bottom: 65px;
        right: 10px;
        z-index: 5;
    }
    .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 (min-width: 319px) and (max-width: 768px) {
    .wrapper {
        min-width: inherit;
    }
    header.active .logo {
        margin-top: 0;
    }
    header.active #nav-icon span {
        background: var(--main-color);
    }
    .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: 20px;
        margin-top: 5px;
        transform: none;
    }
    .header_top .logo img {
        width: auto;
        max-height: min(8vw, 45px);
    }
    .fixed_banner .box-time .tbl-time tr th,
    .fixed_banner .box-time .tbl-time tr td {
        padding: 1.3em min(2.13vw, 8px) 1.3em;
        font-size: min(4vw, 15px);
    }
    .txt-tbl {
        font-size: min(3.73vw, 14px);
    }
    .txt-pd {
        margin-left: min(11.47vw, 43px);
    }
    .txt-l {
        line-height: 1.25em !important;
        padding: 0.7em 0.2em 0.7em 0.5em !important;
    }
    .tbl-time tr:not(:first-child) th {
        padding: 1.3em min(2.67vw, 10px) 1.3em;
    }
    .tbl-time tr:not(:first-child) th .txt-up {
        writing-mode: vertical-rl;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 4.75em;
        width: 100%;
    }
    .tbl-time tr th,
    .tbl-time tr td {
        padding: 0.7em 0;
    }
    .tbl-time tr th {
        padding: 1.3em min(2.13vw, 8px) 1.3em;
        font-size: min(4vw, 15px);
    }
    .tbl-time tr th:not(:first-child) {
        padding: 0;
    }
    .tbl-time tr th:last-child {
        padding: 0 !important;
        line-height: 1.3em;
    }
    .tbl-time tr td {
        font-size: min(3.2vw, 12px);
		width:10%;
		padding-right:0.2em;
		padding-left:0.5em
    }
    .copyright {
        margin-left: 0;
        margin-top: 0;
    }
    .copyright>p {
        text-align: center;
    }
    footer {
        padding: 0 0 60px;
    }
    footer .f-list-ct {
              max-width: 350px !important;
        display: flex;
        flex-direction: row;
        padding-top: 0;
        margin-top: 0;
    }
    footer .f-list-ct li {
        width: 100%;
        margin: 0 auto 10px;
    }
    footer .f-list-ct li a {
        width: 100%;
        min-width: 100%;
        font-size: min(7.47vw, 28px);
        min-height: min(18.67vw, 70px) !important;
    }
    footer .f-list-ct li:last-child a {
        font-size: min(5.6vw, 21px);
        justify-content: flex-start;
        padding-left: 30px;
    }
    footer .f-list-ct li:last-child a .ico {
        margin-right: 2.2em;
    }
    footer .f-box02 {
        padding: 15px;
    }
    footer .f-box01 {
        padding-top: 50px;
        padding-bottom: 40px;
    }
    footer .f-box01:before {
        left: 0;
        width: calc(100% - 20px);
        top: 0;
        height: 100%;
        min-width: auto;
        background: #fff;
        border-bottom-right-radius: 30px;
        z-index: -1;
    }
    footer .f-box01 .inner_big {
        padding: 0 20px;
    }
    footer .f-box01-fx {
        flex-direction: column;
        padding: 0;
        padding-right: 20px;
    }
    footer .f-box01 .f-right {
        margin-left: 0;
    }
    footer .f-box01 .f-right .f-map iframe {
        height: min(80vw, 300px);
    }
    footer .f-box01 .f-right .img img {
        height: min(80vw, 300px);
        width: 100%;
        object-fit: cover;
    }
    footer .f-box01 .f-right .f-box-right .idx-list-link {
        position: absolute;
        right: initial;
        bottom: 10px;
        left: 15px;
    }
    footer .f-box01 .f-left {
        width: 100%;
        margin-bottom: 30px;
    }
    footer .f-box01 .f-left .f-logo {
        text-align: center;
    }
    footer .f-box01 .f-left .f-logo a img {
        height: 50px;
        width: auto;
    }
    footer .f-box01 .f-left .f-address {
        line-height: 1.3em;
        align-items: flex-start;
        font-size: min(4.27vw, 16px);
        max-width: 254px;
        margin: 20px auto;
    }
    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;
        border: 1px solid var(--main-color);
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom: 0;
    }
    .fixed_banner.active {
        transform: translateY(0%);
    }
    .fixed_banner p {
        font-weight: 500;
        font-size: min(3.73vw, 14px);
        letter-spacing: 0.1em;
        line-height: 1;
        color: var(--clr1);
    }
    .fixed_banner p::before {
        height: 1.4em;
    }
    .fixed_banner p::before {
        margin-bottom: 5px;
    }
    .fixed_banner>div {
        width: 33.333%;
        background: #fff !important;
        border-right: 1px solid var(--main-color);
    }
    .fixed_banner>div:last-child {
        border-top-right-radius: 10px;
        border-right: 0;
    }
    .fixed_banner>div:first-child {
        border-top-left-radius: 10px;
    }
    .fixed_banner .tel p:before {
        background: url(../images/idx-sliderbar-ico01.svg) no-repeat center;
    }
    .fixed_banner .contact p:before {
        background: url(../images/idx-sliderbar-ico04.svg) no-repeat center;
    }
    .fixed_banner .web p:before {
        background: url(../images/idx-sliderbar-ico02.svg) no-repeat center;
    }
    .fixed_banner .mail p:before {
        background: url(../images/idx-sliderbar-ico03.svg) no-repeat center;
    }
    .tbl-time tr th span {
        font-size: 0.75em;
        display: block;
        margin-top: 0;
        position: relative;
        top: 4px;
        line-height: 1.8em;
    }
    .idx-list-item {
        justify-content: center;
    }
}

@media only screen and (min-width: 639px) and (max-width: 768px) {
    footer .f-list-ct {
        display: flex;
        flex-direction: row;
    }
    footer .f-list-ct li {
        margin-right: 20px;
    }
    footer .f-list-ct li:last-child {
        margin-right: 0;
    }
    .txt-l {
        text-align: center !important;
    }
    footer .f-list-ct li:last-child a .ico {
        margin-right: 0.425em;
    }
    footer .f-list-ct li:last-child a {
        justify-content: center;
        padding-left: 0;
    }    .tbl-time tr th:last-child {
        padding: 0 20px !important;
        line-height: 1.3em;
    }
	    .tbl-time tr th:not(:first-child) {
        padding: 0 15px;
    }
}


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


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


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


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


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


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


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


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


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