@charset "utf-8";
/* ==========================================================================
   common
   ========================================================================== */
.mint{
	color: #008289;
}

.lime{
	color: #92D574;
}

.serif{
	font-family: "Noto Serif JP", serif;
}

.sans{
	font-family: "Noto Sans JP", sans-serif;
}

.contents_wrap{
	width: 100vw;
	overflow: hidden;
}

/* ==========================================================================
   btn
   ========================================================================== */
.btn{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn a{
	color: #fff;
	width: 100%;
	height: 50px;
	font-size: 1.4rem;
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
	line-height: 1;
  letter-spacing: 0.06em;
	text-align: center;
  display: flex;
	align-items: center;
	justify-content: center;
  position: relative;
	background-color: #008289;
	border-radius: 8px;
	box-sizing: border-box;
	transition: all 0.2s ease;
}
@media (min-width: 960px){
.btn a{
	width: 280px;
	height: 58px;
	font-size: 1.6rem;
}
}

.btn a::after{
	content: "";
	width: 13px;
	height: 13px;
	background-image: url(../img/common/icon-arrow-rw.svg);
	background-size: 13px 13px;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: 20px;
	margin: -6.5px 0 0 0;
}
@media (min-width: 960px){
.btn a::after{
	width: 13px;
	height: 13px;
	background-size: 13px 13px;
  margin: -6.5px 0 0 0;
}
}

@media (min-width: 960px){
.btn a:hover{
	background-color: #92D574;
}
}

.btn-w{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-w a{
	color: #555;
	width: 100%;
	height: 50px;
	font-size: 1.4rem;
	font-family: "Noto Serif JP", serif;
	font-weight: 600;
	line-height: 1;
  letter-spacing: 0.06em;
	text-align: center;
  display: flex;
	align-items: center;
	justify-content: center;
  position: relative;
	background-color: #fff;
	border-radius: 8px;
	box-sizing: border-box;
	transition: all 0.2s ease;
}
@media (min-width: 960px){
.btn-w a{
	width: 400px;
	height: 58px;
	font-size: 1.55rem;
	font-weight: 500;
}
}

.btn-w a::after{
	content: "";
	width: 13px;
	height: 13px;
	background-image: url(../img/common/icon-arrow-r.svg);
	background-size: 13px 13px;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: 20px;
	margin: -6.5px 0 0 0;
}
@media (min-width: 960px){
.btn-w a::after{
	width: 13px;
	height: 13px;
	background-size: 13px 13px;
  margin: -6.5px 0 0 0;
}
}

@media (min-width: 960px){
.btn-w a:hover{
	color: #92D574;
}
}

#btn-back .btn-back a{
	color: #fff;
	width: 100%;
	height: 50px;
	font-size: 1.4rem;
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
	line-height: 1;
  letter-spacing: 0.06em;
	text-align: center;
  display: flex;
	align-items: center;
	justify-content: center;
  position: relative;
	background-color: #008289;
	border-radius: 8px;
	box-sizing: border-box;
	transition: all 0.2s ease;
}
@media (min-width: 960px){
#btn-back .btn-back a{
	width: 280px;
	height: 58px;
	font-size: 1.6rem;
}
}

/*#btn-back .btn-back a::after{
	content: "";
	width: 13px;
	height: 13px;
	background-image: url(../img/common/icon-arrow-rw.svg);
	background-size: 13px 13px;
	background-repeat: no-repeat;
	transform: scale(-1, 1);
	position: absolute;
	top: 50%;
	left: 20px;
	margin: -6.5px 0 0 0;
}
@media (min-width: 960px){
#btn-back .btn-back a::after{
	width: 13px;
	height: 13px;
	background-size: 13px 13px;
  margin: -6.5px 0 0 0;
}
}*/


/* ==========================================================================
   loading
   ========================================================================== */
#splash{
	position: fixed;
	width: 100vw;
	z-index: 9999;
	background: #000;
	text-align:center;
	top: 0;
	left: 0;
}

#splash_logo{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#splash_logo svg{
	width: 100px;
	stroke-width: 0.5;
	margin: 0 0 0 0;
}
@media (min-width: 960px){
#splash_logo svg{
	width: 110px;
	margin: 0 0 0 0;
}
}
@media (min-width: 960px){
#splash_logo svg{
	width: 160px;
	margin: -20px 0 0 0;
}
}

