@charset "UTF-8";

/*------------------------------------------------------------
	カバービジュアル
------------------------------------------------------------*/

.main-vis .main-img {
	background-image: url('../img/stylist/img_main.jpg');
}

/*------------------------------------------------------------
	stylist ナビゲーション
------------------------------------------------------------*/
	
.salon-navi ul {
	display: flex;
	flex-wrap: wrap;
	width: 94%;
	font-size: 0;
	text-align: center;
	margin: 0 auto 30px;
}

@media only screen and (min-width: 768px) {
	
	.salon-navi ul {
		width: 100%;
		min-width: 1120px;
		max-width: 1380px;
		margin: 0 auto 60px;
	}
	
}

.salon-navi ul li {
	width: 23.5%;
	font-size: 2.6vw;
	margin: 0 2% 0 0;
	box-sizing: border-box;
	position: relative;
}

.salon-navi ul li:after {
	content: '\f107';
	font-size: 1rem;
	font-family: 'fontawesome';
	color: #000;
	position: absolute;
    top: 18px;
    right: 50%;
    transform: translateX(50%);
} 

.salon-navi ul li:nth-child(4n) {
	margin-right: 0;
}

.salon-navi ul li a {
	display: block;
	background: #fff;
	color: #000;
	text-decoration: none;;
	padding: 5px 5px 10px;
	border: 1px solid #ccc;
	transition:0.2s ease-in-out;
}

@media only screen and (min-width: 768px) {

	.salon-navi ul li {
		font-size: 1.8rem;
	}
	
	.salon-navi ul li:after {
		font-size: 1.1rem;
		top: 50%;
		right: 16px;
		transform: translateY(-50%);
} 

	
	.salon-navi ul li a {
		display: block;
		text-decoration: none;;
		padding: 10px 20px 10px 5px;
	}
	
	.salon-navi ul li a:hover {
		background: #EDEFF1;
		color: #000;
	}
	
}

#footer-menu {
  width: calc(94% - 48px);
  height: 62px;
  z-index: 300;
  overflow: none;
  position: fixed;
  bottom: 0;
  left: 1%;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

#footer-menu.show {
	visibility: visible;
	opacity: 1;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

#footer-menu .salon-navi ul li:after {
	content: none;	
}

#footer-menu .salon-navi ul li a {
	padding: 5px 5px 5px 5px;
}


@media only screen and (min-width: 768px) {
	
	#footer-menu {
		display: none;
	}
	
}


/*------------------------------------------------------------
	stylist コンテンツ
------------------------------------------------------------*/

/*店舗名*/
h3 {
	font-size: 2rem;
	font-weight: 400;
	text-align: center;
	margin: 0 auto 40px;
	position: relative;
}

h3:after {
	content: '';
	background: #000;
	width: 30px;
	height: 2px;
	position: absolute;
	bottom: -10px;
	left: 50%;
	margin-left: -15px;
}

.contents:not(:last-child) {
	border-bottom: 2px solid #333;
	padding-bottom: 50px!important;
	margin-bottom: 40px!important;
}

@media only screen and (min-width: 768px) {
	
	h3 {
		max-width: 1120px;
		font-size: 2.8rem;
		font-weight: 500;
		margin: 0 auto 30px;
	}

	.contents:not(:last-child) {
		margin-bottom: 50px!important;
	}

	#container .contents {
		margin:0 auto;
		padding-top:40px;
	}
	
}


div.one-third {
	padding: 20px;
	position: relative;
	margin-top: 30px;
	margin-bottom: 40px;
}

div.one-third:last-child {
	margin-bottom: 0;
}

div.one-third:after {
	content: '';
	display: block;
	background: #EDEFF1;
	width: 100%;
	height: 400px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

div.one-third:before {
	content: '';
	display: block;
	box-sizing: border-box;
	border: 20px solid #EDEFF1;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

@media only screen and (min-width: 768px) {
	
	div.one-third,
	div.one-third:last-child {
		margin-top: 30px;
		margin-bottom: 60px;
	}
	
}


/*スタイリスト写真*/
div.one-third img {
	width: 240px;
	border-radius: 50%;
	margin: -60px auto 10px;
}

@media only screen and (min-width: 768px) {
	
	div.one-third img {
		width: 280px;
		margin: -60px auto 0;
	}
	
}


/*名前＆ポジション*/
div.name-box {
	border-bottom:1px solid #000;
	overflow:hidden;
	padding-bottom: 10px;
	margin-bottom: 10px;
	position: relative;
}

div.name-box p.name {
	font-size: 4.8vw;
	font-weight: 500;
	line-height: 38px;
	float:left;
}

div.name-box p.name span {
	display: block;
	font-size: 1.2rem;
	line-height: 1.2;
	color: #900;
	position: absolute;
	bottom: 10px;
	left: 0;
}

div.name-box p.position {
	font-size:1.4rem;
	line-height:25px;
	font-weight: 500;
	float:right;
	margin-top: 8px;
}

div.name-box p.position a {
    font-size: 1.8rem;
    margin-left: 2px;
    position: relative;
    top: 1px;
    color: #900;
}

@media only screen and (min-width: 768px) {
	
	div.name-box p.name {
		font-size: 2rem;
		line-height: 60px;
	}

	div.name-box p.position {
		line-height:45px;
	}
	
}

/*所属店舗*/
div.belong-box {
	margin-bottom:10px;
}

div.belong-box p.belong {
	font-size:1.2rem;
	font-weight: 500;
	line-height:40px;
	float:right;
}

@media only screen and (min-width: 768px) {
	
	div.belong-box p.belong {
		line-height:30px;
	}
	
}

/*Profile*/
div.one-third dl {
	background: #fff;
	padding: 15px 20px;
}

div.one-third dl dt,
div.one-third dl dd p span {
	display: block;
	font-size: 1.4rem;
	font-weight: 500;
}

div.one-third dl dd {
    font-size: 1.3rem;
    line-height: 1.8;
}


@media only screen and (min-width: 768px) {
	
	div.one-third dl dd {
	    line-height: 2;
	}

	
	
}

/*Featured Skill*/
div.one-third dl dd p {
	margin-top: 15px;
}


