@charset "UTF-8";

/* ---------------------------------------
  基本情報
-----------------------------------------*/
html,body{	height:100%;}
html{
	font-size:62.5%;
    overflow-y: scroll;
}
body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form, figure {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: normal;
	font-family: 'Noto Sans JP',Noto Sans JP,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ",Meiryo,"ＭＳ Ｐゴシック",Arial,Verdana,sans-serif;
	text-align: left;
	color: #333333;
	font-size: 1.6rem;
	line-height: 1.75;
}
input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ",Meiryo,"ＭＳ Ｐゴシック",Arial,Verdana,sans-serif;
	color: #333333;
	font-size: 1.6rem;
	line-height: 1.75;
}
textarea{
	resize: vertical;
}
select::-ms-expand {
	display: none;
}
body a {
	text-decoration: none;
	color: #3F312B;
}
img{
	vertical-align: bottom;
	max-width: 100%;
}
*,*:after,*:before{
	box-sizing: border-box;
}
@media screen and (max-width: 768px) {
	img{
		width: 100%;
	}
	p, dt, dd ,li ,th ,td,
	input, button, textarea, select{
		font-size: 3vw;
    line-height: 1.5;
	}
}

/* responsive
--------------------------------*/
@media screen and (min-width: 769px) {
	.sp{
		display: none!important;
	}
}
@media screen and (max-width: 768px) {
	.pc{
		display: none!important;
	}
}

/* hover
--------------------------------*/
@media screen and (min-width: 769px) {
	.fade:hover,
	a:hover img{
		opacity: 0.7;
	}
	.fade,a img{
		outline: 1px solid transparent;
		transition: opacity 0.3s;
	}
}

/* common
--------------------------------*/
.wrap{
	max-width: 1080px;
	width: 100%;
	margin: 0 auto;
}
.aligncenter{
	display: block;
	margin: 0 auto;
}
.alignright{
	float: right;
}
.alignleft{
	float: left;
}
.tac{
	text-align: center;
}
.tar{
	text-align: right;
}
.tal{
	text-align: left;
}
.flex{
	display: flex;
	justify-content: space-between;
}
.ls-005{
	letter-spacing: -.05em;
}
.white{
	color: #fff;
}
.whiteMarker{
	background: #fff;
}
.bold{
	font-weight: bold;
}
.blank{
	font-weight: bold;
	text-decoration: underline;
	display: inline-block;
	transition: .3s;
}
.blank::after {
	content: '\f2d2';
	font-weight: 400;
	font-family:'Font Awesome 5 Free';
	font-size: .95em;
	margin-left: .3em;
	margin-right: .2em;
	display: inline-block;
}
.din{
	font-family: din-2014, sans-serif;
	font-weight: 400;
}
.din600,
#qa dl dt::before,
#qa dl dd::before{
	font-family: din-2014, sans-serif;
	font-weight: 600;
}
.din700{
	font-family: din-2014, sans-serif;
	font-weight: 700;
}
@media screen and (min-width: 769px) {
	.blank:hover{
		opacity: .7;
	}
}
@media screen and (max-width: 768px) {
	.wrap{
		width: 88%;
	}
	.sp96{
		width: 96%!important;
		margin: 0 auto;
	}
	.spmax{
		width: 113%!important;
		margin-left: -6.5%!important;
	}
}

/* popup
-------------------------------------------------- */
#popup .ttltype1 .title{
	margin-bottom: 20px;
}
#popup h3{
	margin: 0 25px;
  padding-bottom: 5px;
  border-bottom: 1px solid black;
}
#popup .popup_wrap input{
  display: none;
}
#popup .popup_overlay{
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}
#popup .popup_trigger{
  position: absolute;
  width: 100%;
  height: 100%;
}
#popup .popup_content{
  position: relative;
  align-self: center;
  width: 90%;
  max-width: 800px;
  padding: 30px;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s;
}
#popup .close_btn{
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 30px;
  cursor: pointer;
}
#popup .popup_wrap input:checked ~ .popup_overlay{
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}
#popup .list{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
#popup .popup_content .list:nth-child(2){
	padding-bottom: 20px;
}
#popup .item:nth-child(1){
	width: 25%;
}
#popup .item:nth-child(2){
	width: 75%;
}
#popup .item .whitebox{
	background: #fff;
	position: relative;
}
#popup .item figure{
	margin: 20px 0;
	width: 100%;
	height: 80px;
	padding-right: 15px;
	position: relative;
  top: 0;
  left: 10px;
}
#popup .item figure img{
	float: left;
}
#popup .item .txt{
	font-size: 1.5rem;
	text-align: left;
	margin-top: 20px;
	padding: 0 30px;
}
#popup > div > div > div > div.popup_sp > p{
	text-align: center;
	margin-top: 20px;
	margin-bottom: 10px;
}
#popup > div > div > div > div.popup_sp > div > a{
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	#popup .popup_content{
		padding: 46px 10px 10px;
	}
	#popup .list{
		display: block;
		padding-bottom: 20px;
	}
	#popup .item:nth-child(1),
	#popup .item:nth-child(2){
		width: 100%;
		margin: 0 auto;
		padding: 0 20px;
	}
	#popup .item:nth-child(1){
		padding-bottom: 0;
	}
	#popup .item:nth-child(1){
		padding-top: 0;
	}
	#popup .item figure{
		height: auto;
		padding-right: 20px;
		margin: 0;
		text-align: center;
	}
	#popup .item figure img{
		float: none;
		width: 60%;
	}
	#popup .item .txt{
		padding: 0;
	}
	#popup > div > div > div > div.popup_sp > div{
		width: 75%;
		margin: 0 auto;
	}
}
@media screen and (max-width: 480px) {
	#popup .ttltype1 .title{
		font-size: 3rem;
	}
	#popup .popup_content .popup_pc{
		display: none;
	}
}

