
/*///// frame ///*/

#wrapper{
}
#contents{
  position: relative;
  width:100%;
  overflow: hidden;
}
/* #loader{
  position: fixed;
  width:100%;
  height: 100%;
  background: rgba(255,255,255,.9);
  z-index: 10000;
}
#loader .cont{
  position: absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  letter-spacing: 1em;
  text-align: center;
  color:#bbb;
} */
/*/// header //*/

#header{
  width:100%;
  position: fixed;
  left:0;
  top:0;
  z-index: 9999;
}
#header .header{
  width:100%;
  /* height: 100%; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .header .logo a{
  display: block;
}
#header .header .logo{
	padding:1rem ;
  z-index: 8888;
  position: relative;
  mix-blend-mode: color-dodge;
}
#header .header .logo .icon-logo{
  width:clamp(120px,15vw,200px);
  height:clamp(50px,6vw,80px) ;
  fill:rgba(200,200,200,.7);
  transition: all .3s cubic-bezier(0.445, 0.050, 0.550, 0.950);

}
#header.open .header .logo .icon-logo{
  fill:#fff;
}
#globalmenu{
  /* display: none; */
  width:100%;
  height: auto;
  position: fixed;
  top:0;
  left:0;
  transform: translateY(-100%);
  transition: all .3s cubic-bezier(0.445, 0.050, 0.550, 0.950);
  opacity:0;
}
#globalmenu .menu{
  width:100%;
  height: auto;
  background:#F5BA2F;
  z-index: 7778;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
}
#globalmenu .menu ul{
  padding-top:10%;
  padding-bottom: 5%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width:90%;
  margin:auto;
  color:#443107;
}
#globalmenu .menu ul li{
  width:28%;
  padding:0;
  position: relative;

  transition: all 0.3s;
  cursor: pointer;
  user-select: none;
}
#globalmenu .menu ul li a{
  padding:2rem;
  text-align: left;
  display: block;
  color:inherit;
}
#globalmenu .menu ul li.elem:hover{
  box-shadow: none;
  /* box-shadow: 0px 3px 10px #b08c57; */
  /* transform: translateY(5px); */
}
/* btn2 */
#globalmenu .menu ul li.elem a::after, #globalmenu .menu ul li.elem a::before, #globalmenu .menu ul li.elem::after, #globalmenu .menu ul li.elem::before {
  content: "";
  position: absolute;
  transition: all 0.2s;
  background-color: white;
}
#globalmenu .menu ul li.elem::before {
  height: 2px;
  width: 0;
  top: 0;
  left: 0;
  transition-delay: 0.4s;
}
#globalmenu .menu ul li.elem::after {
  width: 2px;
  height: 0;
  top: 0;
  right: 0;
  transition-delay: 0.2s;
}
#globalmenu .menu ul li.elem a::before {
  height: 2px;
  width: 0;
  bottom: 0;
  right: 0;
  transition-delay: 0.4s;
}
#globalmenu .menu ul li.elem a::after {
  width: 2px;
  height: 0;
  bottom: 0;
  left: 0;
  transition-delay: 0.2s;
}
#globalmenu .menu ul li.elem:hover a::before, #globalmenu .menu ul li.elem:hover::before {
  width: 100%;
  transition: all 0.2s;
}
#globalmenu .menu ul li.elem:hover a::after, #globalmenu .menu ul li.elem:hover::after {
  height: 100%;
  transition: all 0.2s;
}
#globalmenu .menu ul li.elem:hover::after {
  transition-delay: 0.2s;
}
#globalmenu .menu ul li.elem:hover a::after {
  transition-delay: 0.2s;
}
#globalmenu .menu ul li.elem:hover {
  transition-delay: 0.4s;
}
#globalmenu .menu ul li .en{
  font-size:clamp(23px,3.5vw,50px);
  color:#7F5D2A;
}
#globalmenu .menu ul li dl dt{
  color:white;
  font-size:1.2rem;
  font-weight: 500;
  margin:8px 0;
}
#globalmenu .menu ul li dl dt:after{
  content:"";
  display: inline-block;
  vertical-align: middle;
  background:url(../img/arrow.svg) no-repeat center center;
  background-size: contain;
  width:2rem;
  height: 1.5rem;
}
#nav-drawer {
  display: block;
  position: absolute;
  right:0;
  top:0;
  width:clamp(100px,13%,200px);
  height: 100%;
  margin:auto;
  background:#F5BA2F;
  font-size:1.8rem;
  text-align: center;
  line-height: 1.5;
  border-radius:3px;
  z-index: 7777;
}
.toggle_btn{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  cursor:pointer;
}
.hanbargar{
  display: block;
  height: 2px;
  background-color:white;
  width:50%;
  border-radius:3px;
  position: relative;
}
.hanbargar:before,
.hanbargar:after{
  content:"";
  display: block;
  width:100%;
  height: 2px;
  background-color:white;
  position: absolute;
  transition:.3s all ease;
}
.hanbargar:before{
  top:15px;
}
.hanbargar:after{
  bottom:15px;
}
#header.open .hanbargar{
  background-color:#F5BA2F;
}
#header.open .hanbargar:before{
  transform:rotate(18deg) translateY(-16px);
}
#header.open .hanbargar:after{
  transform:rotate(-18deg) translateY(16px);
}
#header.open #globalmenu{
  transform: translateY(0%);
  opacity:1;
}

