@charset "utf-8";
/* CSS Document */
body {
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-size: 16px;
	color: #1C1919;
	position: relative;
}
a {
	text-decoration: none;
	color: #1C1919;
}
img {
	max-width: 100%;
	vertical-align: bottom;
	display: block;
}
ul {
	list-style: none;
}
.wrap {
	width: 85%;
	margin: 0 auto;
}
.center {
	text-align: center;
}
.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flex-2 {
	width: 48%;
}
.flex-3 {
	width: 31%;
}
.even {
	flex-direction: row-reverse;
}
.en {
	font-family: "Tw Cen MT";
}
.txt p {
	margin-bottom: 20px;
	line-height: 1.8;
}


/*==================================================
ヘッダー
===================================*/
#header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 999;
	background: rgba(0,0,0,0.20);
	padding: 8px 0;
}
.header-wrap {
	width: 98%;
	margin: 0 auto;
	display: flex;
	align-items: center;
}
.header-left {
	width: 20%;
	margin-right: auto;
}
.header-right {
	width: 80%;
	margin-left: auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header-right .tel {
	width: 15%;
}
.header-right .tel a {
	color: #09C4C9;
	font-weight: bold;
	font-size: 17px;
	display: block;
	text-align: center;
}
.header-right .insta {
	width: 10%;
}
.header-right .insta a {
	display: block;
}
.header-right .insta a img {
	margin: 0 auto;
}

/*==================================================
グローバルメニュー
===================================*/
.nav-menu-wrap {
	width: 70%;
	margin-left: auto;
}
.menu {
    position: relative;
    width: 100%;
	text-align: center;
	background: none;
	padding: 15px 0;
}
.menu > li {
    float: left;
    width: 20%;
	position: relative;
}

.menu > li a {
    display: block;
	color: #FFFFFF;
	font-size: 18px;
	position: relative;
	font-family: "Tw Cen MT";
	font-weight: bold;
}

.menu > li:hover::before {
    content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #09C4C9;
	position: absolute;
	bottom: -12px;
	right: 50%;
	transform: translateX(50%);
}

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.menu > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}

.menu__second-level li a:hover {
    background: #1C1919;
	color: #FFFFFF;
}

/* floatクリア */
.menu:before,
.menu:after {
    content: " ";
    display: table;
}

.menu:after {
    clear: both;
}

.menu {
    *zoom: 1;
}

.menu > li.menu__single {
    position: relative;
}

li.menu__single ul.menu__second-level {
    position: absolute;
    top: 40px;
    width: 100%;
    background: #C6C6C6;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
	z-index: 99;
}

li.menu__single:hover ul.menu__second-level {
    top: 60px;
    visibility: visible;
    opacity: 1;
	z-index: 99;
}
.menu__second-level li a {
	padding: 10px 0;
	color: #514429;
}

.menu > li a img {
	margin: 0 auto;
}


/*==================================================
メインビジュアル
===================================*/
#mv {
	position: relative;
	z-index: 1;
}
.slider {
  position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/

.slider-item01 {
    background:url("img/mv01.jpg");
}

.slider-item02 {
    background:url("img/mv02.jpg");
}

.slider-item03 {
    background:url("img/mv03.jpg");
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}


.cp {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	background: rgba(0,0,0,0.30);
	z-index: 1;
	padding: 60px 0;
}
.cp span {
	display: block;
	text-align: center;
	font-size: 50px;
	color: #FFFFFF;
}


/*==================================================
コンセプト
===================================*/
#concept {
	background-color: #363636;
	background-image: url("img/img01.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
}
#concept .wrap {
	padding: 140px 0;
	max-width: 1300px;
}
#concept .inner {
	background: rgba(255,255,255,0.65);
	padding: 125px 0;
}
#concept .ttl {
	font-size: 40px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 60px;
}
#concept .ttl span {
	display: block;
	text-align: center;
	font-size: 30px;
	margin-bottom: -20px;
}


