@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.6;
	letter-spacing: 0.08em;
}

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: 1240px;
	padding: 60px 2%;
	margin: 0 auto;
}

.level2-heading {
	font-size: 3.2rem;
	text-align: center;
	line-height: 0.8;
	font-family: 游明朝;
	font-weight: normal;
	margin-bottom: 36px;
}
.level2-heading span {
	font-size: 1.6rem;
}

.button {
	padding: 8px 0;
	background-color: #000;
	color: #fff;
	margin: 36px auto 0;
  	display: block;
  	width: 100px;
  	text-align: center;
}

.child {
	margin:40px 0 0;
	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:1s;
	animation-fill-mode:forwards;
	opacity:0;
}


@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


@media (max-width: 768px) {
	.child {
		margin-top:80px;
	}
}


/*================ヘッダー================*/
.header {
	position: relative;
}
.header__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 28px 2% 16px;

}

.header__reservation {
	position: absolute;
	top: 16px;
	right: 16px;
	color: #fff;
	font-family: 游明朝;
	background-color: #656214;
	padding: 8px 16px;
}

.header__logo-wrapper {
	margin-bottom: 40px;
}


.header-nav {
	display: flex;
}

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

@media (max-width: 768px) {
	.header {
		position: fixed;
		z-index: 9999;
		top:0;
		background-color: #fff;
		width: 100%;
	}
	.header__inner {
		padding: 16px 2% ;
	}
	.header__reservation {
		display: none;
	}
	.header__logo-wrapper {
		margin-bottom: 0px;
	}
	.header-nav__item:not(:last-child) {
		margin-right: 0px;
	}
}



@media (max-width: 768px) {
	#g-nav{
	    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
	    position:fixed;
	    /*ナビのスタート位置と形状*/
		top:0;
	  right: 0;
		width:100%;
	  height: 100vh;/*ナビの高さ*/
		background:#333;
	    /*動き*/
		transition: all 0.4s;
		opacity: 0;
		display: none;
	}

	/*アクティブクラスがついたら位置を0に*/
	#g-nav.panelactive{
	    opacity: 1;
	    display: block;
	}

	/*ナビゲーション*/
	.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:11px;
		right: 16px;
		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: #333;
	  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 {
	width: 100%;
}

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




/*================ELLISへようこそ================*/
.about__heading {
	font-size: 3.4rem;
	text-align: center;
	font-family: 游明朝;
	font-weight: normal;
	margin-bottom: 48px;
}

.about__inner {
	max-width: 480px;
	padding: 68px 2%;
	margin: 0 auto;
}

.about__inner p {
	font-size: 1.8rem;
}

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

.about__inner p:last-of-type {
	margin-bottom: 14.5px;
}

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

@media (max-width: 768px) {
	.about__inner {
		padding: 68px 7%;
	}
}

/*================ヘアカタログ================*/

.catalog {
	background-color: #F2F2F2;
}

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

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

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



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

.catalog__img {
	width: 100%;
}

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

	.catalog__item:nth-of-type(9), .catalog__item:nth-of-type(10){
		display: none;
	}
}
@media (max-width: 500px) {
	.catalog__item {
		width: 33.33333%;
	}

	.catalog__item:nth-of-type(9) {
		display: flex;
	}
}


/*================お知らせ================*/

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

}

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

.news__link {
	display: flex;
	border-bottom: solid 1px #D8D8D8;
	padding-bottom: 12px;
}


.news__text {
	margin-left: 20px;
}

@media (max-width: 768px) {

}

/*================店舗情報================*/

.info {
	background-image: url(../image/info.jpg);
	background-size: cover;
}

.info__item {
	display: flex;
	align-items: center;
	margin-bottom: 56px;
}

.info__map-wrapper {
	width: 50%;
	height: 300px;
	margin-right: 80px;
}

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

.info__data {
	display: flex;
	flex-wrap: wrap;
	width: 50%;
}

.info__data dt {
	width: 88px;
}

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

@media (max-width: 768px) {
	.info__item {
		display: flex;
		flex-direction: column;
	}
	.info__map-wrapper {
		width: 100%;
		height: 300px;
		margin-right: 0px;
		margin-bottom: 20px;
	}
	.info__data {
		width: 100%;
	}
}

/*予約*/

.reservation {
	display: flex;
	justify-content: space-between;
}

.reservation__item {
	width: 48%;
	height: 80px;
	background-color: none;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.0rem;
	font-family: 游明朝;
	border: 1px solid #2B2A2B;
}

@media (max-width: 768px) {
	.reservation {
		flex-direction: column;
	}
	.reservation__item {
		width: 100%;
		height: 72px;
	}
	.reservation__item:first-child {
		margin-bottom: 20px;
	}
}

/*================フッター================*/
.footer {
	background-color: #000;
}

.footer__inner {
	padding: 20px 2%;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.footer__sns-wrapper {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.footer__sns {
	margin-left: 20px;
	width: 28px;
}

.footer__sns-text {
	color: #fff;
	font-family: 游明朝;
	font-weight: bold;
}

.footer__copyright {
	font-family: 游明朝;
	font-size: 1.4rem;
	color: #A7A7A7;
}

@media (max-width: 768px) {

}





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


/*全て共通：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;
}




/*================店舗情報================*/

.access {
}


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

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

.access__data {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 28px 0 60px;
	font-size: 1.8rem;
}

.access__data dt {
	width: 112px;
}

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

@media (max-width: 768px) {
	.access__item {
		display: flex;
		flex-direction: column;
	}
	.access__map-wrapper {
		width: 100%;
		height: 500px;
		margin-right: 0px;
		margin-bottom: 20px;
	}
	.access__data {
		width: 100%;
	}
}






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

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

.menu-item {
/*	border: solid 1px #000;*/
	padding: 28px 2%;

	width: 100%;
	margin: 0 auto;
}

.menu-item__heading {
	font-size: 2.2rem;
	font-weight: normal;
	font-family: 游明朝;
	margin-bottom: 20px;
	border-bottom: 1px solid #D8D8D8;
	padding-bottom: 4px;
}

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

}

.menu-item__tax {
	text-align: right;
	font-size: 1.4rem;
}

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

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




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

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

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

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

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

.pagination {
	font-size: 1.4rem;
}

.pagination--none {
	visibility: hidden
}