@charset "utf-8";
/* @import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Noto+Serif+JP:wght@200..900&family=Zen+Kaku+Gothic+Antique&display=swap'); */



/*--------------------------------------------------------------------------
   settings
---------------------------------------------------------------------------*/
:root {
  --dark: #2C241C;
  --light: #fff;
  --gold: #AD7F1D;
  --lgold: #EDE295;
  --brown: #5E4429;
  --beige: #ECE5D6;
  --gray: #BCB5A5;

	--req: linear-gradient(90deg,rgba(185, 171, 139, 1) 0%, rgba(255, 245, 224, 1) 50%, rgba(185, 171, 139, 1) 100%);
	--req_hover: linear-gradient(90deg,rgba(255, 245, 224, 1) 0%, rgba(185, 171, 139, 1) 50%, rgba(255, 245, 224, 1) 100%);

	--rev: linear-gradient(90deg,rgba(199, 163, 83, 1) 0%, rgba(255, 244, 219, 1) 50%, rgba(199, 163, 83, 1) 100%);
	--rev_hover: linear-gradient(90deg,rgba(255, 244, 219, 1) 0%, rgba(199, 163, 83, 1) 50%, rgba(255, 244, 219, 1) 100%);

	--merit: linear-gradient(90deg,rgba(230, 203, 155, 1) 0%, rgba(255, 247, 227, 1) 50%, rgba(224, 197, 151, 1) 100%);
	--gra_gold: linear-gradient(315deg,rgba(199, 173, 128, 1) 0%, rgba(253, 244, 222, 1) 50%, rgba(199, 173, 128, 1) 100%);
	--gra_beige: linear-gradient(90deg,rgba(236, 229, 214, 1) 0%, rgba(245, 243, 235, 1) 50%, rgba(236, 229, 214, 1) 100%);
	--gra_brown: linear-gradient(315deg,rgba(57, 41, 26, 1) 0%, rgba(94, 73, 53, 1) 50%, rgba(57, 41, 26, 1) 100%);
}



/*--------------------------------------------------------------------------
   html
---------------------------------------------------------------------------*/

html{
	overflow-y: scroll;
  scroll-behavior: smooth;
	font-size: 62.5%;
}


/*--------------------------------------------------------------------------
   body
---------------------------------------------------------------------------*/

body{
	color: #282438;
	background: #FFF;
	font-family: "Zen Old Mincho", "YuMincho","Hiragino Mincho ProN","Yu Mincho","MS PMincho",serif;
	font-size: 1.6rem;
	line-height: 1.8;
  font-weight: 400;
	-webkit-text-size-adjust: 100%;	
  overflow-x: hidden;
  letter-spacing: .05em;
}

.en{
  font-family: "EB Garamond", serif;
  font-style: normal;
  font-weight: 300;
}
.gothic{
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
}

sub{
  font-size: 50%;
  vertical-align: 3px;
}

.pic{position: relative;}
.cap{
  position: absolute;
  bottom: 1%;
  right: 1%;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--light);
  text-shadow: 0px 0px 3px #000, 0px 0px 3px #000, 0px 0px 3px #000, 0px 0px 3px #000, 0px 0px 3px #000, 0px 0px 1px #000;

}

/*--------------------------------------------------------------------------
   base link
---------------------------------------------------------------------------*/

a{
	outline: none;
}
a:link,
a:visited{
	text-decoration: none;
	color: var(--dark);
}

@media (hover: hover) {
  .ophover{
    transition: opacity ease .3s;	
  }
  .ophover:hover{
    opacity: .7;
  }
}

.phone-link{
  pointer-events: none;
  text-align: center;
}


/*--------------------------------------------------------------------------
   img
---------------------------------------------------------------------------*/
img{
	max-width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;		
}

/*--------------------------------------------------------------------------
   Animation
---------------------------------------------------------------------------*/

