@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
 
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.3em;
    background-color: #565656;
    color: #FFFFFF;
}


a{
  transition:.2s;
}
a:hover{
  opacity:1;
}
a.rivers:hover{
  background:#000 !important;
  color:#fff !important;
}
a:link{
    text-decoration: none;
    color: rgba(44,44,44,1.00);
}
a:visited{
    color: rgba(34,34,34,1.00);
}
a:hover{

}
ul{
  list-style-type: none;
  padding:0;
}
p{
  margin:0;
}
.clear_after::after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

/*--LODING----------------------------------------------------------------*/

@charset "UTF-8";

#loading {
    /* 画面いっぱいになる箇所 */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: #EFEFEF;
    transition: all 1s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    /* 中のローディングアニメ */;
    background-image: url(../img/lowding_logo.svg);
    background-repeat: repeat;
    background-size: 280px auto;
}

#loading.loaded {
	opacity: 0;
	visibility: hidden;
}

#loading .loader,
  #loading .loader:before,
  #loading .loader:after {
	background: #ffffff;
	animation: loading 1s infinite ease-in-out;
	width: 1em;
	height: 4em;
}

#loading .loader {
	color: #ffffff;
	text-indent: -9999em;
	margin: 88px auto;
	position: relative;
	font-size: 11px;
	transform: translateZ(0);
	animation-delay: -0.16s;
}

#loading .loader::before, #loading .loader::after {
	position: absolute;
	top: 0;
	content: '';
}

#loading .loader::before {
	left: -1.5em;
	animation-delay: -0.32s;
}

#loading .loader::after {
	left: 1.5em;
}

@-webkit-keyframes loading {
	0%,
  80%,
  100% {
		box-shadow: 0 0;
		height: 4em;
	}

	40% {
		box-shadow: 0 -2em;
		height: 5em;
	}
}

@keyframes loading {
	0%,
  80%,
  100% {
		box-shadow: 0 0;
		height: 4em;
	}

	40% {
		box-shadow: 0 -2em;
		height: 5em;
	}
}

/*--ハンバーガー----------------------------------------------------------------*/

.menu-btn {
    position: fixed;
    top: 30px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 90;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 1px;
    width: 40px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 12px;
}
.menu-btn span:after {
    top: 12px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}



li {
	padding: 9px;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: rgba(0,0,0,0.72);
}
.menu-content ul {
    padding: 70px 10px 0;
	margin-left: auto;
    margin-right: auto;
}
.menu-content ul li {
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: rgba(223,188,177,0.9);
    transition: all 0.5s;/*アニメーション設定*/
    margin-top: 88px;
    font-size: 20px;
    letter-spacing: 0.6em;
    text-align: center;
}

#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

#menu-btn-check {
    display: none;
}





/*--ヘッダー----------------------------------------------------------------*/
header a:hover{
  opacity:0.6;
}
#fixed {
    position: fixed;
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(59,53,43,0.36);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    z-index: 1003;
    padding-top: 18px;
}
#fixed .sp_menu{
margin: 0px 0;
}
#fixed .sp_menu h1{
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
	padding-left: 0px;
    margin: 0;
}
#fixed .logo{
    padding-top: 0px;
}

#fixed .reservation{
  position:absolute;
  right:31px;
  
}
#fixed .reservation:hover{
  opacity:0.6;
}
#fixed .reservation img{
  width:108px;
}

.sns{
  position:absolute;
  top: 28px;
  right:69px;
}
.sns a{
    padding: 0 5px;
}
.sns a img{
  height:20px;
}
.sns a.tel img{
  height:14px;
  padding-top:1px;
}

#fixed .social{
  position:absolute;
  right:2%;
}


#produced{
    width: 100%;
    background-color: #D19898;
    color: #F8F8F8;
    font-size: 10px;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
    text-align: center;
    padding-top: 6px;
    padding-bottom: 6px;
	position: fixed;
	z-index: 1004;
}