/*==================================================
TOPページ_メニュー
===================================*/
.index-section {
	background: #C6C6C6;
	padding: 150px 0;
	position: relative;
	z-index: 1;
}
.index-section .wrap {
	max-width: 1500px;
	position: relative;
	z-index: 1;
}
.index-section .flex {
	align-items: center;
}
.txtbox {
	max-width: 650px;
}
.index-ttl {
	position: relative;
	z-index: 1;
	margin-bottom: 20px;
	padding-left: 35px;
}
.index-ttl .ja {
	font-size: 40px;
}
.index-ttl .en {
	font-size: 120px;
	letter-spacing: 30px;
	color: rgba(9,196,201,0.25);
	position: absolute;
	left: 0;
	bottom: -28px;
	z-index: -1;
}
.index-ttl::after {
	content: "";
	width: 100%;
	height: 1px;
	background: #09C4C9;
	position: absolute;
	bottom: 0;
	right: 0;
}
.index-section .txt {
	max-width: 615px;
	margin-left: auto;
}
.more {
	width: 50%;
	max-width: 170px;
	position: relative;
	margin: 60px auto 0;
}
.more::before{
	content: "";
	width: 95%;
	height: 85%;
	border: 1px solid #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.more-btn {
	display: block;
	text-align: center;
	color: #FFFFFF;
	font-size: 20px;
	font-weight: 600;
	padding: 12px 0;
	background: #1C1919;
}
.more-btn:hover {
	opacity: 0.7;
}

#index-menu::before {
	content: "";
	width: 70%;
	height: 85%;
	max-width: 1040px;
	max-height: 550px;
	background: rgba(0,0,0,0.15);
	position: absolute;
	top: 0;
	right: 35%;
	transform: translateX(50%);
	z-index: -1;
}

/*==================================================
TOPページ_スタッフ紹介
===================================*/
#index-staff::before {
	content: "";
	width: 80%;
	height: 80%;
	max-width: 1430px;
	max-height: 645px;
	background: rgba(0,0,0,0.15);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}

/*==================================================
TOPページ_カフェバー
===================================*/
#cafebar {
	padding-top: 210px;
	background: #C6C6C6;
	position: relative;
	z-index: 1;
}
#cafebar .bg {
	background-image: url("img/img06.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#cafebar .wrap {
	max-width: 750px;
	margin-right: 10%;
	padding: 120px 3% 30px;
	background: rgba(255,255,255,0.65);
}
.cafe-img01 {
	margin-bottom: 20px;
}
.cafe-img02 img {
	margin-left: auto;
}
#cafebar .en {
	font-size: 120px;
	letter-spacing: 30px;
	color: rgba(9,196,201,0.25);
	position: absolute;
	top: 107px;
	left: 3%;
	transform: translateX(-50%);
	z-index: 1;
}

/*==================================================
TOPページ_店舗紹介
===================================*/
#index-store {
	padding: 175px 0;
}
#index-store .wrap {
	position: relative;
	z-index: 1;
}
#index-store .wrap::before {
	content: "";
	width: 110%;
	height: 120%;
	max-width: 1700px;
	max-height: 630px;
	background: rgba(0,0,0,0.15);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}





/*==================================================
フッター
===================================*/
#footer {
	background: rgba(0,0,0,0.30);
}
.footer-top {
	background-image: url("img/footer_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 80px 0;
}
.footer-top .index-ttl {
	margin-bottom: 50px;
	text-align: center;
	padding-left: 0;
}
.footer-top .index-ttl::after {
	display: none;
}
.footer-top .index-ttl .ja {
	color: #FFFFFF;
}
.footer-top .index-ttl .en {
	left: 50%;
	transform: translateX(-50%);
}
.footer-top .wrap {
	width: 60%;
	max-width: 550px;
	color: #FFFFFF;
}
.reserve {
	margin-bottom: 40px;
}
.reserve .tel {
	background: #fff;
	font-size: 20px;
	text-align: center;
	color: #09C4C9;
	padding: 30px 0;
	position: relative;
	z-index: 1;
	border: 1px solid #09C4C9;
	max-width: 220px;
}
.reserve .tel::after {
	content: "";
	width: 95%;
	height: 85%;
	border: 1px solid #09C4C9;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); 
}
.reserve img {
	width: 100%;
}
.reserve a:hover {
	opacity: 0.7;
	-webkit-transition: all .5s;
    transition: all .5s;
}
.footer-top li {
	text-align: center;
}

.footer-bottom {
	max-width: 1300px;
	margin: 0 auto;
	padding: 90px 0;
}
.footer-bottom.flex {
	align-items: center;
}
.footer-bottom .logo img, .instagram a img {
	margin: 0 auto 30px;
}
.footer-bottom .info {
	color: #FFFFFF;
	display: flex;
	flex-wrap: wrap;
}
.footer-bottom .info span {
	width: 90px;
	font-weight: bold;
	padding-bottom: 15px;
}
.footer-bottom .info div {
	width: calc(100% - 90px);
	padding-bottom: 15px;
}

.copyright {
	padding: 15px 0;
	background: #000000;
	color: #FFFFFF;
	text-align: center;
	font-size: 14px;
}



/*==================================================
ページトップボタン
===================================*/
#page_top{
  width: 60px;
  height: 60px;
  position: fixed;
  right: 20px;
  bottom: 30px;
  background: #09C4C9;
  border-radius: 50%;
	z-index: 999;
}
#page_top a{
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 30px;
  color: #fff;
  position: absolute;
  width: 30px;
  height: 30px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}



