﻿/* ------------------------------------------------------ GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css?family=Tangerine:700');



/* ------------------------------------------------------ ICON FONTS */
@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?ps4k48');
  src:  url('../fonts/icomoon.eot?ps4k48#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?ps4k48') format('truetype'),
    url('../fonts/icomoon.woff?ps4k48') format('woff'),
    url('../fonts/icomoon.svg?ps4k48#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-icon-f:before {
  content: "\e900";
}
.icon-icon-i:before {
  content: "\e901";
}
.icon-icon-l:before {
  content: "\e902";
}
.icon-icon-t:before {
  content: "\e903";
}
.icon-icon-tel:before {
  content: "\e904";
}


/* ------------------------------------------------------ GENERAL */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
html {
	font-size: 14px;
	letter-spacing: 1px;
	color: #333;
}
body {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	-webkit-font-smoothing: antialiased;
	background: url(../img/bg.jpg) repeat;
}
a:link {
	color: #534741;
	text-decoration: none;
}
a:visited {
	color: #534741;
}
a:hover {
	cursor: pointer;
	opacity: .6;
	-webkit-transition: all .5s;
	transition: all .5s;
}
a:active {
	color: #534741;
}
a.white:link {
	color: azure;
	text-decoration: none;
}
a.white:visited {
	color: azure;
}
a.white:hover {
	cursor: pointer;
	opacity: .6;
	-webkit-transition: all .5s;
	transition: all .5s;
}
a.white:active {
	color: azure;
}
p {
	line-height: 1.5em;
	margin-bottom: .5rem;
}
img {
	width: 100%;
	height: auto;
	display: block;
}
.col {
	overflow: hidden;
	zoom: 1;
}



/* ------------------------------------------------------ HEADER */
header {
	position: relative;
	z-index: 10;
}
.border-top {
	background: #534741;
	width: 100%;
	height: 20px;
}
.header-logo {
	width: 125px;
	margin: 3rem auto;
}

/* MAIN SLIDER */
.bx-wrapper {
	position: relative;
	padding: 0;
	*zoom: 1;
	-ms-touch-action: pan-y;
		touch-action: pan-y;
}
.bx-wrapper img {
	max-width: 100%;
	display: block;
}
.bxslider {
	margin: 0;
	padding: 0;
}
ul.bxslider {
	list-style: none;
}
.bx-viewport {
	/*fix other elements on the page moving (on Chrome)*/
	-webkit-transform: translatez(0);
			transform: translatez(0);
}
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}
.bx-viewport {
	left: 0;
	box-shadow: none;
	border: none;
}
#slider li {
	height: 200px;
	background: center no-repeat;
	background-size: cover;
	transform:scale(1.15);
}
.active-slide { animation:slide_img_on 10s linear forwards; }
@keyframes slide_img_on {
	0% { transform:scale(1.15); }
	100% { transform:scale(1); }
}

/* NAVIGATION */
.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-trigger {
	position: relative;
	width: 40px;
	height: 30px;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: azure;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 15px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(15px) rotate(-45deg);
			transform: translateY(15px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-15px) rotate(45deg);
			transform: translateY(-15px) rotate(45deg);
}

.mobile-nav {
	position: fixed;
	top: 0;
	left: 0;
}
.mobile-nav .menu-bt {
	position: fixed;
	background: #534741;
	padding: 15px 10px;
	width: 60px;
	z-index: 2000;
}
.mobile-nav .mobile-nav-inner {
	position: relative;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	background: #534741;
	z-index: 1000;
	opacity: 0;
	visibility:hidden;
	-webkit-transition: all .75s;
			transition: all .75s;
}
.mobile-nav .mobile-nav-inner.open {
	position: fixed;
	opacity: 10;
	visibility:visible;
	-webkit-transition: all .75s;
			transition: all .75s;
}
.mobile-nav .mobile-nav-inner .inner-second {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300px;
	-webkit-transform: translateY(-50%) translateX(-50%);
			transform: translateY(-50%) translateX(-50%);
}
.mobile-nav .mobile-nav-inner .inner-second .mobile-logo {
	width: 100px;
	margin: 0 auto 3rem;
}
.mobile-nav .mobile-nav-inner .inner-second nav {
	margin-bottom: 3rem;
}
.mobile-nav .mobile-nav-inner .inner-second nav ul li span {
	padding-right: 1rem;
	font-size: 1.75rem;
	font-family: 'Tangerine', cursive;
}
.mobile-nav .mobile-nav-inner .inner-second nav ul li a {
	padding: 1rem;
	display: block;
	text-align: center;
}
.mobile-nav .mobile-nav-inner .inner-second .mobile-tel {
	font-size: 1.5rem;
	color: azure;
	text-align: center;
}
.pc-nav {
	display: none;
}