.inner{
  max-width: 1200px;
  margin:auto;
}
.mini{
  font-size: .8rem;
}
.red{
  color:rgb(223, 0, 0);
}
/*///////////////////////
   contents
/////////////////////////*/
#bg{
  width:100vw;
  height: 100%;
  background-size:cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: fixed;
  left:0;
  top:0;
  z-index: -1;
}
#bg.top{
  background-image:url(../../img/top_bg.jpg);
}
#bg.sub{
  height: 30vh;
  background-image:url(../../img/sub_bg.jpg);
}
.bgImg{
  height: 35vh;
  width:100%;
  background-attachment: fixed;
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.bgImg.img01{
  background-image:url(../../img/bgimg01.jpg);
}

.swip{
  position: absolute;
  left:0;
  top:0;
  width:100%;
  height: 100%;
  background:rgba(75, 49, 34,.72);
  animation: .5s .3s swipRight;
  animation-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
  animation-fill-mode: forwards;
  visibility: visible !important;
  display:block !important;
  mix-blend-mode: multiply;
}
@keyframes swipRight {
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(100%);
  }

}

/*// topContents //*/
#keyvisual.top{
  width:100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#keyvisual.top .cont{
  background:rgba(255,255,255,.9);
  border-radius: 20px;
  padding: 4vh clamp(30px,5vw,50px);
  text-align: center;
  opacity:0;
}
#keyvisual.top .cont .copy{
  font-size:clamp(16px,2.5vw,20px);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.5em;
}
#keyvisual.top .cont h1 {
  margin:1.5vw auto;
}
#keyvisual.top .cont h1 span{
  display: block;
  font-size:1.2rem;
  font-weight: 700;
  font-size:clamp(14px,3vw,18px);
  margin:.5em;
}
#keyvisual.top .cont h1 img.logo{
  width:clamp(200px,31vw,280px);
}
#keyvisual.top .cont .media{
  display: flex;
  justify-content: center;
  margin:10% auto 4%;
}
#keyvisual.top .cont .media i{
  color:#7F5D2A;
  font-size:clamp(15px,2.5vw,20px);
  margin:.5em;
}

#keyvisual.top .cont .btn a{
  color:#CE5244;
  display: inline-block;
  border:1px solid #CE5244;
  padding: 0 1em;
  background:white;
}
.btn_eff02 a span{
  position: relative;
  z-index: 2;
  transition:.3s all cubic-bezier(0.770, 0.000, 0.175, 1.000);
}
.btn_eff02 a{
  position: relative;
}
.btn_eff02 a:after{
  position: relative;
  content:"";
  width:0%;
  height: 0%;
  background: #CE5244;
    border:1px solid #CE5244;
  position: absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index: 1;
  transition:.3s all cubic-bezier(0.770, 0.000, 0.175, 1.000);
}
.btn_eff02 a:hover span{
  color:white;
}
.btn_eff02 a:hover:after{
  width:100%;
  height: 100%;
}
#keyvisual.sub{
  width:100%;
  height: 30vh;
  position: relative;
}

#wavingAnime{
  position: absolute;
  bottom:0;
  left:0;
  width:100%;
}
.waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:80px;
  max-height:120px;
}
.whitespace{
  height: 5vh;
  width:100%;
  background:white;
}

/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% {
    transform: translate3d(85px,0,0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height:40px;
    min-height:40px;
  }
  .content {
    height:30vh;
  }
  h1 {
    font-size:24px;
  }
}
#contents{
  background:url(../img/footer_bg.png) no-repeat  white;
  background-position: 104% bottom ;
  background-size:35% auto;
  padding-bottom: 100px;
}
.colum2{
  display: flex;
  justify-content: space-between;
  margin:8% auto;
}
.colum2 .titlearea{
  width:23%;
}

