@charset "utf-8";
/* CSS Document */

@font-face {
   font-family: 'Noto Sans JP';
   font-style: normal;
   font-weight: 400;
   src: local("Noto Sans CJK JP"),
        url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2) format('woff2'),
        url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff) format('woff'),
        url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf) format('opentype');
}
@font-face {
   font-family: 'Noto Sans JP';
   font-style: normal;
   font-weight: 700;
   src: local("Noto Sans CJK JP"),
        url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.woff2) format('woff2'),
        url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.woff) format('woff'),
        url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.otf) format('opentype');
}

html{
    font-size: 62.5%;
}
body{
	-webkit-print-color-adjust: exact;
    color:#292b2c;
	background-color: #f2f2f2;
    font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
    font-feature-settings: "palt";
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 1.6rem;
    line-height: 1;
	letter-spacing: 0.01em;
}
li{
	text-decoration: none;
}
a{
    color: #292b2c;
    text-decoration: none;
    transition: all .2s;    
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
}
a:hover{
    opacity:0.5;
	transition: all .2s;    
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
}
img{
    max-width:100%;
    height:auto;
}
.text-center{
	text-align: center;
}
.btn-trigger{
	display: none;
}
.img__sp{
	display: none;
}
.br__sp{
	display: none;
}

/*-----------------
アニメーション
------------------*/
.fadeInDown {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration:1s;
 -webkit-animation-name: fadeInDown;
 animation-name: fadeInDown;
 visibility: visible !important;
}
@-webkit-keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(-50px); }
 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(-50px); -ms-transform: translateY(-50px); transform: translateY(-50px); }
 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}

/*---TOP, CONCEPT, STAFF セクション---*/
.fadeInUp {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration:1s;
 -webkit-animation-name: fadeInUp;
 animation-name: fadeInUp;
 visibility: visible !important;
}
@-webkit-keyframes fadeInUp {
 0% { opacity: 0; -webkit-transform: translateY(50px); }
 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fadeInUp {
 0% { opacity: 0; -webkit-transform: translateY(50px); -ms-transform: translateY(50px); transform: translateY(50px); }
 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}

/*---CONOCEPT　店舗写真---*/
.fadeInLeft {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration:1s;
 -webkit-animation-name: fadeInLeft;
 animation-name: fadeInLeft;
 visibility: visible !important;
}
@-webkit-keyframes fadeInLeft {
 0% { opacity: 0; -webkit-transform: translateX(-30px); }
 100% { opacity: 1; -webkit-transform: translateX(0); }
}
@keyframes fadeInLeft {
 0% { opacity: 0; -webkit-transform: translateX(-30px); -ms-transform: translateX(-30px); transform: translateX(-30px); }
 100% { opacity: 1; -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); }
}

/*---Page Title (CONCEPT, STAFF, MENU)---*/
.fadeInLeft02 {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:.8s;
 -ms-animation-duration:.8s;
 animation-duration:.8s;
 -webkit-animation-name: fadeInLeft02;
 animation-name: fadeInLeft02;
 visibility: visible !important;
}
@-webkit-keyframes fadeInLeft02 {
 0% { opacity: 0; -webkit-transform: translate3d(-75%,-50%,0); }
 100% { opacity: 1; -webkit-transform: translate3d(-50%,-50%,0); }
}
@keyframes fadeInLeft02 {
 0% { opacity: 0; -webkit-transform: translate3d(-75%,-50%,0); -ms-transform: translate3d(-75%,-50%,0); transform: translate3d(-75%,-50%,0); }
 100% { opacity: 1; -webkit-transform: translate3d(-50%,-50%,0); -ms-transform: translate3d(-50%,-50%,0); transform: translate3d(-50%,-50%,0); }
}

/*-----------------
header
------------------*/
.header{
	background-color: #f2f2f2;
	padding: 20px 0 30px;
	box-sizing: border-box;
	position: relative;/*←印刷時用*/
	/*
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 128px;
	z-index: 100;
	*/
}
.site-title{
	width: 48px;
	margin: 0 auto 23px;
}
.navigation{
	display: flex;
	-webkit-display: flex;
	justify-content: center;
}
.nav-list{
	display: flex;
	-webkit-display: flex;
	margin-left: -30px;
}
.nav-item{
	font-size:2rem;
	text-transform: uppercase;
	padding-left: 25px;
	white-space: nowrap;
}
.nav-item a{
	font-weight: 300;
	vertical-align: -3px;/*ナビゲーションの文字とSNSアイコンの縦位置調整*/
}
.nav-list__sns a{
	vertical-align: 0;/*ナビゲーションの文字とSNSアイコンの縦位置調整*/
}
.nav-list__sns{
	margin-left: 15px;
}
.nav-item__sns{
	padding-left: 20px;
}
.nav-item.current>a{
	opacity: 0.5;
}
.nav-item.current a::after{
	position: absolute;
	bottom: -1px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #333;
	transform: scale(1, 1);
}