/*---No.A-------------------------------------------------------------*/

@keyframes rotate-anime {
  0%  {transform: rotate(0);}
  100%  {transform: rotate(360deg);}
}
.webshop{
  animation: rotate-anime 60s steps(60) infinite;
}

#main_image-about{
  height: 100%;
  width: 100%;
  margin: auto;
  position: relative;
  background-image: url(../img/about/main-v_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/*---コンテンツ-------------------------------------------------------------*/

#section_top{
  height:100vh;

}


#dinner_area{
    width: 50%;
    float: right;
    display: table;
    background-image: url(../img/top/dinner.webp);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
}

#access_area{
    width: 50%;
    float: right;
    display: table;
    background-image: url(../img/top/access.webp);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
}

.text_area{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 180px;
}

#spa_area{
    width: 50%;
    float: left;
    display: table;
    background-image: url(../img/top/spa.webp);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
}

#system_area{
    width: 50%;
    float: left;
    display: table;
    background-image: url(../img/top/system.webp);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
}

#about_area{
    height: 800px;
    display: table;
    width: 100%;
    background-image: url("../img/about.webp");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-size: cover;
    color: rgba(255,255,255,1.00);
    padding-top: 60px;
}

#concept_area{
    height: 500px;
    display: table;
    width: 100%;
    background-image: url("../img/concept-bg.webp");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-size: cover;
    color: rgba(255,255,255,1.00);
    text-align: center;
}

#concept_text{
    display: table;
    width: 96%;
    text-align: center;
    margin-top: 186px;
	margin-left: auto;
    margin-right: auto;
}

#concept2_area{
    display: table;
    width: 100%;
    color: rgba(255,255,255,1.00);
    text-align: center;
    background-color: #D19898;
    padding-bottom: 120px;
}

#concept2_text{
    width: 380px;
    text-align: center;
    margin-top: 90px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.produced_area{
    display: table;
    width: 100%;
    color: #BD8787;
    text-align: center;
    background-color: #fff6f3;
    padding-bottom: 90px;
    padding-top: 60px;
    letter-spacing: 0.4em;
    line-height: 24px;
}

.produced_text{
    width: 86%;
    text-align: left;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
    font-family: Georgia, "Times New Roman", Times, serif;
    max-width: 720px;
}

.produced_area a{
    color: #BD8787;	
}

#worcation_right a{
    color: #BD8787;	
}

#produced_area2{
    height: auto;
    background-color: #FFF6F3;
    display: table;
    padding-top: 30px;
    padding-bottom: 108px;
    width: 100%;
    color: #BD8787;
	font-family: Georgia, "Times New Roman", Times, serif;
}

#feature_area{
    height: 500px;
    display: table;
    width: 100%;
    background-image: url("../img/feature-bg.webp");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-size: cover;
    color: rgba(255,255,255,1.00);
    text-align: center;
}

#feature2_area{
    display: table;
    width: 100%;
    color: #bd8787;
    text-align: center;
    background-color: #fff6f3;
    padding-bottom: 120px;
    padding-top: 120px;
}

#why_area{
    display: table;
    width: 100%;
    color: #bd8787;
    text-align: center;
    background-color: #fce7e0;
    padding-bottom: 90px;
    padding-top: 60px;
}

#linup_area{
    display: table;
    width: 100%;
    color: #FFF;
    background-color: #d19898;
    padding-bottom: 90px;
    padding-top: 60px;
    text-align: center;
}

#insta_area{
    display: table;
    width: 100%;
    color: #bd8787;
    text-align: center;
    background-color: #FFF;
    padding-bottom: 90px;
    padding-top: 60px;
}

#news_area{
    display: table;
    width: 100%;
    color: #0B0B0B;
    text-align: center;
    background-color: #C4C3AF;
    padding-bottom: 90px;
    padding-top: 60px;
}

.news_list{
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 10px;
    padding-bottom: 30px;
    text-align: left;
}

