@charset "utf-8";
body.fixed{
    overflow: hidden;
}
/* header */
header{
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    font-family: "yu-mincho-pr6n";
    /* height: 150px; */
}
.header_box{
    background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 70%, rgba(255, 255, 255, 0) 100%);
    padding: 10px 20px 0;
    width: 100%;
    /* height: 100%; */
    height: 160px;
}
.header_upper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_subnav{
    display: flex;
    align-items: center;
    gap: 40px;
    font-size: 14px;
}
.header_logo{
    max-width: 200px;
    width: 100%;
}
.map_out{
    display: flex;
    gap: 40px;
}
.map_out a{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.map_out a::after{
    position: absolute;
    top: 50%;
    left: -20%;
    transform: translateY(-50%);
    width: 0px;
    height: 0px;
    border: 0.3em solid transparent;
    border-left: 0.4em solid #000;
    content: "";
}


.ent_res {
    /* background: linear-gradient(90deg, rgba(122, 91, 18, 1) 0%, rgba(173, 146, 90, 1) 50%, rgba(171, 133, 50, 1) 100%); */
    /* background: linear-gradient(90deg, rgba(185, 142, 91, 1) 0%, rgba(209, 171, 128, 1) 50%, rgba(171, 133, 50, 1) 100%);
    padding: 5px 30px;
    color: #fff; */
}

.ent_res > a{
    background: linear-gradient(90deg, rgba(185, 142, 91, 1) 0%, rgba(209, 171, 128, 1) 50%, rgba(171, 133, 50, 1) 100%);
    padding: 5px 30px;
    color: #fff;
}
/* // */


/* nav_start */
.header_lower {
    /* height: 85px;
    margin: 0 auto;
    color: #fff; */
    max-width: 1340px;
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}
.nav_box {
    height: 100%;
    color: #000;
}
.nav_list {
    display: flex;
    height: 100%;
    justify-content: center;
}
.nav_list li {
    width: 100%;
    height: 100%;
    font-size: 16px;
    transition: 0.3s;
    position: relative;
    padding: 0 10px;
}

.nav_list li.soon a{
    pointer-events: none;
    opacity: 0.3;
}

.header_lower.active .nav_list li {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX-100 {
  from {
    transform: translateY(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}


.nav_list li.new a::before {
    position: absolute;
    top: -10px;
    right: 14px;
    font-size: 10px;
    content: "NEW";
    background: #841313;
    color: #fff;
    padding: 1px 3px 1px;
    line-height: 12px;
    margin-left: 5px;
}
.nav_list li::after {
    content: "";
    width: 1px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 0;
    background: #b3b3b3;
    transform: translateY(-50%);
}
.nav_list li:nth-child(n+10)::after {
    width: 0;
    height: 0;
}
.nav_list li a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.nav_list li a span {
    display: block;
    /* height: 38px; */
    white-space: nowrap;
    font-size: 14px;
    line-height: 1.8;
    text-transform: uppercase;
    color: #000;
    position: relative;
}
.nav_list li a > span::before{
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    transition-duration: 0.3s;
}
.nav_list li a > span:hover::before{
    width: 100%;
}

.nav_list li a span.nav_en {
    font-size: 15px;
    margin-bottom: -5px;
    font-family: "yu-mincho-pr6n"
}


.tab_sp {
    display: none;
}
.nav_tab_btn {
    display: flex;
    gap: 20px;
    padding: 20px 15px;
    flex-wrap: wrap;
}
.nav_tab_btn_inner{
    max-width: 320px;
    border: 2px solid #fff;
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
    height: 70px;
    box-sizing: border-box;
    padding: 0 30px;
    font-size: 16px;
    color: #fff;
    line-height: 1.375;
    font-weight: 500;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.16);
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    justify-content: center;
}
.bg_gray {
    background: linear-gradient(90deg, rgba(80, 80, 80, 1) 0%, rgba(131, 131, 131, 1) 58%, rgba(80, 80, 80, 1) 86%);
}
/* .bg_brown {
    background: linear-gradient(90deg, rgba(185, 142, 91, 1) 0%, rgba(209, 171, 128, 1) 50%, rgba(171, 133, 50, 1) 100%);} */

.bg_brown {
    background: linear-gradient(90deg, rgba(185, 142, 91, 1) 0%, rgba(209, 171, 128, 1) 50%, rgba(171, 133, 50, 1) 100%);}
    
.hum_menu{
    display: none;
}
.nav-outline, .nav-map{
    display: none;
}

.header_bottom_nav{
    display: none;
}

header a{
    transition-duration: 0.6s;
}
header a:hover{
   opacity:0.6;
}

 /* topへ戻るボタン */
.page-top{
    opacity: 0;
    pointer-events: none;
}
.page-top.active {
    opacity: 1;
    pointer-events: all;
}
 .page-top .pt_inner {
    display: flex;
    gap: 1rem;
    margin-bottom: -1.3rem;
    position: fixed;
    bottom: 2.4rem;
    left: calc(100% - 2.6rem);
    writing-mode: vertical-rl;
    /* font-size: 0.2rem; */
    line-height: 1;
}
.page-top .pt_inner::before {
    content: "";
    display: block;
    width: 1em;
    height: 30px;
    background: url(../img/common/pagetop.svg) 50% 0 / contain no-repeat;
    transform-origin: bottom;
    animation: pagetopArrow 2.2s ease-in-out infinite;
}
@keyframes pagetopArrow {
    0% {
        transform: scaleY(0);
        opacity: 1;
    }
    40% {
        transform: scaleY(1);
        opacity: 1;
    }
    80% {
        transform: scaleY(1);
        opacity: 1;
    }
    100% {
        transform: scaleY(1);
        opacity: 0;
    }}
/*  */

@media screen and (max-width: 1000px) {
.nav_list li a span {
    font-size: 12px;
}
.nav_list li a span.nav_en {
    font-size: 13px;
}
.header_subnav {
    font-size: 13px;
}
}

@media screen and (max-width: 830px) {
.nav_list li{
    padding: 0 7px;
}
.nav_list li a span {
    font-size: 8px;
}
}
@media screen and (max-width: 750px) {
.nav_list li a > span::before{
    width: 0 !important;
}

.page-top .pt_inner {
    display: none;
}
.header_box {
    height: 70px;
    padding: 10px;

    position: relative;
    z-index: 1000;
}

.header_upper.active {
    /* width: 50px; */
    width: 100%;
    /* height: 50px; */
    /* background: red; */
    background-size: 50px;
}
.map_out{
    display: none;
}
.nav-outline, .nav-map{
    display: block;
}
.hum_menu {
    padding-left: 20px;
    height: 20px;
    width: 35px;
    position: relative;
    z-index: 9999;
    display: block;
}
.hum_menu span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: #000;
    transition: 0.3s;
}
.hum_menu span:nth-of-type(1) {
    top: 0;
}
    .hum_menu span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}
.hum_menu span:nth-of-type(3) {
    bottom: 0;
}
.hum_menu.active span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 9px;
}
.hum_menu.active span:nth-of-type(2) {
    opacity: 0;
}
.hum_menu.active span:nth-of-type(3) {
    transform: rotate(-45deg);
    bottom: 8px;
}


.header_lower {
    opacity: 0;
    pointer-events: none;
    height: calc(100vh - 97px);
    transition: 0.3s;
    top: 0;
    position: fixed;
    z-index: 999;
    width: 100%;
    /* height: 100vh; */
    overflow: scroll;
    /* background: beige; */
    background: url(../img/common/bg_nav_img.jpg) center no-repeat;
    background-size: cover;
}
.header_lower.active{
    opacity: 1;
    pointer-events: all;
    height: 100svh;
}
.nav_box {
    margin: 0 10px;
    padding: 60px 0;
    overflow-y: scroll;
}
.nav_list {
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
}
.nav_list li {
    width: 48%;
    font-size: 14px;
    height: 4.5em;
    border-bottom: solid 1px #fff;
}
.nav_list li::after {
    display: none;
}
.nav_list li a span {
    font-size: 14px;
}
.nav_list li a span.nav_en {
    font-size: 12px;
}
.nav_list li.new a::before {
    position: absolute;
    top: 5%;
}

.tab_sp {
    display: block;
}
.nav_tab_btn li {
    width: 48%;
}
.ent_res {
    display: none;
    padding: 5px 10px;
}
.header_logo {
    max-width: 165px;
}
.header_subnav {
    gap: 15px;
}
.nav_list li a {
    justify-content: initial;
    text-align: left;
}
.nav_list li.new a::before {
    right: initial;
    left: 90px;
}
.header_contact::after {
    content: "";
    background: url(../img/common/icon_arrow1.svg) no-repeat;
    background-size: 24px;
    height: 24px;
    width: 24px;
    right: 22px;
    top: calc(50% - 12px);
    position: absolute;
}


.header_bottom_nav{
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.header_bottom_nav > ul{
    display: flex;
    width: 100%;
}

.header_bottom_nav > ul li{
    flex: 1;
    text-align: center;
    position: relative;
}

.header_bottom_nav > ul li a{
    height: 60px;
    background: #fff;
    position: relative;
    display: flex;
}

.header_bottom_nav > ul li a span{
    font-size: 10px;
    font-weight: bold;
    line-height: 1.1;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
}

.header_bottom_nav > ul li a span::before{
    display: block;
    content: '';
    width: 24px;
    height: 24px;
    margin: 0 auto 4px;
}

.header_bottom_nav > ul li.map a span::before{
    background: url(../img/common/icon_map.svg) no-repeat center/contain;

}
.header_bottom_nav > ul li.request a span::before{
    background: url(../img/common/icon_request.svg) no-repeat center/80%;

}
.header_bottom_nav > ul li.reserve a span::before{
    background: url(../img/common/icon_reserve.svg) no-repeat center/contain;

}
.header_bottom_nav > ul li.online a span::before{
    background: url(../img/common/icon_online.svg) no-repeat center/contain;

}


.header_bottom_nav > ul li + li::before {
    display: block;
    content: '';
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}


}


@media screen and (max-width: 600px) {
.nav_tab_btn li {
    width: 100%;
}
.nav_tab_btn_inner {
    max-width: initial;
}
}

/* nav_end */



/* footer */
.footer_top_box {
    background: #F5F5F5;
    padding: 50px 0;
}
.footer_top_inner {
    max-width: 1306px;
    margin: auto;
    padding: 0 60px;
    position: relative;
}
.footer_list {
    font-size: 12px;
    text-indent: -1em;
    margin-left: 1em;
}
.footer_bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* padding: 120px 20px 80px; */
    padding: 80px 20px 80px;
}
.footer_ttl {
    font-family: "yu-mincho-pr6n", sans-serif;
    text-align: center;
    font-size: 18px;
}
.footer_tel {
    display: block;
    width: 390px;
    margin: auto;
    margin: 0px auto 20px;
}

