@charset "UTF-8";

:root {
  --font-en:"Cormorant Garamond", serif;
 }
html {
  font-size: 62.5%
}
body {
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  line-height: 3.0rem;
  letter-spacing: 0.1rem;
  margin: 0;
  background-color: #f4eee8;
}
body, html {
  height: 100%
}
img{
	max-width: 100%;
	height: auto;
}
.flex-box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
}
.mv_base {
  opacity: 0;
  transition: 1s;
  transform: translate(0, 20px);
  -webkit-transform: translate(0, 20px);
}
.mv {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}


.fv{
	position: relative;
	width: 100vw;
	height: 100vh;
	z-index: 1;
}
.fv .center-logo{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  z-index: 9999;
  text-align: center;
}
.swiper-wrap {
  margin: 0 calc(50% - 50vw);
  max-width: 100vw;
  position: relative;
  overflow: hidden;
}
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
  animation: zoom-in 10s linear 0s 1 normal both;  
}
.slide-img img{
  object-fit: cover;
  height: 100vh;
  width: 100vw;
}
header{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 100;
	padding: 30px 60px 0;
}
header .gmenu{
	padding-right: 80px;
	margin-top: 15px;
}
header .gmenu li:not(:last-child){
	margin-right: 40px;
}
header .gmenu li a{
	color: #fff;
	transition: .3s;
}
header .gmenu li a:hover{
	opacity: .6;
}
.hamburger{
	position: fixed;
	right: 50px;
	top: 48px;
	z-index: 6000;
}
.hamburger-col {
  width: 50px;
  height: 24px;
  position: relative;
  cursor: pointer;
}
.hamburger-col span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #aaa;
  left: 0;
  transition: 0.3s ease;
}
.hamburger-col span:first-child {
  top: 7px;
}
.hamburger-col span:last-child {
  bottom: 7px;
}
/* アクティブ時：×に変化 */
.hamburger-col.active span:first-child {
  transform: rotate(45deg);
  top: 11.5px;
}
.hamburger-col.active span:last-child {
  transform: rotate(-45deg);
  bottom: 11.5px;
}
.btn-reserve{
	position: fixed;
	right: 0;
	top: 50%;
	display: block;
	color: #fff;
	background-color: #968155;
	writing-mode: vertical-rl;
	z-index: 1000;
	padding: 60px 12px;
	font-size: 15px;
	transform: translateY(-50%) translateX(0%);
  -webkit- transform: translateY(-50%) translateX(0%);
  transition: .3s;
}
.btn-reserve:hover{
	background-color: #6d5c39;
}
.btn-reserve.hidden{
	opacity: 0;
	pointer-events: none;
}
.pagenav-wrap{
	display: none;
	background-color: #000;
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 5000;
}
.pagenav-wrap__inner{
	max-width: 750px;
	width: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
.pagenav-wrap h1{
	width: 30%;
}
.pagenav-wrap h1 img{
	width: 70px;
	height: auto;
}
.pagenav-wrap__menu{
	width: 70%;
}
.pagenav-wrap .gmenu li{
	margin-bottom: 20px;
}
.pagenav-wrap .gmenu a{
	color: #fff;
	font-size: 15px;
}
.pagenav-wrap_instagram{
	position: absolute;
	left: 0;
	bottom: 0;
}
.pagenav-wrap_instagram p{
	color: #fff;
	font-size: 13px;
}

/*common*/
.beta-black{
	background-color: #322b28;
	position: relative;
	width: 100%;
}
.beta-black h1,
.beta-black h2,
.beta-black p,
.beta-black span,
.beta-black li,
.beta-black dt,
.beta-black dd{
	color: #fff;
}
.container{
	max-width: 1260px;
	width: 100%;
	margin: 0 auto;
	padding: 0 30px;
}
.ttl-l{
	position: relative;
	display: inline-block;
	padding-right: 80px;
}
.ttl-l::after{
	position: absolute;
	right: 0;
	top: 13px;
	content: "";
	display: block;
	width: 60px;
	height: 1px;
	background-color: #3c3c3c;
}
.ttl-l h1{
	position: relative;
	font-weight: 400;
	font-size: 22px;
	line-height: 1;
	margin-bottom: 5px;
}
.ttl-l span{
	font-weight: var(--font-en);
	font-size: 12px;
	line-height: 1;
	font-weight: 300;
	letter-spacing: 0;
}

@media only screen and (max-width: 991px) {
	body {
	  font-size: 1.3rem;
	  line-height: 2.6rem;
	}
	.fv .center-logo{
		width: 74px;
	}
	header{
		padding: 20px 30px 0;
	}
	header h1{
		width: 170px;
	}
	header .gmenu{
		margin-top: 10px;
	}
	header .gmenu li:not(:last-child){
		margin-right: 25px;
	}
	header .gmenu li a{
		font-size: 13px;
	}
	.hamburger{
		right: 30px;
		top: 34px;
	}
	.btn-reserve{
		padding: 46px 6px;
		font-size: 14px;
	}
	.ttl-l{
		padding-right: 60px;
	}
	.ttl-l::after{
		top: 11px;
		width: 46px;
	}
	.ttl-l h1{
		font-size: 20px;
		margin-bottom: 0;
	}
	.ttl-l span{
		font-size: 11px;
	}
	.pagenav-wrap__inner{
		padding: 0 60px;
	}
	.pagenav-wrap h1 img{
		width: 60px;
	}
	.pagenav-wrap_instagram{
		left: 60px;
	}
}
@media only screen and (max-width: 767px) {
	body {
	  line-height: 2.4rem;
	}
	header{
		padding: 15px 15px 0;
	}
	header h1{
		width: 150px;
	}
	header .gmenu{
		display: none;
	}
/*	header .gmenu li:not(:last-child){
		margin-right: 25px;
	}
	header .gmenu li a{
		font-size: 13px;
	}*/
	.hamburger{
		right: 20px;
		top: 24px;
	}
	.btn-reserve{
		right: auto;
		top: auto;
		left: 0;
		bottom: 0;
		width: 100%;
		padding: 15px 0;
		font-size: 15px;
		transform: translateY(0%) translateX(0%);
  	-webkit- transform: translateY(0%) translateX(0%);
  	writing-mode: horizontal-tb;
  	text-align: center;
	}
	.ttl-l{
		padding-right: 55px;
	}
	.ttl-l::after{
		top: 12px;
		width: 40px;
	}
	.ttl-l span{
		font-size: 10px;
	}
	.pagenav-wrap__inner{
		padding: 0 60px;
	}
	.pagenav-wrap h1{
		width: 100%;
		text-align: center;
	}
	.pagenav-wrap h1 img{
		width: 50px;
	}
	.pagenav-wrap__menu{
		width: 100%;
		margin-top: 40px;
	}
	.pagenav-wrap .gmenu{
		text-align: center;
	}
	.pagenav-wrap .gmenu li{
		margin-bottom: 15px;
	}
	.pagenav-wrap .gmenu a{
		font-size: 14px;
	}
	.pagenav-wrap .foot-right__contact{
		margin-top: 25px;
	}
	.pagenav-wrap_instagram{
		position: relative;
		left: auto;
		bottom: auto;
		justify-content: center;
		margin-top: 20px;
	}
}





.concept{
	padding: 220px 0;
	position: relative;
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
}
.concept-inner{
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	padding-right: 120px;
}
.concept h2{
	font-size: 20px;
	line-height: 40px;
	font-weight: 400;
	margin-bottom: 50px;
}
.concept-title span{
	font-size: 15px;
	font-weight: 500;
}
.concept-title h1{
	font-size: 30px;
	font-weight: 500;
}
.concept-text p{
	font-size: 15px;
	line-height: 40px;
	margin-bottom: 40px;
}
.concept-img01{
	position: absolute;
	left: 0;
	bottom: 120px;
	width: 23vw;
	max-width: 350px;
}
.concept-img02{
	position: absolute;
	right: 0;
	top: 110px;
	width: 22vw;
	max-width: 340px;
}
.concept-img03{
	position: absolute;
	right: 200px;
	bottom: 0;
	width: 17vw;
	max-width: 250px;
}
.room-list{
	margin-top: 200px;
	padding-bottom: 200px;
}
.room-list__col{
	width: 30%;
	position: relative;
}
.room-list__col p{
	writing-mode: vertical-rl;
	font-size: 25px;
	position: absolute;
	top: -10px;
	left: 20px;
	z-index: 100;
}
.room-list__icon{
	position: absolute;
	right: -15px;
	bottom: 20px;
}
.room-list__col a{
	overflow: hidden;
	display: block;
	z-index: 1;
}
.room-list__col a img{
	display: block;
	transition: transform 0.5s ease;
	transition: .5s;
}
.room-list__col a:hover img {
  transform: scale(1.1);
  opacity: .6;
}

@media only screen and (max-width: 991px) {
	.concept{
		padding: 180px 30px;
	}
	.concept-inner{
		padding-right: 0;
		padding-left: 30px;
	}
	.concept-inner__wrap{
		justify-content: flex-start;
	}
	.concept h2{
		font-size: 17px;
		line-height: 34px;
		margin-bottom: 35px;
	}
	.concept-title span{
		font-size: 14px;
	}
	.concept-title h1{
		font-size: 26px;
	}
	.concept-text{
		padding-left: 40px;
	}
	.concept-text p{
		font-size: 14px;
		line-height: 34px;
		margin-bottom: 25px;
	}
	.room-list{
		margin-top: 120px;
		padding-bottom: 150px;
	}
	.room-list__col{
		width: 30%;
		position: relative;
	}
	.room-list__col p{
		font-size: 20px;
		left: 15px;
	}
	.room-list__icon{
		right: -10px;
		bottom: 15px;
		width: 66px;
	}
}
@media only screen and (max-width: 767px) {
	.concept{
		padding: 100px 30px;
	}
	.concept-inner{
		padding-left: 0;
	}
	.concept-inner__wrap{
		display: block;
	}
	.concept h2{
		font-size: 15px;
		line-height: 30px;
		margin-bottom: 40px;
	}
	.concept-title span{
		font-size: 13px;
	}
	.concept-title h1{
		font-size: 22px;
		margin-top: 5px;
	}
	.concept-text{
		padding-left: 0;
		margin-top: 30px;
	}
	.concept-text p{
		font-size: 13px;
		line-height: 28px;
		margin-bottom: 20px;
	}
	.concept-text p br{
		display: none;
	}
	.concept-photo{
		display: flex;
		justify-content: space-between;
		margin-top: 50px;
	}
	.concept-img01{
		left: auto;
		bottom: auto;
		width: 45vw;
		max-width: 350px;
		position: relative;
	}
	.concept-img02{
		top: 50px;
		width: 35vw;
	}
	.concept-img03{
		position: relative;
		right: auto;
		bottom: auto;
		width: 30vw;
		padding-top: 20vw;
	}
	.room-list{
		margin-top: 50px;
		padding-bottom: 100px;
	}
	.room-list__col{
		width: 100%;
		max-width: 250px;
		margin: 0 auto;
	}
	.room-list__col:not(:last-child){
		margin-bottom: 30px;
	}
	.room-list__col p{
		font-size: 24px;
		left: 20px;
	}
	.room-list__icon{
		width: 76px;
	}

}




.charm{
	padding-top: 200px;
}
.charm-col{
	margin-top: 80px;
	align-items: center;
}
.charm-col__text{
	width: 53%;
	padding-right: 120px;
}
.charm-col__text h2{
	font-weight: 400;
	font-size: 20px;
	line-height: 38px;
}
.charm-col__text h2 small{
	font-size: 13px;
}
.charm-col__text span{
	font-size: 13px;
}
.charm-col__text p{
	margin-top: 35px;
	letter-spacing: 0;
}
.charm-col figure{
	width: 47%;
}
.charm-col.rev .charm-col__text{
	order: 2;
	padding-left: 120px;
	padding-right: 0;
}
.charm-col.rev figure{
	order: 1;
}
@media only screen and (max-width: 991px) {
	.charm{
		padding-top: 150px;
	}
	.charm-col{
		margin-top: 70px;
	}
	.charm-col__text{
		width: 53%;
		padding-right: 60px;
	}
	.charm-col__text h2{
		font-size: 17px;
		line-height: 26px;
	}
	.charm-col__text h2 small{
		font-size: 12px;
	}
	.charm-col__text span{
		font-size: 12px;
	}
	.charm-col__text p{
		margin-top: 25px;
	}
	.charm-col figure{
		width: 47%;
	}
	.charm-col.rev .charm-col__text{
		padding-left: 60px;
	}
}
@media only screen and (max-width: 767px) {
	.charm{
		padding-top: 100px;
	}
	.charm-col{
		margin-top: 60px;
	}
	.charm-col__text{
		width: 100%;
		padding-right: 0;
		order: 2;
		margin-top: 10px;
	}
	.charm-col__text h2{
		font-size: 16px;
	}
	.charm-col__text h2 small{
		font-size: 10px;
	}
	.charm-col__text span{
		font-size: 11px;
	}
	.charm-col__text p{
		margin-top: 15px;
	}
	.charm-col figure{
		width: 100%;
		order: 1;
	}
	.charm-col.rev .charm-col__text{
		padding-left: 0;
	}
}


.meals{
	padding-top: 200px;
}
.meals-col{
	max-width: 800px;
	width: 100%;
	margin: 0 auto 100px;
}
.meals-col h2{
	font-size: 30px;
	font-weight: 400;
	letter-spacing: 0;
	font-family: var(--font-en);
	text-align: center;
	margin-bottom: 30px;
}
.meals-col.meals-morning{
	margin-top: 50px;
}
.meals-col.meals-morning p{
	text-align: center;
}
.meals-col__text,
.meals-col__price{
	max-width: 700px;
	width: 100%;
	margin: 35px auto 0;
}
.meals-col__text h3{
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 25px;
}
.meals-col__price{
	border-top: 2px solid #e1e1d6;
	border-bottom: 2px solid #e1e1d6;
	padding: 35px 30px;
	justify-content: flex-start;
}
.meals-col__price dt{
	width: 12%;
}
.meals-col__price dd{
	width: 88%;
	line-height: 26px;
}

.bg-photo{
	width: 100vw;
	height: 80vh;
	background: url(../images/bg-photo.jpg) center no-repeat;
	background-size: cover;
}
@media only screen and (max-width: 991px) {
	.meals{
		padding-top: 150px;
	}
	.meals-col{
		margin: 0 auto 70px;
	}
	.meals-col h2{
		font-size: 26px;
		margin-bottom: 25px;
	}
	.meals-col.meals-morning{
		margin-top: 40px;
	}
	.meals-col__text,
	.meals-col__price{
		max-width: 640px;
		width: 100%;
		margin: 25px auto 0;
	}
	.meals-col__text h3{
		font-size: 18px;
		margin-bottom: 20px;
	}
	.meals-col__price{
		padding: 20px 15px;
	}
	.meals-col__price dd{
		line-height: 24px;
	}
	.bg-photo{
		height: 65vh;
	}
}
@media only screen and (max-width: 767px) {
	.meals{
		padding-top: 100px;
	}
	.meals-col{
		margin: 0 auto 50px;
	}
	.meals-col h2{
		font-size: 22px;
		margin-bottom: 20px;
	}
	.meals-col.meals-morning{
		margin-top: 30px;
	}
	.meals-col__text,
	.meals-col__price{
		margin: 15px auto 0;
	}
	.meals-col__text h3{
		font-size: 16px;
		margin-bottom: 15px;
	}
	.meals-col__price{
		padding: 15px 0;
	}
	.meals-col__price{
		width: 100%;
	}
	.meals-col__price dd{
		line-height: 23px;
		font-size: 12px;
		letter-spacing: 0;
		width: 100%;
		margin-top: 5px;
	}
	.bg-photo{
		height: 60vw;
	}
}


.access{
	padding-top: 200px;
}
.access .ttl-l::after{
	background-color: #fff;
}
.access-wrap__col{
	width: 75%;
}
.gmap{
	width: 100%;
	height: 440px;
}
.gmap iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  width: 100%;
  height: 440px;
}
.access-info{
	margin-top: 40px;
}
.access-info__name h2{
	font-weight: 400;
	font-size: 24px;
	letter-spacing: 0;
}
.access-info__name span{
	font-family: var(--font-en);
	font-size: 11px;
	font-weight: 200;
	letter-spacing: 0.2rem;
}
.access-info__name p{
	line-height: 22px;
	margin-top: 25px;
}
.access-info__traffic{
	width: 60%;
}
.access-info__traffic dl{
	margin-bottom: 20px;
}
.access-info__traffic dt{
	background-color: #706b69;
	display: inline-block;
	padding: 3px 4px 4px;
	line-height: 1;
	letter-spacing: 0;
	font-weight: 400;
}
.access-info__traffic dd{
	font-size: 13px;
	line-height: 26px;
	margin-top: 5px;
}
.access-info__traffic dd ul{
	justify-content: flex-start;
}
.access-info__traffic dd li{
	margin-right: 10px;
	padding-right: 20px;
	position: relative;
}
.access-info__traffic dd li::after{
	content: "▶︎";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	color: #fff;
	font-size: 8px;
}
.access-info__traffic dd li.kakko{
	margin-left: -.5rem;
}
.access-info__traffic dd li.kakko::after{
	right: 5px;
}
@media only screen and (max-width: 991px) {
	.access{
		padding-top: 150px;
	}
	.access-wrap__col{
		width: 70%;
	}
	.gmap{
		height: 400px;
	}
	.gmap iframe {
	  height: 400px;
	}
	.access-info{
		margin-top: 30px;
	}
	.access-info__name h2{
		font-size: 22px;
	}
	.access-info__name span{
		font-size: 10px;
	}
	.access-info__name p{
		line-height: 22px;
		margin-top: 10px;
	}
	.access-info__traffic{
		width: 100%;
		margin-top: 35px;
	}
	.access-info__traffic dd{
		font-size: 12px;
		line-height: 22px;
	}
}
@media only screen and (max-width: 767px) {
	.access{
		padding-top: 100px;
	}
	.access-wrap__col{
		width: 100%;
		margin-top: 40px;
	}
	.gmap{
		height: 350px;
	}
	.gmap iframe {
	  height: 350px;
	}
	.access-info__name h2{
		font-size: 20px;
	}
	.access-info__name span{
		letter-spacing: 0.12rem;
	}
	.access-info__name p{
		line-height: 21px;
	}
	.access-info__traffic{
		margin-top: 25px;
	}
	.access-info__traffic dl{
		margin-bottom: 15px;
	}
	.access-info__traffic dd{
		font-size: 12px;
		line-height: 22px;
	}
}