/* effect
--------------------------------*/
.effect-fade {
　opacity : 0;
　transform : translate(0, 45px);
　transition : all 300ms;
}
.effect-fade.effect-scroll {
　opacity : 1;
　transform : translate(0, 0);
}

/* ---------------------------------------------
  header
-----------------------------------------------*/
header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	height: 80px;
	z-index: 100;
}
header .wrap{
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: auto;
	max-width: 3000px;
	max-width: initial;
}
header .logo{
	width: 320px;
	padding-left: 30px;
	line-height: 1;
}
@media screen and (max-width: 1024px) {
	header{
		height: 56px;
	}
	header .logo{
		width: 300px;
		padding-left: 10px;
	}
	header .logo img{
		max-width: 85%;
	}
}
@media screen and (max-width: 768px) {
	header{
		height: auto;
		min-width: 100%;
	}
	header .wrap{
		width: 96%;
		margin-right: 0;
		height: 50px;
	}
	header .logo{
		padding-left: 0;
	}
	.menu-trigger{
		width: 50px;
		height: 50px;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 101;
		overflow: hidden;
	}
	.menu-trigger span{
		display: block;
		width: 30px;
		height: 2px;
		background: #EC991F;
		position: absolute;
		left: 0;
		right: 0;
		margin: 0 auto;
		transition: .3s;
		opacity: 1;
	}
	.menu-trigger span:nth-child(1){
		top: 30%;
	}
	.menu-trigger span:nth-child(2){
		top: 50%;
		transform: translateY(-50%);
	}
	.menu-trigger span:nth-child(3){
		bottom: 30%;
	}
	header.open .menu-trigger span:nth-child(1){
		top: 50%;
		transform: translateY(-50%) rotate(135deg);
	}
	header.open .menu-trigger span:nth-child(2){
		top: 50%;
		opacity: 0;
	}
	header.open .menu-trigger span:nth-child(3){
		top: 50%;
		bottom: 0;
		transform: translateY(-50%) rotate(-135deg);
	}
}