/*==================================================
店舗情報ページ
===================================*/
#background {
	background-image: url("img/background.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
#mainvisual {
	background-image: url("img/subpage_bg.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 60vh;
	position: relative;
	z-index: 1;
}
#page-ttl {
	width: 100%;
	padding-top: 15rem;
	position: relative;
	z-index: 3;
}
#page-ttl .ja {
	font-size: 40px;
	text-align: center;
	color: #FFFFFF;
	display: block;
}
#page-ttl .en {
	font-size: 120px;
	letter-spacing: 30px;
	color: rgba(9,196,201,0.25);
	position: absolute;
	top: 80%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	display: block;
}

.section {
	padding-top: 100px;
	position: relative;
	z-index: 1;
}
.sec-ttl {
	text-align: center;
	position: relative;
	z-index: 1;
	margin-bottom: 70px;
}
.sec-ttl::after {
	content: "";
	width: 90px;
	height: 3px;
	background: #09C4C9;
	position: absolute;
	bottom: 0;
	right: 50%;
	transform: translateX(50%);
}
.sec-ttl .en {
	font-size: 40px;
}
.sec-ttl .ja {
	font-size: 20px;
	font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.sec-ttl span {
	display: block;
}
.concept .item {
	background: rgba(0,0,0,0.60);
	max-width: 1500px;
	margin: 0 auto 70px;
	padding: 120px 0;
	color: #FFFFFF;
}
.concept .flex {
	align-items: center;
}
.concept img {
	margin: 0 auto;
}
.concept .ttl {
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 30px;
}

.salon-info {
	padding-bottom: 200px;
}
.salon-info::after {
	content: "";
	width: 95%;
	height: 100%;
	background: rgba(198,198,198,0.85);
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}
.salon-info .wrap {
	max-width: 1000px;
}
.list {
	margin: 90px auto;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.list dt {
	width: 220px;
	margin-bottom: 35px;
	border-bottom: 3px solid #1C1919;
	padding-left: 25px;
	font-weight: 600;
}
.list dd {
	width: calc(100% - 220px);
	margin-bottom: 35px;
	border-bottom: 1px solid #FFFFFF;
	padding-left: 20px;
}
.salon-info .img img {
	margin: 0 auto;
}


/*==================================================
メニューページ
===================================*/
.menu-bg {
	max-width: 1100px;
	margin: 0 auto;
	background: rgba(255,255,255,0.70);
	padding: 50px 0;
}
.menu-list {
	width: 100%;
	max-width: 900px;
	margin: 0 auto 30px;
	border-bottom: 3px solid #09C4C9;
}
.menu-list .name {
	width: 90%;
	font-weight: bold;
}
.menu-list .name span {
	font-weight: normal;
	display: block;
}
.menu-list .price {
	font-weight: bold;
	text-align: end;
	width: 10%;
}
#others {
	padding-bottom: 190px;
}



/*==================================================
スタッフ紹介ページ
===================================*/
.staff .bg {
	width: 80%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 100px 0 150px;
	background: rgba(255,255,255,0.70);
}
.staff .item {
	max-width: 900px;
	margin: 0 auto 100px;
}
.staff .ttl {
	font-size: 30px;
	font-weight: bold;
	border-bottom: 1px solid #C6C6C6;
	margin-bottom: 30px;
}
.staff .name {
	font-size: 25px;
	font-weight: bold;
	margin-bottom: 40px;
}
.staff .name span {
	display: inline-block;
	color: #09C4C9;
	font-size: 16px;
	padding-left: 20px;
}
.staff img {
	margin: 0 auto;
}


/*==================================================
アクセスページ
===================================*/
.access {
	padding-bottom: 180px;
}
.access .wrap {
	max-width: 1300px;
}
.access .map {
	margin-bottom: 60px;
}
.access .bg {
	max-width: 1100px;
	padding: 70px 3%;
	background: rgba(198,198,198,0.85);
	margin: 0 auto;
}



/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 上から */

.fadeDown{
animation-name:fadeDownAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 左から */

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 右から */

.fadeRight{
animation-name:fadeRightAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}