.t-news{
	padding-top: 200px;
	padding-bottom: 150px;
	position: relative;
}
.t-news .ttl-l::after{
	background-color: #fff;
}
.t-news .btn-more{
	color: #fff;
	position: absolute;
	right: 30px;
	top: 235px;
	font-size: 15px;
	line-height: 1;
	font-family: var(--font-en);
	font-weight: 200;
	padding-right: 15px;
}
.t-news .btn-more::before {
  background-image: url(../images/icon-arrow2.svg);
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  right: 0;
  top: 6px;
  height: 5px;
  width: 6px;
}
.news-wrap{
	margin-top: 50px;
}
.news-wrap::after{
	content:"";
  display: block;
  width:30%;
}
.news-wrap__col{
	width: 30%;
}
.news-wrap__col ul{
	justify-content: flex-start;
	margin: 10px 0;
}
.news-wrap__col li{
	font-size: 13px;
	letter-spacing: 0;
	line-height: 1;
}
.news-wrap__col li:first-child{
	margin-right: 15px;
	padding-right: 15px;
	position: relative;
}
.news-wrap__col li:first-child::after{
	display: block;
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: 14px;
	background-color: #706b69;
}
.news-wrap__col p{
	font-size: 15px;
	line-height: 28px;
	letter-spacing: 0;
}
.news-wrap__col figure{
	overflow: hidden;
}
.news-wrap__col figure img{
	display: block;
	transition: transform 0.5s ease;
	transition: .5s;
}
.news-wrap__col:hover img {
  transform: scale(1.1);
  opacity: .6;
}