.footer_tel > p {
    text-align: center;
    margin-bottom: 1em;
    letter-spacing: 0.1em;
    font-size: 14px;
}

.footer_txt {
    font-size: 12px;
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: center;
    line-height: 1.5;
}
.tel_tap {
    display: none;
}

.footer_bottom_box{
    width: 100%;
}

.fotter_bnr_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}
.fotter_bnr_box li {
    display: flex;
}
.footer_bnr {
    display: block;
}
.fotter_bnr_box li img {
    vertical-align: baseline;
    max-height: 47px;
}
.fotter_bnr_box_txt {
    font-size: 12px;
    display: flex;
    align-items: center;
    text-align: center;
    margin-right: 10px;
}


.footer_links {
    border-top: 1px solid #E0E0E0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 0 15px;
    font-size: 12px;
}
.footer__copy {
    background: #000;
    color: #FFF;
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
    font-family: "Noto Sans JP", sans-serif;
}


.footer_toppage{
    display: none;
}

.foot_news_box{
    width: 100%;
}

.foot_news{
    border: 1px solid #000;
    padding: 15px;
    text-align: center;
    max-width: 600px;
    margin: 30px auto 0;
    font-size: 14px;
    line-height: 1.8;
}

.foot_news_ttl{
    font-size: 1.3em;
}


