@charset "UTF-8";
/*////////////////////////
sacay-salto.jp
commons.css
///////////////////////*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kosugi&family=M+PLUS+1:wght@100..900&display=swap');
a {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* スマホのハイライトデザインを無効にする */
    color: #fff;
}
a:focus {
	outline: none;
}

a img:hover, a:hover  {
	opacity: 0.5 ;
	filter: alpha(opacity=50) ;	/* Ie用 */
    -webkit-transition: 0.6s ;
	transition: 0.6s ;
}  

.responsiveImg{
    display: block;
    max-width: 100%;
    height: auto;
}
img { vertical-align: bottom;}

/* 
br 
*/
.tbView,
.spView{
	display:none;
}
.pcView{
	display:inherit;
}
.pcOff{
	display:off;
}

.aC{text-align: center;}
.aR{text-align: right;}

@media screen and (max-width: 767px) {
    
.pcView{
	display:none;
}
.spView{
	display:inherit;
}
.tbView{
	display:inherit;
}
.tbOff{
	display:none;
}

}
/*
 link
*/
main a:link{
    color: #AD7A29;  
    text-decoration: none;
}
main a:hover{
    /*color: #fff;*/  
   opacity: .6;
    text-decoration: none;
}

footer a:link{
    color: #AD7A29;  
    text-decoration:none;
}
footer a:hover{
    color: #AD7A29;
    text-decoration: none;
}

a:hover img {
    opacity:.6;
}
@media (max-width: 767px) {
a:hover img {
    opacity:1.0;
}
}

/*
color
#E9471F
#dc9483

*/

/*
font

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.noto-sans jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.jost-<uniquifier> {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

.noto{
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

.mplus {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  /*font-weight: 100;*/
  font-style: normal;
}
.sawarabi {
  font-family: "Sawarabi Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.kosugi {
  font-family: "Kosugi", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*.quicksand {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}*/
/*.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}*/
/*.roboto_c{
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}*/

/*
structuer
*/
body {
    width: 100%;
    color: #fff;
    background:#344D54;
   font-family: "M PLUS 1", sans-serif;
    /*font-family: "Noto Sans JP", sans-serif;*/
    
    letter-spacing: .1em;
}

main{
    width: 100%;
   
   margin: 0 auto 6%;
   z-index: 1
}
.contents {
  /*margin-left: 393px;*/
   padding: 60px 0 0;
}
@media screen and (max-width: 1000px){
    main{
        margin: 0% auto 10%;
    }
   .contents {
  /*margin-left: 0;*/
}
}
@media screen and (max-width: 767px){
   body {
      font-size: .8em;
   }
   main{
    width: 90%;
   }
}


/* 
header
 */

header{
    width: 100%;
}
header .logo{
    width: 60px;
    height: auto;
    /*margin: 5px 5px;*/
   position: fixed;
   z-index: 1000;
   top: 15px;
  left: 15px;
}
#g-nav{
    position:fixed;
    z-index: -1;
    opacity: 0;
    top:0;
   right: 0;
    width:50%;
    height: 100vh;
    background: rgba(52, 77, 84, 0.95);
    transition: all 0.3s;
}
#g-nav.panelactive{
    opacity: 1;
    z-index:999;
}

#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 50%;
    height: 100vh;
    overflow: auto;
}

#g-nav li{
    list-style: none;
    text-align: center; 
    margin: 2rem 0;
}
#g-nav li li{
    margin: 0;
}

#g-nav li a{
    color: #AD7A29;
    text-decoration: none;
    padding: .6em;
    display: block;
    text-transform: uppercase;
    font-size: 1.9rem;
    letter-spacing: 3px;
    font-weight: bold;
}

#g-nav li a span{
    display: inline-block;
   color: #fff;
    font-size: 1.1rem;
    margin-top: 5px;
    font-weight: normal;
}

.openbtn{
    position:fixed;
    z-index: 9999;
    top:3px;
    right: 3px;
    cursor: pointer;
    width: 60px;
    height:60px;
}

.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 1px;
    background-color: #fff;
      width: 50%;
  }

.openbtn span:nth-of-type(1) {
    top:18px;	
}

.openbtn span:nth-of-type(2) {
    top:28px;
}

