@charset "UTF-8";
 
body {
    font-family: 'Avenir, "Helvetica neue", Helvetica, YuGothic, "Yu Gothic", "Hiragino Sans", ヒラギノ角ゴシック, メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-size: 100%;
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.6em;
    background-color: #FFF;
    color: #000;
}


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

}
ul{
  list-style-type: none;
  padding:0;
}
p{
    margin: 0;
    text-align: left;
}
.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: rgba(0,0,0,1.00);
    transition: all 1s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    /* 中のローディングアニメ */;
}

#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% {
		height: 4em;
	}

	40% {
		height: 5em;
	}
}

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

	40% {
		height: 5em;
	}
}

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

.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 30px;
    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: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#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-top: 12px;
    padding-bottom: 12px;
}

.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;
}
.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(0,0,0,0.72);
    transition: all 0.5s;/*アニメーション設定*/
    margin-top: 45px;
    font-size: 16px;
    letter-spacing: 0.6em;
    font-weight: normal;
}

#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: rgba(0,0,0,0.8);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    z-index: 1003;
    padding-top: 6px;
}
#fixed .sp_menu{
margin: 10px 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;
  top:81px;
}
#fixed .reservation:hover{
  opacity:0.6;
}
#fixed .reservation img{
  width:118px;
}

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

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


/*---ROCK FOREST-------------------------------------------------------------*/

#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;
}

.textleft{
    text-align: left; 
}

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

#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: 1060px;
    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: 30px;
}

#spend_area{
    height: 600px;
    display: table;
    width: 100%;
    background-image: url("../img/fz-bg.webp");
    background-size: 100% auto;
    background-repeat: no-repeat;
	background-size:cover;
	color: rgba(255,255,255,1.00);
}

#spend_text{
    display: table;
    width: 96%;
    text-align: center;
    margin-top: 120px;
	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: 108px;
    border: 1px solid rgba(0,0,0,1.00);
    margin-bottom: 6px;
	letter-spacing: 0.3em;
}

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

#designphoto{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
	display: table;
}

#designtitle{
    width: 92%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
	display: table;
}

#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;
    text-align: center;
    padding-top: 18px;
    background-color: #131313;
    padding-bottom: 180px;
    color: #FFFFFF;
}


#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.4em;
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.subsubtitle{
    letter-spacing: 0.4em;
    font-size: 16px;
    padding-bottom: 9px;
    padding-top: 9px;
    font-weight: 600;
}

h2{
    letter-spacing: 0.6em;
    font-size: 20px;
}

h4{
    letter-spacing: 0.4em;
    font-size: 16px;
    padding: 0;
    margin-top: 36px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 9px;
}

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;
    margin-top: 120px;
    max-width: 450px;
}

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

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

.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: #EBEBEB;
    display: table;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%;
}

.worcation_area{
    height: auto;
    background-color: #fff;
    display: table;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
}

#worcation_area3{
    height: auto;
    background-color: #000;
    display: table;
    padding-top: 40px;
    padding-bottom: 120px;
    width: 100%;
    text-align: center;
    color: rgba(255,255,255,1.00);
}

 #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;
}

.underlayer-text a{
    color: #0B0B0B;
    text-decoration: underline;
}


.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;
}

.cat-title3{
    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;
    font-weight: bold;
}

.btn-wline{
    text-align: center;
    border: 1px solid rgba(255,255,255,0.54);
    border-image-slice: 1;
    padding-top: 8px;
    padding-bottom: 8px;
    max-width: 480px;
    width: 84%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.4em;
    background-color: rgba(0,0,0,0.81);
    font-size: 19px;
    color: #FFFFFF;
    font-weight: normal;
}



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

.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: 45px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.3em;
    background-color: rgba(255,255,255,0.90);
    font-size: 14px;
    color: #000000;
    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(19,60,118,1.00);
    border: 2px solid rgba(19,60,118,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(19,60,118,1.00);
    border: 1px solid rgba(19,60,118,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;
}



footer{
    padding: 40px 0 120px;
    text-align: center;
    font-size: 10px;
    color: rgba(255,255,255,1.00);
    background-color: rgba(116,116,116,1.00);
}


#news_area{
    display: table;
    width: 100%;
    min-height: 400px;
    padding-top: 120px;
    text-align: center;
}

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

.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-decimal ol{
    list-style-type: decimal;
    margin-left: 10px;
}

.ol-disc ol{
    list-style-type: disc;
    margin-left: -9px;
}

.ol-katakana-iroha ol{
    list-style-type: katakana-iroha;
    margin-left: -3px;
}

.news_day{
    font-weight: bold;
}


/* --- 全体の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: #EBEBEB;
    display: table;
    padding-top: 10px;
    padding-bottom: 80px;
    width: 100%;
}
	
.worcation_area2{
    height: auto;
    background-color: #fff;
    display: table;
    padding-top: 10px;
    padding-bottom: 80px;
    width: 100%;
}
	
 #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;
  }
	
	
#worcation_left{
    width: 100%;
    display: table;
    margin-top: 0px;
    margin-bottom: 0px;
}
	
#worcation_left2{
    width: 100%;
    display: table;
    margin-bottom: 18px;
}
	
#worcation_lefttext{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 60px;
    padding-bottom: 60px;
}

#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;
	margin-top: 60px;
}

.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:78px;
}

#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_area{
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.concept_text{
	margin-top: 40px;
	color: #FE75AF;
	font-size: 24px;
	letter-spacing: 0.3em;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	background-color: rgba(255,255,255,0.88);
	margin-left: auto;
	margin-right: auto;
	width: 96%;
}

.concept_text2{
	margin-top: 30px;
	color: #FE75AF;
	font-size: 14px;
	letter-spacing: 0.3em;
	width: 98%;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

.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;
	margin-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: 920px;
    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;
}
	
#spend_area{
    height: 600px;
    display: table;
    width: 100%;
    background-image: url("../img/fz-bg_sp.webp");
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: rgba(255,255,255,1.00);
}
	
#spend_text{
    display: table;
    width: 81%;
    text-align: left;
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
}
	
	
	#top-fzmain_area{
    height: auto;
    display: table;
    padding-top: 60px;
    padding-bottom: 80px;
    width: 100%;
    text-align: center;
    color: rgba(255,255,255,1.00);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
	
#philosophy_text{
    width: 92%;
    font-family: "MS Serif", "New York", serif;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.news_list{
    width: 88%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 10px;
    padding-bottom: 30px;
    text-align: left;
}
	
.subtitle{
    letter-spacing: 0.4em;
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 20px;
}
