@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
	padding: 0;
	font-family: "Noto Sans Japanese";
	-webkit-overflow-scrolling: touch;
	-moz-overflow-scrolling: touch;
	-ms-overflow-scrolling: touch;
	overflow-scrolling: touch;
	color: #3D3D3D;
}

body.fixed {position: fixed; width: 100%; }

div{ box-sizing: border-box; }

img{
	margin: 0;
	vertical-align: bottom;
	pointer-events: none;
}

h1,h2,h3,h4,p{ margin: 0; }

h2.Rr { margin: 10px 0 0; text-align: center; }
h3.Rr { margin: 0 0 20px; font-size: 2.5rem; text-align: center; }
h3.Rr span { margin-right: 10px; font-size: 1.5rem; }

/*段落*/
.br-sp{ display: none; }
.br-pc{ display: block; }



/*scroll-event*/
.fadein{
  	-webkit-transition: all 1.2s ease;
  	-o-transition: all 1.2s ease;
  	transition: all 1.2s ease;
  	opacity: 0;
}
.fadein.active{
  	opacity: 1;
}

.fadein-left{
  	-webkit-transition: all 1.2s ease;
  	-o-transition: all 1.2s ease;
  	transition: all 1.2s ease;
  	-webkit-transform: translateX(-60px);
  	-moz-transform: translateX(-60px);
  	-ms-transform: translateX(-60px);
  	transform: translateX(-60px);
  	opacity: 0;
}
.fadein-left.active{
  	-webkit-transform: translateX(0);
  	-moz-transform: translateX(0);
  	-ms-transform: translateX(0);
  	transform: translateX(0);
  	opacity: 1;
}


.fadein-right{
  	-webkit-transition: all 1.2s ease;
  	-o-transition: all 1.2s ease;
  	transition: all 1.2s ease;
  	-webkit-transform: translateX(60px);
  	-moz-transform: translateX(60px);
  	-ms-transform: translateX(60px);
  	transform: translateX(60px);
  	opacity: 0;
}
.fadein-right.active{
  	-webkit-transform: translateX(0);
  	-moz-transform: translateX(0);
  	-ms-transform: translateX(0);
  	transform: translateX(0);
  	opacity: 1;
}

.fadein-down{
  	-webkit-transition: all 1.2s ease;
  	-o-transition: all 1.2s ease;
  	transition: all 1.2s ease;
  	-webkit-transform: translateY(-100%);
  	-moz-transform: translateY(-100%);
  	-ms-transform: translateY(-100%);
  	transform: translateY(-100%);
	opacity: 0;
}
.fadein-down.active{
  	-webkit-transform: translateY(0%);
  	-moz-transform: translateY(0%);
  	-ms-transform: translateY(0%);
  	transform: translateY(0%);
	opacity: 1;
}

.zoom-in{
  	-webkit-transition: all .8s linear;
  	-o-transition: all .8s linear;
  	transition: all .8s linear;
  	font-size: 20%;
}
.zoom-in.active{
  	font-size: 100%;
}



/*loading*/
#loading-box {
    background: #fff;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 2000;
}
#loading-box img {
    background: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* The loader container */
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  
  width: 100px;
  height: 100px;
  
  margin-top: -50px;
  margin-left: -50px;
  
  z-index: 1000;
  perspective: 1000px;
  transform-style: preserve-3d;
 }


.sk-chase {
  width: 100px;
  height: 100px;
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0; 
  animation: sk-chase-dot 2.0s infinite ease-in-out both; 
}

.sk-chase-dot:before {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: #151617;
  border-radius: 100%;
  animation: sk-chase-dot-before 2.0s infinite ease-in-out both; 
}

.sk-chase-dot:nth-child(1) { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2) { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3) { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4) { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5) { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6) { animation-delay: -0.6s; }
.sk-chase-dot:nth-child(1):before { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2):before { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3):before { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4):before { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5):before { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6):before { animation-delay: -0.6s; }

@keyframes sk-chase {
  100% { transform: rotate(360deg); } 
}

@keyframes sk-chase-dot {
  80%, 100% { transform: rotate(360deg); } 
}

@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4); 
  } 100%, 0% {
    transform: scale(1.0); 
  } 
}


#content{
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
}



/*header*/
#common-header{ width: 100%; margin: 0; padding: 0; }
#common-header .inner{
    margin: 0 auto;
    padding: 15px;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    position: relative;
    z-index: 1000;
}

.comon-header__logo p{
    font-size: 120%;
    letter-spacing: .1em;
    text-align: center;
    color: #343a41;
}
.comon-header__logo a{ display: block; }
.comon-header__logo a img{}
.comon-header__logo p.heading{ font-size: 90%; }
.comon-header__logo p.comp-name{ margin-top: 5px; }

