@charset "UTF-8";
html, body { height: 100%; }
.object_fit_img {
  object-fit: cover;
  font-family: 'object-fit: cover;'
}
.main_v {
	width: 100vw;
	height: calc(90vh - 70px);
	min-height: 420px;
	position: relative;
	padding: 0 5% 20px;
	margin-bottom: 20px;
}
.main_v .deco {
    position: absolute;
    text-align: left;
   /* z-index: 10;*/
    width: 50%;
    right: 3%;
    max-width: 500px;
    bottom: 30%;
    z-index: 1;
}
.main_v .main_info {
	position: absolute;
	width: 85%;
	left: 0;
	bottom: 50px;
	z-index: 10;
}
.main_v .main_info .main_info_inner {
	white-space: nowrap;
	overflow: hidden;
	background-color: rgba(0,0,0,0.8);
	padding: 0 5%;
}
.main_v .main_info .main_info_inner a {
	font-size: 1.2rem;
	text-align: left;
	color: #ffffff;
	overflow-x: scroll;
	padding: 5px 0;
}
.main_v .main_info .main_info_inner a .day {
	padding-right: 1em;
}

/* main slider */

.main_v .swiper-container {
	width: 100%;
	height: 100%;
}
.main_v .swiper-container_ex {
	width: 100%;
  height: 100%;
/*
	max-height: 100%;
  object-fit: cover;
*/
}
@keyframes zoomUp {
  0% {
    -webkit-transform: translateX(-8%);
    transform: translateX(-8%);
  }
  100% {
    -webkit-transform: translateX(8%);
    transform: translateX(8%);
  }
}

.main_v .swiper-slide-active .slide-img,
.main_v .swiper-slide-duplicate-active .slide-img,
.main_v .swiper-slide-prev .slide-img {
  -webkit-animation: zoomUp 8s linear 0s 1 normal both;
  animation: zoomUp 8s linear 0s 1 normal both;
}

.main_v .swiper-wrapper {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
.main_v .slide-img {
	width: 100%;
	height: 100%;
}
.main_v .slide-img_ex {
	width: 100%;
  height: 100%;
/*
	max-height: 100%;
  object-fit: cover;
*/
}

.main_v .slide-img.pic_01 {
	background: url("../img/top/main_vsp13.jpg")center right/cover no-repeat;
/*  height: 100vh;*/
} 
.main_v .slide-img.pic_02 {
	background: url("../img/top/main_vsp14.jpg")center right/cover no-repeat;
/*  height: 100vh;*/
} 
.main_v .slide-img.pic_03 {
	background: url("../img/top/main_vsp15.jpg")bottom right/cover no-repeat;
/*  height: 100vh;*/
}
.main_v .slide-img.pic_04 {
	background: url("../img/top/main_vsp16.jpg")center right/cover no-repeat;
/*  height: 100vh;*/
}

/*.main_v .slide-img_ex.pic_01 {
	background: url("../img/top/main_vsp09.jpg")center right/cover no-repeat;
} 
.main_v .slide-img_ex.pic_02 {
	background: url("../img/top/main_vsp10.jpg")center right/cover no-repeat;
} 
.main_v .slide-img_ex.pic_03 {
	background: url("../img/top/main_vsp11.jpg")center right/cover no-repeat;
}
.main_v .slide-img_ex.pic_04 {
	background: url("../img/top/main_vsp12.jpg")center right/cover no-repeat;
}*/


/* scroll animation */

.scroll_icon {
    height: 90px;
    bottom: -20px;
    writing-mode: vertical-lr;
    text-align: center;
    overflow: hidden;
	position: absolute;          
	left: 50%;                  
    /*z-index: 2;*/
    z-index: 1;
}
.scroll_icon .text {
	padding-left: 3px;
	font-size: 1.4rem;
}
.scroll_icon::before {
	content: "";
	display: block;
	width: 1px;
	border-left: 1px #000 solid;
	animation: scroll 3s ease 0s infinite normal;
	margin: 0 auto;
}

@keyframes scroll{
	0%{
		height: 0;
	}
	50%{
		height: 150px;
		margin-top: 0;
	}
	100%{
		margin-top: 150px;
		height: 150px;
	}
}

#contents {
	margin-top: 75px;
}

/* info */
.info .info_title {
	margin-bottom: 10px;
}
.info .title {
	font-size: 2.0rem;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}
.info .comment {
	text-align: left;
	margin-bottom: 10px;
	line-height: 1.8em;
	font-size: 1.6rem;
}

