@charset "utf-8";

/*全体にかかわる設定*/
html *,
::before,
::after {
	box-sizing: border-box;
}

html {
	font-size: 10px;
}

@media (max-width: 768px) {
	html {
		font-size: 9px;
	}
}

body {
	font-size: 1.6rem;
	font-family: 游ゴシック;
	color: #2B2A2B;
	line-height: 1.7;
	letter-spacing: 0.08em;
	background-color: #FFFAF6;
}

main {
	z-index: 999;
}

a {
	text-decoration: none;
	transition: 0.5s;
	color: #2B2A2B;
}
a:hover {
	opacity: 0.6;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

ul {
	list-style: none;
}

.container {
	max-width: 1220px;
	padding: 60px 2.5%;
	margin: 0 auto;
}

.level2-heading {
	font-size: 3.2rem;
	text-align: center;
	line-height: 0.8;
	font-family: 游明朝;
	font-weight: bold;
	margin-bottom: 48px;
	color: #937358;
}

.level2-heading--reverse {
	color: #FFFAF6;
}



.button {
	padding: 8px 0;
	color: #FFFAF6;
	background-color: #937358;
	margin: 36px auto 0;
  display: block;
  width: 100px;
  text-align: center;
  font-family: 游明朝;
}

.button--reverse {
	color: #937358;
	background-color: #FFFAF6;
}

.decoration-left {
	position: absolute;
	top: 18px;
	left: 10px;
}


.decoration-right {
	position: absolute;
	top: 18px;
	right: 10px;
}

.child {
	margin-top: 40px;
	animation-name:fadeChildAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity:0;	
	}
@keyframes fadeChildAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
	animation-name:fadeInAnime;
	animation-duration:1.2s;
	animation-fill-mode:forwards;
	opacity:0;
}


@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


@media (max-width: 768px) {
	.decoration-left {
		top: 5px;
		left: 3px;
		width: 120px;
	}


	.decoration-right {
		top: 5px;
		right: 3px;
		width: 120px;
	}

}



/*================ヘッダー================*/
.header {
	background-color: #937358;

}
.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2%;
	height: 88px;

}

.header__reservation {
	color: #FFFFFF;
	font-family: 游明朝;
	background-color: #808080;
	padding: 14px 18px;
/*	font-weight: bold;*/
	font-size: 1.5rem;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .20);
}

.header__logo-wrapper {
	width: 160px;
}


.header-nav {
	display: flex;
	align-items: center;
}

.header-nav__item:not(:last-child) {
	margin-right: 50px;
}

.header-nav__link {
	color: #FFFAF6;
	font-size: 1.8rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	font-family: 游明朝;
}
@media (max-width: 1200px) {
	.header-nav__link {
		font-size: 1.6rem;
	}
	.header-nav__item:not(:last-child) {
		margin-right: 40px;
	}
	.header-nav__item:last-child {
		margin-bottom: 10px;
	}
	
}
.header-nav__link span {
	font-size: 1.0rem;
}



@media (max-width: 1000px) {
	.header {
		position: fixed;
		z-index: 999;
		top:0;
		width: 100%;
	}
	.header__inner {
		padding: 0px 2%;
		height: 60px;
		justify-content: center;
	}
	.header__logo-wrapper {
		margin-bottom: 0px;
		width: 120px;
	}
	.header-nav__item:not(:last-child) {
		margin-right: 0px;
	}
	.header-nav__item:last-child {
		margin-top: 20px;
	}	
	.header-nav__link {
		font-size: 1.4rem;
	}
	.header__reservation {
		background-color: #727272;
		padding: 16px 16px;
	}

}



@media (max-width: 1000px) {
	#g-nav{
	  position:fixed;
	    /*ナビのスタート位置と形状*/
		top:0;
	  right: 0;
		width:100%;
	  height: 100vh;/*ナビの高さ*/
		background:#937358;
	  /*動き*/
		transition: all 0.4s;
		opacity: 0;
		display: none;
	}

	/*アクティブクラスがついたら位置を0に*/
	#g-nav.panelactive{
	    opacity: 1;
	    display: block;
	}
	/*ナビゲーションの縦スクロール*/
	#g-nav.panelactive #g-nav-list{
	    /*ナビの数が増えた場合縦スクロール*/
	    position: fixed;
	    z-index: 999; 
	    width: 100%;
	    height: 100vh;/*表示する高さ*/
	    overflow: auto;
	    -webkit-overflow-scrolling: touch;
	}


	/*ナビゲーション*/
	.header-nav {
	    /*ナビゲーション天地中央揃え*/
	    position: absolute;
	    top:50%;
	    left:50%;
	    transform: translate(-50%,-50%);
	    flex-direction: column;
	}

	/*リストのレイアウト設定*/

	.header-nav__item{
		list-style: none;
	    text-align: center;
	    margin: 0;
	    padding: 10px;
	}

	.header-nav__link{
		color: #fff;
		text-decoration: none;
		padding:10px;
		display: block;
		text-transform: uppercase;
	}

	.openbtn{
		position:fixed;
	  	z-index: 9999;/*ボタンを最前面に*/
		top:5px;
		right: 10px;
		cursor: pointer;
	  	width:50px;
	  	height:50px;
	}


		
	/*×に変化*/	
	.openbtn span{
	  display: inline-block;
	  transition: all .4s;
	  position: absolute;
	  left: 14px;
	  height: 1px;
	  border-radius: 0px;
	  background-color:	#FFFAF6;
	  width: 45%;
	  }

	.openbtn span:nth-of-type(1) {
		top:15px;	
	}

	.openbtn span:nth-of-type(2) {
		top:23px;
	}

	.openbtn span:nth-of-type(3) {
		top:31px;
	}

	.openbtn.active span {
		background: #fff;
	}

	.openbtn.active span:nth-of-type(1) {
	    top: 18px;
	    left: 18px;
	    transform: translateY(6px) rotate(-45deg);
	    width: 30%;
	}

	.openbtn.active span:nth-of-type(2) {
		opacity: 0;
	}

	.openbtn.active span:nth-of-type(3){
	    top: 30px;
	    left: 18px;
	    transform: translateY(-6px) rotate(45deg);
	    width: 30%;
	}
}