/* ------------------------------------------------------ CONTENTS */
article {
	padding: 4rem 0;
}
article.salon-page {
	padding: 2rem 0 0;
}
article.sub-page {
	padding: 2rem 0 4rem;
}
.inner {
	padding: 2rem 0;
}
.row {
	padding: 0 20px;
}
h2.section-title {
	font-size: 1.5rem;
	text-align: center;
	margin-bottom: 2rem;
}
h2.section-title.border {
	position: relative;
	width: 210px;
	margin: 0 auto 2rem;
}
h2.section-title.border:before {
	position: absolute;
	content: "";
	top: 48.5%;
	left: 0;
	height: 1px;
	width: 25px;
	background: #534741;
}
h2.section-title.border:after {
	position: absolute;
	content: "";
	top: 48.5%;
	right: 0;
	height: 1px;
	width: 25px;
	background: #534741;
}
.line-bg1 {
	background: url(../img/line-bg1.png) repeat-x;
	height: 10px;
	margin-bottom: 2rem;
}
.line-bg2 {
	background: url(../img/line-bg2.png) repeat-x;
	height: 10px;
	margin-bottom: 2rem;
}
.news-block {
	margin-bottom: 2rem;
	line-height: 2em;
}
.news-block h3.news-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	line-height: 1.5em;
}
.news-block .middle-text {
	font-size: 1.25rem;
	color: #00A2A7;
}


/* SALON PAGE */
.salon-info-area .salon-info-block .inner.salon {
	padding: 0 0 2rem 0;
}
.salon-info-area .salon-info-block .salon-img {
	position: relative;
	margin-bottom: 2rem;
}
.salon-info-area .salon-info-block .salon-img .flame {
	position: relative;
	top: 0;
	z-index: 5;
}
.salon-info-area .salon-info-block .salon-img .photo {
	position: absolute;
	top: 0;
}
.salon-info-area .salon-info-block .salon-text h3 {
	color: #00A2A7;
	font-size: 1.25rem;
	line-height: 1.5em;
	margin-bottom: 1rem;
}
.salon-info-area .salon-info-block .salon-text .middle-text {
	font-weight: 700;
}
.salon-add-area {
	padding-top: 3rem;
}
.salon-add-area .left {
	background: url(../img/info_5.jpg) no-repeat center;
	background-size: cover;
	height: 250px;
}
.salon-add-area .right {
	background: rgba(224,213,165,.3);
}
.salon-add-area .right .salon-add-inner {
	text-align: center;
	padding: 2rem 0;
}
.salon-add-area .right .salon-add-inner h3 {
	font-size: 1.25rem;
	margin-bottom: .5rem;
}
.salon-add-area .right .salon-add-inner .name {
	font-size: .85rem;
	margin-bottom: 1rem;
}
.salon-add-area .right .salon-add-inner .tel {
	font-size: 1.5rem;
}
.salon-add-area .right .salon-add-inner .last {
	margin-bottom: 0;
}


/* MENU PAGE */
.menu-area h3 {
	font-size: 1.25rem;
	margin-bottom: 2rem;
}
.menu-area h3 span {
	font-size: .85rem;
	font-weight: 300;
	margin-left: 1rem;
}
.menu-area .menu-block {
	border: solid #D8C1A2 2px;
}
.menu-area .menu-block ul li {
	border-bottom: solid #D8C1A2 1px;
	padding: 1rem;
}
.menu-area .menu-block ul li:last-child {
	border-bottom: none;
}
.menu-area .menu-block ul li:nth-child(2n+1) {
	background: rgba(224,213,165,.3);
}
.menu-area .menu-block ul li:nth-child(2n+0) {
	text-align: right;
}