/* グローバルナビ
--------------------------------*/
.gnav ul{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.gnav ul li{
	padding: 0 10px;
}
.gnav ul li a{
	display: block;
	transition: .3s;
}
.gnav ul li a:hover {
	text-decoration: underline;
	color: #EC991F;
}
.gnav ul li a img{
	width: auto;
	max-width: initial;
	max-width: auto;
	display: block;
	margin: 0 auto 10px;
}
.gnav ul li .menu{
	font-size: 1.4rem;
	letter-spacing: .08em;
	line-height: 1;
	text-align: center;
	display: block;
}
.gnav ul li.contact{
	padding: 0;
	margin-right: 0;
	margin-left: 20px;
	background-color: #3F312B;
}
.gnav ul li.contact label{
	padding: 12px 30px;
  display: block;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.gnav ul li.contact label:hover{
	text-decoration: none;
	color: #EC991F;
	cursor: pointer;
}
@media screen and (max-width: 1024px) {
	.gnav ul li{
		margin: 0 10px;
		padding: 0;
	}
	.gnav ul li .menu{
		font-size: 1.25rem;
	}
	.gnav ul li a img{
		margin: 10px auto;
	}
	.gnav ul li.contact{
		margin-left: 0;
	}
	.gnav ul li.contact label{
		padding: 4px 20px;
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 896px) {
	.gnav ul li{
		margin: 0 5px;
	}
	.gnav ul li.contact label{
		padding: 4px 10px;
	}
	body > header > div > nav > ul > li:nth-child(7){
		padding-right: 12px;
	}
}
@media screen and (min-width: 769px) {
	.gnav ul li a:hover{
		opacity: .7;
	}
	.gnav ul li a:hover img{
		opacity: 1;
	}
}
@media screen and (max-width: 768px) {
	.gnav {
		width: 80vw;
		height: 100%;
		top: 0;
		right: -80vw;
		position: fixed;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
		padding: 12% 8%;
		background-color: rgba(63,49,43,.95);
		z-index: 100;
		margin-top: 0;
		transition: .3s;
	}
	header.open .gnav{
		right: 0;
	}
	.gnav ul{
		display: block;
	}
	.gnav ul li{
		margin: 0;
	}
	.gnav ul li+li{
		margin-top: 10%;
	}
	.gnav ul li .menu{
		font-size: 2.0rem;
	}
	.gnav ul li a{
		display: block;
		transition: .3s;
		color: #fff;
	}
	.gnav ul li .en{
		font-size: 5.7vw;
		text-align: left;
	}
	.gnav ul li .jp{
		font-size: 4vw;
		text-align: left;
		margin-top: 4%;
	}
	.gnav ul li.contact{
		margin-right: 0;
		background: none;
		background-color: #EC991F;
	}
}
@media screen and (max-width: 375px) {
	.gnav ul li.contact{
		margin-left: 0;
	}
}

/* ---------------------------------------------
  main
-----------------------------------------------*/
main{
	display: block;
	padding-top: 80px;
}
main section{
	width: 100%;
}
@media screen and (max-width: 1024px) {
	main{
		padding-top: 56px;
	}
}
@media screen and (max-width: 768px) {
	main{
		padding-top: 50px;
	}
}

/* タイトル
--------------------------------*/
.ttltype1 .title{
	font-size: 2.8rem;
	line-height: 1;
	letter-spacing: .04em;
	margin-bottom: 10px;
	text-align: center;
}
.ttltype2{
	font-size: 2.4rem;
	font-weight: bold;
	letter-spacing: .05em;
}
.ttltype3{
	font-size: 3.8rem;
	line-height: 1;
	text-align: center;
}
.ttltype4{
	font-size: 1.6rem;
	line-height: 1;
	letter-spacing: .04em;
	margin: 14px;
}
@media screen and (max-width: 768px) {
	.ttltype1 .en{
		font-size: 11.5vw;
		text-align: center;
		margin-bottom: 3%;
	}
	.ttltype1 .jp{
		font-size: 4.6vw;
		line-height: 1.5;
		text-align: center;
	}
	.ttltype2{
		font-size: 5vw;
		line-height: 1.6;
		letter-spacing: 0;
		text-align: center;
	}
	.ttltype2.spsmall{
		font-size: 5.1vw;
	}
	.ttltype3{
		font-size: 11vw;
	}
	.ttltype4 .en{
		font-size: 9vw;
		text-align: center;
		margin-bottom: 3%;
	}
	.ttltype4 .jp{
		font-size: 4.6vw;
		line-height: 1.5;
		text-align: center;
	}
}

/* ボタン
--------------------------------*/
.btntype1{
	font-size: 1.8rem;
	letter-spacing: .12em;
	color: #fff;
	font-weight: bold;
	text-align: center;
	border: 2px solid #fff;
	width: 320px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transition: .3s;
	cursor: pointer;
	padding-right: 20px;
	margin: 0 auto;
}
.btntype1.center{
	margin: 0 auto;
}
.btntype1::before{
	content: '';
	position: absolute;
	top: calc(25% + 1px);
	right: 6%;
	width: 35px;
	height: 2px;
	background: #3F312B;
  transition: .3s;
  border-left: 24px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}
.btntype1.btnblack{
	border-color: #3F312B;
	background: #3F312B;
}
.btntype1.btnblack::after{
	border-left-color: #fff;
}
@media screen and (min-width: 769px) {
	.btntype1:hover{
		color: #333333;
		background: #fff;
	}
	.btntype1:hover:before{
		color: #333333;
		background: #fff;
		border-left: 24px solid #333333;
	  border-top: 14px solid transparent;
	  border-bottom: 14px solid transparent;
	}
	.btntype1.btnblack:hover{
		color: #414141;
		background: #fff;
	}
	.btntype1.btnblack:hover:before{
		color: #414141;
		background: #fff;
	}
}
@media screen and (max-width: 768px) {
	.btntype1{
		font-size: 4.6vw;
		text-align: left;
		justify-content: flex-start;
		letter-spacing: 0;
		border-width: .5vw;
		width: 100%;
		height: 17.2vw;
		padding: 0 10%;
	}
	.btntype1::before{
		right: 2%;
		width: 14vw;
		height: .5vw;
	}
	.btntype1::after{
		top: calc(50% + -.4vw);
		right: calc(5% - 2.5vw);
		border-width: 2vw;
		border-bottom: 0;
		border-left-width: 3vw;
	}
}

/* mv
--------------------------------*/
#mv{
	line-height: 1;
	position: relative;
	display: block;
	min-width: 1200px;
	min-height: 500px;
}
#mv .slide{
	height: 715px;
	overflow: hidden;
	position: relative;
	background: no-repeat center center /cover;
}
#mv .slide::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(34,34,34,.3);
}
#mv .slide1{
	background-image: url(../img/img_mv01.jpg);
}
#mv .slide2{
	background-image: url(../img/img_mv02.png);
}
#mv .slide3{
	background-image: url(../img/img_mv03.jpg);
}
#mv .slide4{
	background-image: url(../img/img_mv04.jpg);
}
#mv .slide5{
	background-image: url(../img/img_mv05.jpg);
}
#mv .slick-dots{
	position: absolute;
	bottom: 100px;
	left: 0;
	right: 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}
