/* 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: 71px;
    }
    .under .udr-box-tbl {
        padding: 20px;
    }
    .under .udr-box-tbl table {
        margin: 5px;
    }
    .under .udr-box-tbl .txt-tbl-time {
        font-size: 12px;
        width: 100%;
        min-width: 768px;
    }
    .fixed_banner .box-time,
    .fixed_banner .box-map {
        position: absolute;
        height: auto;
        top: initial;
        bottom: 50px;
        right: 0;
        left: 0;
        width: 100%;
        margin: 0 auto;
        background: var(--main-color);
        padding: 12px 10px;
        display: none;
        opacity: 0;
        cursor: default;
    }
	.right_head{
	        display: block !important;
        width: fit-content;
        margin-right: 50px;
	}
	.right_head .pc_navi, .right_head .h-fx-address,.right_head .h-fx-ct .h-tel, .right_head .h-fx-ct .h-web{
		display:none;
	}
	.home_page header.fixed .pc_navi{
		display:none;
	}
}


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


/********************************
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 .noaccContainer ul li {
        border-bottom: 1px solid #ccc;
    }
    .menu_toggle .inside .noaccContainer ul li a {
        padding-left: 0;
        font-size: 16px;
    }
    .menu_toggle .inside .noaccContainer ul li a:before {
        display: none;
    }
    .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 a {
        font-size: 14px;
        display: block;
        line-height: 1.5em;
        padding-bottom: 0.5em;
        padding-top: 0.5em;
        margin-bottom: 0;
        padding-left: 1.3em;
    }
    .menu_toggle .inside .ft_link a:before {
        top: 11px;
        width: 12px;
        height: 12px;
    }
    .menu_toggle .inside .ft_link li {
        margin-bottom: 0;
    }
    .menu_toggle .inside .ft_link .ttl {
        position: relative;
        pointer-events: auto;
        padding-top: 0.5em;
        display: block;
        line-height: 1.5em;
        font-size: 16px;
        padding-bottom: 0.5em;
        width: 100%;
        --left: 1.5em;
        border-radius: 0;
        margin-bottom: 0;
        padding-left: 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: 27px;
    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;
    border-radius: 2px;
    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: 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;
}

.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;
        z-index: 10;
    }
    .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-box-ct .idx-fx-ct02 .box-cnt-fx table tr th,
    .idx-box-ct .idx-fx-ct02 .box-cnt-fx table tr td {
        width: 13%;
    }
    .idx-box-ct {
        padding: 0 20px 25px;
        max-width: 500px;
        margin: 0 auto;
    }
    .idx-box-ct:before {
        top: -30px;
        width: 248px;
        height: 132px;
    }
    .idx-box-ct .idx-logo {
        margin-bottom: 7px;
    }
    .idx-box-ct .idx-logo img {
        height: 50px;
        width: auto;
    }
    .idx-box-ct .idx-fx-ct {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .idx-box-ct .idx-fx-ct .idx-address {
        margin-bottom: 22px;
        font-size: min(4.27vw, 16px);
    }
    .idx-box-ct .idx-fx-ct .box-ct-time {
        flex-direction: column;
        margin-left: 0;
        width: 100%;
        padding: 14px 2px 7px 15px;
    }
    .idx-box-ct .idx-fx-ct .box-ct-time .time {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }
    .idx-box-ct .idx-fx-ct .box-ct-time .time:last-child {
        margin-left: 0;
    }
    .idx-box-ct .idx-fx-ct .box-ct-time .time:last-child .ttl-time {
        padding-right: 15px;
        letter-spacing: 0.1em;
    }
    .idx-box-ct .idx-fx-ct .box-ct-time .time .ttl-time {
        font-size: min(4.27vw, 16px);
        letter-spacing: 1.1em;
        flex-shrink: 0;
        line-height: 1em;
        height: min(6.67vw, 25px);
        padding-right: 0;
    }
    .idx-box-ct .idx-fx-ct .box-ct-time .time .txt {
        font-size: min(3.73vw, 14px);
    }
    .idx-box-ct .idx-fx-ct .box-ct-time .time .txt span {
        font-size: min(3.2vw, 12px);
        letter-spacing: 0;
    }
    .idx-box-ct .idx-fx-ct .box-ct-time .time .txt br {
        display: none;
    }
    .idx-box-ct .idx-fx-ct02 {
        flex-direction: column;
    }
    .idx-box-ct .idx-fx-ct02 .box-cnt-fx {
        flex-direction: column;
    }
    .idx-box-ct .idx-fx-ct02 .box-cnt-fx .box-ttl {
        margin-right: 0;
        margin-top: 9;
        margin: 0 auto !important;
    }
    .idx-box-ct .idx-fx-ct02 .box-cnt-fx .box-ttl .ttl {
        font-size: 20px;
        padding-bottom: 0;
        margin-bottom: 10px;
        border-bottom: 0;
        background: none;
    }
    .idx-box-ct .idx-fx-ct02 .box-cnt-fx .box-ttl .ttl .ico {
        width: 40px;
        height: 40px;
    }
    .idx-box-ct .idx-fx-ct02 .box-cnt-fx .box-ttl .ttl .ico img {
        height: 20px;
        width: auto;
    }
    .idx-box-ct .idx-fx-ct02 .box-cnt {
        padding-right: 0;
        margin-right: 0;
        padding-bottom: 14px;
        border-bottom: 2px dotted #b6aa95;
        margin-bottom: 18px;
        border-right: 0;
    }
    .idx-box-ct .idx-fx-ct02 .box-cnt:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 0;
    }
    .idx-box-ct .idx-fx-ct02 .box-cnt:last-child .txt-note {
        letter-spacing: -0.5px;
        line-height: 1.5em;
        margin-top: 10px;
        margin-bottom: 0;
    }
    .txt-tbl-note {
        margin-top: 0 !important;
    }
    .idx-box-ct .idx-fx-ct02 .box-cnt:last-child .txt-note br {
        display: block;
    }
    .idx-box-ct .idx-fx-ct02 .box-cnt table {
        max-width: 100%;
    }
    .idx-box-ct .idx-fx-ct02 .box-cnt table tr th,
    .idx-box-ct .idx-fx-ct02 .box-cnt table tr td {
        padding: 1em;
    }
    .idx-box-ct .idx-fx-ct02 .box-cnt .txt-note {
        font-size: min(3.4vw, 14px);
        letter-spacing: 0;
        margin-top: 3px;
    }
    .idx-box-ct .idx-fx-ct02 .box-cnt .txt-note span {
        font-size: min(3.2vw, 12px);
    }
    .idx-box-ct .idx-fx-ct02 .box-cnt .txt-note br {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .idx-box-ct .idx-fx-ct02 .box-cnt table tr th,
    .idx-box-ct .idx-fx-ct02 .box-cnt table tr td {
        padding: 1em 0.8em;
        font-size: 14px;
    }
}


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


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


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

@media only screen and (max-width: 768px) {
    .wrapper {
        min-width: inherit;
    }
    .header_top {
        width: 100%;
        align-items: center;
        height: 68px;
		flex-wrap:nowrap;
        padding: 0 10px;
    }
    .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: 42px;
    }
    .pc_navi {
        display: none;
    }
    .hamburger-btn {
        display: block;
        top: 7px;
        right: 20px;
    }
    .idx_gallery ul li .img {
        width: 225px;
        height: 500px;
        background-size: 100% auto;
    }
    footer {
        padding: 0 0 75px;
    }
    footer .f-map iframe {
        height: 299px;
    }
    footer .f-box02 {
        padding: 0;
    }
    footer .f-box02 .ft_link {
        display: block !important;
    }
    footer .f-box02 .ft_link .link_list {
        display: none;
    }
    footer .f-box02 .copyright {
        margin: 0 auto;
        color: var(--main-color);
        padding: 0;
        position: relative;
        z-index: 1;
        text-align: center;
        padding-top: 21px;
    }
    footer .f-box02 .copyright>p {
        color: var(--main-color);
    }
    footer .f-box01 {
        padding-top: 76px;
    }
    footer .f-box01 .inner {
        max-width: 100%;
        padding: 0 20px;
    }
    footer .f-box01 .idx-box-ct {
        padding-bottom: 30px;
    }
    footer .f-box01 .idx-box-ct:after {
        right: -7px;
        top: -40px;
        background: url(../images/f-ico01-sp.svg) no-repeat center;
        background-size: 100% 100%;
        width: min(14.67vw, 80px);
        height: min(22.13vw, 108px);
    }
    footer .f-box01 .idx-box-ct .idx-logo {
        margin-bottom: 20px;
    }
    footer .f-box01 .idx-box-ct .idx-fx-ct {
        margin-bottom: 18px;
    }
    footer .f-box01 .idx-box-ct .f-fx-img {
        margin-top: 25px;
        border-top: 1px solid #b6aa95;
        padding-top: 29px;
        flex-direction: column;
    }
    footer .f-box01 .idx-box-ct .f-fx-img .img {
        margin-right: 0;
    }
    footer .f-box01 .idx-box-ct .f-fx-img .img img {
        border-radius: 15px;
        height: 200px;
        width: 100%;
        object-fit: cover;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    footer .f-box01 .idx-box-ct .f-fx-img .f-box-cnt {
        padding-top: 0;
    }
    footer .f-box01 .idx-box-ct .f-fx-img .f-box-cnt .f-list-address {
        flex-direction: column;
        padding: 17px 10px 1px 20px;
    }
    footer .f-box01 .idx-box-ct .f-fx-img .f-box-cnt .f-list-address .f-ttl {
        margin: 0 auto 15px !important;
        width: 100%;
        letter-spacing: 0;
    }
    footer .f-box01 .idx-box-ct .f-fx-img .f-box-cnt .f-list-address .f-ttl:first-child {
        letter-spacing: -2px;
    }
    footer .f-box01 .idx-box-ct .f-fx-img .f-box-cnt .f-list-address .f-ttl:last-child {
        margin-bottom: 0;
    }
    footer .f-box01 .idx-box-ct .f-fx-img .f-box-cnt .f-list-address .f-ttl .ico {
        flex-shrink: 0;
        padding-right: 10px;
        margin-right: 10px;
    }
    footer .f-box01 .idx-box-ct .f-fx-img .f-box-cnt .f-list-address .f-ttl .ico:before {
        height: 26px;
    }
    footer .f-box01 .idx-box-ct .f-fx-img .f-box-cnt .f-list-address .f-ttl .ico img {
        height: 20px;
        width: 23px;
        object-fit: 100% 100%;
    }
    footer .f-box01 .idx-box-ct .f-fx-img .f-box-cnt .f-list-address .f-ttl br {
        display: none;
    }
    footer .f-box01 .idx-box-ct .f-fx-img .f-box-cnt .f-list-ct {
        margin-top: 21px;
    }
    footer .f-box01 .idx-box-ct .f-fx-img .f-box-cnt .f-list-ct.st02 {
        margin-top: 10px;
    }
    footer .f-box01 .idx-box-ct .f-fx-img .f-box-cnt .f-list-ct.st02 li a {
        padding: 12px 0 0;
        font-size: min(4.27vw, 16px);
        line-height: 1.5em;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    footer .f-box01 .idx-box-ct .f-fx-img .f-box-cnt .f-list-ct.st02 li a .ico {
        margin: 0 auto 5px !important;
        width: 40px;
        height: 40px;
    }
    footer .f-box01 .idx-box-ct .f-fx-img .f-box-cnt .f-list-ct li {
        margin-right: min(2.67vw, 10px);
    }
    footer .f-box01 .idx-box-ct .f-fx-img .f-box-cnt .f-list-ct li:first-child a .ico {
        margin-bottom: 17px;
    }
    footer .f-box01 .idx-box-ct .f-fx-img .f-box-cnt .f-list-ct li a {
        flex-direction: column;
        min-height: 118px;
        font-size: min(4.27vw, 16px);
        text-align: center;
        padding: 14px 10px 0;
    }
    footer .f-box01 .idx-box-ct .f-fx-img .f-box-cnt .f-list-ct li a:before {
        width: 16px;
        height: 16px;
        background: url(../images/idx-ico-list-arr-sp.svg) no-repeat center;
        background-size: 100% 100%;
    }
    footer .f-box01 .idx-box-ct .f-fx-img .f-box-cnt .f-list-ct li a .ico {
        width: 40px;
        height: 40px;
        margin: 0 auto 5px;
    }
    footer .f-box01 .idx-box-ct .f-fx-img .f-box-cnt .f-list-ct li a .ico img {
        width: 20px;
        height: auto;
    }
    footer .ft_info {
        width: auto;
        margin: 0 auto;
    }
    footer .ft_map iframe {
        height: 100%;
    }
    footer .ft_link {
        width: auto;
    }
    .under .tbl-scroll {
        overflow-x: scroll;
        padding-top: 5px;
    }
    .box-map .idx-address {
        font-size: 1.1em !important
    }
    .under .tbl-scroll table {
        min-width: 900px;
    }
    .box-map .f-list-address {
        flex-direction: column;
        align-items: flex-start;
        width: fit-content;
        padding: 10px 20px;
    }
    .fixed_banner>div.map.active p.close,
    .fixed_banner>div.access.active p.close {
        display: flex;
        flex-direction: column;
    }
    .fixed_banner p.close:before {
        background-image: url(../images/idx-close.png) !important;
        width: 16px;
        height: 16px;
        background-size: contain;
    }
    .fixed_banner .under .udr-box-tbl table tr th .ico,
    .fixed_banner .under .udr-box-tbl table tr td .ico {
        right: 10px;
    }
    .fixed_banner .box-time .txt-time {
        border-bottom: 1px solid #e1dfdc !important;
        margin-top: 0;
    }
    .fixed_banner .box-time tr.bg02 .txt-time {
        border-bottom: 1px solid #e1dfdc !important
    }
    .fixed_banner .box-time tr.bg02 .txt-time:first-child {
        border-top: 0 !important;
        border-bottom: 0 !important;
    }
    .box-map .f-list-address .f-ttl .ico {
        width: 42px;
        flex-shrink: 0;
    }
    .box-map .f-list-address .f-ttl {
        display: flex !important;
        font-size: 1.3em !important;
        margin-top: 0 !important;
        width: fit-content;
        margin-bottom: 10px;
    }
    .box-map .f-list-address .f-ttl:last-child {
        margin-bottom: 0;
    }
    .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;
        border: 1px solid var(--main-color);
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom: 0;
        overflow: initial;
    }
    .fixed_banner.active {
        transform: translateY(0%);
    }
    .fixed_banner p {
        font-weight: bold;
        font-size: 11px;
        line-height: 1;
        writing-mode: initial;
        color: var(--main-color);
        display: block;
    }
    .fixed_banner p::before {
        height: 20px;
        text-align: center;
        margin: 0 auto 5px;
    }
    .fixed_banner p::before {
        margin-bottom: 5px;
    }
    .fixed_banner>div {
        width: 20%;
        background: #fff;
        border-radius: 0;
        border-right: 0;
        border-top: 0;
        min-height: auto;
        border-bottom: 0;
    }
    .fixed_banner>div:first-child {
        border-left: 0;
        border-top-left-radius: 10px;
    }
    .fixed_banner>div.line {
        border-top-right-radius: 10px;
    }
    .fixed_banner>div.tel p:before {
        background-image: url(../images/idx-ico-tel.svg);
    }
    .fixed_banner>div.web p:before {
        background-image: url(../images/f-ico-ct05.svg);
    }
    .fixed_banner>div.line p:before {
        background-image: url(../images/idx-img-line.svg);
    }
}


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


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


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


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


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


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


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


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


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