.news_day{
    font-weight: bold;
}

.products-banana{
    width: 81%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 60px;
    padding-bottom: 30px;
}

.title_box{
    color: #FFFFFF;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

.title_box2{
    color: #FFFFFF;
    font-weight: bold;
    font-size: 36px;
    text-shadow: 1px 1px 0px #704a4a, -1px -1px 0px #704a4a,
          -1px 1px 0px #704a4a,  1px -1px 0px #704a4a,
           1px 0px 0px #704a4a, -1px  0px 0px #704a4a,
           0px 1px 0px #704a4a,  0px -1px 0px #704a4a;
    margin-bottom: 20px;
	letter-spacing: 0.3em;
}

.title_box-tani{
    color: #bd8787;
    font-size: 26px;
    margin-bottom: 20px;
    letter-spacing: 0.4em;
    font-family: Georgia, "Times New Roman", Times, serif;
}

.title_box-tani2{
    color: rgba(255,255,255,1.00);
    letter-spacing: 0.6em;
    font-family: Georgia, "Times New Roman", Times, serif;
    line-height: 36px;
    font-size: 18px;
}

.title2_box{
    color: #bd8787;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

.title3_box{
    color: #FFF;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
}

.text_box{
    width: 90%;
    max-width: 540px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

#design_text{
    width: 100%;
    display: table;
    margin-top: 60px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 1800px;
}

.place-title{
    float: left;
    text-align: center;
    color: rgba(255,255,255,1.00);
    background-color: rgba(0,0,0,0.67);
    position: absolute;
    font-size: 10px;
    margin-left: 10px;
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
}

.space-title{
    text-align: center;
    color: rgba(0,0,0,1.00);
    background-color: rgba(251,251,251,1.00);
    font-size: 10px;
    padding-top: 3px;
    padding-right: 3px;
    padding-bottom: 3px;
    padding-left: 6px;
    width: 120px;
    border: 1px solid rgba(0,0,0,1.00);
    margin-bottom: 6px;
}

.box50{
    width: 50%;
    float: left;
    text-align: center;
	position: relative;
}

#about_text2{
    width: 90%;
    display: table;
    margin-top: 100px;
    margin-bottom: 100px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

#design_area{
    display: table;
    width: 100%;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 120px;
    text-align: center;
}


#worcation_left{
    width: 50%;
    float: left;
    display: table;	
}

.worcation_left{
    width: 50%;
    float: left;
    display: table;
    margin-top: 8%;
    margin-bottom: 30px;		
}

#worcation_left2{
    margin: auto;
    width: 50%;
    height: auto;
    float: left;
}

.subtitle{
    letter-spacing: 0.3em;
    font-size: 26px;
    font-family: "MS Serif", "New York", serif;
    margin-top: 18px;
    margin-bottom: 18px;
}

.subsubtitle{
    letter-spacing: 0.3em;
    font-size: 19px;
    font-family: "MS Serif", "New York", serif;
    padding-bottom: 9px;
    font-weight: bold;
}

h2{
    letter-spacing: 0.6em;
    font-size: 28px;
    font-family: "MS Serif", "New York", serif;
}

h4{
    letter-spacing: 0.3em;
    font-size: 16px;
    padding: 0;
    margin-top: 36px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 9px;
    font-family: "MS Serif", "New York", serif;
}

h3{
    letter-spacing: 0.5em;
    color: rgba(19,60,118,1.00);
    border-bottom: 1px solid rgba(19,60,118,1.06);
    padding-bottom: 8px;
}

#worcation_lefttext{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#worcation_lefttext p{
    text-align: left;
    margin-top: 30px;
}

.worcation_lefttext{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.worcation_lefttext p{
    text-align: left;
    margin-top: 30px;
}

#worcation_right{
    margin: auto;
    width: 50%;
    height: auto;
    float: right;
}

.worcation_right{
    margin: auto;
    width: 50%;
    height: auto;
    float: right;
}