/*下線アニメーション*/
.navigation a {
	position: relative;
	display: inline-block;
	text-decoration: none;
}
.nav-item__line a::after {
	position: absolute;
	bottom: -1px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #333;
	transform: scale(0, 1);
	transform-origin: left top;
	-webkit-transition: transform .3s;
	-moz-transition: transform .3s;
	-ms-transition: transform .3s;
	-o-transition: transform .3s;
	transition: transform .3s;
}
.navigation a:hover::after {
	transform: scale(1, 1);
}

/*-----------------
hero
------------------*/
.hero{
	max-width: 1400px;
	height: auto;
	position: relative;
	margin: 135px auto 0;/*ナビゲーション固定*/
}
.swiper-container {
    max-width: 100%;
	/*height: auto;*/
	height: 100%;/*---swiperで追加*/
}
.hero-logo{
	display: none;
	position: absolute;
	top:50%;
    left:50%;
    z-index: 50;
    -webkit-transform:translate3d(-50%,-50%,0);
    -moz-transform:translate3d(-50%,-50%,0);
    -ms-transform:translate3d(-50%,-50%,0);
    -o-transform:translate3d(-50%,-50%,0);
    transform:translate3d(-50%,-50%,0);
}
.hero-img{
	position: relative;
}

/*---heroイメージ白枠線---*/
.hero-img::before{
	content:"";
	position: absolute;
	width: 95.9%;
	border-bottom: solid #fff 2px;
	top:5%;
	left:2.05%;
	Z-index:50;
	opacity: .7;
}
.hero-img::after{
	content:"";
	position: absolute;
	width: 95.9%;
	border-top: solid #fff 2px;
	bottom:5%;
	left:2.05%;
	Z-index:50;
	opacity: .7;
}
.hero::before{
	content:"";
	position: absolute;
	height: 89.8%;
	border-right: solid #fff 2px;
	bottom:5%;
	left:2%;
	Z-index:50;
	opacity: .7;
}
.hero::after{
	content:"";
	position: absolute;
	height: 89.8%;
	border-left: solid #fff 2px;
	bottom:5%;
	right:2%;
	Z-index:50;
	opacity: .7;
}