/* news */
.news {
	background-color: #f7f7f7;
	margin-bottom: 0;
}
.u_line.tab_btn_wrap {
	-webkit-justify-content: center;
	justify-content: center;
	row-gap: 1em;
	width: 100%;
	margin: 0 auto 20px;
	border-bottom: solid 1px #bababa;
}
.u_line.tab_btn_wrap .tab_btn {
	padding: 10px;
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
	cursor: pointer;
	color: #9a9a9a;
	position: relative;
}
.u_line.tab_btn_wrap .tab_btn.is-active {
	color: #3a3a3a;
}
.u_line.tab_btn_wrap .tab_btn.is-active::after {
	content: "";
	width: 100%;
	height: 3px;
	background-color: #6b6b6b;
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.news_box li a {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 160px 20px 1fr;
	grid-template-columns: 160px 1fr;
	grid-gap: 20px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: solid 1px #bababa;
}
.news_box li a > p {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}
.news_box li a > dl {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
}
.news_box .text_box {
	position: relative;
}
.news_box .category {
	font-size: 1.2rem;
	margin-bottom: 5px;
}
.news_box .comment {
	margin-bottom: 30px;
}
.news_box .more_btn {
	color: #9a9a9a;
	padding: 0;
	font-size: 1.4rem;
	position: absolute;
	bottom: 0;
	right: 0;
}

/* top image */
.top_image {
	margin-bottom: 40px;
}

/* catalog */
.catalog .tab_box {
	letter-spacing: 0.1em;
	cursor: pointer;
}
.catalog .tab_btn_wrap {
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
	margin-bottom: 20px;
	line-height: 1.3em;
}
.catalog .tab_btn_wrap li {
	margin-bottom: 10px;
}
.catalog .tab_btn_wrap .icon {
	padding: 0 10px;
}
.tab_btn_02.is-active,
.tab_btn_03.is-active {
	color: #bababa;
}
.catalog_box {
	margin-bottom: 20px;
}
.catalog_box li {
	width: calc(100% / 3);
}

/* instagram */
#insta-widget {
	border: none !important;
	padding: 0 !important;
}
.iswg-images-item {
	padding: 0 !important;
}

/* feature */
.feature {
	font-size: 1.6rem;
}
.feature_box li {
	margin-bottom: 20px;
}
.feature_box li dt {
	margin-bottom: 10px;
}
.feature_box_item {
  position: relative;
}
.feature_box_item .jp {
  font-size: 14px;
}
.feature_box_item .new {
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px 16px;
  background-color: #b42715;
  color: #fff;
  font-size: 12px;
}
/* kitsuke */
.kitsuke {
	padding-top: 0;
	margin-bottom: 0;
}
.kitsuke .section_title {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 40px 0 20px 20px;
	border-left: solid 1px #6b6b6b;
}
.kitsuke_box {
	max-width: 1000px;
	margin: 0 auto;
}
.kitsuke_box .kitsuke_inner {
	width: 50%;
	position: relative;
}
.kitsuke_box .kitsuke_inner .text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: ease .3s;
    white-space: nowrap;
}
.kitsuke_box .kitsuke_inner .pic {
	opacity: 0.3;
	transition: ease .3s;
}
.kitsuke_box .kitsuke_inner:hover .pic {
	opacity: 1;
}
.kitsuke_box .kitsuke_inner:hover .text {
	text-shadow: 0px 0px 2px #ffffff;
}