#worcation_area{
    height: auto;
    background-color: #FFF6F3;
    display: table;
    padding-top: 108px;
    padding-bottom: 108px;
    width: 100%;
    color: #BD8787;
}

#produced-tani{
    width: 340px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 120px;
}


 #main_image-about{
  height: 100%;
  width: 100%;
  margin: auto;
  position: relative;
  background-image: url(../img/about/main-v_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#main_catimg-about {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 80%;
  max-width: 732px;
  height: auto;
}

#underlayer{
    padding-top: 180px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#underlayer-title{
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-top: 36px;
    padding-bottom: 36px;
    border-left-style: solid;
    border-left-width: 0;
    border-right-style: solid;
    border-right-width: 0;
    border-bottom: 1px solid #000000;
    border-top: 1px solid #000000;
    max-width: 1080px;
}

#underlayer-title h2{
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;    
}

.underlayer-imag{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 81px;
    text-align: center;
    max-width: 1800px;
}
.underlayer-imag2{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 81px;
    text-align: center;
    max-width: 900px;
}
.underlayer-text{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    max-width: 680px;
    text-align: left;
}


.square_area{
}

.cat-title{
    text-align: center;
    border-left: 0 solid #000;
    border-right: 0 solid #000;
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
    border-image-slice: 1;
    padding-top: 18px;
    padding-bottom: 18px;
    max-width: 240px;
    width: 84%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.3em;
}
.cat-title0{
    text-align: center;
    border-left: 0 solid #000;
    border-right: 0 solid #000;
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
    border-image-slice: 1;
    padding-top: 18px;
    padding-bottom: 18px;
    max-width: 240px;
    width: 84%;
    margin-top: 90px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.3em;
    margin-bottom: 45px;
}

.cat-title2{
    text-align: center;
    border-left: 0 solid #000;
    border-right: 0 solid #000;
    border-bottom: 1px solid #FFF;
    border-top: 1px solid #FFF;
    border-image-slice: 1;
    padding-top: 18px;
    padding-bottom: 18px;
    max-width: 240px;
    width: 84%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.3em;
    color: #FFFFFF;
}

.btn-wline{
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    max-width: 360px;
    width: 84%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.18em;
    background-color: #D19898;
    font-size: 24px;
    color: #FFFFFF;
}

.btn-wline h6{    
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;    
}

.btn-red{
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    max-width: 360px;
    width: 84%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.18em;
    background-color: #FFF;
    font-size: 24px;
    color: #D19898;
}

.btn-red h6{    
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;    
}

.btn-wline2{
    text-align: center;
    border: 1px solid #000;
    border-image-slice: 1;
    padding-top: 12px;
    padding-bottom: 12px;
    max-width: 480px;
    width: 84%;
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.3em;
    background-color: rgba(255,255,255,0.90);
    font-size: 20px;
    color: #000000;
    font-family: "MS Serif", "New York", serif;
    margin-bottom: 60px;
}

.system_block{
    text-align: center;
    border-left: 0 solid #000;
    border-right: 0 solid #000;
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
    border-image-slice: 1;
    padding-top: 36px;
    padding-bottom: 36px;
    max-width: 480px;
    width: 84%;
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.3em;
    background-color: rgba(255,255,255,0.90);
    color: #000000;
    margin-bottom: 60px;
}

.btn-bline{
    text-align: center;
    color: rgba(44,44,44,1.00);
    border: 2px solid rgba(34,34,34,1.00);
    padding-top: 6px;
    padding-bottom: 6px;
    max-width: 480px;
    width: 81%;
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5em;
    font-size: 88%;
}

.btn-bline-s{
    text-align: center;
    color: rgba(41,41,41,1.00);
    border: 1px solid rgba(27,27,27,1.00);
    padding-top: 4px;
    padding-bottom: 4px;
    max-width: 270px;
    width: 64%;
    margin-top: 9px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5em;
    font-size: 72%;
    margin-bottom: 18px;
}