.fade,.fade01,.fade02,.fade03,.fade04,.blur,.zoom,
.delay01,.delay02,.delay03,.delay04,.delay05 {
	transition: 1.3s;
}
.fade {
	opacity: 0;
	transform: translate(0,0); 
}
.fade01{
	opacity: 0;
	transform: translate(0,50px); 
}
 .fade02 {
	opacity: 0;
	transform: translate(0,-50px); 
}
.fade03 {
	opacity: 0;
	transform: translate(-50px,0); 
}
.fade04 {
	opacity: 0;
	transform: translate(50px,0); 
}
.blur {
  -webkit-filter: blur(14px);
	filter: blur(14px);  
}
.zoom{
  transform: scale(1.1,1.1); 
}
.delay01{
	transition-delay: 0.3s;		
}
.delay02{
	transition-delay: 0.6s;		
}
.delay03{
	transition-delay: 0.9s;		
}
.delay04{
	transition-delay: 1.2s;		
}
.delay05{
	transition-delay: 1.5s;		
}

 .mv {
	opacity: 1;
  -webkit-filter: blur(0);
	filter: blur(0);
	transform: translate(0,0) scale(1,1); 
}



/*--------------------------------------------------------------------------
   PC
---------------------------------------------------------------------------*/
.sp{
	display: none !important;	
}
/* box-sizing ---*/	
header, footer, section, div, h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, th, td, a, span {
	box-sizing: border-box;
}


/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
#Page{
	position: relative;
	overflow: hidden;	
  /* scroll-margin-top: 80px; */	
}
.inner{
  max-width: 1340px;
	padding: 0 20px;
  margin: 0 auto;
}
.content_inner{
  max-width: 1040px;
	padding: 0 20px;
  margin: 0 auto;
}
.content_inner2{
  max-width: 1240px;
	padding: 0 20px;
  margin: 0 auto;
}
.content_inner3{
  max-width: 1240px;
	padding: 0 20px;
  margin: 0 auto;
}
.layout-box{
  display: flex;
  justify-content: space-between;  
}
.cf:after{
	clear :both;
	content: "";
	display: block;
	height: 0;
}


/*--------------------------------------------------------------------------
   header
---------------------------------------------------------------------------*/

header{
  width: 100%;
  position: absolute;
  z-index: 100;
  transition: .5s;
}
header .ttl{
  position: fixed;
  left: 2.5rem;
  top: 2.5rem;
  z-index: 300;
}

header #Gnav{
  opacity: 0;
  visibility: hidden;
  transition: .5s;
  position: fixed;
  z-index: 100;
  right: auto;
  left: 0;
  bottom: auto;
  top: 0;
  width: 100%;
  height: 100vh;
  padding: 2.5rem 0 4rem;
  background-color:var(--dark);
}

header.open #Gnav{
  transform: none;
  visibility: visible;
  opacity: 1;
}

header .ttl{
  width: 30%;
  max-width: 160px;
}
header .ttl img{width: 100%;}


.btn-trigger{
  position: fixed;
  right: 0;
  top: 0;
  display: block;
  width: 93px;
  height: 93px;
  background: var(--dark);
  cursor: pointer;
  transition: .5s;
  z-index: 300;
}
.btn-trigger.on{background: var(--light);}
.btn-trigger span{
  position: absolute;
    left: 26px;
    display: block;
    width: 40px;
    height: 2px;
    background: var(--light);
    transform-origin: center center;
    transition: .5s;
}
.btn-trigger.on span{background: var(--dark);}
.btn-trigger span:nth-child(1){
  top: 28px;
}
.btn-trigger span:nth-child(2){
  bottom: 50px;
}

.btn-trigger.on span:nth-child(1){
  transform: rotate(45deg);
  top: 38%;
}
.btn-trigger.on span:nth-child(2){
  transform: rotate(-45deg);
  top: 38%;
}
.btn-trigger small{
  color: var(--light);
  font-size: 1.3rem;
  line-height: 1;
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: block;
  text-align: center;

}
.btn-trigger.on small{
  font-size: 0;
	transition: 0; /* 親要素のtransitionを無効化 */
}
.btn-trigger.on small::before{
  display: block;
  text-align: center;
	content: 'CLOSE';
	width: 100%;
	height: 100%;
	position: relative;
  font-size: 1.3rem;
  color: var(--dark);
}





/* ---------------------------------------------------------------------------
    #Gnav	
      グローバルナビゲーション
--------------------------------------------------------------------------- */