#mv .slick-dots,
#mv .slick-dots li{
	font-size: 0;
	line-height: 1;
}
#mv .slick-dots li{
	margin: 0 14px;
	position: relative;
}
#mv .slick-dots li::before{
	content: '';
	position: absolute;
	top: 50%;
	right: -28px;
	width: 28px;
	height: 1px;
	background: #fff;
}
#mv .slick-dots li:last-child::before{
	display: none;
}
#mv .slick-dots button{
	text-indent: 101%;
	font-size: 0;
	overflow: hidden;
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 50%;
	cursor: pointer;
	transition: .3s;
}
#mv .slick-dots .slick-active button::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 18px;
	height: 18px;
	border: 1px solid #fff;
	border-radius: 50%;
}
#mv .wrap{
	position: absolute;
	bottom: 200px;
	left: 60px;
}
#mv .ttl{
	font-size: 5rem;
	letter-spacing: .05em;
	font-weight: 600;
	color: #fff;
	line-height: 1.25;
	text-align: left;
}
#mv .txt{
	color: #fff;
	line-height: 1.85;
	letter-spacing: .05em;
	font-weight: bold;
	display: flex;
	justify-content: left;
	margin: 30px 0 0 50px;
}
@media screen and (max-width: 1200px) {
	#mv{
		min-width: inherit;
	}
	#mv .wrap{
		left: 30px;
	}
}
@media screen and (max-width: 1024px) {
	#mv .ttl{
  	font-size: 4.5rem;
  }
  #mv .txt{
  	font-size: 1.4rem;
  }
}
@media screen and (max-width: 769px) {
	#mv .slick-dots button:hover{
		opacity: .7;
	}
}
@media screen and (max-width: 768px) {
	#mv .wrap{
		left: 30px;
	}
	#mv .slick-dots button:hover{
		opacity: .7;
	}
  #mv .ttl{
  	font-size: 4.2rem;
  }
  #mv .txt{
  	font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
	#mv .ttl{
		font-size: 3.0rem;
	}
}
@media screen and (max-width: 451px) {
	#mv .slide{
		height: 560px;
	}
	#mv .ttl{
		font-size: 3.2rem;
	}
	#mv .txt{
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 414px) {
	#mv .wrap{
		left: 10px;
		width: 100%;
	}
	#mv .slide{
		height: 520px;
	}
	#mv .ttl{
		font-size: 2.8rem;
	}
}
@media screen and (max-width: 375px) {
	#mv .slide{
		height: 450px;
	}
	#mv .ttl{
		font-size: 2.2rem;
	}
	#mv .txt{
		margin: 30px 0 0 10px;
		font-weight: normal;
	}
	#news .item .list li figure{
		margin: -22px 0 0 0;
	}
}

/* news
--------------------------------*/
#news{
	padding: 100px 0;
	background: #f7f7f7;
}
#news .item{
	margin-top: 60px;
}
#news .item .list{
	display: flex;
	justify-content: space-between;
}
#news .item .list li{
	width: 240px;
	background-color: #fff;
	border: 1px solid #3F312B;
	margin: 0 10px;
}
#news .item .list li a{
	height: 100%;
	width: 100%;
	display: block;
	background: #fff;
	position: relative;
	transition: .3s;
}
#news .item .list li .newstype{
	font-size: 1.5rem;
	background-color: #3F312B;
	color: #fff;
	line-height: 1;
	letter-spacing: .02em;
	text-align: center;
	padding: 6px 10px;
	display: inline-block;
  position: relative;
  box-sizing: border-box;
  margin: 0 0 0 -15px;
  top: 10px;
  width: calc(100% - 50%);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  opacity: .9;
}
#news .item .list li figure{
	margin: -29px 0 0 0;
}
#news .item .list li figure img{
	width: auto;
	height: 130px;
	object-fit: contain;
}
#news .item .list li figure .date{
	font-size: 1.3rem;
	vertical-align: baseline;
	color: #EC991F;
	display: block;
  text-align: right;
  margin: 5px 12px 0 0;
}
#news .item .list li figcaption{
	padding: 8px 12px;
	line-height: 1.45;
}
#news .item .list li figcaption .title{
	text-align: left;
	font-weight: bold;
	font-size: 1.3rem;
}
#news .newslink{
	text-align: right;
  margin-right: 20px;
  margin-top: 30px;
}
#news .newslink a{
	text-decoration: underline;
}
#news .newslink a:hover{
	color: #EC991F;
	cursor: pointer;
}
@media screen and (max-width: 1024px) {
	#news .item .list li .newstype{
		width: calc(100% - 30%);
	}
}
@media screen and (min-width: 769px) {
	#news .item .list li a:hover img{
		opacity: 1;
	}
	#news .item .list li a:hover{
		opacity: .7;
	}
}
@media screen and (max-width: 768px) {
	#news{
		padding: 14% 0 22%;
		margin-top: 0;
	}
	#news .item{
		margin-top: 14%;
	}
	#news .item .list{
		flex-wrap: wrap;
		justify-content: center;
	}
	#news .item .list li{
		width: 100%;
		margin-bottom: 10px;
	}
	#news .item .list li:nth-child(n+3){
		margin-top: 2%;
	}
	#news .item .list li a::before{
		bottom: 4vw;
		width: 4vw;
		height: 4vw;
	}
	#news .item .list li a p{
		line-height: 26.25px;
	}
	#news .item .list li figure{
		margin: -24px 0 0 0;
	}
	#news .item .list li figure img{
		height: 100%;
		width: 100%;
	}
	#news .item .list li .newstype,
	#news .item .list li figure .date,
	#news .item .list li figcaption .title{
		font-size: 3vw;
	}
}
@media screen and (max-width: 375px) {
	#news .item .list li .newstype{
		font-size: 3.8vw;
	}
	#news .item .list li figure{
		margin: -28px 0 0 0;
	}
	#news .item .list li .newstype,
	#news .item .list li figure .date,
	#news .item .list li figcaption .title{
		font-size: 4.5vw;
	}
}