/*-----------------
TOP
------------------*/
.top section{
	padding:90px 0;
}
.top .concept{
	padding-top: 0;
}
.top .section-detail{
	margin-bottom: 70px;
}
.section-list{
	-webkit-display: flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
.menu-bg .section-list{
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.section-item{
	width: 50%;
	padding: 0 10px;
}
.eyecatch{
	position: relative;
}
.eyecatch-title{
	color:#fff;
	font-size: 7.2rem;
	font-style: italic;
	font-weight: 600;
	text-transform: uppercase;
	position: absolute;
	top:50%;
    left:50%;
	transform:translate3d(-52%,-50%,0);
	-webkit-transform:translate3d(-52%,-50%,0);
    -moz-transform:translate3d(-52%,-50%,0);
    -ms-transform:translate3d(-52%,-50%,0);
    -o-transform:translate3d(-52%,-50%,0);
	text-align: center;
	z-index: 50;
	white-space: nowrap;
}
.section-paragraph{
	color: #292b2c;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.8;
	margin-bottom: 40px;
	box-sizing: border-box;
}
.menu-bg{
	background-color: #d4ded5;
}
.hairstyle-bg{
	background-color: #d4d5d3;
}

/*---Pick Up HAIR STYLE---*/
.swiper-container.pickup{
	margin-bottom: 30px;
}
.pickup .swiper-wrapper{
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
.pickup .swiper-slide{
	text-align: center;
	height: 100%;
}
/*---//Pick Up HAIR STYLE---*/

.schedule-inner{
	max-width: 1146px;
	margin: 0 auto;
	height: 510px;
}
.section-title__schedule{
	font-size: 3.2rem;
	font-weight: 400;
	margin-bottom: 10px;
	text-transform: uppercase;
}
.schedule-list{
	-webkit-display: flex;
	display: flex;
	align-items: center;
	-webkit-align-items: center;
}
.schedule-item{
	width: 50%;
	padding: 0 10px;
}
.schedule-inner .access-item:last-of-type{
	padding-bottom: 40px;
}
.schedule-inner .access-title{
	width: 23%;
}

/*---top btn---*/
.btn-outer{
    padding: 0 56px;
}
.btn-outer a:hover{
	opacity: 1;
}
.btn{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    display: inline-block;
    width:184px;
    padding: 16px 0;
    border-radius: 0;
    background-color: #444;
	border: 2px solid #444;
    color:#fff;
    text-align: center;
    text-transform:uppercase;
	letter-spacing: 0.05em;
}
.btn:after{
    position: relative;
    left:12px;
    content: "\f054";
	font-family:"Font Awesome 5 Free";
	font-weight: 600;
}
.btn:hover{
  background-color: transparent;
  border-color: #444;
  color: #292b2c;
  letter-spacing: 0.13em;
  transition: all .2s;    
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
}

/*-----------------
footer
------------------*/
.footer{
	padding: 30px 10px 20px;
	background-color: #a0a8a1;
}
.footer .inner{
	position: relative;
}
.footer-logo{
	width: 55px;
	position: absolute;
	top:0;
	left:0;
}
.copyrights{
	font-size: 1.4rem;
	text-align: right;
}
.footer-nav-inner{
	max-width: 880px;
	margin: 0 auto;
	padding: 0 130px;
}
.footer-navigation{
	-webkit-display: flex;
	display: flex;
	justify-content: flex-start;
}
.footer .nav-list{
	display: block;
	margin-left: 0;
}
.footer .nav-list:not(:first-of-type){
	padding-left: 50px;
}
.footer .nav-list__sns{
	display: flex;
	margin-left: 0;
}
.footer .nav-item{
	font-size: 1.8rem;
	padding-left: 0;
	margin-bottom: 20px;
}
.footer .nav-item a{
	vertical-align: -5px;
}
.footer .nav-item__sns:last-of-type{
	vertical-align: -1px;
}
.footer .nav-item__sns{
	font-size: 2rem;
}
.footer .nav-item__sns:not(:first-of-type){
	padding-left: 20px;
}
.footer .nav-item__sns a{
	vertical-align: 0px;
}
.footer .nav-item.current>a{
	padding-bottom: 0;
}
.footer .nav-item__line a::after {
	border: none;
}
.footer-navigation a:hover::after {
	transform: scale(0, 0);
}
.footer .nav-item.current a::after{
	transform: scale(0, 0);
}

/*---ページトップへもどる---*/
.btn-pageTop{
	display: none;
	position: fixed;
	right:0;
	bottom:50px;
	background-color: #c8d1c9;
	opacity: 0.8;
}
.btn-pageTop>a{
	position: relative;
	display: block;
	overflow: hidden;        
	width: 40px;
	height: 40px;
	text-indent:100%;
	white-space:nowrap;
}        
.btn-pageTop>a:before{
	position: absolute;
	width: 54.16px;
	top:50%;
	left:0%;
	content: "\f077";
	font-family:"Font Awesome 5 Free";
	font-weight: 600;
	color:#333;
	-webkit-transform:translate3d(-50%,-50%,0);
	-moz-moztransform:translate3d(-50%,-50%,0);
	-ms-transform:translate3d(-50%,-50%,0);
	-o-transform:translate3d(-50%,-50%,0);
	transform:translate3d(-50%,-50%,0);
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}
.btn-pageTop>a:hover::before{
	top:40%;
}  

/*-----------------
lowpage common
------------------*/
.lowpage-hero{
	position: relative;
}
.page-title{
	/*display: none;*/
	color:#fff;
	font-size: 10rem;
	font-style: italic;
	font-weight: 600;
	text-transform: uppercase;
	position: absolute;
	top:50%;
    left:50%;
	-webkit-transform:translate3d(-50%,-50%,0);
    -moz-transform:translate3d(-50%,-50%,0);
    -ms-transform:translate3d(-50%,-50%,0);
    -o-transform:translate3d(-50%,-50%,0);
	text-align: center;
	z-index: 50;
}
.lowpage-inner{
	padding: 100px 0 140px;
}
.inner{
	max-width: 1146px;
	margin: 0 auto;
}
.section-title{
	font-size: 4.5rem;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 20px;
	margin-top: 150px; /*ナビゲーション固定*/
}
.top .section-title,.about .section-title,.menu .section-title,.staff .section-title{
	margin-top: 0;
}
.section-detail{
	color:#4b4b4b;
	display: block;
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	text-align: center;
	margin-bottom: 80px;
}

/*---パンくずリスト---*/
.breadcrumb-inner{
	max-width: 1146px;
	margin: 0 auto;
}
.breadcrumb{
	color:#aaa;
	font-size: 1.4rem;
	padding: 60px 0 0;
}
.breadcrumb a{
	color:#505050;
}
.breadcrumb-list{
	display: flex;
}
.breadcrum-item:not(:first-of-type){
	padding-left: 10px;
}
.breadcrum-item:not(:first-of-type)::before{
	display: inline-block;
	content:"/";
	color:#aaa;
	padding-left: .5rem;
	padding-right: .5rem;
}

/*-----------------
CONCEPT
------------------*/
.about-inner{
	max-width: 650px;
	margin: 0 auto;
}
.about-paragraph{
	font-size: 1.5rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2;
	margin-bottom: 80px;
}
.owner{
	text-align: right;
}
.owner-name{
	font-size: 2rem;
	margin-left: 10px;
}
.about-img-list{
	display: flex;
	-webkit-display: flex;
	justify-content: space-between;
	margin-right: -10px;
}
.about-img-item{
	overflow: hidden;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
	margin-right: 10px;
}
.about-img-item img{
	width:100%;
    -moz-transition: -moz-transform 0.4s linear;
    -webkit-transition: -webkit-transform 0.4s linear;
    -o-transition: -o-transform 0.4s linear;
    -ms-transition: -ms-transform 0.4s linear;
    transition: transform 0.4s linear;

    -webkit-transform: scale(1.0);
    -moz-transform: scale(1.0);
    -o-transform: scale(1.0);
    -ms-transform: scale(1.0);
    transform: scale(1.0);
}
.about-img-item:hover img{
    -webkit-transform: scale(1.07);
    -moz-transform: scale(1.07);
    -o-transform: scale(1.07);
    -ms-transform: scale(1.07);
    transform: scale(1.07);
}

/*-----------------
STAFF
------------------*/
.staff-inner{
	max-width: 814px;
	margin: 0 auto;
}
.stylist-wrapper{
	background-color: #d4ded5;
	padding: 80px 0 1px;
	margin-bottom: 100px;
}
.staff-cat{
	font-size: 3rem;
	font-style: italic;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 80px;
	display: flex;
	align-items: center;
	padding: 0 10px;
}
.staff-cat:before, .staff-cat:after {
	content: "";
	flex-grow: 1;
	height: 1px;
	background: #aaa;
	display: block;
}
.staff-cat:before {
	margin-right: .4em;
}
.staff-cat:after {
	margin-left: .4em;
}
.staff-list{
	display: flex;
	-webkit-display: flex;
}
.staff-list{
	margin-bottom: 80px;
}
.staff-list:last-of-type{
	margin-bottom: 100px;
}
.staff-item{
	width: 50%;
	padding: 0 10px;
	box-sizing: border-box;
}
.staff-name__en{
	font-family: 'Cinzel', serif;
	font-size: 2.6rem;
	margin-bottom: 12px;
	white-space: nowrap;
}
.staff-name__ja{
	font-size: 1.6rem;
	font-weight: 300;
	margin-bottom: 60px;
	position: relative;
}
.staff-name__ja::before{
	content:"";
	position: absolute;
	bottom:-30px;
	width: 60px;
	border-bottom: solid #aaa 1px;
	Z-index:50;
}
.staff-birth{
	font-family: 'Cinzel', serif;
	font-size: 1.6rem;
	padding-left: 20px;
}
.staff-title{
	font-family: 'Cinzel', serif;
	font-size: 2rem;
	margin-bottom: 70px;
}
.message-title{
	font-family: 'Cinzel', serif;
	font-size: 2rem;
	margin-bottom: 15px;
}
.message-detail{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	font-size: 1.5rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
	padding-bottom: 50px;
}

/*---リクルートのボタン---*/
.staff-btn-title{
	font-size: 2.8rem;
	margin-bottom: 10px;
}
.staff-btn-detail{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.5rem;
	letter-spacing: 0.05em;
}
.staff-btn{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    display: inline-block;
    width:372px;
    padding: 18px 0;
    border-radius: 0;
    background-color: #444;
	border: none;
    color:#fff;
    text-align: center;
    text-transform: uppercase;
	transition: all .2s;    
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
}
.staff-btn:after{
    position: relative;
	bottom:20px;
    left:15px;
    content: "\f054";
	font-family:"Font Awesome 5 Free";
	font-weight: 600;
	font-size: 2.2rem;
	display: inline-block;
	transition: all .2s;    
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
}
.staff-btn:hover:after{
	display: inline-block;
    transform: translateX(5px);
	transition: all .2s;    
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
}
.staff-btn:hover{
	background-color: rgba(68,68,68,0.7);
	transition: all .2s;    
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
}
.staff-btn:hover .staff-btn-title{
	letter-spacing: 0.15em;
	transition: all .2s;    
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
}
.staff-btn-title{
	transition: all .2s;    
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
}

/*-----------------
ACCESS
------------------*/
.maps-outer{
	width: 100%;
    position: relative;
    padding-top: 25%;
}
.maps{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
}
.access-info{
	display: flex;
	-webkit-display: flex;
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
	align-items: center;
	-webkit-align-items: center;
	margin-bottom: 80px;
}
.access-list{
	width: 50%;
	box-sizing: border-box;
	padding: 0 10px;
}
.access-item{
    display: table;
	font-size: 1.5rem;
    width:100%;
    padding:0 0 20px;
    color:#292b2c;
	letter-spacing: 0.02em;
}
.access-item:last-of-type{
    padding-bottom: 50px;
}
.access-title{
    display: table-cell;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 400;
    width: 18%;
    text-align: right;
}
.access-detail{
    display: table-cell;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
    padding:0 0 0 30px;    
    text-align: left;
}
.access-detail a{
	font-weight: 300;
}
.weekend{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	padding-left: 30px;
}
.access-paragraph{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.5rem;
	font-weight: 300;
	letter-spacing: 0.06em;
	line-height: 2;
	margin-bottom: 30px;
}

/*-----------------
MENU
------------------*/

/*---キャンペーン内容---*/
.campaign-inner{
	max-width: 920px;
	margin: 0 auto;
}
.campaign-wrapper{
	background-color: #d4ded5;
	padding: 50px 60px;
	margin-bottom: 80px;
}
.campaign-title{
	font-size: 3rem;
	font-weight: 300;
	margin-bottom: 35px;
	text-transform: uppercase;
}
.campaign-list{
	font-size: 2.3rem;
	letter-spacing: 0.05em;
	margin-bottom: 40px;
}
.campaign-item{
	font-weight: 300;
	margin-bottom: 20px;
	position: relative;
	line-height: 1.2;
}
.campaign-cut{
	font-weight: 300;
	background: linear-gradient(transparent 70%, #f7ecc8 10%);
}
.campaign-spa{
	font-weight: 300;
	background: linear-gradient(transparent 70%, #d7d2cb 10%);
}
.campaign-treatment{
	font-weight: 300;
	background: linear-gradient(transparent 70%, #a3acbb 10%);
}
.campaign-color{
	font-weight: 300;
	background: linear-gradient(transparent 70%, #dab59f 10%);
}
.campaign-perm{
	font-weight: 300;
	background: linear-gradient(transparent 70%, #9eb5a1 10%);
}
.original-price{
	font-weight: 300;
	position: relative;
}
.original-price::after{
	position: absolute;
	bottom: 15px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #333;
}
.fa-arrow-right{
	display: inline-block;
	font-size: 1.4rem;
	padding: 0 10px;
	vertical-align: middle;
}
.campaign-detail-item{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.5rem;
	font-weight: 300;
}
.campaign-detail-item:not(:last-of-type){
	margin-bottom: 10px;
}
/*---//キャンペーン内容---*/

.menu-inner{
	max-width: 720px;
	margin: 0 auto;
}
.menu-category{
	font-size: 3.2rem;
	font-weight: 400;
	margin-bottom: 30px;
	text-transform: uppercase;
}
.menu-category.kitsuke{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 3rem;
	font-weight: 600;
}
.menu-list:not(:last-of-type){
	margin-bottom: 80px;
}
tr{
	display: table-row;
}
table{
	width: 100%;
	margin-bottom:1rem; 
}
.table th, .table td{
	font-size: 2.4rem;
	font-weight: 300;
    line-height: 1.3;
	padding: 20px 30px;
	border: 1px solid #d4d5d3;
}
.table th{
	text-align: left;
	background-color: rgba(232,232,232,0.6);
}
.th-kitsuke{
	font-size: 2.1rem !important;
}
.table td{
	font-size: 2.2rem;
	text-align: center;
	width: 25%;
	background-color: rgba(232,232,232,0.3);
}
.th-detail{
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	font-size: 1.4rem;
	text-align: right;
}
.menu-detail{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	font-size: 1.5rem;
}

/*-----------------
HAIR STYLE
------------------*/
.mix{
    display: none;
}
.cat-nav{
	display: flex;
	-webkit-display: flex;
	text-transform:capitalize;
	margin:0 0 100px -30px;
	justify-content: center;
}
.cat-nav-item{
	color:#aaa;
	font-size: 1.8rem;
	font-weight: 300;
	text-transform: uppercase;
	padding-left: 30px;
	cursor: pointer;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s; 
}
.cat-nav-item:hover,.cat-nav-item.active{
    color:#777;
}
.hairstyle-list{
	overflow: hidden;/*IE11*/
	-webkit-display: flex;
	display: flex;
	flex-wrap:wrap;
	box-sizing: border-box;
	margin-bottom: -50px;
}
.hairstyle-item{
	width: 25%;
	margin-bottom: 50px;
	text-align: center;
	text-align: -webkit-center;
}
.hairstyle-item-wrapper{
	max-width: 262px;
	margin: 0 10px;
	overflow: hidden;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
}
.hairstyle-item img{
    -moz-transition: -moz-transform 0.3s linear;
    -webkit-transition: -webkit-transform 0.3s linear;
    -o-transition: -o-transform 0.3s linear;
    -ms-transition: -ms-transform 0.3s linear;
    transition: transform 0.3s linear;

    -webkit-transform: scale(1.0);
    -moz-transform: scale(1.0);
    -o-transform: scale(1.0);
    -ms-transform: scale(1.0);
    transform: scale(1.0);
}
.hairstyle-item:hover img{
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -o-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
}

/*-----------------
RECRUIT
------------------*/
.recruti-leading p{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 2;
	margin-bottom: 60px;
}
.recruit-inner{
	max-width: 920px;
	margin: 0 auto;
	padding: 0 10px;
	box-sizing: border-box;
}
.table-recruit td{
	width: 72%;
	text-align: left;
}
.table-recruit th,.table-recruit td{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 1.8;
}
.table-recruit th{
	background-color: rgba(232,232,232,0.6);
}
.recruit-worktime{
	padding-left: 10px;
	font-weight: 400;
}
.recruit-inner .btn-outer{
	padding: 0 0 20px;
	font-family: 'Josefin Sans', sans-serif;
}

@media screen and (max-width:1192px){
/*-----------------
lowpage common
------------------*/
.breadcrumb{
	padding: 60px 0 0 10px;
}
/*-----------------
CONCEPT
------------------*/
.about-img-list{
	margin: 0;
	padding: 0 10px;
}
.about-img-item:last-of-type{
	margin: 0;
}
}

@media screen and (max-width:1146px){
.br__sp{
	display: block;
}
.hero-logo{
	width: 180px;
}
/*-----------------
ACCESS
------------------*/
.weekend{
	padding-left: 0;
}
}

@media screen and (max-width:1081px){
.nav-list{
	margin-left: -13px;
}
.nav-item{
	font-size:1.8rem;
	padding-left: 13px;
}
.nav-list__sns{
	margin-left: 12px;
}
.enif_hair_logo{
	width: 130px;
}
.eyecatch-title{
	font-size: 5rem;
}
.section-paragraph{
	font-size: 1.5rem;
	margin-bottom: 22px;
}
.btn{
	padding: 14px 0;
	font-size: 1.5rem;
}
/*-----------------
lowpage common
------------------*/
.page-title{
	font-size: 8rem;
}
/*-----------------
footer
------------------*/
.footer .nav-item{
	font-size: 1.6rem;
}
.footer .nav-item__sns{
	font-size: 1.8rem;
}
}

@media screen and (max-width:921px){
.header{
	padding-bottom: 0;
	height: 83px;
}
.site-title{
	width: 40px;
}
.navigation{
	display: none;
	position: fixed;
	overflow-y: scroll; /*ハンバーガーメニューのスクロール動作*/
    top:0;
    left:0;
    box-sizing: border-box; 
    z-index: 100;
	width:100%;
    height: 100%; /*ハンバーガーメニューのスクロール動作*/
    padding: 120px 0 0;
    background-color: #d4d5d3;
	webkit-overflow-scrolling: touch; /*ハンバーガーメニューのスクロール動作*/
}
.nav-list{
	display: block;
	line-height: 0.9;
	text-align: center;
}
.nav-item{
	font-size:2.4rem;
	margin-bottom: 25px;
}
.nav-list__sns{
	margin-left: 0;
}
.nav-item__sns{
	padding-left: 0;
}
.nav-list__sns{
	padding-left: 0;
}
.nav-item.current>a{
	opacity: 0.5;
}
.nav-item.current a::after{
	transform: scale(0, 0);
}
.nav-item__line a:hover::after {
	transform: scale(0, 0);
}
.btn-trigger{
	display: block;
}
.btn-trigger{
    appearance:none;
    -webkit-appearance:none;
    overflow: hidden;
    position: absolute;
    top:18px;
    right:10px;
    z-index: 1000;
    width: 40px;
    padding: 0;
    border:none;
	background-color: transparent;
    white-space: nowrap;    
}
use{
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
    transition: 0.5s all;
}
.btn-trigger.active use:nth-of-type(1) {
    -webkit-transform: translateY(26px) rotate(-45deg);
    transform: translateY(26px) rotate(-45deg);
}
.btn-trigger.active use:nth-of-type(2) {
	transform: translate(-10px,0);
    opacity: 0;
}
.btn-trigger.active use:nth-of-type(3) {
    -webkit-transform: translateX(30px) translateY(-12px) rotate(45deg);
    transform: translateX(30px) translateY(-12px) rotate(45deg);
}

/*-----------------
common
------------------*/
.section-title{
	margin-top: 60px;
}
}

@media screen and (max-width:768px){
.img__pc{
	display: none;
}
.img__sp{
	display: block;
}

/*-----------------
header
------------------*/
.breadcrumb{
	padding-left: 0;
}
.breadcrumb-inner{
	padding: 0 10px;
}
/*-----------------
hero
------------------*/
.hero{
	margin-top: 84px;
}
.hero-logo{
	width: 100px;
}
/*---heroイメージ白枠線---*/
.hero-img::before,.hero-img::after{
	width: 90%;
	left:5%;
}
.hero::before{
	left:5%;
	height: 89.7%;
}
.hero::after{
	right:5%;
	height: 89.7%;
}

/*-----------------
inner
------------------*/
.inner{
	padding: 50px 10px 0;
}
.inner.menu,.inner.about{
	padding: 0;
}
.sp-inner{
	padding: 0 20px;
}
.sp-inner2{
	padding: 0 10px;
}

/*-----------------
common
------------------*/
.section-title{
	margin-top: 0;
}
.section-detail{
	margin-bottom: 0;
}

/*-----------------
TOP
------------------*/
.lowpage-inner.top{
	padding: 60px 0 0;
}
.top section{
	padding: 70px 0;
}
.top .section-detail{
	margin-bottom: 40px;
}
.section-list{
	-webkit-display: block;
	display: block;
}
.section-item{
	width: 100%;
	padding: 0;
}
.section-item img{
	margin: 0 auto;
}
.eyecatch{
	padding: 0;
}
.eyecatch-title{
	font-size: 4.5rem;
}
.eyecatch{
	margin-bottom: 20px;
}
.section-paragraph{
	padding: 0;
	font-size: 1.4rem;
	margin-bottom: 30px;
}
.btn-outer{
	padding: 0;
}

/*---schedule---*/
.schedule-inner{
	height: 880px;
}
.schedule-list{
	display: block;
}
.schedule-item{
	width:100%;
	padding: 0;
}
.schedule-item:first-of-type{
	margin-bottom:50px;
}
.section-title__schedule{
	font-size: 3rem;
}
.gcalender{
	height: 300px;
}

/*-----------------
lowpage common
------------------*/
.lowpage-inner{
	padding: 60px 0;
}
.section-title{
	font-size: 3.5rem;
	margin-bottom: 10px;
}
.section-detail{
	font-size: 1.5rem;
	margin-bottom: 50px;
}

/*-----------------
CONCEPT
------------------*/
.page-title{
	font-size: 5rem;
	white-space:nowrap;
	z-index: 80;
}
.about-paragraph{
	font-size: 1.4rem;
	margin-bottom: 50px;
}
.owner{
	font-size: 1.4rem;
}
.owner-name{
	font-size: 1.8rem;
}
.about-img-list{
	display: block;
	padding: 0;
}
.about-img-item{
	margin: 0;
}
/*-----------------
STAFF
------------------*/
.staff-cat{
	font-size: 2.6rem;
	margin-bottom: 40px;
	padding: 0;
}
.stylist-wrapper{
	padding: 60px 0 0;
}
.staff-list{
	display: block;
	margin-bottom:60px 
}
.staff-list:last-of-type{
	margin-bottom: 30px;
}
.staff-item{
	width: 100%;
	padding: 0;
}
.staff-item:first-of-type{
	margin-bottom: 15px;
	text-align: center;
	text-align: -webkit-center;
}
.staff-name__en{
	font-size: 2.4rem;
}
.staff-name__ja{
	font-size: 1.5rem;
	margin-bottom: 30px;
	white-space: nowrap;
}
.staff-birth{
	font-size: 1.4rem;
	padding-left: 12px;
	vertical-align: 1.5px;
}
.staff-title{
	font-size: 1.5rem;
	margin-bottom: 40px;
}
.staff-name__ja::before{
	content:"";
	position: absolute;
	bottom:-17px;
	width: 60px;
	border-bottom: solid #292b2c 1px;
	Z-index:50;
}
.message-title{
	font-size: 1.5rem;
	margin-bottom: 10px;
}
.message-detail{
	font-size: 1.3rem;
}
.receptionist-wrapper{
	padding:50px 0;
	margin-bottom: 60px;
}
/*---staff btn---*/
.staff-btn-title{
	font-size: 2.1rem;
	margin-bottom: 0;
}
.staff-btn{
    width:290px;
    padding: 16px 0;
}
.staff-btn-detail{
	font-size: 1.4rem;
}
.staff-btn:after{
	bottom:12px;
    left:12px;
}
/*---//staff btn---*/

/*-----------------
ACCESS
------------------*/
.access-inner{
	padding-top:83px;
}
.maps-outer{
    padding-top: 65%;
	margin-top: 50px;
}
.access-info{
	display: block;
	margin-bottom: 40px;
}
.access-list{
	width: 100%;
	padding: 0;
}
.access-item,.access-paragraph{
	font-size: 1.4rem;
}
.access-title{
	width: 24%;
}
.access-detail{
	line-height: 1.5;
}
.access-item:last-of-type{
	padding-bottom: 50px;
}
.access-paragraph{
	margin-bottom: 50px;
}
.enif-map{
	width: 90%;
	margin: 0 auto;
}
.enif-map img{
	margin: 0 auto;
}
.enif-photo img{
	margin: 0 auto;
}
.access-list:last-of-type{
	margin-bottom: 40px;
}

/*-----------------
MENU
------------------*/
.campaign-title{
	font-size:2.6rem;
	white-space: nowrap;
	margin-bottom: 30px;
}
.campaign-wrapper{
	padding: 40px 10px;
	margin-bottom: 50px;
}
.campaign-list{
	font-size: 1.5rem;
	letter-spacing: -0.01em;
	margin-bottom: 30px;
}
.campaign-detail{
	font-size: 1.3rem;
	line-height: 1.5;
}
.original-price::after{
	bottom:9px;
}
.fa-arrow-right{
	font-size: 1.2rem;
	padding: 0 4px;
}
.menu-category{
	font-size: 2.4rem;
	margin-bottom: 25px;
}
.menu-category.kitsuke{
	font-size: 2.2rem;
}
.menu-list:not(:last-of-type){
	margin-bottom: 50px;
}
.table th, .table td{
	font-size: 1.6rem;
	padding: 12px 15px;
}
.th-kitsuke{
	font-size: 1.4rem !important;
}
.th-detail{
	font-size: 1.2rem;
}
.menu-detail{
	font-size: 1.2rem;
}

/*-----------------
HAIR STYLE
------------------*/
.nohero .inner{
	padding-top: 83px;
}
.nohero .section-detail{
	margin-bottom: 50px;
}
.cat-nav{
	display: block;
	text-align: center;
	margin-bottom: 0;
}
.cat-nav-item{
	margin-bottom: 30px;
}
.cat-nav-item:last-of-type{
	margin-bottom: 60px;
}
.hairstyle-list{
	position: relative;
/*	margin-right: -10px;*/
}
.hairstyle-item-wrapper{
	max-width: 210px;
	margin: 0 10px;
}
.hairstyle-item{
	width: 33.333%;
	margin-bottom: 40px;
}

/*-----------------
RECRUIT
------------------*/
.recruit-inner{
	padding: 0;
}
.recruti-leading{
	font-size: 1.4rem;
	margin-bottom: 40px;
}
.table-recruit th,.table-recruit td{
	font-size: 1.4rem;
	padding: 15px;
}


/*-----------------
footer
------------------*/
.footer{
	padding-top: 40px;
	padding-left: 0;
	padding-right: 0;
}
.footer .footer-nav-inner{
	max-width: 490px;
	margin: 0 auto;
	padding: 0 80px;
}
.footer .sp-inner{
	position: relative;
}
.footer-logo{
	width: 40px;
	top:0;
	left:auto;
}
.footer-navigation{
	display: block;
}
.footer .nav-list:not(:first-of-type){
	padding-left: 0;
}
.footer .nav-item{
	font-size: 1.6rem;
	text-align: left;
}
.footer .nav-item a{
	vertical-align: 0;
}
.footer .nav-item__sns{
	font-size: 2rem;
	text-align: left;
}
.copyrights{
	font-size: 1.2rem;
	padding-top: 20px;
}
}

@media screen and (max-width:576px){
.hairstyle-item{
	width: 50%;
}
.hairstyle-item-wrapper{
	max-width: 200px;
}
}

