/* 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: min(16vw, 70px);
    }
    .idx-btn a .ico {
        width: min(4.5vw, 18px);
        height: min(4.5vw, 18px);
        flex-shrink: 0;
        margin-left: 5px;
    }
    .ttl-tbl {
        font-size: 17px;
        padding-left: 25px;
    }
    .ttl-tbl:before {
        top: 6px;
        width: 17px;
        height: 17px;
    }
}


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


/********************************
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: 10px 0;
        line-height: 1.5em;
        font-weight: 600;
        font-size: 18px;
        margin-bottom: 0;
        --left: 1.5em;
        font-family: var(--f-jp);
    }
    .noaccContainer ul li {
        border-bottom: 1px solid #ccc !important
    }
    .noaccContainer ul li a {
        line-height: 1.5em;
        color: var(--main-color);
        font-weight: 600;
        font-size: 18px;
        padding: 10px 0;
        font-family: var(--f-jp);
    }
    .noaccContainer ul li a:before {
        display: none;
    }
    .ft_link a {
        display: block;
        font-weight: 500;
        font-size: 15px;
        padding: 10px 0;
    }
    .ft_link li {
        margin-bottom: 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);
    }
    .menu_toggle .inside .ft_link .ttl::before,
    .menu_toggle .inside .ft_link .ttl::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 .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: min(2.67vw, 20px);
    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%;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

#nav-icon span:nth-child(1) {
    top: 5px;
}

#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
    top: 10px;
}

#nav-icon span:nth-child(4) {
    top: 15px;
}

#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: min(8vw, 40px);
    height: min(8vw, 40px);
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 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: min(1vw, 10px);
    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: 70px;
        right: 5px;
        z-index: 9;
    }
    .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 {
        height: auto;
    }
    header.active {
        padding-bottom: 10px;
    }
    header.active .logo img {
        max-height: 50px;
    }
    .hamburger-btn {
        display: block;
    }
    .h-address {
        position: absolute;
        font-size: min(2.93vw, 14px);
        line-height: 1.4em;
        color: #595757;
        font-weight: 600;
        right: min(16vw, 80px);
        top: 14px;
        letter-spacing: 0;
    }
    .h-address span {
        letter-spacing: 0;
    }
    header.active .logo img {
        width: auto;
        margin-top: 0;
    }
    .header_top {
        width: 100%;
        align-items: center;
        height: auto;
        padding: 0;
    }
    .header_top p {
        margin-bottom: 0;
    }
    .header_top .logo {
        max-width: calc(100% - 100px);
        width: auto;
        margin-left: 20px;
        top: 0;
        margin-top: 13px;
        transform: none;
    }
    .header_top .logo img {
        width: auto;
        max-height: min(16.27vw, 76px);
    }
    .idx_gallery ul li .img {
        width: 225px;
        height: 500px;
        background-size: 100% auto;
    }
    .idx_gallery .item img {
        height: 200px;
        width: auto;
    }
    footer {
        padding: 28px 0 50px;
    }
    footer .f-map {
        margin-top: 35px;
    }
    footer .f-map:before {
        left: -10px;
        top: -38px;
        width: 114px;
        height: 45px;
        z-index: -1;
    }
    footer .f-map .map {
        height: 300px;
    }
    footer .f-box01-tbl {
        padding: 0 10px;
        margin-top: 20px;
    }
    footer .f-box01-tbl tr th,
    footer .f-box01-tbl tr td {
        padding: 0.35em 0em 0.65em;
        font-size: min(13px, 3.3vw);
    }
    footer .f-box01-tbl tr th:first-child,
    footer .f-box01-tbl tr td:first-child {
        width: 10em;
    }
    footer .f-box01-tbl tr th {
        width: 4.3em;
    }
    footer .f-box01-tbl tr td {
        letter-spacing: 0.05em !important;
    }
    footer .f-box01 .inner_big:before {
        right: -70px;
        top: -56px;
        width: min(52vw, 255px);
        height: min(35.73vw, 194px);
        z-index: 1;
    }
    footer .f-box01 .f-logo {
        margin-bottom: 18px;
        margin-right: 0;
    }
    footer .f-box01 .f-logo a img {
        width: min(29.33vw, 180px);
        height: auto;
    }
    footer .f-box01-fx {
        padding-left: 0;
        padding-right: 0;
        flex-direction: column;
        max-width: 500px;
        margin: 0 auto;
    }
    footer .f-box01-cnt {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }
    footer .f-box01 .f-name {
        text-align: center;
        font-size: min(6vw, 26px);
        letter-spacing: -1px;
        margin-bottom: 0;
    }
    footer .f-box01 .f-address {
        font-size: min(3.73vw, 16px);
        text-align: center;
        background: url(../images/f-ico-hr.svg) no-repeat bottom center;
        background-size: 21.625em 3px;
        padding-bottom: 16px;
        margin-bottom: 17px;
    }
    footer .f-box01 .f-tel {
        line-height: 1em;
        text-align: center;
    }
    footer .f-box01 .f-tel a {
        font-size: min(8vw, 34px);
        letter-spacing: 0.04em;
    }
    footer .f-box01 .f-tel a span {
        font-size: min(4.53vw, 20px);
    }
    footer .f-box01 .idx-btn {
        text-align: center;
        width: 100%;
        max-width: 176px;
        margin: 20px auto 0;
    }
    footer .f-box01 .idx-btn a {
        min-height: 52px;
        font-size: 14px;
        margin: 0 auto;
        letter-spacing: 0;
        padding-left: 14px;
        padding-right: 9px;
    }
    footer .f-box01 .idx-btn a svg {
        width: 21px;
    }
    footer .f-box02 {
        padding-top: 51px;
        padding-bottom: 103px;
    }
    footer .copyright>p {
        font-size: 12.5px;
    }
    footer .f-recruit-box {
        width: 94.5%;
        padding-bottom: min(12.27vw, 150px);
        margin-top: -100px;
        padding-top: 71px;
    }
    footer .f-recruit-cnt {
        padding-left: 15px;
        padding-top: 53px;
        padding-right: 10px;
        max-width: 100%;
        padding-bottom: min(8vw, 60px);
    }
    footer .f-recruit-cnt h2 {
        font-size: 52px;
        letter-spacing: 0.05em;
        margin-left: 3px;
        margin-bottom: 8px;
    }
    footer .f-recruit-cnt h2:before {
        right: -28px;
        bottom: 6px;
        width: 65px;
        height: 47px;
        z-index: -1;
    }
    footer .f-recruit-cnt .idx-ttl-jp {
        padding-bottom: 0;
        margin-bottom: 5px;
    }
    footer .f-recruit-cnt h3 {
        font-size: 26px;
        letter-spacing: -3px;
        line-height: 1.35em;
        margin-bottom: 6px;
    }
    footer .f-recruit-cnt .txt {
        margin-bottom: 20px;
    }
    footer .f-recruit-cnt .txt>p {
        font-size: 16px;
    }
    footer .f-recruit-cnt .idx-btn {
        max-width: 176px;
        left: 0;
        right: 0;
        width: 100%;
        position: relative;
        bottom: 0;
        margin: 0 auto;
    }
    footer .f-recruit-cnt .idx-btn a {
        min-height: 52px;
        padding-left: 13px;
        padding-right: 8px;
        font-size: 14px;
        min-width: 100%;
        letter-spacing: 0;
    }
    footer .f-recruit-cnt .idx-btn a svg {
        width: 21px;
    }
    footer .f-recruit .img {
        position: absolute;
        bottom: -103px;
        right: min(-5.33vw, -20px);
        width: calc(100% - 64px);
    }
    footer .f-recruit .img:before {
        left: -25px;
        top: -12px;
        width: 93px;
        height: 63px;
    }
    footer .f-recruit .img img {
        height: min(40.27vw, 230px);
        width: 100%;
        object-fit: cover;
        border-top-left-radius: 30px;
    }
    footer .f-box03-fx {
        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: 50px;
        transition: transform 0.3s ease-in-out;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        overflow: hidden;
    }
    .fixed_banner>div {
        width: 25%;
        height: 100%;
    }
    .fixed_banner a {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: block;
        z-index: 1;
    }
    .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;
        z-index: 10;
        overflow: initial;
    }
    .fixed_banner.active {
        transform: translateY(0%);
    }
    .fixed_banner p {
        font-weight: 500;
        font-size: min(3.73vw, 14px);
        letter-spacing: 0;
        line-height: 1;
        color: var(--clr1);
        flex-direction: column;
    }
    .fixed_banner p::before {
        height: 1.4em;
    }
    .fixed_banner p::before {
        margin-bottom: 5px;
    }
    .fixed_banner>div {
        width: 25%;
        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 .box-map .btn_map a {
        font-size: 1em;
    }
    .fixed_banner .box-time .tbl-time tr th,
    .fixed_banner .box-time .tbl-time tr td {
        padding: 0.85em 0.225em 0.85em;
        font-size: 0.75em;
    }
    .fixed_banner .box-time .txt-tbl,
    .fixed_banner .box-map .txt-map,
    .fixed_banner .box-map .btn_map {
        writing-mode: initial;
        font-size: 1em;
    }
    .fixed_banner .box-time {
        height: 380px !important;
        padding: 1em 0.375em !important;
    }
    .fixed_banner .box-map,
    .fixed_banner .box-time {
        background: #fff !important;
        position: absolute;
        right: 0;
        left: 0;
        top: initial;
        margin: 0;
        bottom: 60px;
        height: 120px;
        width: 100%;
        border: 0;
        padding: 0.9375em;
        border-radius: 0;
        display: none;
        border: 1px solid var(--main-color) !important;
        border-radius: 0 !important;
    }
    .fixed_banner .mail {
        border-right: 0;
        border-top-right-radius: 10px;
    }
    .fixed_banner .tel p:before {
        background: url(../images/idx-sliderbar-ico-tel.png) no-repeat center;
        background-size: contain
    }
    .fixed_banner .web02 p:before {
        background: url(../images/idx-sliderbar-ico-web.png) no-repeat center;
        background-size: contain
    }
    .fixed_banner .web p:before {
        background: url(../images/idx-sliderbar-ico-map.png) no-repeat center;
    }
    .fixed_banner .mail p:before {
        background: url(../images/idx-sliderbar-ico-time.png) no-repeat center;
    }
}

@media only screen and (min-width: 639px) and (max-width: 768px) {
    footer .f-box01-tbl tr th,
    footer .f-box01-tbl tr td {
        padding: 0.65em 0em 0.65em;
        font-size: 13px;
    }
    .hamburger-btn .button-toggle {
        padding-top: min(1.3vw, 10px);
    }
}


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


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


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


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


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


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


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


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


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