/*================キーヴィジュアル================*/

.kv-wrapper {
	width: 100%;
}

.kv {
	width: 100%;
}


@media (max-width: 1000px) {
	.kv-wrapper {
		height: 600px;
		margin-top: 60px;
	}
	.kv {
		height: 100%;
		object-fit: cover;
	}
}




/*================アバウト================*/


.about__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 5%;
}

.about__heading {
	text-align: center;
	color: #937358;
	font-size: 3.6rem;
	font-family: 游明朝;
	margin-bottom: 40px;
}

.about__contents {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.about__img-wrapper {
	display: flex;
	width: 44%;
	justify-content: space-between;
}

.about__img {
	width: 44%;
}

.about__img-2 {
	margin-top: 170px;
}

.about__img-1 {
	margin-bottom: 170px;

}

.about__text-wrapper {
	width: 47%;
}

.about__text-wrapper p:not(:last-child) {
	margin-bottom: 44px;
}


@media (max-width: 768px) {
 .about__contents {
 	flex-direction: column;
 }
 .about__img-wrapper {
		width: 70%;
		margin-bottom: 40px;
	}
 .about__text-wrapper {
		width: 70%;
	}
}

@media (max-width: 768px) {
	 .about__img-wrapper {
			width: 90%;
		}
	 .about__text-wrapper {
			width: 90%;
		}
	.about__img-2 {
		margin-top: 70px;
	}

	.about__img-1 {
		margin-bottom: 70px;

	}

}



/*================ヘアスタイル================*/

.catalog {
	background-color: #937358;
	position: relative;
}

.catalog--child {
	background-color: #FFFAF6;
}

.catalog__list {
	display: flex;
	flex-wrap: wrap;
}

.catalog__item {
	width: 25%;
	display: flex;
	justify-content: center;
}



.catalog__link {
	width: 100%;
	margin: 14px;
}

.catalog__img {
	width: 100%;
}

@media (max-width: 768px) {
	.catalog__item {
		width: 33.33333%;
	}

	.catalog__item--none{
		display: none;
	}
}


/*================お知らせ================*/
.news {
	position: relative;
}

.news__list {
	max-width: 540px;
	margin: 0 auto;

}

.news__item:not(:first-of-type) {
	padding-top: 24px;
}

.news__link {
	display: flex;
	border-bottom: dashed 1px #937358;
	padding-bottom: 24px;
}


.news__text {
	margin-left: 28px;
}

@media (max-width: 768px) {

}



/*================仕切り================*/


.partition {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
    }

.partition__img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
  z-index: -1;

  }

.partition__img::before{
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../image/partition.jpg") no-repeat;
  background-size: cover;
  background-position: top center;
	}

@media (max-width: 500px) {
	.partition {
		height: 350px;
	}
}


/*================お客様の声================*/

.voice {
	position: relative;
}