.title-text-b{
    font-size: 22px;
    margin-bottom: 18px;
    font-weight: bold;
    font-family: "MS Serif", "New York", serif;
}



footer{
    padding: 40px 0 120px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,1.00);
    background-color: #7D7456;
    line-height: 22px;
}

footer img{
    margin-top: 40px;
    margin-bottom: 15px;
}

.copyright{
    font-size: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.menu_step{
    width: 92%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 60px;
}

.menu_steptitle{
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 2px;
    border-bottom: 1px dotted rgba(255,255,255,1.00);
    font-family: "Times New Roman", Times, serif;
    font-size: 28px;
    font-style: italic;
}

.menu_steptitle2{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-bottom: 6px;
    font-family: "Times New Roman", Times, serif;
    font-size: 20px;
	letter-spacing: -2px;
}

ol{
  list-style-type: none;
}

/* --- 全体のBOX定義 ---------------------------------------- */
.box {
  position   : relative;
  max-width  : 100%;
  height     : 100%;
  margin     : auto;
  overflow   : hidden;
}


@keyframes bgAnime {
   0% { opacity: 0; }
   8% { opacity: 1; }
  25% { opacity: 1; }
  33% { opacity: 0; }
 100% { opacity: 0; }
}


/*--スマホサイズ時の設定------------------------------------------------------*/

.pc_content{}
.sp_content{
  display:none !important;
}
@media screen and (max-width: 640px){
	

#worcation_area{
    height: auto;
    background-color: #fff6f3;
    display: table;
    padding-top: 36px;
    width: 100%;
    color: #BD8787;
}

#produced-tani{
    width: 280px;
    margin-left: auto;
    margin-right: auto;
	margin-top: 18px;
}
	
	
 #main_image-about{
    background-image: url(../img/about/main-v_bg_sp.webp);;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height:100vh;
  }
	
h2{
    letter-spacing: 0.15em;
    font-size: 24px;
}
	
#worcation_left{
    width: 100%;
    display: table;
    margin-top: 60px;
}
	
#worcation_left2{
    width: 100%;
    display: table;
    margin-bottom: 18px;
}
	
#worcation_lefttext{
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#worcation_right{
    margin: auto;
    width: 100%;
    height: auto;
}
	
.worcation_left{
    width: 100%;
    display: table;
    margin-top: 60px;
}
	
.worcation_left2{
    width: 100%;
    display: table;
    margin-bottom: 18px;
}
	
.worcation_lefttext{
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.worcation_right{
    margin: auto;
    width: 100%;
    height: auto;
}
	
.pc_content{
  display:none !important;
}
.sp_content{
  display:block !important;
}
.op2{
  max-width:96vw;
}
#fixed .reservation {
    position: absolute;
    right: 8px;
}
#fixed .reservation img{
  width:81px;
}

#hamburger{
  position: absolute;
  right: 10px;
  top: 24px;
}

#section_1st {
    padding: 0;
    margin:0;
    position: relative;
}
  .first_sp{
    padding-bottom: 100px;
  }
  .first_sp .top_image{
    background-image:url(../img/sec1_img1_sp.webp);
    height:122vw;
    background-size:cover;
    position:relative;
  }
  .first_sp .top_image span{
    position:absolute;
    display:block;
    top:16vw;
    left:0;
    background: #000;
    font-size: 12px;
    letter-spacing: 0.2em;
    line-height: 30px;
    vertical-align: baseline;
    color: #fff;
    text-align: right;
    padding: 0px 30px;
  }
  .first_sp .text{
    margin-top:10vw;
    text-align:center;
  }
  .first_sp .text img{
    width:87%;
  }
  .first_sp .dec_text{
    width:90%;
    margin: 5vw auto 0;
    letter-spacing: 0.2em;
  }
  .first_sp .about_link{
    display:block;
    position:relative;
    width:90%;
    margin:6vw auto 0;
    border:1px solid #000;
    text-align:center;
    line-height:33px;
  }

  .first_sp .about_link::before{
  content:"";
  position:absolute;
  border-top:1px solid #aaa;
  width: 200px;
  transform-origin: 0 0;
  mtransform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  top: 18px;
    left: -6px;
}
  .first_sp .about_link::after{
  content: "";
  position: absolute;
  border-top: 1px solid #aaa;
  width: 70px;
  transform-origin: 70px 0;
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  bottom: 18px;
  right: -6px;
}
	