#splash_logo .splash_text{
	color: #F4E7D3;
	font-size: 1.5rem;
	line-height: 1.8;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	white-space: nowrap;
	letter-spacing: 0.1em;
	margin: 24px 0 0 0;
}
@media (min-width: 960px){
#splash_logo .splash_text{
	font-size: 1.7rem;
	line-height: 1;
	letter-spacing: 0.2em;
	margin: 30px 0 0 0;
}
}

#mask path{
	fill-opacity: 0;
	transition: fill-opacity .5s;
	fill: none;
	stroke: #363C40;
	stroke: #666;
}

#mask.done path{
	fill: #f4e7d3;
	fill-opacity: 1;
	stroke: none;
}


/* ==========================================================================
   header
   ========================================================================== */
header{
	width: 100%;
	height: 66px;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	box-sizing: border-box;
	padding: 0 4%;
	z-index: 200;
}
@media (min-width: 960px){
header{
	height: 100px;
	position: absolute;
	align-items: center;
	justify-content: space-between;
	padding: 0 50px;
}
}

/* logo */
header .logo{
	width: 180px;
	height: auto;
}
@media (min-width: 440px){
header .logo{
	width: 200px;
}
}
@media (min-width: 960px){
header .logo{
	width: 270px;
}
}

.logo img{
	width: 100%;
	height: auto;
	display: block;
}

/* global-nav */
header .menu-global-nav-container{
	width: auto;
	padding-left: 30px;
}

header ul#menu-global-nav{
	display:none;
}
@media (min-width: 960px){
header ul#menu-global-nav{
	width: auto;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}
}

header #menu-global-nav li{
  width: auto;
	display: block;
	position: relative;
	overflow: hidden;
}

header #menu-global-nav li a{
	color: #333;
	width: auto;
  height: 30px;
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	display: flex;
  transition: all 0.2s ease;
	padding: 0 0 0 28px;
}
@media (min-width: 960px){
header #menu-global-nav li a{
	font-weight: 500;
	opacity: 0.7;
}
}

header #menu-global-nav li a:hover,
header.header-w #menu-global-nav li a:hover{
	color: #92D574;
}

header.header-w #menu-global-nav li a{
	color: #fff;
}


/* ==========================================================================
   btn_contact fixed
   ========================================================================== */
.btn-reservation{
	width: 100vw;
	height: 60px;
	width: 50px;
	height: 160px;
	position: fixed;
	bottom: 36px;
	right: 0;
	left: auto;
	z-index: 1000;
}
@media (min-width: 440px){
.btn-reservation{
	width: 64px;
	height: 250px;
	bottom: 110px;
	right: 0;
	left: auto;
}
}

#page_shop .btn-reservation{
	display: none!important;
}

.btn-reservation a{
	color: #fff;
	width: 100vw;
	height: 60px;
	width: 50px;
	height: 160px;
	font-size: 1.5rem;
	font-family: "Noto Serif JP", serif;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.1em;
	border-radius: 0;
	letter-spacing: 0.15em;
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	border-radius: 10px 0 0 10px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	background-color: #92D574;
	box-sizing: border-box;
	transition: all 0.2s ease;
}
@media (min-width: 440px){
.btn-reservation a{
	color: #fff;
	width: 64px;
	height: 250px;
	font-size: 1.7rem;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.20em;
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	border-radius: 10px 0 0 10px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	background-color: #92D574;
	transition: all 0.3s ease;
	box-sizing: border-box;
	padding: 6px 0 0 0;
}
}

.btn-reservation a::after{
	content: "";
	width: 24px;
	height: 24px;
	background-image: url(../img/top/use-arrow.svg);
	background-size: 24px 24px;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: 20px;
	margin: -12px 0 0 0;
	display: none;
}
@media (min-width: 960px){
.btn-reservation a::after{
	display: none;
}
}

@media (min-width: 960px){
.btn-reservation a:hover{
	background-color: #008289;
}
}


/* ==========================================================================
   btn_view
   ========================================================================== */
.btn_view{
	height: 24px;
	position: relative;
	display: inline-block;
	margin: 0 0 3px 0;
}