/* salon
--------------------------------*/
#salon{
	background-image: url("../img/bg_salon.png");
	background-repeat: no-repeat;
	background-size: cover;
	padding: 100px 0;
}
#salon .listttl{
	text-align: center;
	margin-top: 90px;
}
#salon .about {
    margin: 60px auto 0;
    background-color: #fff;
    padding: 20px 30px;
}
#salon .aboutbox{
    margin-top: 20px;
}
#salon .salonbtn{
	padding: 30px 120px;
}
@media screen and (max-width: 768px) {
	#salon{
		padding: 6% 0;
	}
	#salon .listttl{
		margin-top: 18%;
	}
	#salon .salonbtn{
		padding: 60px 0px;
	}
}
@media screen and (max-width: 375px) {
	#salon .aboutbox p{
		font-size: 4.5vw;
	}
}

/* salon2
--------------------------------*/
#salon2{
	padding-bottom: 100px;
}
#salon2 .slide{
	height: 240px;
	overflow: hidden;
	position: relative;
	background: no-repeat center center /cover;
}
#salon2 .slide::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(34,34,34,.3);
}
#salon2 .salonslide1{
	background-image: url(../img/img_salon01.png);
	filter: brightness(135%);
}
#salon2 .salonslide2{
	background-image: url(../img/img_salon02.png);
	filter: brightness(135%);
}
#salon2 .salonslide3{
	background-image: url(../img/img_salon03.png);
	filter: brightness(135%);
}
#salon2 .salonslide4{
	background-image: url(../img/img_salon04.png);
	filter: brightness(135%);
}
#salon2 .salonslide5{
	background-image: url(../img/img_salon05.png);
	filter: brightness(135%);
}
#salon2 .salonslide6{
	background-image: url(../img/img_salon06.png);
	filter: brightness(135%);
}
/* makidume
--------------------------------*/
#makidume{
	padding: 100px 0;
	background-color: #FCF0DD;
}

@media screen and (max-width: 500px) {
	#makidume .ttltype1 .title{
		font-size:2.3rem;
	}
}
/* staff
--------------------------------*/
#staff{
	padding: 100px 0;
	background-color: #FCF0DD;
}
#staff .block{
	margin-top: 60px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
#staff .block figure{
	margin-left: -95px;
	width: 680px;
	margin-top: 28px;
}
#staff .block figure img{
	width: 320px;
	margin-left: 180px;
}
#staff .block .txtwrap{
	padding: 30px;
	width: 710px;
	background: #fff;
	min-height: 420px;
	position: relative;
}
#staff .block .blockttl{
	text-align: center;
	font-weight: bold;
}
#staff .block .txt{
	font-size: 1.5rem;
	line-height: 1.75;
	margin-top: 15px;
}
#staff .signature{
    position: absolute;
    right: 48px;
    padding-top: 40px;
}
#staff .staffbtn{
	padding: 60px 120px 0 120px;
}
@media screen and (min-width: 1080px) {
	#staff .block figure,
	#staff .block .txtwrap{
		width: 50%;
	}
	#staff .signature{
		padding: 0;
	}
}
@media screen and (max-width: 768px) {
	#staff{
		padding: 6% 0 26%;
		margin-top: 0;
	}
	#staff .block{
		display: block;
	}
	#staff .block figure{
		width: 75%!important;
		margin: 0 auto!important;
	}
	#staff .block figure img{
		width: 100%;
		margin-left: 0;
		margin-bottom: 20px;
	}
	#staff .block .txtwrap{
		width: 100%;
	}
	#staff .block .txt{
		font-size: 2.4vw;
	}
	#staff .txt{
		line-height: 2;
		margin: 10% auto 0;
		font-size: 2.2vw;
	}
	#staff .signature{
		position: relative;
		right: 0;
	}
	#staff .staffbtn{
		padding: 60px 0px;
	}
}
@media screen and (max-width: 375px) {
	#staff .block .txt{
		font-size: 4.5vw;
	}
	#staff .signature p{
		font-size: 5.5vw;
	}
}