ul.common-header__glo-menu{
    width: 840px;
    margin: 0;
    padding: 5px 0 0 0;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
}
ul.common-header__glo-menu li{
    width: 20%;
    list-style: none;
    text-align: center;
}
ul.common-header__glo-menu li a{
    text-decoration: none;
    font-weight: 600;
    padding-bottom: 5px;
    font-size: 90%;
    letter-spacing: .1em;
    text-align: center;
    color: #343a41;
    position: relative;
}
ul.common-header__glo-menu li a::after{
  	position: absolute;
  	left: 0;
	right: 0;
  	bottom: 0;
  	display: block;
  	content: "";
  	width: 0%;
  	height: 3px;
	background: #343a41;
  	transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
ul.common-header__glo-menu li a:hover::after {
  width: 100%;
}


/*バーガーメニュー_アイコン*/
.common-header__tablet-menu{ display: none; }
.header-nav-mobile{ display: none; }

.head-burgermenu{
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	width: 55px;
	height: 55px;
	z-index: 2001;
	flex-wrap: wrap; 
    position: relative;
    border-radius: 10px;
}
.head-burgermenu{ display: none; }
.head-burgermenu p{ display: block; width: 100%; color: #fff; text-align: center; }

.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-trigger {
	position: relative;
	width: 20px;
	height: 20px;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #343a41;
	border-radius: 4px;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;	
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 10px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
	
.open .menu-trigger{
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}
.open .menu-trigger span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
    background-color: #fff;
}
.open .menu-trigger span:nth-of-type(2) {
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
    background-color: #fff;
}
.open .menu-trigger span:nth-of-type(3) {
    background-color: #fff;
	opacity: 0;
}


.header-other-cont01{ 
    margin: 15px 0 15px auto;
    display: flex;
    justify-content: flex-end;
}
.header-other-cont01 section{display: inline-block; position: relative; }
.header-other-cont01::before, .header-other-cont01::after{
    content: '';
    display: block;
    clear: both;
}
#common-header .tel-text{
    font-weight: 600;
    font-size: 110%;
    color: #343a41;
    float: left;
}
#common-header .tel-text span{
    padding-left: 5px;
    font-size: 140%;
}
#common-header .contact__linkbtn{
    width: 180px;
    display: inline-block;
    padding: 10px;
    box-sizing: border-box;
    background: #151617;
    border: 1px solid #151617;
    text-align: center;
    text-decoration: none;
    color: #fff;
    margin-left: 15px;
}