@media screen and (max-width: 750px) {

footer{
    padding-bottom: 60px;
}

.fotter_bnr_box{
    flex-direction: column;
}

.fotter_bnr_box li {
    display: block;
    text-align: center;
}
.footer_txt {
    font-size: 12px;
    text-align: center;
}
.tel_tap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    box-sizing: border-box;
    border: 1px solid #000;
    border-radius: 8px;
    padding: 5px 0;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.2;
}
.footer_tel {
    max-width: 315px;
    width: 100%;
}
.footer_tel > p{
    font-size: 12px;
}
.nav_list li a span {
    color: #fff;
}
.footer_bottom {
    /* padding: 80px 20px 60px; */
    padding: 60px 20px 60px;
}

.fotter_bnr_box_txt {
    justify-content: center;
    margin: 0 0 5px;
}

.foot_news{
    font-size: 12px;
}

.fotter_bnr_box li:nth-of-type(n + 2){
    margin-top: 15px;
}

}


/* footer_end */

/* .feature {
    padding: 6em 0;
}

.feature .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 15px #ccc;
    overflow: hidden;
}

.feature .container figure {
    width: 45%;
    padding-top: 27%;
    overflow: hidden;
}

.feature .container div {
    text-align: center;
    width: 55%;
}

.feature .container div h2{
    font-size: 28px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.feature .container div h2 strong {
    display: block;
    margin-bottom: 0;
    color: #3e865a;
    font-size: 1.25em;
    font-family: 'EB Garamond', "游明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    margin-bottom: 0.5em;
}

#colophon .recommend {
    padding: 6em 0;
    background: var(--color-green2);
    overflow: hidden;
} */