@media only screen and (max-width: 991px) {
	.t-news{
		padding-top: 150px;
		padding-bottom: 100px;
	}
	.t-news .btn-more{
		top: 185px;
		font-size: 14px;
	}
	.news-wrap{
		margin-top: 40px;
	}
	.news-wrap__col{
		width: 31%;
	}
	.news-wrap__col li{
		font-size: 12px;
	}
	.news-wrap__col li:first-child{
		margin-right: 12px;
		padding-right: 12px;
	}
	.news-wrap__col li:first-child::after{
		height: 13px;
	}
	.news-wrap__col p{
		font-size: 14px;
		line-height: 24px;
	}
}
@media only screen and (max-width: 767px) {
	.t-news{
		padding-top: 100px;
		padding-bottom: 70px;
	}
	.t-news .btn-more{
		top: 185px;
		font-size: 14px;
		display: none;
	}
	.news-wrap__col{
		width: 100%;
		max-width: 350px;
		margin: 0 auto;
	}
	.news-wrap__col:not(:last-child){
		margin-bottom: 35px;
	}
}

.instagram{

}
.instagram-inner{
	border-top: 1px solid #706b69;
	padding-top: 80px;
	padding-bottom: 80px;
	align-items: stretch;
}
.instagram-title{
	width: 27%;
	text-align: center;
	padding: 30px 40px;
}
.instagram-title img{
	width: 20px;
	height: auto;
}
.instagram-title h2{
	font-size: 24px;
	line-height: 14px;
	font-family: var(--font-en);
	font-weight: 200;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 8px;
}
.instagram-title h2::after{
	display: block;
	content: "";
	width: 20px;
	height: 1px;
	background-color: #67625d;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -10px;
}
.instagram-title p{
	font-size: 14px;
	font-family: var(--font-en);
	font-weight: 200;
}
.instagram-title a{
	width: 100%;
	color: #fff;
	font-size: 15px;
	font-family: var(--font-en);
	font-weight: 200;
	text-align: center;
	display: block;
	padding: 7px 0;
	border: 1px solid #706b69;
	margin-top: 35px;
}
.instagram-feed{
	width: 73%;
}
.instagram-feed ul{
	height: 100%;
}
.instagram-feed li{
	width: 22%;
	height: 100%;
	background-color: #eee;
}
#sb_instagram{
	padding-bottom: 0!important;
}
#sb_instagram #sbi_images{
	padding: 0!important;
}
@media only screen and (max-width: 991px) {
	.instagram-inner{
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.instagram-title{
		width: 25%;
		padding: 10px 30px;
	}
	.instagram-title h2{
		font-size: 22px;
		padding-bottom: 20px;
		margin-bottom: 8px;
	}
	.instagram-title p{
		font-size: 13px;
	}
	.instagram-title a{
		font-size: 14px;
		padding: 5px 0;
		margin-top: 25px;
	}
	.instagram-feed{
		width: 75%;
	}
	.instagram-feed li{
		width: 22.5%;
	}
}
@media only screen and (max-width: 767px) {
	.instagram-inner{
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.instagram-title{
		width: 100%;
		padding: 0;
	}
	.instagram-title h2{
		font-size: 18px;
	}
	.instagram-title p{
		font-size: 12px;
	}
	.instagram-title a{
		margin: 20px auto 0;
		max-width: 200px;
		width: 100%;
	}
	.instagram-feed{
		width: 100%;
		margin-top: 10px;
	}
	.instagram-feed li{
		width: 48%;
		height: 200px;
		margin-top: 20px;
	}
}

.thanks{
	padding-top: 140px;
	padding-bottom: 140px;
}
.thanks-wrap h1{
	font-size: 24px;
	font-family: var(--font-en);
	font-weight: 300;
	letter-spacing: 0;
}
.thanks-wrap-detail{
	width: 80%;
}
.thanks-wrap-detail ul{
	justify-content: flex-start;
}
.thanks-wrap-detail li{
	position: relative;
}
.thanks-wrap-detail li::after{
	content: "／";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
}
.thanks-wrap-detail .thanks-large,
.thanks-wrap-detail .thanks-mid{
	margin-bottom: 40px;
}
.thanks-wrap-detail .thanks-large li{
	padding-right: 20px;
	margin-right: 5px;
}
.thanks-wrap-detail .thanks-large li::after{
	font-size: 15px;
}
.thanks-wrap-detail .thanks-mid li{
	padding-right: 17px;
	margin-right: 2px;
	font-size: 13px;
}
.thanks-wrap-detail .thanks-mid li::after{
	font-size: 13px;
}
.thanks-wrap-detail .thanks-small li{
	padding-right: 14px;
	margin-right: 2px;
	font-size: 11px;
}
.thanks-wrap-detail .thanks-small li::after{
	font-size: 11px;
}
.thanks-wrap-detail li:last-child::after{
	display: none!important;
}
@media only screen and (max-width: 991px) {
	.thanks{
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.thanks-wrap h1{
		font-size: 20px;
	}
	.thanks-wrap-detail{
		width: 80%;
	}
	.thanks-wrap-detail .thanks-large,
	.thanks-wrap-detail .thanks-mid{
		margin-bottom: 30px;
	}
	.thanks-wrap-detail .thanks-large li::after{
		font-size: 14px;
	}
	.thanks-wrap-detail .thanks-mid li{
		font-size: 12px;
	}
	.thanks-wrap-detail .thanks-mid li::after{
		font-size: 12px;
	}
	.thanks-wrap-detail .thanks-small li{
		font-size: 10px;
	}
	.thanks-wrap-detail .thanks-small li::after{
		font-size: 10px;
	}
}
@media only screen and (max-width: 767px) {
	.thanks{
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.thanks-wrap h1{
		font-size: 18px;
	}
	.thanks-wrap-detail{
		width: 100%;
		margin-top: 20px;
	}
	.thanks-wrap-detail .thanks-large,
	.thanks-wrap-detail .thanks-mid{
		margin-bottom: 20px;
	}
	.thanks-wrap-detail .thanks-large li::after{
		font-size: 13px;
	}
	.thanks-wrap-detail .thanks-mid li{
		font-size: 11px;
		line-height: 22px;
	}
	.thanks-wrap-detail .thanks-mid li::after{
		font-size: 11px;
		line-height: 22px;
	}
	.thanks-wrap-detail .thanks-small li{
		font-size: 10px;
		line-height: 20px;
	}
	.thanks-wrap-detail .thanks-small li::after{
		font-size: 10px;
		line-height: 20px;
	}
}


footer{
	padding: 170px 0;
}
footer .container{
	align-items: stretch;
}
.foot-left{
	position: relative;
}
.foot-left__logo{
	margin-bottom: 40px;
}
.foot-left__add{
	font-size: 14px;
	line-height: 23px;
	margin-bottom: 20px;
}
.foot-left a{
	justify-content: flex-start;
	align-items: center;
	transition: .3s;
}
.foot-left a:hover{
	opacity: .6;
}
.foot-left a p{
	margin-left: 5px;
	font-size: 16px;
	font-family: var(--font-en);
	font-weight: 200;
}
.foot-left a img{
	width: 12px;
	height: auto;
}
.foot-left_copyright{
	font-size: 12px;
	font-family: var(--font-en);
	color: #fff;
	font-weight: 200;
	position: absolute;
	left: 0;
	bottom: 0;
}
.foot-right__memnu{
	margin-bottom: 25px;
}
.foot-right__memnu li:not(:last-child){
	margin-right: 35px;
}
.foot-right__memnu li a{
	color: #fff;
	transition: .3s;
}
.foot-right__memnu li a:hover{
	opacity: .6;
}
.foot-right__instacol{
	justify-content: flex-end;
}
.foot-right__instagram{
	justify-content: flex-start;
	align-items: center;
	transition: .3s;
}
.foot-right__instagram:hover{
	opacity: .6;
}
.foot-right__instagram p{
	font-family: var(--font-en);
	font-weight: 200;
	margin-left: 10px;
}
.foot-right__contact{
	margin-top: 55px;
}
.foot-right__contact{
	border-bottom: 1px solid #554f4b;
}
.foot-right__contact a{
	color: #fff;
	display: block;
	border-top: 1px solid #554f4b;
	padding: 30px 20px;
	position: relative;
	transition: .3s;
}
.foot-right__contact a::before {
  background-image: url(../images/icon-arrow2.svg);
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  height: 5px;
  width: 6px;
  margin-top: -2.5px;
}
.foot-right__contact a:hover{
	background-color: #483d38;
}
.copyright-sp,
.foot-left__instacol{
	display: none;
}
@media only screen and (max-width: 991px) {
	footer{
		padding: 120px 0;
	}
	.foot-left__logo{
		margin-bottom: 20px;
		width: 170px;
	}
	.foot-left__add{
		font-size: 13px;
		line-height: 21px;
		margin-bottom: 10px;
	}
	.foot-left a p{
		font-size: 14px;
	}
	.foot-left a img{
		width: 11px;
	}
	.foot-left_copyright{
		font-size: 11px;
	}
	.foot-right__memnu{
		margin-bottom: 20px;
	}
	.foot-right__memnu li:not(:last-child){
		margin-right: 30px;
	}
	.foot-right__contact{
		margin-top: 45px;
	}
	.foot-right__contact a{
		padding: 20px 15px;
	}
	.foot-right__contact a::before {
	  right: 15px;
	}
}
@media only screen and (max-width: 767px) {
	footer{
		padding: 70px 0;
	}
	.foot-left,
	.foot-right{
		width: 100%;
	}
	.foot-right{
		margin-top: 20px;
	}
	.foot-left__logo{
		width: 140px;
	}
	.foot-left__add{
		font-size: 12px;
		line-height: 20px;
	}
	.foot-left a p{
		font-size: 14px;
	}
	.foot-left a img{
		width: 11px;
	}
	.foot-left_copyright{
		display: none;
	}
	.foot-right__memnu{
		display: none;
	}
	.foot-right__instacol{
		display: none;
	}
	.foot-right__contact{
		margin-top: 10px;
	}
	.foot-right__contact a{
		padding: 15px 5px;
	}
	.foot-right__contact a::before {
	  right: 15px;
	}
	.copyright-sp{
		display: block;
		font-size: 11px;
		font-family: var(--font-en);
		color: #fff;
		font-weight: 200;
		text-align: center;
		margin-top: 20px;
	}
	.foot-left__instacol{
		display: block;
		position: absolute;
		right: 0;
		bottom: 0;
	}
}

/*.slick-initialized .slick-slide img{
	height: 340px;
}*/


/*@media only screen and (max-width: 991px) {
	.slick-initialized .slick-slide img{
		height: 260px;
	}
}
@media only screen and (max-width: 767px) {
}*/


/*sub common*/
.fv__text{
	position: absolute;
	left: 10%;
	top: 32%;
	z-index: 1000;
}
.fv__text h1{
	font-size: 28px;
	color: #fff;
	font-weight: 400;
}
.fv__text span{
	font-size: 17px;
	font-family: var(--font-en);
	color: #fff;
}
.fv__text p{
	font-size: 16px;
	line-height: 34px;
	color: #fff;
	margin-top: 45px;
}
.contents-inner{
	max-width: 860px;
	width: 100%;
	margin: 0 auto;
	padding: 0 30px;
}
.contact .fv,
.category .fv,
.single .fv{
	height: 100px;
}
.contact .fv .st0,
.category .fv .st0,
.single .fv .st0{
	fill: #000;
}
.contact .fv header .gmenu li a,
.category .fv header .gmenu li a,
.single .fv header .gmenu li a{
	color: #000;
}
.contact .fv .hamburger-col span,
.category .fv .hamburger-col span,
.single .fv .hamburger-col span{
	background-color: #000;
}
.ttl-m{
	text-align: center;
	margin-top: 70px;
}
.ttl-m h1{
	font-size: 23px;
	font-weight: 400;
}
.ttl-m span{
	font-family: var(--font-en);
	font-weight: 200;	
	letter-spacing: 0;
}
@media only screen and (max-width: 991px) {
	.fv__text{
		left: 10%;
		top: 26%;
	}
	.fv__text h1{
		font-size: 26px;
	}
	.fv__text span{
		font-size: 15px;
	}
	.fv__text p{
		font-size: 15px;
		line-height: 30px;
		margin-top: 30px;
	}
	
	.contact .fv header h1 svg,
	.category .fv header h1 svg{
		width: 170px;
		height: auto;
	}
	.ttl-m{
		margin-top: 50px;
	}
	.ttl-m h1{
		font-size: 20px;
	}
}
@media only screen and (max-width: 767px) {
	.fv__text{
		left: 7%;
		top: 16%;
	}
	.fv__text h1{
		font-size: 18px;
	}
	.fv__text span{
		font-size: 13px;
	}
	.fv__text p{
		font-size: 12px;
		line-height: 24px;
		margin-top: 15px;
	}
	.contact .fv,
	.category .fv{
		height: 80px;
	}
	.contact .fv header h1 svg,
	.category .fv header h1 svg{
		width: 150px;
		height: auto;
	}
	.ttl-m{
		margin-top: 30px;
	}
	.ttl-m h1{
		font-size: 18px;
	}
}



/*rooms*/
.rooms .fv{
	background: url(../images/rooms-fv.jpg) no-repeat center;
	background-size: cover;
	width: 100%;
	height: 690px;
	position: relative;
}

.rooms-info{
	padding-top: 100px;
	padding-bottom: 200px;
}
.rooms-info figure{
	margin-bottom: 100px;
}

.rooms-col:not(:last-child){
	margin-bottom: 150px;
}
.rooms-col__name{
	text-align: center;
	margin-bottom: 20px;
}
.rooms-col__name h2{
	font-size: 24px;
	line-height: 1;
	color: #fff;
	font-weight: 400;
}
.rooms-col__name span{
	font-family: var(--font-en);
	color: #fff;
	font-weight: 200;
}
.rooms-col__img{
	position: relative;
}
.slick-initialized .slick-slide{
	margin-right: 0!important;
}
.slick-prev, .slick-next{
	width: 37px!important;
	height: 72px!important;
}
.slick-prev:before, .slick-next:before{
	display: none;
}
.custom-prev,
.custom-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  opacity: .3;
}
.custom-prev {
  left: -56px!important
}
.custom-next {
  right: -56px!important;
}
.rooms-col p{
	margin-top: 30px;
	position: relative;
	padding-bottom: 25px;
	margin-bottom: 25px;
}
.rooms-col p::after{
	position: absolute;
	content: "";
	display: block;
	bottom: 0;
	left: 0;
	width: 20px;
	height: 1px;
	background-color: #706b69;
}
.rooms-col__detail{
	align-items: stretch;
}
.rooms-col__spec{
	color: #fff;
	font-size: 13px;
	line-height: 28px;
	width: 43%;
	letter-spacing: 0;
}
.rooms-col__detail a{
	color: #fff;
	border-top: 1px solid #706b69;
	border-bottom: 1px solid #706b69;
	width: 57%;
	align-items: center;
	padding-left: 20px;
	position: relative;
	transition: .3s;
}
.rooms-col__detail a::after {
  background-image: url(../images/icon-window.svg);
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  height: 13px;
  width: 13px;
  margin-top: -6.5px;
}
.rooms-col__detail a:hover{
	background-color: #483d38;
}
.amenities{
	padding-top: 200px;
	padding-bottom: 130px;
}
.amenities-wrap__col{
	width: 63%;
}
.amenities-wrap__col dl{
	margin-bottom: 30px;
}
.amenities-wrap__col dt{
	background-color: #e0d8d0;
	display: inline-block;
	padding: 3px 4px 4px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
}
.amenities-wrap__col dd{
	letter-spacing: 0;
}
.facility-wrap{
	margin-top: 100px;
}
.facility-wrap__col{
	width: 46%;
	margin-bottom: 70px;
}
.facility-wrap__col h1{
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	margin-top: 10px;
}
.facility-wrap__col span{
	font-size: 13px;
	line-height: 1;
	font-family: var(--font-en);
	letter-spacing: 0;
}
.facility-wrap__col p{
	margin-top: 10px;
}
/*@media only screen and (max-width: 1199px) {
	.rooms-col{
		padding: 0 60px;
	}
}*/
.popup{
	display: none;
}
.popup-wrap{
	padding: 60px 40px 0 40px;
}
@media only screen and (max-width: 991px) {
	.rooms .fv{
		height: 65vw;
	}
	.rooms-info{
		padding-top: 80px;
		padding-bottom: 150px;
	}
	.rooms-info figure{
		margin-bottom: 70px;
	}
	.rooms-col{
		width: 85%;
		margin-left: auto;
		margin-right: auto;
	}
	.rooms-col:not(:last-child){
		margin-bottom: 100px;
	}
	.rooms-col__name h2{
		font-size: 22px;
	}
	.slick-prev, .slick-next{
		width: 28px!important;
		height: 55px!important;
	}
	.custom-prev {
	  left: -45px!important
	}
	.custom-next {
	  right: -45px!important;
	}
	.rooms-col p{
		margin-top: 20px;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	.rooms-col__spec{
		font-size: 12px;
		line-height: 26px;
		width: 46%;
	}
	.rooms-col__detail a{
		width: 54%;
	}
	.amenities{
		padding-top: 150px;
		padding-bottom: 100px;
	}
	.amenities-wrap__col dl{
		margin-bottom: 25px;
	}
	.facility-wrap{
		margin-top: 70px;
	}
	.facility-wrap__col{
		width: 47%;
		margin-bottom: 50px;
	}
	.facility-wrap__col h1{
		font-size: 18px;
	}
	.facility-wrap__col span{
		font-size: 12px;
	}
	.facility-wrap__col p{
		margin-top: 10px;
	}
}
@media only screen and (max-width: 845px) {
	.amenities-wrap__col{
		width: 100%;
		margin-top: 40px;
	}
}
@media only screen and (max-width: 767px) {
	.rooms .fv{
		height: 75vw;
	}
	.rooms-info{
		padding-top: 40px;
		padding-bottom: 100px;
	}
	.rooms-info figure{
		margin-bottom: 40px;
	}
	.rooms-col{
		width: 100%;
	}
	.rooms-col:not(:last-child){
		margin-bottom: 60px;
	}
	.rooms-col__name{
		margin-bottom: 10px;
	}
	.rooms-col__name h2{
		font-size: 20px;
	}
	.rooms-col__name span{
		font-size: 11px;
	}
	.slick-prev, .slick-next{
		display: none!important;
	}
	.rooms-col__spec{
		width: 100%;
	}
	.rooms-col__detail a{
		width: 100%;
		padding: 20px 15px;
		margin-top: 15px;
	}
	.amenities{
		padding-top: 80px;
		padding-bottom: 60px;
	}
	.facility-wrap{
		margin-top: 50px;
	}
	.facility-wrap__col{
		width: 100%;
		margin-bottom: 40px;
	}
	.facility-wrap__col h1{
		font-size: 17px;
	}
	.facility-wrap__col span{
		font-size: 11px;
	}
	.facility-wrap__col p br{
		display: none;
	}
	.popup-wrap{
		padding: 30px 20px 0 10px;
	}
}


/*faq*/
.faq .fv{
	background: url(../images/faq-fv.jpg) no-repeat center;
	background-size: cover;
	width: 100%;
	height: 690px;
	position: relative;
}
.faq-contens{
	max-width: 1060px;
	width: 100%;
	margin: 0 auto;
	padding: 120px 30px 150px;
}
.faq-cat:not(:last-child){
	margin-bottom: 80px;
}
.faq-cat h2{
	text-align: center;
	font-size: 18px;
	margin-bottom: 25px;
	font-weight: 400;
	letter-spacing: 0;
}
.faq-col{
	border-top: 1px solid #e0d8d0;
	
}
.faq-col.last{
	border-bottom: 1px solid #e0d8d0;
}
.faq-col > *:not(summary) {
  animation: fade 0.3s ease;
}
@keyframes fade {
  from { opacity: 0; transform: translateY(-0.25rem); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-col__head {
  display: block;
  list-style: none;
  position: relative;
  cursor: pointer;
  padding: 30px 0;
}
.faq-col__head::-webkit-details-marker {
	display: none;
}
.faq-col__head dl{
	justify-content: flex-start;
}
.faq-col__head dt{
	font-size: 18px;
	font-family: var(--font-en);
	font-weight: 200;
	width: 6%;
	text-align: right;
	padding-right: 15px;
}
.faq-col__head dd{
	font-size: 15px;
	font-weight: 500;
	width: 94%;
	padding-right: 50px;
}
.faq-col__content{
	padding: 0 0 15px 7%;
}
.faq-col__content p{
	font-weight: 400;
	margin-bottom: 15px;
}
.faq-col__content a{
	text-decoration: underline;
}
.faq-col__icon{
	right: 30px;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.faq-col__icon::before{
	display: block;
	background-image: url(../images/icon-open.svg);
	background-position: 50%;
	background-repeat: no-repeat;
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	height: 15px;
	width: 15px;
	transform:translateY(-50%);
}
.faq-col[open] .faq-col__icon:before{
	background-image: url(../images/icon-close.svg);
}
@media only screen and (max-width: 991px) {
	.faq .fv{
		height: 65vw;
	}
	.faq-fv .fv__text{
		top: 44%;
	}
	.faq-contens{
		padding: 80px 30px 100px;
	}
	.faq-cat h2{
		font-size: 16px;
		margin-bottom: 20px;
	}
	.faq-col__head {
	  padding: 25px 0;
	}
	.faq-col__head dt{
		font-size: 16px;
	}
	.faq-col__head dd{
		font-size: 14px;
	}
	.faq-col__content{
		padding: 0 0 10px 6.5%;
	}
}
@media only screen and (max-width: 767px) {
	.faq .fv{
		height: 75vw;
	}
	.faq-fv .fv__text{
		top: 46%;
	}
	.faq-contens{
		padding: 40px 30px 70px;
	}
	.faq-cat:not(:last-child){
		margin-bottom: 60px;
	}
	.faq-cat h2{
		font-size: 15px;
		margin-bottom: 15px;
	}
	.faq-col__head {
	  padding: 15px 0;
	}
	.faq-col__head dt{
		font-size: 14px;
	}
	.faq-col__head dd{
		font-size: 13px;
		padding-right: 35px;
	}
	.faq-col__content{
		padding: 0 0 0 0;
	}
	.faq-col__icon{
		right: 15px;
	}
}


/*news*/
.news-contents{
	max-width: 1060px;
	width: 100%;
	margin: 0 auto;
	padding: 0 30px 100px;
}
.news-inner{
	margin-top: 160px;
}
.news-inner__sidemenu{
	width: 17%;
}
.news-inner__sidemenu a{
	font-size: 13px;
	line-height: 1;
	color: #8e8e8e;
	font-family: var(--font-en);
	transition: .3s;
}
.news-inner__sidemenu a:hover{
	color: #000;
}
.news-inner__sidemenu .sel a{
	color: #000;
}
.news-inner__detail{
	width: 83%;
	border-top: 2px solid #e0d8d0;
}
.news-inner__col{
	border-bottom: 2px solid #e0d8d0;
	padding: 30px 30px 30px 0;
}
.news-inner__col a{
	align-items: center;
}
.news-inner__col figure{
	width: 27%;
}
.news-inner__col a img{
	transition: .3s;
}
.news-inner__col a:hover img{
	opacity: .6;
}
.news-inner__text{
	width: 73%;
	padding-left: 50px;
}
.news-inner__text ul{
	justify-content: flex-start;
	margin-bottom: 10px;
}
.news-inner__text li {
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1;
}
.news-inner__text li:first-child {
  margin-right: 15px;
  padding-right: 15px;
  position: relative;
}
.news-inner__text li:first-child::after {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 14px;
  background-color: #706b69;
}
.news-inner__text p{
	font-size: 15px;
	line-height: 28px;
}
.news-inner__detail .m-pageNav .pages{
	display: none;
}
.news-inner__detail .wp-pagenavi{
	display: flex;
}
.news-inner__detail .wp-pagenavi a,
.news-inner__detail .wp-pagenavi span{
	padding: 4px 0;
	margin: 0 10px 0 0;
	width: 40px;
	display: block;
	text-align: center;
}
.news-inner__detail .wp-pagenavi span{
	background-color: #322B27;
	color: #fff;
	border-color: #322B27;
}
.news-inner__detail .wp-pagenavi a{
	border-color: #322B27;
	transition: .3s;
}
.news-inner__detail .wp-pagenavi a:hover{
	color: #fff;
	background-color: #322B27;
}
@media only screen and (max-width: 991px) {
	.news-contents{
		padding: 0 30px 80px;
	}
	.news-inner{
		margin-top: 100px;
	}
	.news-inner__sidemenu{
		width: 20%;
		padding-left: 20px;
	}
	.news-inner__detail{
		width: 80%;
	}
	.news-inner__col{
		padding: 25px 25px 25px 0;
	}
	.news-inner__col figure{
		width: 27%;
	}
	.news-inner__text{
		width: 73%;
		padding-left: 35px;
	}
	.news-inner__text p{
		font-size: 14px;
		line-height: 25px;
	}
}
@media only screen and (max-width: 767px) {
	.news-inner{
		margin-top: 40px;
	}
	.news-inner__sidemenu{
		width: 100%;
		padding-left: 0;
		display: flex;
		justify-content: center;
		margin-bottom: 20px;
	}
	.news-inner__sidemenu li{
		margin: 0 8px;
	}
	.news-inner__detail{
		width: 100%;
	}
	.news-inner__col{
		padding: 20px 0 20px 0;
	}
	.news-inner__col a{
		align-items: flex-start;
	}
	.news-inner__col figure{
		width: 32%;
	}
	.news-inner__text{
		width: 68%;
		padding-left: 15px;
	}
	.news-inner__text ul{
		margin-bottom: 8px;
	}
	.news-inner__text li{
		font-size: 12px;
	}
	.news-inner__text p{
		font-size: 13px;
		line-height: 21px;
	}
	.news-inner__detail .wp-pagenavi a,
	.news-inner__detail .wp-pagenavi span{
		margin: 0 5px 0 0;
		width: 34px;
	}
}



/*news detail*/
.news-detail{
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
	padding: 0 30px 100px;
}
.news-detail__wrap{
	margin-top: 160px;
}
.news-detail__head{
	border-bottom: 2px solid #e0d8d0;
	padding-bottom: 30px;	
	margin-bottom: 60px;
}
.news-detail__head ul{
	margin-top: 30px;
	justify-content: flex-start;
  margin-bottom: 15px;
}
.news-detail__head li {
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1;
}
.news-detail__head li:first-child {
  margin-right: 15px;
  padding-right: 15px;
  position: relative;
}
.news-detail__head li:first-child::after {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 14px;
  background-color: #706b69;
}
.news-detail__head h1{
	font-size: 20px;
	line-height: 30px;
	font-weight: normal;
}
.news-detail__contents{
	max-width: 780px;
	margin: 0 auto;
	padding-bottom: 40px;
}
.news-detail__contents h2{
	font-size: 18px;
	line-height: 34px;
	position: relative;
	padding-top: 25px;
	font-weight: normal;
	margin-bottom: 30px;
}
.news-detail__contents h2::before{
	content: "";
	display: block;
	width: 60px;
	height: 2px;
	background-color: #e0d8d0;
	position: absolute;
	left: 0;
	top: 0;
}
.news-detail__contents p{
	line-height: 34px;
	margin-bottom: 50px;
}
.news-detail__contents img{
	margin-bottom: 50px;
}
.news-detail__contents a{
	text-decoration: underline;
}
.news-detail__contents a:hover{
	text-decoration: none;
}
.news-detail__wrap .btn-list{
	width: 340px;
  margin: 0 auto;
  display: block;
  background-color: #322b28;
  color: #fff;
  padding: 24px 0;
  transition: .3s;
  text-align: center;
}
.news-detail__wrap .btn-list:hover{
	opacity: .6;
}
@media only screen and (max-width: 991px) {
	.news-detail{
		padding: 0 30px 80px;
	}
	.news-detail__wrap{
		margin-top: 100px;
	}
}
@media only screen and (max-width: 767px) {
	.news-detail__wrap{
		margin-top: 40px;
	}
	.news-detail__head{
		padding-bottom: 25px;	
		margin-bottom: 40px;
	}
	.news-detail__head ul{
		margin-top: 25px;
		margin-bottom: 10px;
	}
	.news-detail__head li {
	  font-size: 12px;
	}
	.news-detail__head li:first-child::after {
	  height: 13px;
	}
	.news-detail__head h1{
		font-size: 16px;
		line-height: 26px;
	}
	.news-detail__contents{
		padding-bottom: 20px;
	}
	.news-detail__contents h2{
		font-size: 15px;
		line-height: 30px;
		padding-top: 20px;
		margin-bottom: 25px;
	}
	.news-detail__contents h2::before{
		width: 40px;
	}
	.news-detail__contents p{
		line-height: 30px;
	}
	.news-detail__wrap .btn-list{
		max-width: 340px;
		width: 100%;
	  padding: 20px 0;
	}
}



/*contact*/
.contact-wrap{
	margin-top: 160px;
	padding-bottom: 170px;
}
.contact-message{
	text-align: center;
	font-size: 15px;
	margin-bottom: 70px;
	letter-spacing: 0;
}
.contact-form dl{
	margin-bottom: 55px;
}
.contact-form dt{
	font-size: 16px;
	letter-spacing: 0;
	margin-bottom: 5px;
}
.contact-form dt span{
	font-size: 12px;
	color: #a81b1b;
}
.contact-form input{
	width: 100%;
	border: none;
	background-color: #d8d2cb;
	font-size: 16px;
	padding: 28px;
	outline: none;
	font-family: "Noto Serif JP", serif;
	font-weight: 400
}
.contact-form textarea{
	width: 100%;
	height: 310px;
	padding: 28px;
	outline: none;
	border: none;
	font-size: 16px;
	background-color: #d8d2cb;
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
}
.contact-form input[type=submit]{
	width: 340px;
	margin: 0 auto;
	display: block;
	background-color: #322b28;
	color: #fff;
	padding: 24px 0;
	transition: .3s;
}
.contact-form input[type=submit]:hover{
	opacity: .6;
}
@media only screen and (max-width: 991px) {
	.contact-wrap{
		margin-top: 100px;
		padding-bottom: 100px;
	}
	.contact-message{
		font-size: 14px;
		margin-bottom: 60px;
	}
	.contact-form dl{
		margin-bottom: 45px;
	}
	.contact-form dt{
		font-size: 15px;
	}
	.contact-form input{
		padding: 24px;
	}
	.contact-form textarea{
		height: 280px;
		padding: 24px;
	}
	.contact-form input[type=submit]{
		max-width: 340px;
		width: 100%;
		padding: 22px 0;
	}
}
@media only screen and (max-width: 767px) {
	.contact-wrap{
		margin-top: 40px;
		padding-bottom: 80px;
	}
	.contact-message{
		font-size: 13px;
		margin-bottom: 45px;
		text-align: left;
	}
	.contact-form dl{
		margin-bottom: 30px;
	}
	.contact-form dt{
		font-size: 14px;
	}
	.contact-form dt span{
		font-size: 10px;
	}
	.contact-form input{
		padding: 15px 20px;
	}
	.contact-form textarea{
		padding: 20px;
	}
	.contact-form input[type=submit]{
		padding: 20px 0;
		font-size: 14px;
	}
}