.colum2 .contentarea{
  width:73%;
}
.title h3{
  font-size:28px;
  font-weight: normal;
  color:#7F5D2A;
  line-height: 1.3;
}
.title h3 span.mini{
  display: block;
  font-size:.5em;
}
.title{
  border-bottom:4px solid #EED278;
  padding-bottom: 10px;
  text-align: right;
  margin:4% 0 2%;
}
.contentarea{
  padding:0 4% 0 0;
}
.pagetitle{
  padding:0 clamp(20px,2vw,40px);
}
.pagetitle h2{
  font-size:clamp(50px,6vw,90px);
  color:#F5BA2F;
  line-height: 1.4;
}
.pagetitle + .colum2{
  margin-top:3%;
}
.textarea p.large{
  font-size:1.3rem;
}
.border{
  display: block;
  border-bottom:1px solid #EED278;
}
/*/// index //*/

#shopInfo .flex {
  display: flex;
  justify-content: space-between;
}
#shopInfo .photoarea{
 width:40%;
}
#shopInfo .photoarea .ph{
  margin-bottom: 1rem;
}
#shopInfo .textarea{
 width:55%;
}
dl.co-info dt{
  font-size:1.3rem;
}
dl.co-info dd p{

}
dl.co-info dd p{
  border-bottom:1px solid #EED278;
  padding-bottom: 1rem;
  padding-left:2rem;
}
table.co-data {
  margin-left:2rem;
  border-collapse: collapse;
}
table.co-data tr th{
  font-weight: normal;
  width:6rem;
  padding-right:1rem;
  text-align: left;
  vertical-align: top;
}
#access .map{
  padding:10px;
  background:rgb(131, 220, 226, .7);
}
#topcontents {
  padding-top:2%;
}
#topcontents .flex{
  display: flex;
  justify-content: space-between;
}
#topcontents [class*="cont"]{
  margin:0 0 4% 0;
}
#topcontents .photoarea{
  width:43%;
}
#topcontents .photoarea .imgs{
  width: 100%;
  height: 40vh;
  position: relative;
  overflow: hidden;
}
#topcontents .photoarea .imgs img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#topcontents .textarea{
  position: relative;
  width:54%;
}

#topcontents .textarea .txt .ti{
  font-size:clamp(35px,6vw,90px);
  color:#83DCE2;
  position: relative;
  display: inline-block;
  line-height: 1.3;
}
#topcontents .textarea .txt .ti span{
  position: relative;
  z-index: 22;
}
#topcontents .textarea .txt .ti:after{
  content:"";
  display: block;
  background: url(../../img/flower01.png) no-repeat center center;
  background-size:cover;
  width:10vw;
  height: 10vw;
  position: absolute;
  right:0;
  top:50%;
  transform:translate(50%,-50%);
  z-index: 11;
}
#topcontents .textarea .txt p{
  font-size:clamp(16px,1.6vw,20px);
  padding-left:7%;
}
#topcontents .textarea .ph img{
  position: relative;
  z-index: 22;
}
#topcontents .cont01 .textarea .ph{
  position: absolute;
  right:0;
  top:0;
  width:50%;
  height: 100%;
}
#topcontents .cont01 .textarea .ph img{
  position: absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
}
#topcontents .cont01 .textarea .ph:after{
  content:"";
  display: block;
  width:40%;
  height: 100%;
  background:#FCF5B9;
  position: absolute;
  top:-10%;
  right:0;
  z-index: 11;
}
#topcontents .cont01 .textarea .txt{
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  width:100%;
  padding-right:50%;
}
#topcontents .cont02 .textarea .ph{
  position: absolute;
  left:0;
  bottom:0;
  width:50%;
  height: 100%;
  display: flex;
  align-items: end;
}
#topcontents .cont02 .textarea .ph:after{
  content:"";
  display: block;
  width:80%;
  height: 80%;
  background:#D1EEDA;
  position: absolute;
  bottom:0%;
  left:0;
  z-index: 11;
}
#topcontents .cont02 .textarea .txt {
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  width:100%;
  padding-left:55%;
}
#facebook{
  margin:4% 0;
}
.btnarea{
  margin:50px 0;
  text-align: center;
  width:100%;
}
.more_btn a,
button.btn {
  display: inline-block;
  max-width: 300px;
  width:100%;
  background:#D16F0D;
  padding:.5em 2.3em;
  color:white;
  font-size:clamp(15px,1.8vw,20px);
  position: relative;
  box-shadow:0 3px 6px rgba(0,0,0,.16);
}
.more_btn a:after,
 button.btn:after{
  content:"";
  width:10%;
  display: block;
  border-bottom : 1px solid white;
  position: absolute;
  right:0;
  top:50%;
  transition:.3s all ease;
}
.more_btn a:hover:after,
button.btn:hover:after{
  animation: liner .5s ease-in-out;
}
@-webkit-keyframes liner {
  from {width:10%;}
  50%{width:0;}
  to {width:10%;}
}
@-moz-keyframes liner {
  from {width:10%;}
  50%{width:0;}
  to {width:10%;}
}
@keyframes liner {
  from {width:10%;}
  50%{width:0;}
  to {width:10%;}
}
.reserved_btn.more_btn a{
  max-width: 500px;
}
/*///// message /////*/