/*footer*/
#common-footer{
    width: 100%;
    margin: 0;
    padding: 0;
    background: #151617;
    overflow: hidden;
}
#common-footer .inner{
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 0;
}
.common-footer__glo-menu{
    margin: 0;
    padding: 0;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
}
.common-footer__glo-menu li{
    list-style: none;
    width: 20%;
    text-align: center;
    padding: 10px 0;
    border-left: 1px solid #fff;
}
.common-footer__glo-menu li:last-child{ border-right: 1px solid #fff; }
.common-footer__glo-menu li a{ color: #fff; text-decoration: none; }
.common-footer__logo{
    width: 124px;
    margin: 60px auto 0;
    text-align: center;
    display: block;
}

.common-footer__copyright{
    padding: 15px 0;
    text-align: center;
    color: #D7DBDF;
    font-size: 85%;
    letter-spacing: .1em;
}
.share-links-container {
    width: 170px;
    margin: 30px auto 0;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    position: relative;
    z-index: 20;
}
.share-link-facebook {
    margin: 0 auto;
    width: 55px;
    height: 55px;
    display: block;
}
.share-link-instagram {
    margin: 0 auto;
    width: 65px;
    height: 65px;
    display: block;
}
.share-link-instagram img{ max-width: 100%; }


/*slider*/
#fadeslider{
    width: 95%;
    margin: /*-45px*/0 auto 0;
    height: /*730px;*/80vh;
    position: relative;
}



/*scroll-guide__type-ball*/
.scroll-guide__type-ball{
    width: 15px;
    height: 65px;
    margin: -32px auto 0;
    position: relative;
    z-index: 10;
}
.scroll-guide__type-ball span:nth-child(1){
    display: block;
    width: 15px;
    height: 15px;
    background: #3e3a39;
    border-radius: 100%;
    margin-bottom: 10px;
}
.scroll-guide__type-ball span:nth-child(2){
    display: block;
    width: 15px;
    height: 15px;
    background: #727171;
    border-radius: 100%;
    margin-bottom: 10px;
}
.scroll-guide__type-ball span:nth-child(3){
    display: block;
    width: 15px;
    height: 15px;
    background: #9fa0a0;
    border-radius: 100%;
}



/*top-contents*/
.top-contents01{
    width: 100%;
    margin: 0 auto 0;
    padding: 0 0 120px 0;
    background: url("../img/top/stripes-light.png");
}
.top-contents01 h1.contents-title{
    display: block;
    max-width: 760px;
    margin: 0 auto 60px;
    padding: 45px 0;
    text-align: center;
    letter-spacing: .1em;
    font-weight: 400;
    font-size: 340%;
    color: #343a41;
    background: #fff;
}
.top-contents01 h1.contents-title span{ 
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #6C6C6C;
}
.top-contents01 .common_read-morebtn{ margin-top: 60px; }


.top-contents02{
    width: 100%;
    margin: 90px auto 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}
.top-contents02 .contents02__background-img-parallax{
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/top/top_contents_backimg01.jpg")no-repeat 50% 50%;
    background-attachment: fixed;
    background-size: cover;
}
.top-contents02 .inner{
    overflow: hidden;
    background: rgba(0,0,0,.6);
    z-index: 5;
    position: relative;
}
.top-contents02 section.contents02__whiteback-text-box{
    max-width: 760px;
    margin: 120px auto;
    padding: 60px 0;
    background: #fff;
    z-index: 10;
    position: relative;
}
.contents-headingtitle-img01{
    width: 95%;
    height: 400px;
    margin: 0 auto;
    background: url("../img/top/top_contents_backimg01.jpg")no-repeat 40% 55%;
    background-position: cover;
    overflow: hidden;
}
.contents-headingtitle-img01 .background-opacity{
    width: 100%;
    height: 100%;
    margin: 0;
    background: rgba(0,0,0,.4);
}
.top-contents02 h1.contents-title{
    display: block;
    max-width: 760px;
    margin: 0 auto;
    padding: 45px 0;
    text-align: center;
    letter-spacing: .1em;
    font-weight: 400;
    font-size: 380%;
    color: #343a41;
}
.top-contents02 h1.contents-title span{ 
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #6C6C6C;
}
.top-contents02 p.text{
    text-align: center;
    line-height: 2.3em;
}
.top-contents02 .common_read-morebtn { margin-top: 60px; }



/*.top-contents03*/
.top-contents03{
    width: 100%;
    margin: 0;
    padding: 0;
}

/*calendar-container*/
.top-contents03__calendar-container{
    width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    position: relative;
}
.top-contents03__calendar-container .inner {
    overflow: hidden;
    background: rgba(242,242,252,.6);
    z-index: 5;
    position: relative;
}
.top-contents03__calendar-container section.contents03__whiteback-text-box {
    max-width: 760px;
    margin: 60px auto;
    padding: 0 0 60px 0;
    background: #fff;
    z-index: 10;
    position: relative;
}
.top-contents03__calendar-container h1.contents-title {
    display: block;
    max-width: 760px;
    margin: 0 auto;
    padding: 45px 0;
    text-align: center;
    letter-spacing: .1em;
    font-weight: 400;
    font-size: 380%;
    color: #343a41;
}
.top-contents03__calendar-container h1.contents-title span {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #6C6C6C;
}
.top-contents03__calendar-container .calendar-cont{ padding: 0 45px; }


.top-contents03 .inner{
    margin: 0 auto;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
}
.top-contents03 .contents03__google-map{
    width: 50%;
}
.top-contents03 .contents03__add-textbox{
    width: 50%;
}
.top-contents03 .contents03__add-textbox dl{ margin: 0; }
.top-contents03 .contents03__add-textbox dl dt{
    display: block;
    float: left;
    width: 130px;
    padding-left: 30px;
    color: #343a41;
    font-size: 140%;
    font-weight: 800;
    clear: both;
}
.top-contents03 .contents03__add-textbox dl dd{
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding-top: 5px;
    padding-left: 160px;
    padding-right: 30px;
    padding-bottom: 60px;
    margin: 0 0 60px 0;
    border-bottom: 1px solid #434A51;
    position: relative;
}
.top-contents03 .contents03__add-textbox dl dd::after{
    content: '';
    display: block;
    clear: both;
}

.top-contents03 .contents03__add-textbox dl dt.first-child{ letter-spacing: 1.5em; }
.top-contents03 .contents03__add-textbox dl dt.last-child{ letter-spacing: .9em; }
.top-contents03 .contents03__add-textbox dl dd.first-child{ margin-top: 60px; }
.top-contents03 .contents03__add-textbox dl dd.last-child{ margin-bottom: 0; border: none; }
.top-contents03 .contents03__add-textbox dl .font-size_down{ font-size: 130%; }


/*carousel-list*/
ul.carousel-list ul.slick-dots{ position: static; margin-top: 15px;}
ul.carousel-list{ 
    padding: 0;
    -wekit-transition-delay: .2s;
    -o-transition-delay: .2s;
  	transition-delay: .2s;
}
ul.carousel-list li.slick-slide{
    margin: auto 15px;
    position: relative;
    transition: .5s;
    height: auto;
    /*box-shadow:0px 0px 10px 5px rgba(0,0,0,.3);*/
}
ul.carousel-list li:hover .left{
	opacity: .5;
}
ul.carousel-list li a{
    background: #fff;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    overflow: hidden;
    text-decoration: none;
    color: #222;
    border-radius: 30px;
}
ul.carousel-list li a .left{
    width: 40%;
    height: 300px;
    overflow: hidden;
    position: relative;
    transition: .5s;
}
ul.carousel-list li a .left img{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
}
ul.carousel-list li a .right{
    width: 60%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    padding-left: 30px;
}
ul.carousel-list li a .right h2{
    font-size: 160%;
    font-weight: 600;
    letter-spacing: .3em;
}
ul.carousel-list li a .right h3{ margin-bottom: 30px; }
ul.carousel-list li a .right p{
    font-size: 130%;
    color: #868686;
    text-align: right;
}

ul.carousel-list .slick-dots li::before, ul.carousel-list .slick-dots li::after{
	display: none;
}

button.slick-prev{ z-index: 100; left: 0; }
button.slick-next{ z-index: 100; right: 0; }




/*more-btn*/
.common_read-morebtn{ 
    display: block;
    width: 240px;
    margin: 0 auto;
    padding: 15px;
    background: #151617;
    border: 1px solid #151617;
    box-sizing: border-box;
    text-align: center;
    font-size: 110%;
    text-decoration: none;
    letter-spacing: .1em;
    color: #fff;
    position: relative;
    transition: .4s;
}
.common_read-morebtn span{
    position: relative;
    z-index: 10;
}
.common_read-morebtn::after{
    content: '';
    width: 35px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 0px;
    margin: auto;
    z-index: 5;
    transition: .4s;
}
.common_read-morebtn::before{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: '';
  background: #fff;
  transform: scale(0, 1);
  transition: transform .4s;
}
.common_read-morebtn:hover{
    color: #151617;
}
.common_read-morebtn:hover::before {
  transform-origin: right top;
  transform: scale(1, 1);
}
.common_read-morebtn:hover::after{
	background: #151617;
}




/*page*/
.page__box-container{ 
    width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

/*about*/
.page__heading-title{
    width: 95%;
    height: 550px;
    margin: 0 auto;
    overflow: hidden; 
    background-size: cover;
}
.page__heading-title .inner{
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.6);
}
.page__heading-title h1{
    font-size: 150%;
    font-weight: 400;
    color: #fff;
    letter-spacing: .4em;
    text-align: center;
}
.page__heading-title h1 span{
    display: block;
    font-size: 300%;
    font-weight: 400;
    letter-spacing: .1em;
}
.page__heading-title h1 div {
	font-size: .8em;
	letter-spacing: .1em;
}

/*page__yield-inner*/
.page__yield-inner{
    width: 95%;
    max-width: 1366px;
    margin: 0 auto;
    padding: 60px 0 0;
}

/*yield*/
.page__yield-inner article img{ 
    max-width: 100%; 
    width: auto; 
    height: auto;
    max-height: auto;
    vertical-align: bottom;
}
.page__yield-inner h2{
    font-size: 400%;
    color: #11182b;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}
.page__yield-inner h2 span{
    padding-left: 10px;
    font-size: 50%;
}
.page__yield-inner h2::after {
    content: '';
    width: 50%;
    height: 1px;
    background: #11182b;
    position: absolute;
    top: 50%;
    right: -55%;
    margin: auto;
}
.page__yield-inner p{ line-height: 2.5em; }

dl.about-page__profile-dlist{
    position: relative;
    overflow: hidden;
    margin: 90px auto 90px 15%;
}
dl.about-page__profile-dlist::before, dl.about-page__profile-dlist::after{
    content: '';
    display: block;
    clear: both;
}
dl.about-page__profile-dlist .common_read-morebtn{
    margin: 30px 0 0;
}

dl.about-page__profile-dlist dt{ 
    float: left;
    font-size: 140%;
    font-weight: 600;
    letter-spacing: .4em;
    color: #343a41;
}
dl.about-page__profile-dlist dd{
    display: block;
    margin: 0 auto 30px;
    padding-left: 10.3em;
    padding-top: 5px;
    padding-bottom: 30px;
    letter-spacing: .1em;
    border-bottom: 2px dotted #ccc;
}


/*section about-property*/
section.cont01__info-img{
    width: 100%;
    height: 550px;
    margin: 0 auto;
    background: url("../img/page/page_img_about01.JPG")no-repeat 50% 50%;
    background-size: cover;
}

section.cont01 .row-cont{
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
}
section.cont01 .row-cont .row-cont__left, section.cont01 .row-cont .row-cont__right{ width: 50%; }
section.cont01 .row-cont .row-cont__right dl.about-page__profile-dlist{ margin: 0 30px 0 0; }


/*concept*/
.page__yield-inner.concept-page h2{ font-size: 230%; position: relative; }
.page__yield-inner.concept-page h2::after {
    content: '';
    width: 50%;
    height: 1px;
    background: #11182b;
    position: absolute;
    top: 50%;
    right: -55%;
    margin: auto;
}
.page__yield-inner.concept-page p{ padding-left: 30px; letter-spacing: .1em; line-height: 1.7em; }
.page__yield-inner.concept-page .cont02__concept-page p{ /*line-height: 3.5em;*/ }
.page__yield-inner.concept-page .cont02__concept-page p span{ font-size: 85%; }

.cont02__concept-page{
    margin: 90px 0 0;
    background: #f8f8f8;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    position: relative;
    overflow: hidden;
}
.cont02__concept-page::before{
    content: 'Japanese hair';
    position: absolute;
    color: #fff;
    font-size: 550%;
    font-weight: 800;
    top: 0;
    right: 0;
    margin: auto;
}
.cont02__concept-page .text-box{ width: 65%; padding: 180px 45px; position: relative; }
.cont02__concept-page .heading-img{ 
    width: 35%;
    background: url("../img/page/page_concept-heading-img02.jpg")no-repeat 50% 50%;
    background-size: cover;
}


/*section menu-property*/
.page__yield-inner.menu-table{
    max-width: 1366px;
}
.menu-table-container{
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    position: relative;
}

.menu-table-container .img{ width: 28%; position: relative; display: none; }
.menu-table-container .img__tablet-sizing{
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    display: none;
}
.menu-table-container .img__tablet-sizing.cutmenu{
    background: url("../img/page/menu/menu_parallax_img01.JPG")no-repeat 50% 50%;
    background-size: cover;
}
.menu-table-container .img__tablet-sizing.colormenu{
    background: url("../img/page/menu/menu_parallax_img02.JPG")no-repeat 50% 50%;
    background-size: cover;
}
.menu-table-container .img__tablet-sizing.permmenu{
    background: url("../img/page/menu/menu_parallax_img03.JPG")no-repeat 50% 50%;
    background-size: cover;
}
.menu-table-container .img__tablet-sizing.hairsetmenu{
    background: url("../img/page/menu/menu_parallax_img04.jpg")no-repeat 50% 50%;
    background-size: cover;
}
.menu-table-container .img__tablet-sizing.headspamenu{
    background: url("../img/page/menu/menu_parallax_img05.jpg")no-repeat 50% 50%;
    background-size: cover;
}
.menu-table-container .img__tablet-sizing.makeupmenu{
    background: url("../img/page/menu/menu_parallax_img06.jpg")no-repeat 50% 50%;
    background-size: cover;
}
.menu-table-container .img__tablet-sizing.dressingmenu{
    background: url("../img/page/menu/menu_parallax_img07.JPG")no-repeat 50% 50%;
    background-size: cover;
}

.menu-table-container .text-box{
    width: 100%;
    padding: 45px 0 90px;
    padding-left: 14%;
    padding-right: 14%;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
    background: #eee;
}
.menu-table-container:nth-child(2n) .text-box{ background: #f8f8f8; }
.menu-table-container .text-box a{ color: #467CD9; font-size: 105%; }

.page__yield-inner.menu-page section.cont-flex-box{
    padding: 60px;
    margin-top: 60px;
    box-sizing: border-box;
    background: #eee;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    position: relative;
}
.page__yield-inner.menu-page section.cont-flex-box h2.menu-heading{ font-size: 160%; }

dl.menu-page__charge-dlist{
    position: relative;
    overflow: hidden;
    margin: 0;
}
dl.menu-page__charge-dlist::before, dl.menu-page__charge-dlist::after{
    content: '';
    display: block;
    clear: both;
}

dl.menu-page__charge-dlist dt{ 
    float: left;
    /*width: 50%;*/
    font-size: 110%;
    font-weight: 600;
    letter-spacing: .1em;
    position: relative;
    color: #000;
}
dl.menu-page__charge-dlist dt span{
    font-size: 80%;
    padding-left: 19px;
    display: inline-block;
    position: relative;
}
dl.menu-page__charge-dlist dt span.time{
    margin-left: 15px;
    font-weight: 400;
}
dl.menu-page__charge-dlist dt span.time::before{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1em;
    color: #8d99a9;
    content: "\f017";
    position: absolute;
    left: 0;
    top: 0;
}
dl.menu-page__charge-dlist dd{
    display: block;
    margin: 0 auto 20px;
    /*padding-left: 50%;*/
    padding-top: 5px;
    padding-bottom: 20px;
    letter-spacing: .1em;
    text-align: right;
    font-size: 90%;
    border-bottom: 2px dotted #ccc;
}

.menu-page__dllist-left-container{ width: 50%; padding-right: 45px; position: relative; }
.menu-page__dllist-left-container::after {
    content: '';
    height: 100%;
    width: 1px;
    background: #b0b8c7;
    position: absolute;
    right: 0;
    top: 0;
    margin: auto;
}
.menu-page__dllist-right-container{ width: 50%; padding-left: 45px; position: relative; }


.page__yield-inner h2.menu-heading{
    font-size: 340%;
    display: inline-block;
}
.page__yield-inner h2.menu-heading::after{
    content: '';
    width: 100%;
    height: 1px;
    background: #11182b;
    position: absolute;
    top: 50%;
    right: -120%;
    margin: auto;
}
.page__yield-inner h3{
    font-size: 130%;
    color: #11182b;
    margin-bottom: 15px;
}
.menu-page__dllist-right-container h3{
    position: relative;
    display: block;
    margin-bottom: 20px;
    padding-left: 60px;
    color: #343a41;
    font-size: 140%;
}
.menu-page__dllist-right-container h3::before{
    content: '';
    width: 50px;
    height: 1px;
    background: #82889a;
    position: absolute;
    top: 50%;
    left: 0;
    margin: auto;
}
.menu-page__dllist-right-container dl.menu-page__charge-dlist{ width: 100%; }
.menu-page__dllist-right-container dl.menu-page__charge-dlist dd.last-child{ margin-bottom: 60px; }

.annotation-box{
    border: 1px solid #11182b;
    border-radius: 15px;
    padding: 30px;
}

.page__yield-inner.menu-page section.cont03{
    margin-top: 90px;
    padding: 60px 0;
    background: url("../img/page/page_menu_section_background.jpg")no-repeat 50% 50%;
    background-size: cover;
}

.menu-table-container.cutmenu .text-box::before{
    content: 'CUT';
    position: absolute;
    color: #fff;
    font-size: 550%;
    font-weight: 800;
    top: 0;
    right: 20%;
    margin: auto;
}
.menu-table-container.colormenu .text-box::before{
    content: 'COLOR';
    position: absolute;
    color: #fff;
    font-size: 550%;
    font-weight: 800;
    top: 0;
    right: 20%;
    margin: auto;
}
.menu-table-container.permmenu .text-box::before{
    content: 'PERM';
    position: absolute;
    color: #fff;
    font-size: 550%;
    font-weight: 800;
    top: 0;
    right: 20%;
    margin: auto;
}
.menu-table-container.hairsetmenu .text-box::before{
    content: 'HAIRSET';
    position: absolute;
    color: #fff;
    font-size: 550%;
    font-weight: 800;
    top: 0;
    right: 20%;
    margin: auto;
}
.menu-table-container.headspamenu .text-box::before{
    content: 'HEADSPA';
    position: absolute;
    color: #fff;
    font-size: 550%;
    font-weight: 800;
    top: 0;
    right: 20%;
    margin: auto;
}
.menu-table-container.makeupmenu .text-box::before{
    content: 'MAKEUP';
    position: absolute;
    color: #fff;
    font-size: 550%;
    font-weight: 800;
    top: 0;
    right: 20%;
    margin: auto;
}
.menu-table-container.dressingmenu .text-box::before{
    content: 'DRESSING';
    position: absolute;
    color: #fff;
    font-size: 550%;
    font-weight: 800;
    top: 0;
    right: 20%;
    margin: auto;
}

#content.about-page__content ul.common-header__glo-menu li:nth-child(1) a::after{ width: 100%; }
#content.concept-page__content ul.common-header__glo-menu li:nth-child(2) a::after{ width: 100%; }
#content.menu-page__content ul.common-header__glo-menu li:nth-child(3) a::after{ width: 100%; }
#content.access-page__content ul.common-header__glo-menu li:nth-child(5) a::after{ width: 100%; }

.dressing-linkBtn { width: 70%; margin: 0 auto 50px; }
.dressing-linkBtn a {
	display: block;
	position: relative;
	padding: 1.2em 1em;
	font-size: 1.8rem;
	font-weight: 600;
	color: #fff;
	text-align: center;
	background: #F00;
}
.dressing-linkBtn a::before {
	content: "";
	position: absolute;
	top: 45px;
	left: 25%;
	width: 15px;
	height: 15px;
	border: 2px solid;
	border-color: transparent transparent #fff #fff;
	transform: rotate(-45deg);
}

.dressing-packBox01 { position: relative; margin-bottom: 30px; text-align: center; }
.dressing-packBox01 .packBox01__flexBox { display: flex; align-items: center; border: 1px #151617 solid; }

.packBox01__flexBox .Box01 { width: 20%; }
.packBox01__flexBox .Box02 { width: 80%; font-size: 2rem; text-align: center; }

.dressing-packBox01 .heading01 { margin-top: 20px; font-size: 2.8rem; font-weight: 600; }
.dressing-packBox01 .heading02 { margin-top: 10px; font-size: 2.3rem; font-weight: 600; color: #f00; }

.dressing-packBox02 { position: relative; margin-bottom: 30px; }
.dressing-packBox02 .packBox02__flexBox { display: flex; justify-content: space-between; align-items: center; margin-top: 25px; }

.packBox02__flexBox .Box01 { width: 35%; }
.packBox02__flexBox .Box01 img { border-radius: 10px; }
.packBox02__flexBox .Box02 { width: 60%; text-align: center; }
.packBox02__flexBox .Box02 .Box02__item01 { padding: 0.5em 1em; font-size: 1.3rem; color: #fff; background: #151617; border-radius: 10px; }
.packBox02__flexBox .Box02 .Box02__item02 { margin-top: 20px; font-size: 2rem; font-weight: 500; }
.packBox02__flexBox .Box02 .Box02__item02 span { font-size: 1.2rem; }
.packBox02__flexBox .Box02 .Box02__item03 {
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 30px solid transparent;
	border-left: 30px solid transparent;
	border-top: 40px solid #F00;
	border-bottom: 0;
	margin: 20px auto 0;
}
.packBox02__flexBox .Box02 .Box02__item04 { font-size: 5rem; font-weight: 600; line-height: 1.3; }
.packBox02__flexBox .Box02 .Box02__item04 span { font-size: 1.2rem; }

.dressing-packBox03 { position: relative; margin-bottom: 50px; }
.dressing-packBox03 .packBox03__flexBox { display: flex; justify-content: space-between; align-items: center; }

.packBox03__flexBox .Box01 { width: 9%; }
.packBox03__flexBox .Box02 { display: flex; flex-wrap: wrap; width: 87%; }
.packBox03__flexBox .Box02 .Box02__item01 { width: 50%; }
.packBox03__flexBox .Box02 .Box02__item01 .item01__txt01 { font-size: 1.2rem; }
.packBox03__flexBox .Box02 .Box02__item01 .item01__txt02 { margin: 0; }
.packBox03__flexBox .Box02 .Box02__item02 {
	width: 50%;
	padding: 1em;
	font-size: 1.2rem;
	text-align: center;
	border: 1px #151617 solid;
	border-radius: 10px;
	box-sizing: border-box;
}
.packBox03__flexBox .Box02 .Box02__item03 {
	width: 100%;
	margin-top: 25px;
	padding: 0.5em 1em;
	font-size: 1.2rem;
	font-weight: 600;
	color: #fff;
	text-align: center;
	background: #f00;
	border-radius: 10px;
}
.packBox03__item04 { margin-top: 25px; font-size: 1.2rem; }


/*page-breadcrumb*/
.page-breadcrumb {
    width: 95%;
    max-width: 1366px;
    margin: 0px auto 120px;
    padding: 30px 0 0;
    text-align: right;
}

.page-breadcrumb li {
    display:inline;
    list-style: none;
}

.page-breadcrumb li:after {
    content: '>';
    padding: 0 3px;
    color: #555;
}
.page-breadcrumb li:last-child:after { content: ''; }
.page-breadcrumb li a { text-decoration: none; color: #444; font-size: 85%; }
.page-breadcrumb li a span{ padding: 0 5px; }
.breadcrumb li a:hover { text-decoration: underline; }



/*contact*/
.page-container .inner{
    width: 95%;
    max-width: 1366px;
    margin: 0 auto;
    padding: 60px 0 0;
}

dl.contact_tel-container {
    background: #eee;
    padding: 60px;
    position: relative;
    overflow: hidden;
    margin: 0px;
}
dl.contact_tel-container::before, dl.menu-page__charge-dlist::after { content: ''; display: block; clear: both; }
dl.contact_tel-container dt {
    float: left;
    /* width: 50%; */
    font-size: 110%;
    font-weight: 600;
    letter-spacing: .1em;
    position: relative;
    color: #000;
}
dl.contact_tel-container dd {
    display: block;
    padding-top: 5px;
    padding-bottom: 20px;
    letter-spacing: 0.1em;
    text-align: right;
    font-size: 90%;
    margin: 0px auto 20px;
    border-bottom: 2px dotted rgb(204, 204, 204);
}

.toi_box01{
    padding: 60px;
    margin-top: 60px;
    box-sizing: border-box;
    background: #eee;
}
.toi_box01 form{ width: 100%; }
.toi_td1{
    font-size: 110%;
    font-weight: 600;
    color: #11182b;
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
}
.toi_td1::after {
    content: '';
    width: 100%;
    height: 1px;
    background: #11182b;
    position: absolute;
    top: 50%;
    right: -110%;
    margin: auto;
}
.toi_td1 font{ font-size: 80%; margin-left: 10px; }

.toi_td2{
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 2px dotted #ccc;
}

input[type="submit"] { -webkit-appearance: none; border-radius: 0; }
input[type="reset"] { -webkit-appearance: none; border-radius: 0; }
input[type="button"] { -webkit-appearance: none; border-radius: 0; }
.contact-form-btn{ margin-top: 45px; text-align: center; }
.contact-form-btn .toi_font_fami{
    display: inline-block;
    background: #151617;
    text-align: center;
    padding: 10px 20px;
    color: #fff;
    border: none;
}


/*page-top*/
.page-top{
    display: none;
    height: 45px;
    width: 10px;
    position: fixed;
    right: 5%;
    bottom: 0;
    z-index: 100;
}
.page-top::before{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5.5px 11px 5.5px;
    border-color: transparent transparent #151617 transparent;
    position: absolute;
    top: 0;
    left: -5px;
    margin: auto;
}
.page-top::after{
    content: '';
    width: 1px;
    height: 43px;
    background: #151617;
    position: absolute;
    bottom: 0;
    left: -8px;
    right: 0;
    margin: auto;
}


/*concept*/
.page__yield-inner.concept-page .cont02__concept-page .text-box h2{ letter-spacing: .1em; font-weight: 400; font-size: 180%; }
h3.annotation-box__heading-title{
    display: inline-block;
    background: #fff;
    font-size: 160%;
    font-weight: 400;
    letter-spacing: .3em;
    padding: 0 15px;
    margin-left: 30px;
    position: relative;
    z-index: 10;
}
.concept-page__content .annotation-box{
    margin-top: -35px;
}
ul.concept-page__profile-ulist{
    margin: 30px 0;
    padding: 0 0 0 30px;
}
ul.concept-page__profile-ulist li{
    display: block;
    margin: 0 auto 20px;
    /* padding-left: 50%; */
    padding-top: 5px;
    padding-bottom: 20px;
    letter-spacing: .1em;
    border-bottom: 2px dotted #ccc;
}


.inner__calendar #calendarTitle{ display: none !important; font-size: 0 !important; }



/*20200806*/
ul.dressing-items-list{ padding: 0; display: flex; display: -webkit-flex; justify-content: space-between; margin: 15px auto 45px; }
ul.dressing-items-list li{ width: 24.5%; list-style: none; text-align: center; font-size: 110%; font-weight: 600; letter-spacing: .1em; border: 1px solid #11182b; background: #11182b; position: relative; }
ul.dressing-items-list li::before{ 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .8s cubic-bezier(0.25, 1, 0.5, 1);
    background: #eee;
}
ul.dressing-items-list li:hover::before{ transform: scale(1); transform-origin: center; }

ul.dressing-items-list li::after{ content: ''; width: 25px; height: 1px; background: #fff; position: absolute; top: 0; bottom: 0; right: 0; margin: auto; z-index: 1; }

.menu-table-container .text-box ul.dressing-items-list li a{ text-decoration: none; color: #fff; display: block; padding: 15px; position: relative; z-index: 10; transition: .9s; }
.menu-table-container .text-box ul.dressing-items-list li:hover a{ color: #11182b; }

.menu-table-container .text-box ul.dressing-items-list li a span.small{ display: block; font-size: 80%; padding-top: 10px; position: relative; font-weight: 400; letter-spacing: 0; }


h3.category-title{ font-size: 220%; font-weight: 500; letter-spacing: .1em; display: inline-block; color: #11182b; margin: 45px 0 15px; position:  relative; }
h3.category-title span.small{ font-size: 70%; }
h3.category-title::after {
    content: '';
    width: 100%;
    height: 1px;
    background: #11182b;
    position: absolute;
    top: 50%;
    right: -120%;
    margin: auto;
}

ul.item-list.none-image{ margin: 0;  padding: 0; display: flex; display: -webkit-flex; justify-content: space-between; }
ul.item-list.none-image li{ 
    width: 25%;
    box-sizing: border-box;
    border-right: 2px solid #fff;
    list-style: none;
    font-size: 120%; 
    letter-spacing: .1em;
    text-align: center; 
    padding: 20px 0 20px 45px;
    background: #eee;
    position: relative;
}
ul.item-list.none-image li:nth-child(2n+1){ background: #f8f8f8; }
ul.item-list.none-image li::before{
    font-family: "Font Awesome 5 Free";
    content: '\f00c';
    font-weight: 800;
    font-size: 160%;
    position: absolute;
    top: 29%;
    left: 15px;
    width: 0;
    height: 0;
    color: #465d88;
    z-index: 10;
}
ul.item-list.none-image li::after{
    content: '';
    width: 20px;
    height: 20px;
    border: 3px solid #aeb3bf;
    border-radius: 5px;
    position: absolute;
    top:  35%;
    left: 15px;
    z-index: 5;
}
ul.item-list.none-image li:last-child{ border: none; }


ul.item-list.image-list{ margin: 0; padding: 0 20px; display: flex; display: -webkit-flex; justify-content: space-between; flex-wrap: wrap; position: relative; }
ul.item-list.image-list::before{ content: ''; display: block; width: 25%; order: 1; }
ul.item-list.image-list::after{ content: ''; display: block; width: 25%; }

ul.item-list.image-list li{
    width: 25%;
    box-sizing: border-box;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    list-style: none;
    letter-spacing: .1em;
    text-align: center; 
    padding: 20px 10px 20px 10px;
    background: #f0f2f5;
    position: relative;
}
ul.item-list.image-list.item_no-image li{ width: 50%; }
ul.item-list.image-list.two-column li{ width: 50%; }
ul.item-list.image-list.four-column li{ width: 25%; }
ul.item-list.image-list.three-column li{ width: 33.33%; }

ul.item-list.image-list h3.item-name{ text-align: left; font-weight: 300; font-size: 110%; position: relative; padding-left: 50px; margin-bottom: 0; }
ul.item-list.image-list h3.item-name span.small{ font-size: 75%; display: block; }
ul.item-list.image-list h3.item-name span.space{ padding-left: 15px; font-size: 90%; }
.page__yield-inner ul.item-list.image-list p.read{ font-size: 95%; line-height: 1.8em; text-align: left; padding-top: 5px; margin-top: 10px; border-top: 1px solid #ced5de; }


h4.sub-title{ color: #11182b; border-bottom: 2px dotted #ccc; margin-left: 15px; margin-bottom: 10px; font-size: 140%; font-weight: 400; padding: 10px 0; }
span.head-number{ font-weight: 600; font-size: 200%; color: #9da7c0; padding-right: 10px; }


/*ul.item-list.image-list li h3.item-name::before{
    font-family: "Font Awesome 5 Free";
    content: '\f00c';
    font-weight: 800;
    font-size: 130%;
    position: absolute;
    top: -1px;
    left: 15px;
    width: 0;
    height: 0;
    color: #465d88;
    z-index: 10;
}*/
ul.item-list.image-list li h3.item-name::after{
    content: '';
    width: 15px;
    height: 15px;
    border: 3px solid #aeb3bf;
    border-radius: 5px;
    position: absolute;
    top:  5px;
    left: 15px;
    z-index: 5;
}px

ul.item-list.image-list p.read{ font-size: 90%; text-align: left; letter-spacing: 0; padding: 0 15px; margin-top: 15px; }

ul.item-list.image-list span.img-cont{ display: block; width: 85%; margin: 0 auto 15px; border: 1px solid #ced5de; position: relative; }


.image-in__flex{ display: flex; display: -webkit-flex; margin: 60px 0; }
.image-in__flex .img{ width: 50%; }
.image-in__flex .img img{ width: 100%; height: auto; }
.image-in__flex .list-box{ width: 50%; padding-left: 15px; box-sizing: border-box; }

.image-in__flex ul.item-list.image-list li{ width: 50%; }


ul.items-list__flex{ width: 75%; display: flex; display: -webkit-flex; margin: 0 auto; padding: 30px; }
ul.items-list__flex li{ width: 33%; list-style: none; transition: .4s; position: relative; }
ul.items-list__flex li:hover{ opacity: .6; margin-top: -20px; }
ul.items-list__flex li a{ display: block; text-decoration: none; }
ul.items-list__flex li p.name{ text-align: center; color: #222; font-size: 130%; letter-spacing: .1em; position: relative; }

ul.items-list__flex li .item-number{
    color: #9da7c0;
    font-size: 220%;
    font-weight: 600;
}

ul.items-list__flex li p.name::after{ 
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #9aa5bb;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
    position: absolute;
    bottom: -20px;
    left: 47%;
}

.page__yield-inner p.pick{ 
    padding-top: 30px;
    position: relative; 
    font-size: 140%;
    display: inline-block;
    z-index: 10;
    text-decoration: underline;
}
.page__yield-inner p.pick span.large{ font-size: 120%; font-weight: 600; }

.page__yield-inner.menu-page .flex-cont{ display: flex; display: -webkit-flex; }
.page__yield-inner.menu-page .flex-cont .img{ width: 40%; }
.page__yield-inner.menu-page .flex-cont .text-box{ width: 60%; }

section.items{ padding-bottom: 5%; border-bottom: 1px solid #c7ccd2; margin-bottom: 2%; }
span.item-number{ font-size: 90%; font-weight: 600; display: inline-block; border-radius: 100%; color:#11182b; width: 1.5em; height: 1.5em; text-align: center; margin-left: 5px; border: 2px solid #11182b; }



h4.tel-head{ text-align: center; font-size: 330%; color: #fff; margin-bottom: 10px; }
h4.tel-head a{ color: #fff; }
h4.tel-head span.small{ font-size: 60%; padding-right: 10px; }


p.pick-box{ font-size: 110%; padding: 0 0 60px; text-align: center; }

.page__yield-inner.menu-items h2{ font-size: 240%; text-align: center; display: block; }
.page__yield-inner.menu-items h2::after{ display: none; }


h3.category-title{ padding-left: 65px; }
h3.category-title#wasou::before{
	content: '';
	width: 60px;
	height: 60px;
	background: url("../img/page/menu/items/icon-wasou-kituke.png")no-repeat;
	background-size: cover;
	position: absolute;
	top: -10px;
	left: 0;
}
h3.category-title#hakama::before{
	content: '';
	width: 60px;
	height: 60px;
	background: url("../img/page/menu/items/icon-hakama-kituke.png")no-repeat;
	background-size: cover;
	position: absolute;
	top: -10px;
	left: 0;
}
h3.category-title#shitigosan-kimono::before{
	content: '';
	width: 60px;
	height: 60px;
	background: url("../img/page/menu/items/icon-shitigosan-kituke.png")no-repeat;
	background-size: cover;
	position: absolute;
	top: -10px;
	left: 0;
}
h3.category-title#shitigosan-hakama::before{
	content: '';
	width: 60px;
	height: 60px;
	background: url("../img/page/menu/items/icon-shitigosan-hakama-kituke.png")no-repeat;
	background-size: cover;
	position: absolute;
	top: -10px;
	left: 0;
}


/*20200929*/
.kimono-btn {
	width: 250px;
	margin: 20px 0;
	text-align: center;
	border: 1px #151617 solid;
}
.kimono-btn a {
	display: block;
	position: relative;
	padding: .7em;
	font-size: 1em;
	font-weight: bold;
	color: #fff!important;
	background: #151617;
	transition: .3s;
}
.kimono-btn a:hover {
	color: #151617!important;
	background: none;
}
.kimono-btn a::before{
	content: '';
	width: 6px;
	height: 6px;
	border: 0px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 10%;
	margin-top: -4px;
	transition: .3s;
}
.kimono-btn a:hover::before {
	border-top: solid 2px #151617;
	border-right: solid 2px #151617;
}