#Gnav{overflow-x: auto;}
#Gnav ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 2%;
  max-width: 877px;
  margin: 0 auto;
  width: 100%;
  padding: 90px 30px 30px;
  box-sizing: border-box;
  font-size: 2.3rem;
  letter-spacing: .03em;
}
#Gnav ul:not(.cv-btn-list) a,
#Gnav ul:not(.cv-btn-list) a:visited {
  /* color: #fff; */
	/* color: #fff;
  text-shadow: 0 0 10px rgb(147 23 23 / 50%); */
}

#Gnav > ul {
  width: 100%;  
}
#Gnav > ul > li {
  flex-basis: 48%;
  width: 48%;
  position: relative;
}
#Gnav > ul:first-child > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}
#Gnav > ul:first-child > li {
  margin-top: 0;
}

#Gnav > ul:first-child > li > a {
  position: relative;
  display: block;
  padding: 1.6rem .8rem ;
  color: var(--light);
  transition: .3s;
}
#Gnav > ul:first-child > li > a > span{
  font-family: "EB Garamond", serif;
  font-size: 2.8rem;
  line-height: 1;
  display: block;
}
#Gnav > ul:first-child > li > a small{
  color: var(--light);
}
#Gnav > ul:first-child > li > a::before {
  content: '';
    position: absolute;
    right: 16px;
    top: 60%;
    transform: translateY(-100%);
    display: block;
    width: 15px;
    height: 7px;
    background: url(../../img/common/arrow_w.svg) no-repeat;
    background-size: 100% auto;
    transition: .3s;
    z-index: 1;
}
#Gnav small{
  display: block;
  font-size: 1.6rem;  
  padding-top: .5rem;
}

@media (hover: hover) {
  #Gnav > ul:first-child > li > a:hover {
  background: rgba(255,255,255,.1);
}
}
 #Gnav > ul:first-child > li.current > a {
  background: rgba(255,255,255,.1);
}

.header_cv_area{
  margin-top: 2.4rem;
}
.header_cv_area .cv_en_ttl{
  margin-top: 2.4rem;
}
.header_cv_area .btn_area a{
  text-align: left;
}





/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/
.content {
	position: relative;
	z-index: 5;
  /* max-width: 750px; */
	/* max-width: 375px; */
	margin: 0 auto;
}

/* cv
-----------------------------------------------------------------*/
.cv{
  padding: 110px 0;
  background: var(--dark);
  background-position:  center bottom, left top;
  background-repeat: no-repeat;
  background-size: auto 120px, 100% auto;
  position: relative;
}

.cv_ttl{
  font-size: 5rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.65;
  color: var(--light);
}
.cv_ttl small{
  font-size: 2.2rem;
  font-weight: 600;
  display: block;
  color: #fff;
}

.cv_en_ttl{
  color: var(--lgold);
  text-align: center;
  font-weight: 300;
  letter-spacing: 3px;
}
.cv_txt{
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.4;
  margin-top: 1%;
}
.cv_wrap{
  margin: 2.4rem auto 0;
}
.tel_wrap{
  max-width: 800px;
  margin: auto;
  padding: 1.6rem 0 3.2rem;
  color: var(--light);
}
.tel{
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  gap: 0 1rem;
}
.tel .img{
  max-width: 10%;
  max-width: 77px;
}
.tel .txt a{
  color: var(--light);
  font-size: 5.4rem;
  line-height: .3;
  letter-spacing: 1.6px;
}
.tel .txt a span{
  vertical-align: 3px;
  font-weight: 300;
  padding: 0 4px;
}
.op_hours{
  text-align: center;
  font-size: 1.6rem;
  padding-top: 8px;
}



@media screen and (max-width: 768px) {
  .cv-side {
    max-width: 56px;
    background: var(--dark);
  }

  .cv-side li a {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.2;
    padding: 40px 22px;
    border-radius: calc(66px / 2);
  }
  .cv-side li.request a{
    padding: 55px 22px 44px;
  }
  .cv-side li.reserve a{
    padding: 44px 22px 55px;
  }

}



.cv-side{
  max-width: 96px;
  position: fixed;
  top: 32%;
  transform: translateY(-32%);
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.6rem 0;
}


.cv-btn-list li a,
.cv-side li a{
  font-size: 2rem;
  font-weight: 600;
  padding: 55px 24px;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
  color: var(--dark);
  position: relative;
}