.btn_view a{
	color: #aaa;
	display: inline-block;
	font-size: 1.8rem;
	font-family: 'Cinzel', serif;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.btn_view a:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.19, 1, .22, 1);
  background: #D6C1A2;
  z-index: 3;
}

@media (min-width: 960px){
.btn_view a:hover:before{
  transform: scaleX(1);
  transform-origin: left;
}
}

.btn_view:after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333;
  z-index: 2;
}



/* //////////////////////////////////////////////////////////////////////////
   pages
   ////////////////////////////////////////////////////////////////////////// */

/* ==========================================================================
   page head
   ========================================================================== */
#page_head{
	width: 100vw;
  height: auto;
  display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	box-sizing: border-box;
  padding: 80px 5.5vw 70px;
	margin: 0 auto;
}
@media (min-width: 960px){
#page_head{
	max-width: calc(1100px + 10vw + 10vw);
	padding: 190px 10vw 90px;
}
}

#page_head h2.page_title_en{
	color: #008289;
	font-size: 3.0rem;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	letter-spacing: 0.3em;
	line-height: 1;
	text-transform: uppercase;
}
@media (min-width: 960px){
#page_head h2.page_title_en{
	font-size: 4.6rem;
}
}

#page_head h2.page_title_en span{
	font-size: 76%;
	padding-left: 3px;
}

#page_head h1.page_title{
	color: #008289;
  font-size: 1.4rem;
	font-family: "Noto Serif JP", serif;
	font-weight: 600;
  line-height: 1;
	letter-spacing: 0.06em;
}
@media (min-width: 960px){
#page_head h1.page_title{
	font-size: 1.6rem;
	font-weight: 500;
}
}


/* ==========================================================================
   page section_title
   ========================================================================== */
.page .section_title_en{
	color: #008289;
	font-size: 2.8rem;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	letter-spacing: 0.28em;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	padding: 0 0 0 0.28em;
}
@media (min-width: 960px){
.page .section_title_en{
	font-size: 5.0rem;
}
}

.page h2.section_title{
	color: #333;
  font-size: 1.4rem;
	font-family: "Noto Serif JP", serif;
	font-weight: 600;
  line-height: 1;
	letter-spacing: 0.06em;
	text-align: center;
	padding-left: 0.06em;
}
@media (min-width: 960px){
.page h2.section_title{
  font-size: 1.8rem;
	font-weight: 500;
}
}


/* page title
============================================================ */
.page h3.title_h3{
	color: #222;
	font-size: 1.8rem;
	font-family: "Noto Serif JP", serif;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.4;
	position: relative;
	padding: 0 0 18px 0;
}
@media (min-width: 960px){
.page h3.title_h3{
	font-size: 2.4rem;
	font-weight: 500;
	padding: 0 0 22px 0;
}
}

.page h3.title_h3::after{
	 content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 50px;
   height: 2px;
   background-color: #92D574;
}


/* ==========================================================================
   diagonal
   ========================================================================== */
.diagonal-top{
	width: 100vw;
	position: absolute;
	top: -1px;
	left: 0;
}

.diagonal-bottom{
	width: 100vw;
	position: absolute;
	bottom: -1px;
	left: 0;
}


/* ==========================================================================
   page contents section wrap
   ========================================================================== */
.page .contents_wrap .wrap{
	width: 100%;
	box-sizing: border-box;
	padding: 0 5.5vw;
	margin: 0 auto;
}
@media (min-width: 960px){
.page .contents_wrap .wrap{
	max-width: calc(1200px + 10vw + 10vw);
	padding: 0 10vw;
}
}


/* ==========================================================================
   page pankuzu
   ========================================================================== */
.page .pankuzu{
	color: #888888;
	font-size: 1.25rem;
	font-family: 'Cinzel', serif;
	letter-spacing: 0.08em;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 0 0 32px 0;
}
@media (min-width: 960px){
.page .pankuzu{
	color: #888888;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	margin: 0 0 75px 0;
}
}

.page .pankuzu a{
	color: #eeeeee;
	font-size: 1.3rem;
	transition: all 0.2s ease;
}
@media (min-width: 960px){
.page .pankuzu a{
	color: #eeeeee;
	font-size: 1.6rem;
}
}

.page .pankuzu a:hover{
	color: #888888;
}