/* STAFF PAGE */
.staff-area .staff-block {
	margin-bottom: 5rem;
}
.staff-area .staff-block .staff-photo {
	position: relative;
	margin-bottom: 3rem;
}
.staff-area .staff-block .staff-photo .staff-img {
	width: 210px;
	height: 210px;
    -webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto;
}
.staff-area .staff-block .staff-photo .lank {
	width: 210px;
	margin: 0 auto;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
			transform: translateX(-50%);
}
.staff-area .staff-block .staff-text h3 {
	font-size: 1.5rem;
	margin-bottom: .5rem;
	text-align: center;
}
.staff-area .staff-block .staff-text .name {
	font-size: .85rem;
	margin-bottom: 1.5rem;
	text-align: center;
}



/* ------------------------------------------------------ FOOTER */
.foot-bg {
	background: url(../img/bg-foot.png) repeat;
	padding: 2rem 0;
}
.foot-nav ul li {
	float: left;
	width: 49%;
	border-bottom: solid #534741 1px;
}
.foot-nav ul li:nth-child(2n+1) {
	float: left;
	margin-right: 2%;
}
.foot-nav ul li a {
	padding: .75rem 0;
	display: block;
}
.foot-area .inner .foot-border {
	text-align: center;
	border: solid #B28247 1px;
}
.foot-area .inner .foot-border .foot-inner {
	background: rgba(255,255,255,.5);
	margin: .25rem;
	padding: 2rem 0;
}
.foot-area .inner .foot-border .foot-inner .foot-section-title {
	width: 80%;
	margin: 0 auto;
}
.foot-area .inner .foot-border .foot-inner .foot-logo {
	width: 90px;
	margin: 0 auto;
	margin-bottom: 1rem;
}
.foot-area .inner .foot-border .foot-inner .foot-add {
	margin-bottom: 1rem;
}
.foot-area .inner .foot-border .foot-inner .foot-tel-info {
	color: azure;
	background: #B28247;
	padding: .25rem;
	margin: 0 auto .5rem;
	width: 15rem;
}
.foot-area .inner .foot-border .foot-inner .foot-tel {
	font-size: 1.5rem;
}
.foot-area .inner .foot-border .foot-inner .calendar {
	width: 80%;
	margin: 0 auto;
}
.foot-area .inner .foot-border .foot-inner .calendar-text {
	color: #534741;
	text-align: right;
	margin-bottom: 0;
}
.copy {
	background: #534741;
	color: azure;
	padding: 1rem 0;
	text-align: center;
	font-size: .85rem;
}



/* ------------------------------------------------------ MEDIA QUERY */