.openbtn span:nth-of-type(3) {
    top:38px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*ナビゲーションを横並びに*/
nav ul{
	/* list-style: none;
	display: flex;
	justify-content: center; */
    display: block;
    width: 80%;
    margin: auto;
    position: relative;
    top: 10%;
}

nav ul li{
	position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	transition:all .3s;
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before{
	content:'';
	position: absolute;
	left:15px;
	top:25px;
	width:6px;
	height:6px;
	border-top: 2px solid #999;
    border-right:2px solid #999;
    transform: rotate(135deg);
}

nav li.has-child ul{
	background:#eaeaea;
	transition: all .3s;
    padding: 1rem 0;
    position: relative;
	left:0;
	top:0;
	width:100%;
	visibility:visible;
	opacity:1;
	display: none;
	transition:none;
}

/*矢印の位置と向き*/
nav ul ul li.has-child::before{
    transform: rotate(135deg);
	left:20px;
}
    
nav ul li.has-child.active::before{
    transform: rotate(-45deg);
}

nav li.has-child ul li:last-child > a{
 border-bottom:none;
 }

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	opacity: 0.5;
}


/*==768px以下の形状*/

@media screen and (max-width:768px){
	nav{
		padding: 0;
	}
#g-nav{
    width:100%;
}
#g-nav.panelactive #g-nav-list{
   width: 100%;
   }
   
nav ul{
    top: 10%;
	}
	

/*矢印の位置と向き*/
nav ul ul li.has-child::before{
    transform: rotate(135deg);
	left:20px;
}
    
nav ul li.has-child.active::before{
    transform: rotate(-45deg);
}

}



/*
sec_page_title
*/
#sec_page_title{
    width: 100%;
}
#sec_page_title h1{
    font-size: 5em;
    color: #3E3A39;
    text-align: center;
    margin: 3rem auto 6rem;
    
}
#sec_page_title h1 .jap{
    display: block;
    font-size: .2em;
    color: #3E3A39;
    padding-top: 1rem;
    line-height: 1.5rem;
    
}

/* ボタン */
 .btn_cont{
     width: auto;
    /* text-align: center;*/
    margin: 2em auto 3em;
    }
.btn06{
    max-width: 300px;
   min-width: 200px;
  width: 60%;
    font-size: 1.6em;
   font-weight: bold;
	position: relative;
	text-decoration: none;
	display: inline-block;
	/*background:none;*/
   background-color: #273A40;
	color:#AD7A29;
    padding: .8em 1em;
	/*border-radius:25px;*/
    border:1px #AD7A29 solid;
    text-align: center;
    outline: none;
    transition: ease .2s;
}

.btn06:hover{
	/*background:none;*/
   opacity: .6;
}

/*.btnarrow1::after{
	position: absolute;
   font-family: "Font Awesome 6 Pro";
   font-family: "Font Awesome 5 Free";
  content: '\f0a9';
   top: 50%;
  right: 15px;
    transition: all .3s;
   transform: translateY(-50%);
}*/
.btnarrow1 svg{
   position: absolute;
   top: 50%;
  right: 12px;
    transition: all .3s;
   transform: translateY(-50%);
}

.btnarrow1:hover svg{
    right: 8px;
}

@media (max-width: 767px){
    .btn06{
        /*width: 250px;*/
    }
}


/* 
header_open
 */
.header_open{
   position: fixed;
   width: 393px;
   height: 100vh;
   /*padding-top: 40px;*/
   color: #fff;
   background-color: #006C36;
   text-align: center;
   display: flex;
   justify-content: center;
   align-items: center;
}
.header_open p{
   font-size: 1.3rem;
   line-height: 1.6em;
   margin-bottom: 20px;
}
.header_open .open_logo{
   width: 34%;
   max-width: 120px;
   margin: auto;
   margin-bottom: 10px;
}
.header_open .open_logo img{
   width: 100%;
   height: auto;
}
.header_open .cont_subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4em;
  margin-bottom: 1em;
}
.header_open .cont_title {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.1em;
  margin-bottom: .6em;
  letter-spacing: .05em;
}
.header_open .btn_cont{
  width: auto;
  text-align: center;
  margin: 0 auto 15px;
    }
.header_open .btn_cont span{
   line-height: 1.3em;
}
.header_open .btn06{
     width: 200px;
 }

.header_link{
   position: fixed;
   top: 15px;
   right: 60px;
   display: flex;
   z-index: 1000;
}
.header_link .reserv{
   display: none;
}
.header_link .icon{
   display: flex;
   justify-content:center;
    /*padding: 4px;*/
}
.header_link .icon .spbtn {
   /* background: #006C36;*/
    cursor: pointer;
    width: 30px;
    height: 30px;
   font-size: 30px;
   margin: 0 6px;
    text-align: center;
    /*line-height: 38px;*/
    z-index: 999;
  }
.header_link .icon .spbtn a{
   color: #fff;
   width: 100%;
   /*border: 1px solid #fff;*/
   /*display: flex;
   justify-content: center;
  align-items: center;*/
  height: 100%;
}

@media (max-width: 1000px){
.header_open{
   /*position:inherit;
   width: 100%;
   height: 100vh;*/
}
.header_open .open_logo{
   /*margin-top: 20px;*/
   }
.header_link .reserv{
   /*display: block;*/
   }
.header_link .reserv .btn_cont span{
   /*font-size: .9rem;*/
}
.header_link .reserv .btn06{
   }
.header_link .icon{
   /*padding-top: 24px;*/
   }
.header_link .icon .spbtn {
   }
}