.page .pankuzu .line{
	width: 30px;
	height: 1px;
	background-color: #888888;
	margin: 0 10px;
}
@media (min-width: 960px){
.page .pankuzu .line{
	width: 70px;
	margin: 0 22px;
}
}

.page_title{
	font-size: 4.2rem;
	font-family: 'Cinzel', serif;
	font-weight: 300;
	letter-spacing: 0.04em;
	line-height: 1;
	margin: 0 0 0 0;
}
@media (min-width: 440px){
.page_title{
	font-size: 6.0rem;
	letter-spacing: 0.08em;
}
}
@media (min-width: 960px){
.page_title{
	font-size: 10.0rem;
}
}

.page_title__shoulder{
	font-size: 1.5rem!important;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1.6;
	text-align: left;
	margin-top: 5px;
}
@media (min-width: 960px){
.page_title__shoulder{
	font-size: 2.0rem!important;
	letter-spacing: 0.1em;
	margin-top: 16px;
}
}


/* ==========================================================================
   text mask
   ========================================================================== */
.mask{
	overflow: hidden;
	margin: 10px 0 0 0;
	padding: 0 0 5px 0;
}

.mask2{
	margin: -8px 0 0 0;
}


/* ==========================================================================
   section_title__block
   ========================================================================== */
.page .section_title__block{
	width: 100%;
	height: 24px;
	overflow: hidden;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin: 0 0 8px 0;
}
@media (min-width: 960px){
.page .section_title__block{
	height: 30px;
	margin: 0 0 30px 0;
}
}
@media (min-width: 960px){
.page .section_title__block{
	height: 32px;
	margin: 0 0 18px 0;
}
}

.section_title__block .section_title{
	font-size: 1.8rem;
	font-family: 'Cinzel', 'Noto Serif JP', serif;
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 1;
	text-align: center;
}
@media (min-width: 960px){
.section_title__block .section_title{
	font-size: 3.0rem;
}
}
@media (min-width: 960px){
.section_title__block .section_title{
	font-size: 3.0rem;
	padding: 0 0 0 0.1em;
}
}

.section_title__line{
	width: 60px;
	height: 2px;
	background-color: #D6C1A2;
	margin: 0 auto;
	position: relative;
}
@media (min-width: 960px){
.section_title__line{
	width: 100px;
}
}
@media (min-width: 960px){
.section_title__line{
	width: 100px;
	height: 2px;
}
}


/* ==========================================================================
   section_s_title__block
   ========================================================================== */
.section_s_title__block{
	overflow: hidden;
}

.section_s_title{
	font-size: 1.6rem;
	font-family: 'Cinzel', 'Noto Serif JP', serif;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.2;
}
@media (min-width: 440px){
.section_s_title{
	font-size: 2.4rem;
}
}
@media (min-width: 960px){
.section_s_title{
	font-size: 2.4rem;
	padding: 0 0 0 0.1em;
}
}

.section_s_title__line{
	width: 40px;
	height: 2px;
	background-color: #D6C1A2;
	position: relative;
	margin: 14px 0 0 0;
}
@media (min-width: 440px){
.section_s_title__line{
	width: 40px;
	margin: 16px 0 0 0;
}
}


/* ==========================================================================
  section_m_title__block
   ========================================================================== */
.section_m_title__block{
}

.section_m_title_no{
	color: #D6C1A2;
	font-size: 1.8rem;
	font-family: 'Cinzel', serif;
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 1;
}
@media (min-width: 440px){
.section_m_title_no{
	font-size: 2.4rem;
	margin: 18px 0 0 0;
}
}
@media (min-width: 960px){
.section_m_title_no{
	font-size: 2.4rem;
}
}

.section_m_title_en{
	font-size: 3.1rem;
	font-family: 'Cinzel', serif;
	font-weight: 300;
	letter-spacing: 0.04em;
	line-height: 1;
}
@media (min-width: 440px){
.section_m_title_en{
	font-size: 5.0rem;
	letter-spacing: 0.08em;
}
}
@media (min-width: 960px){
.section_m_title_en{
	font-size: 7.4rem;
}
}

.section_m_title{
	font-size: 1.45rem;
	font-family: 'Cinzel', 'Noto Serif JP', serif;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1;
	margin: 6px 0 0 0;
}
@media (min-width: 960px){
.section_m_title{
	font-size: 1.8rem;
	letter-spacing: 0.08em;
	margin: 15px 0 0 0;
}
}
@media (min-width: 960px){
.section_m_title{
	font-size: 1.8rem;
}
}