.cv-side li a{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 5px;
  position: relative;
  z-index: 0;
}
.cv-side li a::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
  color: var(--dark);
}
.cv-side li.request a{
  padding: 55px 24px 44px;
  background: linear-gradient(0deg,rgba(185, 171, 139, 1) 0%, rgba(255, 245, 224, 1) 50%, rgba(185, 171, 139, 1) 100%);
}
.cv-side li.reserve a{
  padding: 44px 24px 55px;
  background: linear-gradient(0deg,rgba(199, 163, 83, 1) 0%, rgba(255, 244, 219, 1) 50%, rgba(199, 163, 83, 1) 100%);
}
 .cv-side li.request a::before{
  padding: 55px 24px 44px;
  background: linear-gradient(0deg,rgba(255, 245, 224, 1) 0%, rgba(185, 171, 139, 1) 50%, rgba(255, 245, 224, 1) 100%);
}
.cv-side li.reserve a::before{
  padding: 44px 24px 55px;
  background: linear-gradient(0deg,rgba(255, 244, 219, 1) 0%, rgba(199, 163, 83, 1) 50%, rgba(255, 244, 219, 1) 100%);
}

/* .cv-side li:not(:last-child){
  border-bottom: 1px solid #fff;
} */
.cv-side li.reserve{
  border-bottom: none;
}

.cv-btn-list li.req a,
.cv-side li.req a{
  background: var(--dark);
}

@media (hover: hover) {
  .cv-side li a:hover::before {
  opacity: 1;
}
}

@media screen and (max-width: 768px) {
  .cv-side {
    max-width: 56px;
  }

  .cv-side li a {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.2;
    padding: 40px 22px;
  }
  .cv-side li.request a{
    padding: 55px 22px 44px;
    background: transparent;
    
  }
  .cv-side li.reserve a{
    padding: 44px 22px 55px;
    background: transparent;
  }
 .cv-side li.request a::before{
  background: transparent;
}
.cv-side li.reserve a::before{
  background: transparent;
}

  .cv-side,
#Gnav ul.cv-btn-list{
  width: 75%;
  max-width: calc(100% - 50px);
  top: auto;
  bottom: 0;
  right: auto;
  left: 0;
  z-index: 300;
  transform: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0;
  border-radius: 0;
}
#Gnav ul.cv-btn-list{
  height: 70px;
  background: var(--dark);
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  z-index: 101;
}

.cv-side li,
#Gnav ul.cv-btn-list li{
  width: calc(100% / 2 );
  border-bottom: none;
}
.cv-side li:not(:last-child),
#Gnav ul.cv-btn-list li:not(:last-child){
  border-right: 1px solid var(--light);
}
/* #Gnav > ul:first-child > li:nth-of-type(3){
  flex-basis: 100%;
  width: 100%;
} */
.cv-side li a,
#Gnav ul.cv-btn-list li a{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  height: 70px;
  line-height: 1;
  letter-spacing: 0.2rem;
  vertical-align: middle;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
}
.cv-side li.reserve a,
.cv-side li.request a,
.cv-side li a,
#Gnav ul.cv-btn-list li.reserve a,
#Gnav ul.cv-btn-list li.request a,
#Gnav ul.cv-btn-list li a{
  padding: 6px 0;
}
.cv-side li a span,
#Gnav ul.cv-btn-list li a span{
  display: block;
  padding-top: 25px;
  color: var(--light);
}

.cv-side li.request a span,
#Gnav ul.cv-btn-list li.request a span{
  background: url(../../img/common/ico_ft_nav01.svg) no-repeat center top 0px;
  background-size: 24px auto; 
}
.cv-side li.reserve a span,
#Gnav ul.cv-btn-list li.reserve a span{
  background: url(../../img/common/ico_ft_nav02.svg) no-repeat center top 0px;
  background-size: 24px auto; 
}
.cv-side li.tel a span,
#Gnav ul.cv-btn-list li.tel a span{
  background: url(../../img/common/ico_ft_nav03.svg) no-repeat center top 2px;
  background-size: 20px auto; 
}



}


/* btn_area
-----------------------------------------------------------------*/

.btn_area{
  padding: 0 5px;  
  max-width: 600px;
  margin: auto;
  flex: 1;
}