/* flow
--------------------------------*/
#flow{
	padding: 100px 0;
	background: #f7f7f7;
}
#flow .item{
	margin-top: 60px;
}
#flow .item .list{
	display: flex;
	justify-content: space-between;
}
#flow .item .list li{
	width: 240px;
	border: 1px solid #3F312B;
	margin: 0 8px;
	background-color: #fff;
}
#flow .item .list .arrow{
	content:'';
    position: relative;
    top: 150px;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: .3s;
    border-left: 20px solid #3F312B;
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
}
#flow .item .list li a{
	height: 100%;
	width: 100%;
	display: block;
	background: #fff;
	position: relative;
	transition: .3s;
}
#flow .item .list li .num{
	font-size: 1.6rem;
	line-height: 1;
	letter-spacing: .02em;
	text-align: center;
	padding: 8px;
	background-color: #3F312B;
	color: #fff;
}
#flow .item .list .ttltype4{
	text-align: center;
}
#flow .item .list li figure{
	text-align: center;
}
#flow .item .list li figure img{
	padding: 0 16px;
	height: 180px;
}
#flow .item .list li figcaption{
	text-align: left;
	font-size: 1.4rem;
	padding: 8px 10px;
}
#flow .menubtn{
	padding: 30px 120px 0 120px;
}
@media screen and (min-width: 769px) {
	#flow .item .list li a:hover img{
		opacity: 1;
	}
	#flow .item .list li a:hover{
		opacity: .7;
	}
}
@media screen and (max-width: 768px) {
	#flow{
		padding: 14% 0 22%;
		margin-top: 0;
	}
	#flow .item{
		margin-top: 14%;
	}
	#flow .item .list{
		flex-wrap: wrap;
	}
	#flow .item .list li{
		width: 100%;
	}
	#flow .item .list li:nth-child(n+3){
		margin-top: 2%;
	}
	#flow .item .list li a{
		padding: 10% 10% 25%;
	}
	#flow .item .list li a::before{
		bottom: 4vw;
		width: 4vw;
		height: 4vw;
	}
	#flow .item .list li .num{
		font-size: 4.6vw;
		margin-bottom: 1%;
	}
	#flow .item .list li figure{
		text-align: center;
		width: 100%;
		margin-top: 3%;
	}
	#flow .item .list li figure img{
		padding: 0;
		height: 280px;
	}
	#flow .item .list li figcaption{
		font-size: 1.5rem;
	}
	#flow .item .list .arrow{
		display: none;
	}
	#flow .menubtn{
		padding: 60px 0px;
	}
}

/* voice
--------------------------------*/
#voice{
	padding: 100px 0;
	background-color: #FCF0DD;
}
#voice .list{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-top: 60px;
}
#voice .item{
	margin-right: 22px;
	width: 345px;
}
#voice .item:nth-child(3n){
	margin-right: 0;
}
#voice .item .whitebox{
	padding: 25px 24px 30px;
	background: #fff;
	border-radius: 20px;
	height: 540px;
	position: relative;
}
#voice .item .listttl{
	line-height: 1.45;
	min-height: 90px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid #b9b9b9;
}
#voice .item .txt{
	text-align: left;
	font-size: 1.5rem;
	margin-top: 10px;
}
#voice .item figure{
	margin-top: 20px;
	text-align: center;
	width: 100%;
	height: 100px;
	padding: 0 10px;
	position: absolute;
    bottom: 20px;
}
#voice .item figure img{
	float: left;
}
#voice .voicebtn{
	padding: 30px 120px;
}
@media screen and (min-width: 1080px) {
	#voice .list{
		padding: 0 2%;
		justify-content: center;
	}
	#voice .item{
		width: 30%;
		margin-right: 2%;
	}
}
@media screen and (max-width: 768px) {
	#voice{
		padding: 13% 0 22%;
	}
	#voice .list{
		display: block;
	}
	#voice .item,
	#voice .item:nth-child(3n){
		margin: 0 auto;
		width: 100%;
	}
	#voice .item:nth-child(n+2){
		margin-top: 5%;
	}
	#voice .item .whitebox{
		padding: 6% 6.5% 10%;
		height: 100%;
	}
	#voice .item .listttl{
		line-height: 1.45;
		min-height: 26vw;
	}
	#voice .item .txt{
		line-height: 1.75;
		margin-top: 3%;
	}
	#voice .item figure{
		margin-top: 5%;
		position: relative;
		bottom: 0;
		text-align: right;
	}
	#voice .item figure img{
		width: 25%;
	}
	#voice .item figure figcaption{
		font-size: 3vw;
	}
	#voice .voicebtn{
		padding: 60px 0px;
	}
}
@media screen and (max-width: 375px) {
	#voice .item .txt{
		font-size: 4.5vw;
	}
	#voice .item figure figcaption{
		font-size: 5vw;
	}
}