:root {--color-black1: #000;--color-gray1: #efefef;--color-gray2: #ccc;--color-orange1: #fd5a2a;--color-yellow1: #f4f10a;--color-blue1: #48bcc6;--color-blue2: #2053e0;--color-blue3: #095467;--color-purple1: #9a70cb;--color-green1: #51de72;--color-green2: #3e865a;--color-green4: #4caf43;--color-red: #e84a5c;--color-beige: #c7ac8d;}
#colophon address {text-align: center;padding: 6em 0;border-top: 1px solid var(--color-gray1);}
#colophon address h3 {font-size: 112.5%;}
#colophon address h3 span {display: inline-block;font-weight: bold;}
#colophon address a[href^="tel:"] {margin: 1em 0 0;}  
#colophon address a[href^="tel:"] span:nth-child(1) {display: inline-block;font-size: 300%;letter-spacing: 0.05em;line-height: 1;padding-left: 1.25em;position: relative;}
#colophon address a[href^="tel:"] span:nth-child(1)::before {display: block;content: '';width: 1em;height: 0.5em;background: url("../img/common/icon_free.svg") no-repeat center/contain;position: absolute;top: 52%;left: 0;z-index: 1;transform: translateY(-50%);}
#colophon address .note {font-size: 12px;text-align: center;margin-top: 0.5em;}
#colophon address .hours {margin-top: 1em;}
#colophon address .hours span {display: inline-block;margin: 0 0.5em;}
#colophon address .agent {display: flex;justify-content:center;margin-top: 3em;}
#colophon address .agent a {margin: 0 1em;}
#colophon address .agent a img {width: auto;height: 3.5em;}
#colophon .feature {padding: 6em 0;}
#colophon .feature .container {display: flex;flex-wrap: wrap;justify-content: space-between;align-items: center;box-shadow: 0 0 15px #ccc;overflow: hidden;}
#colophon .feature .container figure {width: 45%;padding-top: 27%;overflow: hidden;}
#colophon .feature .container figure img {width: 100%;height: 100%;object-fit: cover;position: absolute;top: 50%;left: 50%;z-index: 1;transform: translate(-50%,-50%);}
#colophon .feature .container div {text-align: center;width: 55%;}
#colophon .feature .container div h2 {font-size: 175%;font-family:"游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;}
#colophon .feature .container div h2 strong {display: block;content: attr(data-title);color: var(--color-green2);font-size: 125%;font-family: 'EB Garamond',"游明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";font-weight: normal;margin-bottom: 0.5em;}
#colophon .recommend .headerEnttl,
#colophon .other h3 {font-size: 200%;font-family: 'EB Garamond',"游明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";text-align: center;margin-bottom: 1em;}
#colophon .recommend {padding: 6em 0;background: var(--color-green2);overflow: hidden;}
#colophon .recommend .headerEnttl {color: #fff;}
#colophon .recommend #recommend_slider {width: 90%;margin: 0 auto;overflow: visible;}
#colophon .recommend .swiper-recommend::before,
#colophon .recommend .swiper-recommend::after {background: var(--color-green2) !important;}
#colophon .other {padding: 6em 0;background: var(--color-gray1);}
#colophon .other ul {display: flex;flex-wrap: wrap;justify-content: flex-start;margin: 0 -0.75em;    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;}
#colophon .other ul li {width: calc(25% - 1.5em);margin: 0.75em;}
#colophon .other ul li a {}
#colophon .other ul li a p {margin-top: 0.5em;}
#colophon .navLegal {padding: 1.5em 0;border-top: 1px solid var(--color-gray1);}
#colophon .navLegal ul {text-align: center;}
#colophon .navLegal ul li {display: inline-block;}
#colophon .navLegal ul li a {font-size: 75%;padding: 0 1em;}
#colophon #copyRight {color: #fff;font-size: 75%;text-align: center;padding: 1.5em 0.5em;background: #000;}
#colophon #copyRight span {display: inline-block;}




@media screen and (max-width: 750px) {
/* .feature {
    padding: 20px 0 60px;
}

.feature .container figure {
    width: 100%;
    padding-top: 12em;
}

.feature .container div {
    width: 100%;
    padding: 2em 0;
}

.feature .container div h2{
    font-size: 17px;
} */



#colophon address {padding: 3em 0;}
#colophon address h3 {font-size: 100%;}
#colophon address a[href^="tel:"] {display: inline-block;}
#colophon address a[href^="tel:"] span:nth-child(1) {font-size: 250%;}  
#colophon address a[href^="tel:"] span:nth-child(2) {font-weight: bold;margin-top: 0.5em;padding: 0.3em 0 0.25em;border: 1px solid #000;}
#colophon address .hours {font-size: 87.5%;margin-top: 2em;}
#colophon address .hours span {display: inline-block;margin: 0 0.5em;}
#colophon address .agent {margin-top: 2em;}
#colophon address .agent a {margin: 0 2%;}
#colophon address .agent a:nth-child(1) {width: 40%;}
#colophon address .agent a:nth-child(2) {width: 43%;}
#colophon address .agent a img {width: auto;height: auto;}
#colophon .feature {padding: 1em 0 3em;}
#colophon .feature .container figure {width: 100%;padding-top: 12em;}
#colophon .feature .container div {width: 100%;padding: 2em 0;}
#colophon .feature .container div h2 {font-size: 112.5%;letter-spacing: 0;}
#colophon .feature .container div h2 strong {margin-bottom: 0;}
#colophon .recommend .headerEnttl,
#colophon .other h3 {font-size: 150%;margin-bottom: 0.25em;}
#colophon .recommend {padding: 3em 0;}
#colophon .other {padding: 3em 0 2em;}
#colophon .other ul {margin: 0 -0.5em;}
#colophon .other ul li {width: calc(50% - 1em);margin: 0.5em;}
#colophon .other ul li a p {font-size: 87.5%;}
#colophon .navLegal {padding: 1em 0;}
#colophon .navLegal ul li a {padding: 0 0.5em;}
#colophon #copyRight {font-size: 10px;padding: 1em 0;}


}