.btn_area a{
  position: relative;
  display: block;
  padding: 30px 65px;
  text-align: center;
  color: var(--dark);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.4;
  transition: .3s;
  z-index: 0;
}

.btn_area a .diamond{
  width: 24px;
  height: 24px;
  background: var(--light);
  transform: rotate(45deg);
  position: absolute;
  top: 36%;
  right: 24px;
  transition: .6s;
  transition-timing-function: ease;
}
.btn_area a::after{
  content: "";
  position: absolute;
    right: 30px;
    top: 60%;
    transform: translateY(-100%);
    display: block;
    width: 40px;
    height: 15px;
    background: url(../../img/common/arrow.svg) no-repeat;
    background-size: 100% auto;
    transition: .3s;
    z-index: 1;
}
.btn_area a::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
  color: var(--dark);
}
.btn_area.light a{
  color: var(--light);
  max-width: 240px;
}
.btn_area.gold a{
  color: var(--gold);
  max-width: 240px;
}
.btn_area.dark a{
  color: var(--dark);
  max-width: 240px;
}
.btn_area.req a{
  background: var(--req);
}
.btn_area.req a::before {
  background: var(--req_hover);
}
.btn_area.rev a{
  background: var(--rev);
}
.btn_area.rev a::before {
  background: var(--rev_hover);
}
@media (hover: hover) {
  .btn_area a:hover::before {
  opacity: 1;
}
.btn_area a:hover::after{
  right: 24px;
}
.btn_area a:hover .diamond{
  transform: rotate(-45deg);
}
}
.btn_area.ohter{
  max-width: 400px;
  width: fit-content;
}
.btn_area.ohter a{
  font-weight: 400;
  letter-spacing: 4px;
  padding: 0 30px 6px;
  background-repeat: no-repeat;
  background-position: bottom right; /* 下線の初期位置 */
  background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.3s;
}
.btn_area.ohter.w a{
  color: var(--light);
  background-image: linear-gradient(var(--light), var(--light));
}
.btn_area.ohter.b a{
  color: var(--dark);
  background-image: linear-gradient(var(--dark), var(--dark));
}
.btn_area.ohter a .diamond{
  top: 16%;
  right: -17px;
}
.btn_area.ohter.w a .diamond{
  background: var(--gold);
}
.btn_area.ohter.b a .diamond{
  background: var(--gold);
}
.btn_area.ohter a::after {
  top: 74%;
    right: -20px;
}
.btn_area.ohter.w a::after {
    background: url(../../img/common/arrow_light.svg) no-repeat;
}
.btn_area.ohter.b a::after {
    background: url(../../img/common/arrow.svg) no-repeat;
}
@media (hover: hover) {

  .btn_area.ohter a:hover{
    background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 1px; /* 下線の横幅を100%にする */
  }
  .btn_area.ohter a:hover::after {
    right: -25px;
}
}

.btn_wrap{
  display: flex;
  justify-content: center;
  gap: 0 2.4rem;
}
.btn_wrap .btn_area{
  max-width: 400px;
  flex: 1;
  margin: 0;
}






/* bnr_property
--------------------------------*/