/*
footer
*/

footer{
    /*background-image: url(/images/bg_footer_pc.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;*/
    width: 100%;
    height: auto;
}

.icon_sns{
    font-size: 1.5em;
    letter-spacing: 2.5px;
    font-weight: 600;
    margin: 4rem auto 3rem;;
}

.footer_link{
   margin: 1em auto 3em;
   font-size: 1.3em;
}
.copyright{
    width: 80%;
    font-size: 1em;
    margin: auto;
    padding: 2rem 0;
    text-align: center;
}

.copyright a{
   color: #050505;
   text-decoration: none;
    background-color: #fff;
}

@media (max-width: 767px){
    footer{
        /*background-image: url(/images/bg_footer_sp.png);*/
    }
}

/*
shop information
*/

#shopinfo {
    /*margin-bottom: 18%;*/
}
#shopinfo a:link {
  color: #fff;
  text-decoration: none;
}
#shopinfo h4{
   font-size: 1.4em;
   margin-bottom: 1.4em;
}
#shopinfo .txt{
   /* text-align: center;*/
    margin: .4em auto 1.4em;
    line-height: 1.4em;
    font-size: 1.1em;
}
#shopinfo small{
   font-size: .9em;
}
.shopinfo_sec{
    width: 100%;
    margin: 0 auto 3em;
    display: flex;
    justify-content: space-between;
   align-items: flex-start;
}
.shopinfo_sec .shopinfo_cont{
    /*width: calc(100%/2);*/
   width: 30%;
    /*padding: 0 4% 0 0;*/
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.shopinfo_sec .shopinfo_cont .footer_logo{
    /*width: 130px;*/
    margin: 0 auto 10px;
}
.shopinfo_sec .shopinfo_cont .footer_img{
    /*width: 380px;*/
    margin: 0 auto 10px;
}

.shopinfo_sec .shopinfo_cont .footer_logo img,.shopinfo_sec .shopinfo_cont .footer_img img{
    width: 50%;
    height: auto;
}

.shopinfo_sec .shopinfo_cont .shopdata{
    /*padding-left: 100px;*/
}

.shopdata .name, .shopdata .address {
    line-height: 2.6rem;
    margin-bottom: 2em;
    font-size: 1.4rem;
   /* font-weight: 500;*/
}
.shopdata .tel{
    font-size: 1.8em;
    margin-bottom: 1em;
}
.shopdata .insta{
    font-size: 1.8em;
    margin-bottom: 1em;
}

#shopinfo .btn{
    display: inline-block;
    padding: 1em;
    font-size: 15px;
}

.shopdata .open{
    line-height: 1.85em;
    margin: 0 0 1rem;
    font-size: 1.2em;
}
.shopdata .open .time{
   font-size: .9em;
}
footer .btn_cont {
    text-align: left;
}


@media (max-width: 767px) {

#shopinfo{
    /*margin-bottom: 15%;*/
   padding: 2em 0 0;
}

footer .btn06{
    letter-spacing: 2px;
    text-decoration: none;
}
    
#shopinfo .txt{
    text-align: center;
    margin: 1.5em auto;
    line-height: 1.6em;
    font-size: 1.3em;
}
.shopinfo_sec{
    width: 100%;
    /*margin: 0 auto;*/
   display: block;
    /*display: flex;
    justify-content: center;
    flex-direction: column;*/
}
.shopinfo_sec .shopinfo_cont{
    width: calc(100%/1);
    padding: 0 0% 8%;
    /*text-align: center;*/
   display: block;

}

.shopinfo_sec .shopinfo_cont .shopdata{
    padding-left: 0px;
    margin: auto;
   width: 100%;
} 

.shopdata .name,.shopdata .address{
    line-height: 2.2rem;
    font-size: 1.2rem;
}

.shopdata .tel{
    font-size: 2.4em;
   margin-bottom: 1.5em;
}

#shopinfo .btn{
    padding: 0 .6em;
    font-size: 12px;
}

.shopdata .open{
    font-size: 1.2rem;
}

.shopinfo_sec .shopinfo_cont .footer_logo{
   /* width: 100px;*/
}

.shopinfo_sec .shopinfo_cont .footer_img{
    width: 100%;
    margin: 0 auto 10px;
}   
   
.footer_img img{
    width: 45%;
   }
}


/*
pageTop_btn
*/

#pageTop {
position: fixed;
bottom: 3rem;
right: 1rem;
}

#pageTop i {
padding-top: 12px
}

#pageTop a {
display: block;
z-index: 999;
border-radius: 10px;
width: 35px;
height: 35px;
background-color: rgba(255, 255, 255, 0.5);
color: #fff;
font-weight: bold;
text-decoration: none;
text-align: center;
line-height: 3em;
}

#pageTop a:hover {
text-decoration: none;
opacity: 0.7;
}