@charset "UTF-8";
/* CSS Document */
@font-face {
  font-display: swap;
  font-family: 'Noto Sans JP', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}

body, input, textarea {
  font-family: 'Noto Sans JP', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
	font-weight: 300;
	font-size: 15px;
	color: #383838;
	letter-spacing: 0.08em;
}
a{
	color: #707070;
}

.lato{
	font-family: 'Lato', sans-serif;
}
.font-weight-500{
	font-weight: 500;
}
.noto{
	font-family: 'Noto Sans JP', sans-serif;
}
p{
	line-height: 1.8em;
}
img{
	vertical-align: middle;
}
.pc_none{
	display: none;
}


/** ロード完了でふわっとフェードイン表示
---------------------------------------------------------------------------------*/
body {
    animation: fadeIn 1.2s ease-in 0s 1 normal;
}
@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}


/** スクロールでフェードイン
---------------------------------------------------------------------------------*/
/*1.フェードインアニメーションの指定*/
.scrollanime {opacity: 0;} /*一瞬表示されるのを防ぐ*/
.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;         
    }
    100% {
    opacity: 1;
    transform: translate(0);
    }
}
 
/*2.上下の動きを指定*/
.updown {transform: translateY(-100px);}
.downup {transform: translateY(50px);}
 
/*3.左右の動きを指定*/
.sect02{overflow: hidden;} /*横スクロールバーを隠す*/
.slide-right {transform: translateX(200px);}
.slide-left {transform: translateX(-200px);}


/** nav
---------------------------------------------------------------------------------*/
.nav{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 88px;
	width: 100%;
	z-index: 100;
	position: fixed;
    top: 0;
	background-color: rgba(255,255,255,0.95);
}
.nav_menu{
	display: flex;
	align-items: center;
	padding-right: 20px;
}
.nav_menu>li{
	text-align: center;
	font-size: 13px;
    width: auto;
    margin: 0;
}
.nav_menu>li>a{
	display: block;
	padding: 25px 18px;
	transition: .3s;
	cursor: pointer;
	font-size: 16px;
}
.nav_menu>li>a:hover{
	opacity: .7;
}
.nav_menu>li>a span{
    display: block;
    line-height: 1em;
	font-size: 12px;
}
.nav_menu_wrapper{
	display: flex;
	align-items: center;
	padding-right: 30px;
}
.nav_logo{
	width: 190px;
	height: auto;
	padding-left: 30px;
}
.sub_menu{
	position: absolute;
    left: 0;
    width: 100%;
    top: 88px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
	opacity: 0;
	pointer-events: none;
	background: #FDF4F7;
	transition: 0.15s;
}
.sub-menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dropdown-btn{
	width: 100px;
}
.sub_nemu_btn{
	position: relative;
	padding: 5px 15px;
    margin: 5px 10px;
	display: flex;
	align-items: center;
	transition: 0.3s;
	font-size: 18px;
}
.sub_nemu_btn span{
	font-size: 12px;
	vertical-align: middle;
	padding-top: 2px;
}
.sub_nemu_btn:visited, .sub_nemu_btn:link{
}
.sub_nemu_btn:hover{
	color: #C32C71;
	opacity: 0.7;
}
.nav_arrow{
	padding-left: 10px;
	display: inline-block;
	color: #2da9e9;
	transition: .2s;
}
.sub_menu_box{
	display: flex;
}
.dropdown-btn:hover .sub_menu {
    /*display: inline-block;*/
	display: flex;
	opacity: 1;
	pointer-events: auto;
}
.sub_nemu_btn:hover .nav_arrow{
	transform: translateX(5px);
}
.sp_nav{
	display: none;
}


/** h2
---------------------------------------------------------------------------------*/
h2{
	font-size: 20px;
	font-weight: 400;
}
h2 span{
	display: block;
	font-family: 'Lato', sans-serif;
	color: #C32C71;
	font-size: 12px;
	padding-top: 10px;
	padding-left: 2px;
	margin-bottom: 25px;
}


/** detail_btn
---------------------------------------------------------------------------------*/
.detail_btn{
	display: block;
	width: 220px;
	border: solid 1px #605146;
	text-align: center;
	color: #605146;
	font-weight: 300;
	padding: 20px 0;
	margin: 0 auto;
	background-color: #fff;
	position: absolute;
	top: -5px;
	left: -5px;
	-webkit-transition: all 0.35s;
  　transition: all 0.35s;
	box-sizing: border-box;
}
.detail_btn:hover{
	top: 0px;
	left: 0px;
	color: #fff;
	background-color: #605146;
}
.detail_btn_bg{
	background-image: url("../img/common/stripe.svg");
	width: 220px;
	height: 57px;
	margin: 0 auto;
	position: relative;
	
}