.bnr_property{
	padding: 10rem 0;
  text-align: center;
}
.bnr_property h2{
  font-weight: 600;
  font-size: 3.6rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.bnr_property p{
  font-size: 2rem;
  line-height: 1.6;
}

.bnr_property ul{
  max-width: 1000px;
  display: flex;
  justify-content: center;
  gap: 4%;
  margin: 6rem auto 0;
}
.bnr_property ul li{
  width: 50%;
}
.bnr_property ul li a{
  color: #282438;
  font-size: 1.8rem;
}
.bnr_property ul li img{
  margin-bottom: .5rem;
}


/* oricon
-----------------------------------------------------------------*/

.oricon{
  padding: 10rem 0;
}
.oricon .inner{
  max-width: 1000px;
  display: flex;
  flex-direction: column;
}
.oricon .lead{
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 400;
}
.oricon .mark{
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.oricon .mark li{
  max-width: 396px;
}
.oricon .mark + p{
  font-size: 2rem;
  margin: 4rem 0 0;
  text-align: center;
}

.oricon .notes{
  font-size: 1.3rem;
  margin-top: 4rem;
  text-align: center;
}

.ft-cont .oricon{
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}



/* page-notes
--------------------------------*/

.page-notes_wrap{
  background: var(--gra_beige);
  position: relative;
}
.page-notes{
	padding: 60px 0;
}
.page-notes .notes{
	position: relative;
	font-size: 1.2rem;
	line-height: 1.5;
}
.page-notes .notes + .notes{
  margin-top: 1em;
}


/*--------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------*/

footer {
  padding: 8rem 0 0;
  background: var(--light);
  position: relative;
}

/* footer ul{
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
}
footer ul li{
	width: calc((100% - 2px)/3);
}
footer ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 60px;
	color: #fff;
	font-size: 1.8rem;
	text-align: center;
} */


.footer_oricon{
  padding-bottom: 3.2rem;
/*  max-width: 480px;*/
  max-width: 500px;
  margin: auto;  
}
.footer_oricon p{
  text-align: center;
  padding-bottom: 8px;
}
.footer_oricon a{
  font-size: 1.2rem;
  display: block;
  line-height: 1.6;
}

.copyright{
	text-align: center;
	font-size: 1.1rem;
  margin-top: 6rem;
  background: var(--dark);
  color: var(--light);
  padding: 1rem;
}
.co-list{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.co-list li{
  flex-basis: 49%;
}
.co-list li:nth-child(n+2){
  margin-top: 10px;
}



.pagetop {
  position: fixed;
  right: 48px;
    bottom: 24px;
    width: 8rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}
.pagetop.is-on {
  opacity: 1;
  pointer-events: auto;
}
/* .pagetop.is-foot {
  position: absolute;
  bottom: auto;
  top: -4.5rem;
} */



/*--------------------------------------------------------------------------
   下層見出し
---------------------------------------------------------------------------*/

/* page_mv
-----------------------------------------------------------------*/

.page_mv{
  height: 100svh;
  max-height: 1200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page_content_ttl{
  writing-mode: vertical-rl;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem 0;
    position: absolute;
    min-height: 400px;
}
.page_content_ttl.center{
    top: 42%;
    left: 50%;
    transform: translate(-50%, -42%);
    -webkit-transform: translate(-50%, -42%);
    -ms-transform: translate(-50%, -42%);
}
.page_content_ttl .en {
    font-size: 1.8rem;
    letter-spacing: 2px;
    font-weight: 400;
    line-height: 1;
    padding-top: .8rem;
}
.page_content_ttl.w .en {
    color: var(--lgold);
}
.page_content_ttl .ja {
    font-size: 4rem;
    letter-spacing: 3px;
    font-weight: 500;
    line-height: 1.3;
}
.page_content_ttl.w .ja {
    color: var(--light);
}

.page_content_main_txt{
  width: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding-top: 16%;
    color: var(--light);
}
.page_content_main_txt p{
  font-size: 3.2rem;
    letter-spacing: 8px;
}
.page_content_main_txt span{
  display: block;
}
.page_content_main_txt small{
  font-size: 90%;
}
.page_content_main_txt p span:nth-of-type(2) {
    padding-top: 178px;
}




/* 概要、現地案内図見出し
-----------------------------------------------------------------*/

.page_ttl_sub{
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: 400;
}
.page_ttl_sub span{
  display: block;
  color: var(--gold);
  font-size: 1.6rem;
}


/* btn basic
-----------------------------------------------------------------*/

.btn_basic{
  padding: 0 5px;  
  max-width: 646px;
  margin: auto;
}
* + .btn_basic{
  margin-top: min(5vw, 6rem);
}

.btn_basic a{
  position: relative;
  display: block;
  padding: 30px 65px;
  background: linear-gradient(180deg, #1C584F 0%, #053428 100%);
  border-radius: 100px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
  transition: .3s;
}

@media (hover: hover) {
  .btn_basic a:hover{
    background: linear-gradient(180deg, #16534a 0%, #002c22 100%);
  }
}





/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  
  #Page {
    min-width: 320px;	
  }
  
  .pc{
    display: none !important;	
  }
  .sp{
    display: block !important;	
  }
  img.sp,
  br.sp{
    display: inline;
  }
  
  .phone-link{
    pointer-events: auto;  
  }


/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
  .content_inner,
  .content_inner2,
  .content_inner3,
  .inner{
    max-width: none;
  }

/* cv
-----------------------------------------------------------------*/
.cv{
  padding: 4.8em 0;
  background-size: 100% auto;
}

.cv_ttl{
  font-size: 2.8rem;
  line-height: 1.3;
}
.cv_ttl small{
  font-size: 1.6rem;
  letter-spacing: 0;
  margin-bottom: 1.2rem;
}


.cv_txt{
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.4;
  margin-top: 3%;
}

.cv_wrap{
  margin: 2.4rem auto 0;
}
.tel_wrap{
  max-width: 90%;
  padding: 1.6rem 0 3.2rem;
}
.tel{
  gap: 0 .5rem;
}
.tel .img{
  width: 20%;
  max-width: 60px;
}
.tel .txt a{
  font-size: 3.8rem;
}
.tel .txt a span{
  vertical-align: 3px;
  font-weight: 300;
  padding: 0 4px;
}
.op_hours{
  text-align: center;
  font-size: 1.4rem;
  padding-top: 8px;
}

/* btn_area
-----------------------------------------------------------------*/

.btn_wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .8rem 0 ;
}

.btn_area{
  padding: 0 5px;  
}
.btn_area a{
  position: relative;
  display: block;
  /* padding: 16px 3px;
  font-size: 1.4rem; */
  padding: 2.4rem 1.6rem;
        font-size: 2rem;
}
/* .btn_area a::after,
.btn_area a .diamond{display: none;} */

/* .btn_area a::after{
  content: '';
  display: block;
  padding: 0 25px 0 10px;
  background-image: url(../../img/common/arw_nav_header.svg) ;
  background-repeat: no-repeat;
  background-size: 25px;
  position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  width: 25px;
  height: 25px;
} */

.btn_area.ohter{
  max-width: 100%;
  margin: 0;
}
.btn_area.ohter a{
  font-weight: 400;
  text-align: left;
  letter-spacing: 4px;
  padding: 0 0 6px;
  font-size: 2rem;
}
.map .btn_area.ohter{
  margin: auto;
  padding-right: 50px;
}
.map .btn_area.ohter a{
  text-align: center;
}

.btn_area.ohter a .diamond {
  top: 10%;
  right: -50px;
  width: 20px;
  height: 20px;
}
.btn_area.ohter a::after {
    right: -56px;
}


/*--------------------------------------------------------------------------
   header
---------------------------------------------------------------------------*/
  header .ttl{
    position: absolute;
    left: 1.6rem;
    top: 1.6rem;
  }
  header.on{
    pointer-events: auto;  
  }



/* ---------------------------------------------------------------------------
			#Gnav	
				グローバルナビゲーション
--------------------------------------------------------------------------- */
#Gnav{overflow-x: auto;}
  header #Gnav{
    width: 100%;
    height: 100%;
    padding: 3.2rem 0 0;
  }

  #Gnav ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 2%;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  padding: 30px 30px 0;
}
#Gnav > ul:first-child > li > a {
  padding: 2.4rem .5rem 1.6rem;
}
#Gnav > ul:first-child > li > a > span{
  font-family: "EB Garamond", serif;
  font-size: 1.6rem;
  line-height: 1.3;
  display: block;
}
#Gnav > ul:first-child > li > a::before {
    right: 8px;
    top: 60%;
    width: 15px;
    height: 7px;

}
#Gnav small{
  display: block;
  font-size: 1.3rem; 
  padding-top: .3rem; 
  line-height: 1;
}