/* salon */
.salon_box {
	display: -ms-grid;
	display: grid;
	/*-ms-grid-columns: 1fr 20px 1fr;*/
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 40px;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
}
.salon_box > li:nth-child(1) {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}
.salon_box > li:nth-child(2) {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
}
.salon_box > li:nth-child(3) {
	-ms-grid-row: 3;
	-ms-grid-column: 1;
}
.salon_box > li:nth-child(4) {
	-ms-grid-row: 3;
	-ms-grid-column: 3;
}
.salon_box li {
	position: relative;
}
.salon_box .pic {
	margin-bottom: 10px;
}
.salon_box dd {
	margin-bottom: 5px;
}
.salon_box .shop {
	font-size: 1.2rem;
	margin-bottom: 5px;
}
.salon_box .place {
	font-size: 1.7rem;
}
.salon_box .place_add {
	color: #777777;
	font-size: 1.1rem;
}
.salon_box .place_tel {
	font-size: 1.4rem;
}
.salon_box .address {
	color: #252525;
	font-size: 1.2rem;
}
.salon_box .address {
	margin-bottom: 20px;
}
.salon_box .address i {
	padding-left: 5px;
}
.salon_box .reserve {
    width: 50%;
}
.salon_box .reserve a {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #4bab5a;
    color: #ffffff;
    padding: 10px;
}
.salon_box .reserve a i {
    padding-right: 0.5em;
}
.salon_box .v_more_btn {
	position: absolute;
	bottom: 0;
	right: 0;
}
.u_line.tab_btn_wrap .tab_btn_04 {
	width: 50%;
	padding: 10px 8px;
	font-size: 1.5rem;
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
	cursor: pointer;
	color: #9a9a9a;
	position: relative;
	text-align: center;
}
.u_line.tab_btn_wrap .tab_btn_04 .made {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	height: 30px;
	line-height: 30px;
	vertical-align: middle;
}
.u_line.tab_btn_wrap .tab_btn_04 .made.item_01 {
	line-height: 1.4em;
}
.u_line.tab_btn_wrap .tab_btn_04.is-active {
	color: #3a3a3a;
}
.u_line.tab_btn_wrap .tab_btn_04.is-active::after {
	content: "";
	width: 100%;
	height: 3px;
	background-color: #6b6b6b;
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

/* menu */

/*.menu_box li {
	width: 100%;
	padding: 40px 0;
	border-bottom: solid 1px #bababa;
}
.menu_box li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.menu_box .comment {
	margin-bottom: 20px;
}
.price_box {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1.3fr 1fr;
	grid-template-columns: 1.3fr 1fr;
	grid-row-gap: 20px;
}
.price_box .name {
	-ms-grid-column: 1;
}
.price_box .name:nth-child(1) {
	-ms-grid-row: 1;
}
.price_box .name:nth-child(3) {
	-ms-grid-row: 3;
}
.price_box .name:nth-child(5) {
	-ms-grid-row: 5;
}
.price_box .name:nth-child(7) {
	-ms-grid-row: 7;
}
.price_box .name:nth-child(9) {
	-ms-grid-row: 9;
}
.price_box .name:nth-child(11) {
	-ms-grid-row: 11;
}
.price_box .name:nth-child(13) {
	-ms-grid-row: 13;
}
.price_box .price {
	-ms-grid-column: 2;
}
.price_box .price:nth-child(2) {
	-ms-grid-row: 1;
}
.price_box .price:nth-child(4) {
	-ms-grid-row: 3;
}
.price_box .price:nth-child(6) {
	-ms-grid-row: 5;
}
.price_box .price:nth-child(8) {
	-ms-grid-row: 7;
}
.price_box .price:nth-child(10) {
	-ms-grid-row: 9;
}
.price_box .price:nth-child(12) {
	-ms-grid-row: 11;
}
.price_box .price:nth-child(14) {
	-ms-grid-row: 13;
}

.price_box .price {
	text-align: right;
}
.menu_box .text {
	-ms-grid-column: 1;
	-ms-grid-column-span: 2;
	grid-column: 1/3;
	font-size: 1.4rem;
	color: #6b6b6b;
	margin: 5px 0 20px;
	white-space: normal;
}*/

.menu-banner {
}
.menu-banner_text {
	margin-bottom: 2em;
	font-size: .9em;
	/*background: linear-gradient(transparent 50%, #eeeded 50%);*/
	display: inline-block;
}
.menu-banner_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: 2em;
}
.menu-banner_list_item {
	width: 100%;
}
.menu-banner_list_item a{
	width: 100%;
	text-align: center;
	padding: 1.3em 5%;
	font-size: 1.1em;
	font-weight: bold;
	color: #fff;
	border-radius: 8px;
	transition: .5s;
}
.menu-banner_list_item a:hover{
	opacity: .7;
}
.menu-banner_list_item:first-child a{
	background-color: #1b5b7f;
	box-shadow: 0 0 0 7px #1b5b7f inset, 0 0 0 8px #FFF inset;
}
.menu-banner_list_item:nth-child(2) a{
	background-color: #05a9ac;
	box-shadow: 0 0 0 7px #05a9ac inset, 0 0 0 8px #FFF inset;
}
.menu-banner_list_item:nth-child(3) a{
	background-color: #f19c99;
	box-shadow: 0 0 0 7px #f19c99 inset, 0 0 0 8px #FFF inset;
}
.menu-banner_list_item:nth-child(4) a{
	background-color: #029c76;
	box-shadow: 0 0 0 7px #029c76 inset, 0 0 0 8px #FFF inset;
}
.menu-banner_list_item:nth-child(5) a{
	background-color: #c4b29f;
	box-shadow: 0 0 0 7px #c4b29f inset, 0 0 0 8px #FFF inset;
}

.menu-banner_list_item .jp {
	font-size: .8em;
	display: block;
	font-weight: normal;
	margin-top: .2em;
}

/* recruit */
.recruit {
	margin: 0;
	padding: 0;
}
.recruit .text {
	width: 100%;
	height: 200px;
	text-align: center;
	background: url("../img/top/recruit_back03.jpg")center center/cover no-repeat;
}
.recruit .text a {
	color: #ffffff;
	font-size: 3.0rem;
	letter-spacing: 0.1em;
	line-height: 200px;
}