/* access
--------------------------------*/
#access{
	padding: 100px 0;
	background-color: #f7f7f7;
}
#access .list{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-top: 60px;
}
#access .item{
	margin-right: 30px;
	width: 510px;
}
#access .item .whitebox{
	padding: 20px 15px 30px;
	background: #fff;
	height: 490px;
	position: relative;
}
#access .item figure{
	margin-top: 20px;
	text-align: center;
	width: 100%;
	height: 80px;
	padding: 0 50px 0 30px;
	position: relative;
    top: 0;
    left: 10px;
}
#access .item figcaption{
	font-size: 2.0rem;
	font-weight: 600;
	line-height: 1.25;
}
#access .item figure img{
	float: left;
}
#access .item address{
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 2.0;
	text-align: left;
	margin-top: 10px;
}
#access .item .txt{
	font-size: 1.3rem;
	line-height: 1.8;
	text-align: left;
	margin-top: 20px;
}
#access .accessbtn{
	padding: 40px 80px;
}
@media screen and (min-width: 1080px) {
	#access .item{
		margin: 0;
	}
	#access .list{
		justify-content: center;
	}
}
@media screen and (max-width: 768px) {
	#access{
		padding: 13% 0 22%;
	}
	#access .list{
		display: block;
	}
	#access .item,
	#access .item:nth-child(3n){
		margin: 0 auto;
		width: 100%;
	}
	#access .item:nth-child(2){
		display: none;
	}
	#access .item .whitebox{
		padding: 6% 6.5% 10%;
		height: 100%;
	}
	#access .item .listttl{
		line-height: 1.45;
		min-height: 26vw;
	}
	#access .item .txt{
		font-size: 4.6vw;
		line-height: 1.75;
		margin-top: 10%;
	}
	#access .item figure{
		margin-top: 3%;
		padding: 0;
	}
	#access .item figure img{
		width: 25%;
	}
	#access .item figcaption{
		font-size: 4vw;
	}
	#access .item address{
		font-size: 4.5vw;
	}
	#access .accessbtn{
		padding: 60px 0px;
	}
}

/* google map
--------------------------------*/
.googlemaps{
	position: relative;
	padding-bottom: 30%;
	height: 0;
	overflow: hidden;
}
.googlemaps iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
@media screen and (max-width: 768px) {
	.googlemaps{
		padding-bottom: 100%;
	}
}


/* recruit
--------------------------------*/

.information{
    font-size: 2.0rem;
	font-weight: 600;
    line-height: 1;
    letter-spacing: .04em;
    text-align: center;
    background-color: #EC991F;
    color: #fff;
	padding: 20px 0px
    }

.information2{
	font-size: 2.0rem;
    color: #EC991F;
	margin-left:20px;
	padding:0
    }

.fem-table{
   width: 100%;
   border-collapse: collapse;
   margin-bottom:70px	
}

.fem-table tr{
  border-bottom: solid 2px white;
}

.fem-table tr:last-child{
  border-bottom: none;
}

.fem-table th{
  position: relative;
  text-align: left;
 width: 100px;
  background-color: #ec991f;
  color: white;
  text-align: center;
  padding: 10px 0;
}

.fem-table th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #ec991f;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.fem-table td{
  text-align: left;
  width: 70%;
  background-color: #fdf5e6;
 padding-bottom: 1em;
	 padding-left: 1.5em;
	padding-top: 1em;
}

.msd{
	width: 400px;
	padding:20px 0;
	margin:50px;
	margin-bottom:100px;
	font-size:2.2rem;
	font-weight:600;
	line-height:1;
	text-align:center;
	background-color:#ec991F;
	color:#fff
}

.ffm{
	padding:20px 0;
	margin:50px;
	text-align:center;
}

#recruit{
	padding: 100px 0;
	background-color: #FCF0DD;
}
#recruit{
	padding: 100px 0;
	background-color: #FCF0DD;
}
#recruit .block{
	margin-top: 60px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
#recruit .block figure{
	margin-left: -95px;
	width: 680px;
	margin-top: 28px;
}
#recruit .block figure img{
	width: 320px;
	margin-left: 180px;
}
#recruit .block .txtwrap{
	padding: 30px;
	width: 710px;
	background: #fff;
	min-height: 420px;
	position: relative;
}
#recruit.block .blockttl{
	text-align: center;
	font-weight: bold;
}
#recruit .block .txt{
	font-size: 1.5rem;
	line-height: 1.75;
	margin-top: 15px;
}
#recruit .signature{
    position: absolute;
    right: 48px;
    padding-top: 40px;
}
#recruit .staffbtn{
	padding: 60px 120px 0 120px;
}
@media screen and (min-width: 1080px) {
	#recruit .block figure,
	#recruit .block .txtwrap{
		width: 50%;
	}
	#recruit .signature{
		padding: 0;
	}
}
@media screen and (max-width: 768px) {
	#recruit{
		padding: 6% 0 26%;
		margin-top: 0;
	}
	#recruit .block{
		display: block;
	}
	#recruit .block figure{
		width: 75%!important;
		margin: 0 auto!important;
	}
	#recruit .block figure img{
		width: 100%;
		margin-left: 0;
		margin-bottom: 20px;
	}
	#recruit .block .txtwrap{
		width: 100%;
	}
	#recruit .block .txt{
		font-size: 2.4vw;
	}
	#recruit .txt{
		line-height: 2;
		margin: 10% auto 0;
		font-size: 2.2vw;
	}
	#recruit .signature{
		position: relative;
		right: 0;
	}
	#recruit.staffbtn{
		padding: 60px 0px;
	}
}
@media screen and (max-width: 375px) {
	#recruit .block .txt{
		font-size: 4.5vw;
	}
	#recruit .signature p{
		font-size: 5.5vw;
	}
}