.concept_btn{
	margin-top: 60px;
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.3em;
	width: 98%;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	background-color: #FE75AF;
	padding-top: 9px;
	padding-bottom: 9px;
}

#system_textarea2{
	font-size: 14px;
	letter-spacing: 0.3em;
	padding-top: 30px;
	color: #33EFEE;
	text-align: left;
	width: 98%;
	margin-left: auto;
	btn-wline2margin-right: auto;
}
	
#spa_area{
    width: 100%;
    display: table;
    background-image: url(../img/top/spa.webp);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    text-align: left;
    background-position: center center;
	border: 2px solid #FFFFFF;
}
	
#system_area{
    width: 100%;
    display: table;
    background-image: url(../img/top/system.webp);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    text-align: left;
    background-position: center center;
	border: 2px solid #FFFFFF;
}
	
#dinner_area{
    width: 100%;
    display: table;
    background-image: url(../img/top/dinner.webp);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
	background-position: right center;
}
	

#access_area{
    width: 100%;
    display: table;
    background-image: url(../img/top/access.webp);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
	background-position: right center;
}

footer {
    padding: 60px 0 85px;
}
	
#design_area{
    display: table;
    width: 100%;
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
	
.place-title{
    float: left;
    text-align: center;
    color: rgba(255,255,255,1.00);
    background-color: rgba(0,0,0,0.67);
    position: absolute;
    font-size: 10px;
    margin-left: 5px;
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
}
	
.box50{
    width: 100%;
    float: none;
    text-align: center;
}

#menu_area{
    height: 720px;
    display: table;
    width: 100%;
    background-image: url(../img/menu/menu1_sp.webp);
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFFFFF;
}

#about_area{
    height: 600px;
    display: table;
    width: 100%;
    background-image: url("../img/about_sp.webp");
    background-size: 100% auto;
	background-position:center;
    background-repeat: no-repeat;
	background-size:cover;
}
	
#concept_area{
    height: 420px;
    display: table;
    width: 100%;
    background-image: url("../img/concept-bg_sp.webp");
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: rgba(255,255,255,1.00);
    text-align: center;
}
	
#concept_text{
    display: table;
    width: 280px;
    margin-top: 130px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#concept2_area{
    display: table;
    width: 100%;
    color: rgba(255,255,255,1.00);
    text-align: center;
    background-color: #D19898;
    padding-bottom: 90px;
}

#concept2_text{
    width: 300px;
    text-align: center;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
}
	
.produced_area{
    display: table;
    width: 100%;
    color: #BD8787;
    text-align: center;
    background-color: #fff6f3;
    padding-bottom: 60px;
    padding-top: 60px;
    letter-spacing: 0.4em;
    line-height: 24px;
}

.produced_text{
    width: 86%;
    text-align: left;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
    font-family: Georgia, "Times New Roman", Times, serif;
}
	

	
#feature_area{
    height: 380px;
    display: table;
    width: 100%;
    background-image: url("../img/feature-bg_sp.webp");
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: rgba(255,255,255,1.00);
    text-align: center;
}
	
#feature2_area{
    display: table;
    width: 100%;
    color: #bd8787;
    text-align: center;
    background-color: #fff6f3;
    padding-bottom: 90px;
    padding-top: 45px;
}
	
.news_list{
    width: 88%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 10px;
    padding-bottom: 30px;
    text-align: left;
}