/** 共通header
---------------------------------------------------------------------------------*/
.header{
	margin: 100px 20px 80px 20px;
	text-align: center;
}
.header_title{
	position: relative;
	padding-top: 75px;
}
.header_title>p{
	position: absolute;
	top: 0;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.header_title>p>img{
	height: 120px;
	width: auto;
}
.header>p>img{
	width: 100%;
	height: auto;
}
.header_title>div{
	width: 100%;
	height: 120px;
	background-image: url("../img/common/bg_02.jpg");
	background-position: top;
	display: flex;
    justify-content: center;
    align-items: center;
}
.header_title h2{
	vertical-align: middle;
	font-weight: 300;
}
.header picture img{
	width: 100%;
	height: auto;
}


/** footer
---------------------------------------------------------------------------------*/
.footer_h2{
	padding: 50px 0 40px 0;
	background-image: url("../img/top/contact_stripe.svg");
	background-repeat: repeat;
}
.footer_h2 div{
	width: 80%;
	margin: 0 auto;
}
.footer_h2 h2{
	width: 220px;
	margin: 0 0 0 auto;
}
.footer_h2 h2 span{
	margin-bottom: 0;
}
.footer_contact{
	position: relative;
	width: 100%;
	height: auto;
	min-height: 300px;
	background-image: url("../img/common/footer_contact.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}
.footer_contact_detail{
	position: absolute;
	top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	color: #fff;
	width: 45%;	
	font-weight: 400;
	font-size: 16px;
}
.footer_contact_detail>p{
	padding-bottom: 10px;
}
.footer_tel span{
	padding-left: 10px;
	font-size: 30px;
	font-weight: 600;
	letter-spacing: 0.1em;
}
.footer_tel{
	margin-bottom: 30px;
}
.footer_mail{
	color: #fff;
	border-top: solid 1px #fff;
	border-bottom: solid 1px #fff;
	padding: 20px 0;
	text-align: center;
	display: block;
	width: 280px;
	transition: .3s;
	font-size: 15px;
}
.footer_mail:hover{
	color: #DC5C97;
	opacity: 0.7;
	border-top: solid 1px #DC5C97;
	border-bottom: solid 1px #DC5C97;
}
.footer_instagram{
	padding: 55px 0;
	text-align: center;
}
.footer_instagram_flex{
	display: flex;
	justify-content: center;
}
.footer_instagram_flex a{
	margin: 0 25px;
	transition: .3s;
	padding-top: 30px;
	position: relative;
}
.footer_instagram_flex a::before{
	content: '';
	background-image: url("../img/common/insta_nail.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 22px;
	width: 70px;
	height: 25px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	
}
.footer_instagram_flex a:last-child::before{
	content: '';
	background-image: url("../img/common/insta_ esthetic.svg");
	background-size: auto 28px;
}
.footer_instagram_flex a span{
	display: block;
	font-size: 12px;
	color: #DA98B3;
	letter-spacing: 0.1em;
}
.footer_instagram p{
	padding-bottom: 20px;
}
.footer_instagram_img{
	width: 40px;
	height: auto;
	padding-bottom: 10px;
}
.footer_instagram_flex a:hover{
	opacity:  0.7;
}
.footer_flex{
	width: 96%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: solid 1px #a8a8a8;
	border-top: solid 1px #a8a8a8;
	padding: 20px 10px;
	margin-bottom: 25px;
}
.footer_flex a{
	color: #383838;
}
.footer_right p{
	display: inline-block;
	font-size: 10px;
	padding-left: 10px;
}
.footer_right a{
	font-size: 10px;
	transition: .3s;
}
.footer_left a{
	padding: 0 10px;
	font-size: 12px;
	transition: .3s;
}
.footer_left a:hover{
	opacity: .7;
}
.footer_right a{
	opacity: .7;
}


@media print, screen and (max-width: 880px) {
	body{
		font-size: 14px;
	}
	.pc_none{
		display: block;
	}
	.sp_none{
		display: none;
	}
	
/** カーソル
---------------------------------------------------------------------------------*/
	#pointer{
		display: none;
	}	

/** nav
---------------------------------------------------------------------------------*/
	.nav{
		display: none;
	}
	.sp_nav{
		display: block;
	}
	.sp_nav_logo_bg{
		background-color: rgba(255,255,255,0.95);
		height: 68px;
		width: 100%;
		position: fixed;
		z-index: 500;
		top: 0;
	}
	.sp_nav_logo {
		width: auto;
		height: 40px;
		display: block;
		position: fixed;
		top: 15px;
		left: 15px;
	}
	.sp_global-nav {
	  display: block;
	  position: fixed;
	  right: -90%;
	  top: 0;
	  width: 90%;
	  height: 100vh;
	  padding-top: 60px;
	  background-color: #fff;
	  opacity: 0.93;
	  transition: all .6s;
	  z-index: 590;
	  overflow-y: auto;
	}
	.hamburger {
		display: block;
	  position: fixed;
	  right: 15px;
	  top: 10px;
	  width: 48px;
	  height: 48px; 
	  cursor: pointer;
	  z-index: 600;
	}
	.global-nav__list {
	  margin: 0;
	  padding: 0;
	  list-style: none;
	}
	.global-nav__item {
	  text-align: center;
        margin-bottom: 20px;
	}
    .global-nav__item:last-of-type{
        padding-top: 20px;
    }
	.global-nav__item>div>a{
		display: block;
		text-align: left;
		margin: 10px 10% 10px 12%;
		font-size: 14px;
	}
	.global-nav__item>div>a:last-child{
		margin-bottom: 0;
	}
	.sp_nav_insta{
		display: block;
		margin-left: 10%;
	  font-family: 'Lato', sans-serif;
	  text-align: left; 
	  letter-spacing: 0.06em;
	  color: #C32C71;
	  padding: 10px 5px 5px 25px;
		font-size: 18px;
		background-image: url("../img/common/insta_pink.png");
		background-size: 18px;
		background-repeat: no-repeat;
		background-position: 0 10px;
	}
	.global-nav__item_a {
	  display: block;
	  padding: 5px 0;
	  margin: 10px 10% 10px 10%;
	  font-size: 28px;
	  font-weight: 300;
	  color: #999;
	  font-family: 'Lato', sans-serif;
	  text-align: left; 
	  letter-spacing: 0.06em;
	}
	.global-nav__item_a span{
		display: block;
		font-size: 12px;
		color: #C32C71;
		font-weight: 300;
		padding-top: 10px;
	}
	.global-nav__item a:hover {
	  background-color: #eee;
	}
	.global-nav__top_a{
		margin-top: 0;
	}
	.sp_nav_phlox{
		margin-top: 0;
	}
	.hamburger__line {
	  position: absolute;
	  left: 5px;
	  width: 36px;
	  height: 1px;
	  background-color: #C32C71;
	  transition: all .6s;
	}
	.hamburger__line--1 {
	  top: 12px;
	}
	.hamburger__line--2 {
	  top: 24px;
	}
	.hamburger__line--3 {
	  top: 26px;
	  background-color: rgba(255,255,255,0.00);
		color: #C32C71;
		font-size: 12px;
		text-align: center;
		position: relative;
	}
	.hamburger__line--3::after{
		content: "MENU";
		font-family: 'Lato', sans-serif;
		color: #C32C71;
		font-size: 10px;
		font-weight: 400;
		position: absolute;
		left: 0;
		top: 6px;
		letter-spacing: 0.2em;
	}
	.black-bg {
	  display: block;
	  position: fixed;
	  left: 0;
	  top: 0;
	  width: 100vw;
	  height: 100vh;
	  z-index: 550;
	  background-color: #888;
	  opacity: .2;
	  visibility: hidden;
	  transition: all .6s;
	  cursor: pointer;
	}
	/* 表示された時用のCSS */
	.nav-open .sp_global-nav {
	  right: 0;
	}
	.nav-open .black-bg {
	  opacity: .5;
	  visibility: visible;
	}
	.nav-open .hamburger__line--1 {
	  transform: rotate(20deg);
	  top: 20px;
	}
	.nav-open .hamburger__line--2 {
	  transform: rotate(-20deg);
	  top: 20px;
	}
	.nav-open .hamburger__line--3 {
	  top: 20px;
	}
	.nav-open .hamburger__line--3::after{
		content: "CLOSE";
		font-family: 'Lato', sans-serif;
		color: #C32C71;
		font-size: 10px;
		font-weight: 400;
		position: absolute;
		left: -1px;
		top: 15px;
		letter-spacing: 0.2em;
	}
	.sp_nav_en{
	  font-size: 21px;
		display: inline-block;
		padding-bottom: 6px;
		font-family: 'Didot','Baskerville','Cochin', sans-serif;
	}
	.sp_nav_jp{
	  font-size: 13px;
	}


/** h2
---------------------------------------------------------------------------------*/
h2{
	font-size: 20px;
	font-weight: 400;
}
h2 span{
	display: block;
	font-family: 'Lato', sans-serif;
	color: #C32C71;
	font-size: 12px;
	padding-top: 10px;
	padding-left: 2px;
	margin-bottom: 5px;
}
	
	
/** 共通header
---------------------------------------------------------------------------------*/
.header{
	margin: 70px 10px 45px 10px;
	text-align: center;
}
.header_title{
	position: relative;
	padding-top: 65px;
}
.header_title>p{
	position: absolute;
	top: 7%;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	width: 100%;
}
.header_title>p>img{
	width: 80%;
    height: auto;
	max-width: 400px;
}
.header>p>img{
	width: 100%;
	height: auto;
}
.service_calligraphy{
	width: 50%!important;
	min-width: 300px;
}
.contact_calligraphy{
	width: 70%!important;
	max-width: 280px!important;
}
.nail_calligraphy{
	max-width: 180px!important;
}
.slimming_calligraphy{
	max-width: 300px!important;
}
.hair_removal_calligraphy{
	width: 90%!important;
}
.header_title>div{
	width: 100%;
	height: 80px;
	background-image: url("../img/common/bg_02.jpg");
	background-position: top;
	display: flex;
    justify-content: center;
    align-items: center;
}
.header_title h2{
	vertical-align: middle;
	font-weight: 300;
	font-size: 18px;
}
.facial_h2{
	font-size: 16px!important;
}

	
/** footer
---------------------------------------------------------------------------------*/
.footer_h2{
	padding: 40px 0 30px 0;
	background-image: url("../img/top/contact_stripe.svg");
	background-repeat: repeat;
}
.footer_h2 div{
	width: 90%;
	margin: 0 auto;
}
.footer_h2 h2{
	width: 220px;
	margin: 0 0 0 auto;
}
.footer_h2 h2 span{
	margin-bottom: 0;
}
.footer_contact{
	position: relative;
	width: 100%;
	height: auto;
	min-height: 250px;
	background-image: url("../img/common/footer_contact.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}
.footer_contact_detail{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);	color: #fff;
	width: 100%;	
	font-weight: 400;
	font-size: 16px;
}
.footer_contact_detail>p{
	padding-bottom: 10px;
}
.footer_tel span{
	padding-left: 10px;
	font-size: 30px;
	font-weight: 600;
	letter-spacing: 0.1em;
}
.footer_tel{
	margin-bottom: 30px;
}
.footer_mail{
	color: #fff;
	border-top: solid 1px #fff;
	border-bottom: solid 1px #fff;
	padding: 20px 0;
	text-align: center;
	display: block;
	width: 280px;
	transition: .3s;
	margin: 0 auto;
}
.footer_mail:hover{
	color: #DC5C97;
	opacity: 0.7;
	border-top: solid 1px #DC5C97;
	border-bottom: solid 1px #DC5C97;
}
.footer_instagram{
	padding: 40px 0;
	text-align: center;
}
.footer_instagram p{
	padding-bottom: 20px;
	font-size: 14px;
}
.footer_instagram_img{
	width: 40px;
	height: auto;
	transition: .3s;
}
.footer_instagram_img:hover{
	opacity:  0.7;
}
.footer_flex{
	width: 90%;
	margin: 0 auto;
	display: block;
	justify-content: center;
	align-items: center;
	border-bottom: solid 1px #a8a8a8;
	border-top: solid 1px #a8a8a8;
	padding: 15px 10px;
	margin-bottom: 20px;
	box-sizing: border-box;
}
.footer_flex a{
	color: #383838;
}
.footer_right{
	text-align: center;
}
.footer_right p{
	display: inline-block;
	font-size: 10px;
	padding-left: 0px;
}
.footer_right a{
	font-size: 10px;
	transition: .3s;
}
.footer_left{
	text-align: center;
	padding-bottom: 10px;
}
.footer_left a{
	padding: 0 5px;
	font-size: 12px;
	transition: .3s;
}
.footer_left a:hover{
	opacity: .7;
}
.footer_right a{
	opacity: .7;
	padding-bottom: 5px;
	display: inline-block;
}























}