/* ---------------------------------------------
  footer
-----------------------------------------------*/
.topbtn{
	width: 60px;
	height: 60px;
	position: fixed;
	bottom: 20px;
	right: 40px;
	z-index: 99;
}
.topbtn a{
	background: #3F312B;
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	transition: opacity .3s;
}
.topbtn a::before{
    content: '';
    position: absolute;
    top: calc(50% - -4px);
    right: calc(50% - 16px);
    width: 16px;
    height: 16px;
    transform: translate(-50%,-50%) rotate(-45deg);
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
}
@media screen and (min-width: 769px) {
	.topbtn a:hover{
		opacity: .7;
	}
}
@media screen and (max-width: 768px) {
	.topbtn{
		width: 20vw;
		height: 20vw;
		bottom: 3vw;
		right: 3vw;
	}
	.topbtn a::before{
	    top: calc(50% - -1vw);
	    right: calc(50% - 3.5vw);
	    width: 3.5vw;
	    height: 3.5vw;
	}
}

/* logofooter
--------------------------------*/
.logofooter{
	padding: 20px 0;
	text-align: center;
}
.logofooter .ttl{
	font-size: 2rem;
	margin-right: 40px;
}
.logofooter ul{
	display: flex;
	align-items: center;
	justify-content: center;
}
.logofooter ul li{
	line-height: 1;
}
.logofooter ul li+li{
	margin-left: 20px;
}
.logofooter ul li img{
	width: 30px;
	margin-right: 5px;
	vertical-align: middle;
}
.logofooter ul li.insta img{
	width: 34px;
}
.logofooter ul li a{
	display: inline-block;
	transition: .3s;
}
@media screen and (min-width: 769px) {
	.logofooter ul li a:hover{
		opacity: .7;
	}
	.logofooter ul li a:hover img{
		opacity: 1;
	}
}
@media screen and (max-width: 768px) {
	.logofooter{
		padding: 7% 0;
	}
	.logofooter .wrap{
		display: block;
	}
	.logofooter .wrap img{
		width: 9.5vw;
	}
	.logofooter .ttl{
		font-size: 7vw;
		line-height: 1;
		text-align: center;
		margin-right: 0;
	}
	.logofooter ul{
		margin-top: 8%;
	}
	.logofooter ul li{
		font-size: 5.1vw;
		line-height: 1;
	}
	.logofooter ul li+li{
		margin-left: 9vw;
	}
	.logofooter ul li img{
		width: 9vw;
		display: block;
		margin: 0 auto 6%;
		vertical-align: middle;
	}
	.logofooter ul li.insta img{
		width: 9.5vw;
		margin-bottom: 5%;
	}
}

/* footerlink
--------------------------------*/
.footerlink{
	padding: 15px 0 40px 0;
}
.footerlink ul{
	display: flex;
	align-items: center;
	justify-content: center;
}
.footerlink ul li{
	padding: 0 20px;
	border-right: 1px solid #000;
    display: inline-block;
}
.footerlink li:last-child {
    border-right-width: 0
}
.footerlink ul li a{
	display: block;
	text-decoration: underline;
	font-size: 1.4rem;
}
.footerlink ul li a:hover {
	color: #EC991F;
}
@media screen and (max-width: 768px) {
	.footerlink ul{
		display: block;
		padding-left: 5%;
	}
	.footerlink ul li{
		padding: 6px 20px;
		border: none;
	}
}


/* mainfooter
--------------------------------*/
.mainfooter{
	padding: 30px 0 20px;
	background: #3F312B;
}
.mainfooter .txt{
	font-size: 1.6rem;
	font-weight: 200;
	color: #fff;
	margin-left: 10px;
	text-align: center;
	line-height: 1.25;
}
.mainfooter .copy{
	font-size: 1.2rem;
	color: #fff;
	text-align: center;
	margin-top: 20px;
	padding-top: 20px;
	position: relative;
}
.mainfooter .copy::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 525px;
	height: 1px;
	margin: 0 auto;
	background: #fff;
	opacity: .3;
}
@media screen and (max-width: 768px) {
	.mainfooter{
		padding: 6% 0;
	}
	.mainfooter .txt{
		font-size: 3.5vw;
		text-align: center;
		line-height: 1.5;
		margin-left: 0;
		margin-top: 3%;
	}
	.mainfooter .copy{
		font-size: 3.5vw;
		margin-top: 6%;
		padding-top: 6%;
	}
	.mainfooter .copy::before{
		width: 100%;
	}
}

/* ------------------------------
    clearfix
------------------------------ */

.cf:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}

.cf {display: inline-block;}

/* Hides from IE Mac */
* html .cf {height: 1%;}
.cf {display:block;}
/* End Hack */