/* ==========================================================================
   page text
   ========================================================================== */
.page p.text{
	text-align: justify;
}


/* ==========================================================================
   page contents title
   ========================================================================== */
#page #contents .title{
	font-size: 1.8rem;
	font-family: 'Cinzel', 'Noto Serif JP', serif;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1;
	margin: 70px 0 50px 0;
}
@media (min-width: 960px){
#page #contents .title{
	font-size: 2.0rem;
	margin: 140px 0 90px 0;
}
}
@media (min-width: 960px){
#page #contents .title{
	font-size: 3.0rem;
	margin: 0 0 100px 0;
}
}

#page #contents h3{
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.4;
	border-left: 5px solid #363C40;
	padding: 0 0 0 8px;
	margin: 30px 0 15px 0;

}
@media (min-width: 960px){
#page #contents h3{
	font-size: 1.7rem;
	font-weight: 500;
	border-left: 6px solid #363C40;
	padding: 0 0 0 14px;
	margin: 50px 0 15px 0;
}
}

#page #contents p,
#page #contents li{
	color: #888;
	font-size: 1.35rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt" 1;
	line-height: 2.0;
	margin: 0 0 10px 0;
}
@media (min-width: 960px){
#page #contents p,
#page #contents li{
	font-size: 1.4rem;
}
}

#page #contents ol{
	margin: 0 0 0 1.2em;
}

#page #contents li{
	line-height: 1.2;
	list-style-type: decimal;
	padding-left: 0.5em;
}

#page #contents p a{
	color: #888;
	text-decoration: underline;
}


/* ==========================================================================
   footer
   ========================================================================== */
#footer{
  width: 100vw;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	padding: 60px 0 40px 0;
	position: relative;
}
@media (min-width: 960px){
#footer{
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 100px 0 100px 0;
}
}

#footer .wrap{
	width: 100%;
  display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	padding: 0 6vw;
}
@media (min-width: 960px){
#footer .wrap{
	/*max-width: calc(1000px + 10vw + 10vw);*/
	padding: 0 8vw;
}
}

#footer .block{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
@media (min-width: 960px){
#footer .block{
	width: 100%;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
}
}

#footer .footer_logo{
	width: 240px;
  height: auto;
	margin-right: 10px;
}
@media (min-width: 960px){
#footer .footer_logo{
	width: 270px;
	margin-right: 0;
}
}

#footer .border{
	display: none;
}
@media (min-width: 960px){
#footer .border{
	width: 100%;
	height: 1px;
	display: block;
	background-color: #E1E1E1;
}
}

#footer .sns_insta{
	width: 24px;
  height: auto;
}
@media (min-width: 960px){
#footer .sns_insta{
	width: 24px;
}
}

#footer img{
	width: 100%;
	height: auto;
	display: block;
}

#footer ul.menu{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
@media (min-width: 960px){
#footer ul.menu{
	width: auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}
}

#footer ul.menu li{
	width: 100%;
	margin: 0;
	padding: 0;
	display: block;
}
@media (min-width: 960px){
#footer ul.menu li{
	width: auto;
  display: inline-block;
}
}

#footer ul.menu li a{
	color: #333;
	font-size: 1.5rem;
	line-height: 1;
	font-weight: 600;
  line-height: 1;
	letter-spacing: 0.06em;
  display: block;
	text-align: center;
	display: block;
	transition: all 0.2s ease;
	margin: 0 0 17px 0;
}
@media (min-width: 960px){
#footer ul.menu li a{
  font-size: 1.4rem;
	font-weight: 500;
	display: inline-block;
	text-align: left;
	margin: 0 28px 0 0;
}
}

@media (min-width: 960px){
#footer ul.menu li a:hover{
  color: #92D574;
}
}

#footer .copyright{
	color: #333;
  font-size: 1.0rem;
	line-height: 1;
	letter-spacing: 0.08em;
	text-align: center;
	padding: 30px 0 0 0;
}
@media (min-width: 960px){
#footer .copyright{
	font-size: 1.0rem;
	text-align: right;
	padding: 0 0 6px 0;
}
}