.header_cv_area{
  margin-top: 4.2rem;
  padding: 0 30px;
  height: 450px;
}
.header_cv_area .btn_wrap{
  flex-direction: column;
  gap: 1.6rem 0;
}
.header_cv_area .btn_wrap .btn_area a{
  padding: 2.4rem 1.6rem;
  font-size: 2rem;
}
.header_cv_area .btn_wrap .btn_area a .diamond,
.header_cv_area .btn_wrap .btn_area a::after{display: block;}

.header_cv_area .btn_wrap .btn_area a::after {
    top: 63%;
}

.header_cv_area .cv_en_ttl{
  margin-top: 2.4rem;
}


  .btn-trigger{
    width: 25%;
    height: 70px;
    bottom: 0;
    top: auto;
    right: 0;
    border-radius: 0;
    border-left: 1px solid var(--light);
  }
  .btn-trigger span{
    left: 26px;
  }
  .btn-trigger small{
  bottom: 16px;

}
.btn-trigger.on small::before{
  display: block;
  text-align: center;
	content: 'CLOSE';
	width: 100%;
	height: 100%;
	position: relative;
  font-size: 1.3rem;
}
.btn-trigger span:nth-child(1) {
        top: 22px;
}
.btn-trigger span:nth-child(2) {
    bottom: 36px;
}
  