@media screen and (min-width:481px){
	.main_v .deco {
		width: 30%;
	}
	#contents {
		margin-top: 100px;
	}
	.kitsuke_box .kitsuke_inner .text {
		font-size: 2.0rem;
	}
	.salon_box {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 20px;
	}
	.recruit .text {
		height: 300px;
	}
	.recruit .text a {
		line-height: 300px;
	}

}

@media screen and (min-width:769px){
	#contents {
		margin-top: 80px;
	}
	.main_v {
		margin-bottom: 60px;
		height: calc(95vh - 80px);
		padding: 0 0 20px;
	}
	.main_v .deco {
		width: 360px;
	}
	.main_v .slide-img.pic_01 {
		background: url("../img/top/main_v13.jpg")center right/cover no-repeat;
	} 
	.main_v .slide-img.pic_02 {
		background: url("../img/top/main_v14.jpg")center right/cover no-repeat;
	} 
	.main_v .slide-img.pic_03 {
		background: url("../img/top/main_v15.jpg")top right/cover no-repeat;
	}

	.main_v .slide-img.pic_04 {
		background: url("../img/top/main_v16.jpg")center right/cover no-repeat;
	}

	.main_v .swiper-wrapper {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	
	.main_v .swiper-slide-active .slide-img,
	.main_v .swiper-slide-duplicate-active .slide-img,
	.main_v .swiper-slide-prev .slide-img {
		-webkit-animation: zoomUp 10s linear 0s 1 normal both;
		animation: zoomUp 10s linear 0s 1 normal both;
	}


	@keyframes zoomUp {
		0% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
		100% {
			-webkit-transform: translateX(5%);
			transform: translateX(5%);
		}
	}
	
	.info .info_title {
		margin-bottom: 20px;
	}
	.info .title {
		font-size: 2.6rem;
		margin-bottom: 20px;
	}
	
	.top_image {
		margin-bottom: 80px;
	}
		
	.u_line.tab_btn_wrap {
		margin-bottom: 40px;
	}
	.u_line.tab_btn_wrap .tab_btn,
	.u_line.tab_btn_wrap .tab_btn_04 {
		font-size: 1.8rem;
		padding: 10px 40px;
	}
	.u_line.tab_btn_wrap .tab_btn_04 {
		width: auto;
	}
	
	.news_box {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 40px 1fr 40px 1fr;
		grid-template-columns: repeat(3, 1fr);
		grid-column-gap: 40px;
	}
	.news_box > li:nth-child(1) {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
	}
	.news_box > li:nth-child(2) {
		-ms-grid-row: 1;
		-ms-grid-column: 3;
	}
	.news_box > li:nth-child(3) {
		-ms-grid-row: 1;
		-ms-grid-column: 5;
	}
	.news_box .pic {
		-ms-grid-column: 1;
		-ms-grid-column-span: 4;
		grid-column: 1/3;
	}
	.news_box .text_box {
		-ms-grid-row: 3;
		-ms-grid-column: 1;
		-ms-grid-column-span: 4;
		grid-column: 1/3;
	}
	.news_box li a {
		border-bottom: none;
	}
	
	.catalog .tab_box {
		font-size: 1.6rem;
	}
	.catalog .tab_btn_wrap {
		margin-bottom: 40px;
	}
	.catalog_box {
		margin-bottom: 40px;
	}
	.catalog_box li {
		width: calc(33% - 20px);
		margin-bottom: 20px;
	}
	
	.feature_box {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 40px 1fr 40px 1fr;
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 40px;
	}
	.feature_box > li:nth-child(1) {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
	}
	.feature_box > li:nth-child(2) {
		-ms-grid-row: 1;
		-ms-grid-column: 3;
	}
	.feature_box > li:nth-child(3) {
		-ms-grid-row: 1;
		-ms-grid-column: 5;
	}
	.feature_box > li:nth-child(4) {
		-ms-grid-row: 3;
		-ms-grid-column: 1;
	}
	.feature_box > li:nth-child(5) {
		-ms-grid-row: 3;
		-ms-grid-column: 3;
	}
	.feature_box > li:nth-child(6) {
		-ms-grid-row: 3;
		-ms-grid-column: 5;
	}
	
	.kitsuke .section_title {
		margin-bottom: 20px;
		padding: 0;
		border: none;
	}
	.kitsuke_box .kitsuke_inner {
		width: calc(100%/3);
	}
	
	.salon_box {
		grid-gap: 40px;
	}
	.salon_box li {
		width: 100%;
	}
	.salon_box .pic {
		margin-bottom: 20px;
	}
	
	/*.menu_box li {
		width: calc(50% - 20px);
	}
	.menu_box li:last-child {
		border-bottom: solid 1px #bababa;
		padding-bottom: 40px;
	}*/
	.menu-banner_list_item {
		width: 48%;
	}
		

}