@media (min-width: 768px) {
	/* SLIDER */
	#slider li {
    	height: 350px;
	}
	
	/* HEADER */
	.mobile-nav {
		display: none;
	}
	.pc-nav {
		display: block;
		background: rgba(224,213,165,.3);
	}
	.pc-nav-inner {
		padding: .5rem 0;
	}
	.pc-nav-inner ul li {
		float: left;
		width: 20%;
	}
	.pc-nav-inner ul li a {
		display: block;
		text-align: center;
		padding: 1rem 0 .75rem;
		font-size: .65rem;
	}
	.pc-nav-inner ul li span {
		display: block;
		padding-bottom: .5rem;
		font-family: 'Tangerine', cursive;
		font-size: 1.75rem;
	}
	
	/* CONTENT */
	.row {
    	padding: 0 50px;
	}
	.inner {
		padding: 3rem 0;
	}
	.concept-text {
		text-align: center;
	}
	.concept-text span {
		display: block;
	}
	
	/* SALON PAGE */
	.salon-info-area .salon-info-block .salon-img.left {
		float: left;
		width: 47.5%;
	}
	.salon-info-area .salon-info-block .salon-img.left:nth-child(2n+1) {
		margin-right: 5%;
	}
	.salon-info-area .salon-info-block .salon-text.left {
		float: left;
		width: 47.5%;
	}
	.salon-info-area .salon-info-block .salon-img.right {
		float: right;
		width: 47.5%;
	}
	.salon-info-area .salon-info-block .salon-img.right:nth-child(2n+1) {
		margin-left: 5%;
	}
	.salon-info-area .salon-info-block .salon-text.right {
		float: right;
		width: 47.5%;
	}
	.salon-add-area {
    	display: -webkit-flex;
    	display: -moz-flex;
    	display: -ms-flex;
    	display: flex;
    	flex-flow: wrap;
	}
	.salon-add-area .left {
		float: left;
		width: 50%;
    	height: 250px;
	}
	.salon-add-area .right {
    	width: 50%;
		position: relative;
	}
	.salon-add-area .right .salon-add-inner {
		position: absolute;
		width: 90%;
		top: 50%;
		left: 50%;
		-webkit-transform: translateY(-50%) translateX(-50%);
				transform: translateY(-50%) translateX(-50%);
	}
	.map iframe {
		height: 250px;
	}
	
	/* STAFF PAGE */
	.staff-area {
		display: -webkit-flex;
    	display: -moz-flex;
    	display: -ms-flex;
    	display: flex;
    	flex-flow: wrap;
	}
	.staff-area .staff-block {
		width: 70%;
		margin-left:15%;
		margin-right:15%;
	}
	.staff-area .staff-block {
		margin-right: 5%;
	}
	.staff-area .staff-block:nth-child(2n) {
		margin-right: 0;
	}
	

/* FOOTER */
	.foot-area .foot-block {
		float: left;
		width: 47.5%;
	}
	.foot-area .foot-block:nth-child(2n+1) {
		margin-right: 5%;
	}
	.foot-area .inner {
    	height: 100%;
	}
	.foot-area .inner .foot-border {
    	height: 100%;
	}
	.foot-area .inner .foot-border .foot-inner {
    	height: 98%;
	}
}

@media (min-width: 992px) {
	/* CONTENT */
	.container {
		width: 990px;
		margin: 0 auto;
	}
}

@media (min-width: 1200px) {
	/* GENERAL */
	html {
	font-size: 17px;
	}
	
	/* HEADER */
	.header-logo {
    	width: 175px;
	}
	
	/* SLIDER */
	#slider li {
    	height: 600px;
		background-position: center;
	}
	
	/* CONTENT */
	.container {
		width: 1170px;
		margin: 0 auto;
	}
	h2.section-title.border {
		width: 250px;
	}
	h2.section-title.border:before {
		height: 2px;
		width: 30px;
	}
	h2.section-title.border:after {
		height: 2px;
		width: 30px;
	}
	
	/* SALON PAGE */
	.salon-add-area .left {
    	height: 400px;
	}
	.map iframe {
		height: 400px;
	}
	
	/* MENU PAGE */
	.menu-area .menu-block ul li {
		float: left;
    	width: 50%;
	}
	.menu-area .menu-block ul li:nth-last-child(-n+2) {
    	border-bottom: none;
	}
	
	/* STAFF PAGE */
	.staff-area .staff-block {
		width: 70%;
		margin-left:15%;
		margin-right:15%;
	}
	.staff-area .staff-block {
		margin-right: 5%;
	}
	.staff-area .staff-block:nth-child(2n) {
		margin-right: 5%;
	}
	.staff-area .staff-block:nth-child(3n) {
		margin-right: 0;
	}
	
	/* FOOTER */
	.foot-area.first {
		float: left;
		width: 33.3333%;
	}
	.foot-area.col {
		width: 66.6666%;
	}
	.foot-nav ul li {
    	float: none;
    	width: 80%;
	}
	.foot-nav ul li:nth-child(2n+1) {
    	float: none;
    	margin-right: 0;
	}
	.foot-area .inner .foot-border .foot-inner p {
    	font-size: .75rem;
	}
}

@media screen and (max-width: 480px) {
	.br { display:block; }
}