#management .illust01{
  position: absolute;
  right:2vw;
  top:0;
  z-index: 1;
  width:clamp(180px,20vw,350px);
}
#management .textarea{
  position: relative;
  z-index: 2;
}
#message .staff{
  display: flex;
  justify-content: space-around;
  margin:40px 0;
}
#message .staff .member .name{
  display: block;
  text-align: center;
  margin:1em;
}
.large{
  font-size:1.1rem;
}
#message .staff .member .name .position{
  padding-right:1em;
  font-size:.8em;
}
#message,
#message .textarea {
  position: relative;
  z-index: 10;
}
#message .phtoarea {
  position: absolute;
  top:5%;
  right:0%;
  width:30vw;
  text-align: right;
}
#message .phtoarea .ph01{
  position: relative;
  width:100%;
  padding-right:50px;
  }
#message .phtoarea .ph02{
  position: relative;
  width:70%;
  margin:-30px 0 0 auto;
  }
#message .phtoarea img{
  position: relative;
  z-index: 5;
}
#message .phtoarea .ph02:after{
  content:"";
  display: block;
  width:200px;
  height: 100px;
  background:#D1EEDA;
  position: absolute;
  left:-100px;
  bottom:-20px;
  z-index: 4;
  }
#message .phtoarea .ph01:after{
  content:"";
  display: block;
  width:130px;
  height: 350px;
  background:#FCF5B9;
  position: absolute;
  right:0px;
  top:-100px;
  z-index: 4;
  }

/*/////// corplate //////*/
#shop .flex {
  display: flex;
  justify-content: space-between;
}
#shop .flex > div{
  width:50%;
}
#shop .co-info{
  text-align: center;
  font-size:1.2rem;
  padding:1rem;
}
#shop .co-info dt{
  position: relative;
  padding-bottom: 1rem;
  margin-bottom:1rem;
  font-size:1.2em;
}
#shop .co-info dt:after{
  content:"";
  width:10%;
  border-bottom:1px solid #F5BA2F;
  position: absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
}
h4{
  font-size:1.3rem;
  font-weight: 400;
  margin:4% 0 1% ;
}
ul.list li{
  position: relative;
  margin:.5em 0;
  font-size:1.1em;
  padding-left:1.1rem;
}
ul.list li:before{
  content:"";
  display:block;
  width:.8rem;
  height: .8rem;
  background:#F5BA2F;
  border-radius:50%;
  position: absolute;
  left:0;
  top:1em;
  transform:translateY(-50%);
}
table.border-style{
  border-collapse: collapse;
}
table.border-style tr th,
table.border-style tr td{
  padding:.5em 1em;
  border:1px solid #888;
  font-weight: 400;
  text-align: left;
}
/*///////// contact ////////////*/
#inquiry .tel,
#reserved .tel{
  font-size:2.2em;
  color:#7F5D2A;
  letter-spacing: .1em;
}
#inquiry .tel .icon,
#reserved .tel .icon{
  margin-right:.2em;
}
.tel a{
  color:inherit;
  pointer-events: none;
}
#confirm{
  display: none;
  max-width: 900px;
  margin:auto;
}
#confirm .confarea{
  max-width: 800px;
  margin:auto;
  padding:1em;
}
#confirm .confarea dl{
  padding:.5em;
}
#confirm .confarea dl dt{
  color:rgb(181, 68, 13);
}
#confirm .confarea dl dd{
  padding-left:2em;
}
#confirm .submit{
  text-align: center;
}
#confirm .mClose{
  margin:1em auto;
}
#confirm .content{
  height: auto;
}
#thanks{
  text-align: center;
}
#thanks p{
  text-align: center;
}
#thanks h3{
  font-size:clamp(20px,4vw,33px);
}
#thanks .tel{
  display: block;
  margin:1rem 0;
}

/*///////////////////footer/////////////////*/
#footer{
  width:100%;
  position: absolute;
  bottom:0;
  left:0;
  z-index: 555;
  padding:2%;
  display: flex;
  justify-content: space-between;
}
#footer p{
  text-align: left;
  margin:0;
}
#footer .copyrignt p{
  font-size:.7em;
}
.contact_btn a {
  display: block;
  border:1px solid #CE5244;
  color: #CE5244;
  padding:0 2em;
  font-size:clamp(14px,4vw,25px);
  border-radius:4vw;
  background:white;
}
.contact_btn a:after{
  border-radius:4vw;
}
#footer .contact_btn{
}

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