/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/
    


/* bnr_property
--------------------------------*/

.bnr_property{
	padding: 5rem 0;
  text-align: center;
}
.bnr_property h2{
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.bnr_property p{
  font-size: 1.6rem;
  line-height: 1.6;
}

.bnr_property ul{
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 3rem auto 0;
}
.bnr_property ul li{
  width: 100%;
}
.bnr_property ul li a{
  font-size: 1.5rem;
}

/* oricon
-----------------------------------------------------------------*/

.oricon{
  padding: 5rem 0;
}
.oricon .lead{
  font-size: 2.4rem;
  margin-bottom: 3rem;
  line-height: 1.5;
}
.oricon .mark{
  display: grid;
  grid-template-columns: auto;
  gap: .8rem;
}
.oricon .mark li{
  max-width: 396px;
}
.oricon .mark + p{
  margin: 3rem 0 0;
  font-size: 1.4rem;
  text-align: justify;
}

.oricon .notes{
  margin-top: 2rem;
  text-align: left;
}



/* page-notes
--------------------------------*/
.page-notes{
	padding: 3.2rem 0;
}
.page-notes .notes{
	margin-bottom: 2rem;
  margin-top: 2%;
	font-size: 1.2rem;
}


/*--------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------*/
  footer{
    padding: 3rem 0 7rem;
  }
  footer ul li a{
    font-size: 1.4rem;
  }
  footer ul li a span{
    display: block;
    padding-top: 25px;
  }

  .co-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 0 1rem;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 100%;
    margin: 0 auto;
  }
  .co-list li{
    flex-basis: 100%;
    width: 100%;
  }
  .footer_oricon{
        padding-bottom: 1.6rem;
  }
  .copyright{
    font-size: 1.1rem;
    margin-top: 3rem;
  }

  .pagetop {
    bottom: 75px;
    width: 60px;
    right: 8px;
  }



  .page_ttl{
    padding: 6% 0 3%;
    font-weight: 600;
    justify-content: center;
    text-align: center;
  }
  .page_ttl h2{
    font-size: 1.2rem;
    line-height: 1.4;
    padding: 0 0 2%;
  }
  .page_ttl dt{
    font-size: 3.2rem;
    line-height: 1;
    margin-top: 5%;
  }
  .page_ttl dd{
    max-width: 100px;
    margin-top: 4%;
  }
  


/*--------------------------------------------------------------------------
   下層見出し
---------------------------------------------------------------------------*/

  .page_mv{
  height: 90svh;
  max-height:unset;
}
.page_content_ttl{
          gap: .8rem 0;
        min-height: auto;
        text-align: left;
        font-size: 3.4rem;
        font-weight: 600;
        line-height: 1;
        margin-bottom: 8%;
}
.page_content_ttl .en {
    font-size: 1.3rem;
        padding-top: .4rem;
}
.page_content_ttl .ja {
    font-size: 2.4rem;
}

.page_content_main_txt{
    min-height: auto;
    padding-top: 48%;
}
.page_content_main_txt p{
  font-size: 2.4rem;
    letter-spacing: 8px;
}
.page_content_main_txt span{
  display: block;
}
.page_content_main_txt small{
  font-size: 90%;
}
.page_content_main_txt p span:nth-of-type(2) {
    padding-top: 100px;
}


  /* btn basic
  -----------------------------------------------------------------*/

  * + .btn_basic{
    margin-top: 3rem;
  }

  .btn_basic a{
    padding: 25px 5px;
    border-radius: 50px;
    font-size: 2rem;
  }








  
}