.voice__item {
	background-color: #fff;
	padding: 24px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.voice__item:not(:last-child) {
	margin-bottom: 40px;
}

.voice__profile {
	margin-right: 40px;
	text-align: center;
}

.voice__icon-wrapper {
	width: 100px;
	margin-bottom: 18px;
}

.voice__name {
	font-size: 1.4rem;
/*	font-family: 游明朝;*/
}

.voice__contents {

}

.voice__heading {
	font-size: 2.4rem;
	font-family: 游明朝;
	font-weight: bold;
	color: #937358;
	margin-bottom: 20px;
}

.voice__text {

}


@media (max-width: 768px) {
	.voice__item {
		flex-direction: column;
	}
	.voice__profile {
		margin-right: 0;
		margin-bottom: 20px;
	}
}

/*================店舗情報================*/
.info__inner {
	display: flex;
}

.info__map-wrapper {
	width: 50%;
	height: 620px;

}

.info__map-wrapper iframe {
	width: 100%;
	height: 620px;
}

.info__contents {
	position: relative;
	width: 50%;
	padding: 0 50px;
	background-image: url(../image/info-bg.jpg);
	background-size: cover;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.level2-heading--info {
	text-align: left;
	color: #fff;
	margin-bottom: 28px;
}

.info__data {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 28px 0 40px;
}

.info__data dt {
	width: 112px;
}

.info__data dd {
   flex-basis: calc(100% - 112px);
   margin-bottom: 20px;
}


.info-reserve__note {
	font-size: 1.4rem;
}


.info-reserve__form {
	max-width: 400px;
	padding: 16px;
	color: #2B2A2B;
	text-align: center;
	display: block;
	border: solid 1px;
	margin-top: 12px;
	background: #fff;
	font-weight: bold;
	font-family: 游明朝;
}



@media (max-width: 768px) {
	.info__inner {
		flex-direction: column-reverse;
	}
	.info__contents {
		width: 100%;
	}
	.info__map-wrapper {
		width: 100%;
		height: 400px;
	}

	.info__map-wrapper iframe {
		width: 100%;
		height: 400px;
	}
	.info__contents {
		padding: 40px;
	}
}


/*================フッター================*/


.footer {
	background-color: #937358;
	padding: 30px 0px 20px;
}

.footer__inner {
	max-width: 1220px;
	margin: 0 auto;
	padding: 0 2%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}


.footer__logo-wrapper {
	width: 180px;
}

.footer__logo {
	width: 100%;
}


.footer-nav {
	display: flex;
	margin-bottom: 20px;
	flex-wrap: wrap;

}


.footer-nav__item:not(:last-of-type) {
	margin-right: 20px;
}

.footer-nav__link {
	color: #FFFAF6;
}

.footer__sns-wrapper {
	text-align: right;
}



.footer__sns-link:first-of-type {
	margin-right: 20px;
}

.footer__sns {
	width: 26px;
}

.footer__copyright {
	text-align: center;
	color: #D4D4D4;
	font-size: 1.4rem;
}



@media (max-width: 768px) {

	.footer__inner {
		flex-direction: column;
	}
	.footer__logo-wrapper {
		width: 140px;
		margin-bottom: 40px;
	}
	.footer__sns-wrapper {
		text-align: center;
	}
}





/*================記事================*/
.article__container {
	max-width: 500px;
	margin: 0 auto;
	padding: 120px 2%;
}

.article__heading {
	font-size: 2.2rem;
	font-weight: normal;
	font-family: 游明朝;
	margin-bottom: 40px;
	border-left: 5px solid #937358;
	padding-bottom: 4px;
	padding-left: 10px;
}

.article__time {
	text-align: right;
	font-size: 1.2rem;
	color: #BCA795;
}

.article p:not(:last-of-type) {
	margin-bottom: 40px;
}

.pagination-wrapper {
	display: flex;
	justify-content: space-between;
	margin-top: 100px;
}

.pagination {
	font-size: 1.4rem;
	color: #937358;
	font-weight: bold;
}

.pagination--none {
	visibility: hidden
}






/*================メニュー================*/

.menu-item-wrapper {
	max-width: 500px;
	margin: 0 auto;
}

.menu-item {
	padding: 28px 2%;
	width: 100%;
	margin: 0 auto 20px;
}

.menu-item__heading {
	font-size: 2.2rem;
	font-weight: bold;
	font-family: 游明朝;
	margin-bottom: 20px;
	background-color: #F6E5D6;
	padding: 10px;
}

.menu-item__heading span {
	font-size: 1.8rem;
	margin-left: 12px;

}

.menu-item__tax {
	text-align: right;
	font-size: 1.4rem;
	margin-bottom: 4px;
}

.menu-item__data {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.menu-item__data dt {
   flex-basis: calc(100% - 70px);
}

.menu-item__data dt:not(:last-of-type) {
	margin-bottom: 24px;
}

.menu-item__data dd {
	width: 70px;
	text-align: right;
}



/*================アクセス================*/
.access__map-wrapper {
	width: 100%;
	height: 520px;
	margin-bottom: 40px;

}

.access__map-wrapper iframe {
	width: 100%;
	height: 520px;
}

.access__contents {
	max-width: 400px;
/*	margin: 0 auto;*/
	font-size: 1.8rem;
}

.access__data {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 28px 0 40px;
}

.access__data dt {
	width: 142px;
}

.access__data dd {
   flex-basis: calc(100% - 142px);
   margin-bottom: 20px;
}





/*---------------モーダルウィンドウ---------------*/


/*全て共通：hideエリアをはじめは非表示*/
.hide-area{
	display: none;
}

.modaal-overlay {
	z-index: 9999;
}

.modaal-wrapper {
	z-index: 10000;
}


/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}


.modaal-close:after, .modaal-close:before {
	border-radius: 0px;
	background: #fff;
}