/* ---------------------------------------------------------------- */
/* CSSリセット */
/* ---------------------------------------------------------------- */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	text-decoration: none;
	border: none;
	list-style: none;
	color: #363636;
	font-size: 16px;
}
body { 
	font-size: 16px;
	font-weight: normal;
	background: #FFF;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	
}
input[type="text"]:focus,
textarea:focus {
	outline: none;
}
html,body {
	/*height: 100%;*/
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0;
	padding: 0;
}
table tr th,
table tr td{
	padding: 0;
	margin: 0;
	border: none;
	vertical-align: top;
}



/* ---------------------------------------------------------------- */
/* 以下、各種プロパティ */
/* ---------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

/* body */
body {
	background: #FFF;
}
body.sp-open {
	overflow: hidden;
}

/* 非表示 */
.hide {
	display: none;
}

/* ローディング */
.loading {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	z-index:999;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
}
.loading__ring {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 64px;
	height: 64px;
	border: 10px solid rgba(255,255,255,0.5);
	border-top: 10px solid rgba(0,0,0,0.5);
	border-radius: 64px;
	margin-left: -32px;
	margin-top: -32px;
	animation: rotate 1000ms linear infinite;
}
@keyframes rotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* リンク */
.anchor {
	position: relative;
}
.anchor_inner {
	position: absolute;
	left: 0px;
	top: -60px;
	width: 1px;
	height: 10px;
	background: rgba(0,0,0,0);
}


/* ヘッダー */
.header {
	text-align: center;
	width: 100%;
	height: 48px;
	background-color: #FFF;
	position: fixed;
	left: 0px;
	top: 0px;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	z-index: 1000;
}
.header__inner {
	width: 100%;
	height: 48px;
	max-width: 1240px;
	margin: 0 auto 0 auto;
	text-align: left;
	position: relative;
}

/* ヘッダー：ロゴ */
.logo {
	position: absolute;
	left: 6px;
	top: 6px;
}
.logo__link {
	display: block;
	width: 135px;
	height: 32px;
	background: url(./img/logo.png);
	background-size: 135px 32px;
}

/* ヘッダー：PCメニュー */
.headmenu {
	position: absolute;
	right: 16px;
	top: 0px;
	padding-right: calc( 48px + 16px );
}
.headmenu__list {
	display: table;
}
.headmenu__item {
	display: table-cell;
	padding-top: 14px;
}
.headmenu__link {
	color: #2679ff;
	font-size: 14px;
}
.headmenu__item__margin-right {
	padding-right: 16px;
}

/* スマホメニュー：ハンバーガーメニュー */
.navopener {
	position: absolute;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	width: 48px;
	height: 48px;
	background: #f7faff;
}
.navopener__line {
	display: block;
	width: 24px;
	height: 2px;
	background: #2679ff;
	position: absolute;
	left: 12px;
	top: 22px;
	transition: all 300ms ease-in-out;
}
.navopener__line__top {
	top: 14px;
}
.navopener__line__middle {
	top: 22px;
}
.navopener__line__bottom {
	top: 30px;
}
body.sp-open .navopener__line__top {
	top: 21px;
	transform: rotate(-45deg);
}
body.sp-open .navopener__line__middle {
	opacity: 0;
}
body.sp-open .navopener__line__bottom {
	top: 21px;
	transform: rotate(45deg);
}

/* SP版ナビゲーション */
.nav {
	pointer-events: none;
	opacity: 0;
	position: fixed;
	right: 0;
	top: 48px;
	width: 300px;
	height: calc( 100vh - 48px );
	background: rgba( 0,0,0, 0.8 );
	transition: opacity 300ms ease-in-out;
	overflow-y: auto;
	z-index: 100;
}
body.sp-open .nav {
	opacity: 1;
	pointer-events: auto;
}
.nav__link {
	display: block;
	padding: 16px;
	color: #FFF;
	border-bottom: 1px solid rgba( 0,0,0, 0.4 );
}

/* SPメニュー：会員登録とログイン */
.account__list {
	display: table;
	width: 100%;
	padding: 16px;
	border-bottom: 1px solid rgba( 0,0,0, 0.1 );
	background: rgba(0,0,0,0.5);
}
.account__item {
	width: 50%;
	display: table-cell;
}
.account__link {
	font-size: 14px;
	display: block;
	padding: 8px;
	border: 1px solid #FFF;
	border-radius: 4px;
	color: #FFF;
	text-align: center;
}
.account__item--left {
	padding-right: 4px;
}
.account__item--right {
	padding-left: 4px;
}

/* パンくずリスト */
.breadcrumb {
	line-height: 100%;
	margin-bottom: 24px;
}
.breadcrumb__list {
}
.breadcrumb__item {
	display: inline;
	
}
.breadcrumb__item:after {
	content: "＞";
	font-size: 12px;
	margin-left: 8px;
	margin-right: 8px;
	opacity: 0.5;
}
.breadcrumb__item__now:after {
	content: none;
}
.breadcrumb__link,
.breadcrumb__link * {
	display: inline;
	font-size: 14px;
	color: #2679ff;
}
.breadcrumb__item__now .breadcrumb__link,
.breadcrumb__item__now .breadcrumb__link * {
	color: #363636;
	pointer-events: none;
}


/* コンテンツ */
.contet {
	margin-top: 48px;
	width: 100%;
	text-align: center;
}

/* メインビジュアル */
.mv {
	width: 100%;
	height: 240px;
	background-color: #12588c;
	background-image: url(./img/mv.png);
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
}
.mv__catchcopy {
	position: absolute;
	width: 100%;
	text-align: center;
	left: 0;
	top: 96px;
	font-size: 20px;
	text-shadow: 0 0 10px rgba(255,255,255,1),0 0 10px rgba(255,255,255,1),0 0 10px rgba(255,255,255,1);
}

/* 検索 */
.search-area {
	display: none;
	background: #EEE;
	border-bottom: 1px solid #DDD;
	text-align: center;
	line-height: 100%;
}
.search-area__inner {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto 0 auto;
	padding: 16px;
}
.search-form {
	display: table;
	width: 100%;
	max-width: 600px;
	margin: 0 auto 0 auto;
	
}
.search-form__left {
	display: table-cell;
	padding:0;
	margin:0;
}
.search-form__input {
	display: block;
	width: 100%;
	padding: 16px;
	line-height: 100%;
	background: #00FF00;
}
.search-form__right {
	display: table-cell;
	padding:0;
	margin:0;
	
}
.search-form__button {
	display: block;
	width: 100%;
	padding: 16px;
	line-height: 100%;
	background: #0000FF;
}

/* コンテンツのメイン部分 */
.main {
	width: 100%;
	
	min-height: calc( 100vh - 96px );
	
	max-width: 1240px;
	margin: 0 auto 0 auto;
	text-align: left;
	background-color: #FFF;
	padding: 16px;
}

/* トップページ用のブロック */
.top-block {

}
.top-block__second {
	margin-top: 32px;
}
.top-block-inner {
	border-radius: 8px;
	background: #FFF;
}

.top-block-inner__comingsoon {
	background-color: #EEE;
	color: #CCC;
	font-size: 24px;
	text-align: center;
	border-radius: 8px;
	padding: 60px 0 60px 0;
}

/* トップページ用のブロック：タイトル */
.top-block-title,
.top-block-title * {
	font-size: 24px;
	margin-bottom: 16px;
	_font-weight: bold;
	color: #0b4199;
}
.top-block-title__h3 {
	display: block;
	font-size: 20px;
	padding: 10px 10px 10px 12px;
	margin-bottom: 16px;
	color: #0b4199;
	background: #f5faff;
	border-left: 4px solid #94cbff;
}

/* タブ */
.tab {
	/*box-shadow: 0 0 10px rgba(0,0,0,0.4);*/
	
}

/* タブメニュー */
.tab-menu {
	display: table;
	width: 100%;
	border-bottom: 5px solid #2679ff;
}
.tab-menu__item {
	display: table-cell;
	width: 20%;
}
.tab-menu__link {
	display: block;
	text-align: center;
	padding: 16px 0 16px 0;
	color: #2679ff;
	
	/*border-right: 1px solid #CCC;
	background-color: #f7faff;*/
	
}
.tab-menu__link__last {
	border-right: none;
}

.tab-menu.select_1 #top_tab_1,
.tab-menu.select_2 #top_tab_2,
.tab-menu.select_3 #top_tab_3,
.tab-menu.select_4 #top_tab_4,
.tab-menu.select_5 #top_tab_5 {
	background-color: #2679ff;
	color: #FFF;
	pointer-events: none;
}



/* トップの　◯◯から探す　上の文言 */
.search-link-type1__text {
	color: #0b4199;
	text-align: center;
	padding: 16px;
	font-weight: bold;
}

/* トップの　◯◯から探す　ボタン */
.search-link-type1 {
	padding: 8px 0px 8px 0px;
}
.search-link-type1__item {
	display: inline-block;
	width: 50%;
	padding: 8px;
}
.search-link-type1__link {
	display: block;
	width: 100%;
	padding: 60px 8px 8px 8px;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	text-align: center;
	font-size: 14px;
	color: #75331b;
	border: 1px solid #CCC;
	border-radius: 8px;
	background-color: #FFF;
	background-repeat: no-repeat;
	background-position: center 15px;
	background-size: 35px 35px;
}

/* トップの　◯◯から探す　ボタン用アイコン */
.icon_menu-grey {
	background-image: url(./img/icon/icon_menu-grey.svg);
}
.icon_calendar-grey {
	background-image: url(./img/icon/icon_calendar-grey.svg);
}
.icon_map-grey {
	background-image: url(./img/icon/icon_map-grey.svg);
}
.icon_area-grey {
	background-image: url(./img/icon/icon_area-grey.svg);
}

/* フッター */
.footer {
	width: 100%;
	height: 48px;
	text-align: center;
	background-color: #333;
}
.copyright {
	padding-top: 15px;
	color: #FFF;
}


/*  */
.selecterA {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
	margin-bottom: 16px;
}

.selecterA_inner {
	padding: 16px;
}
.selecterB_inner {
	padding: 0;
}

.selecterA__title {
	padding: 16px;
	background-color: #34a2eb;
	text-shadow: 0 0 10px #165c8a;
	color: #FFF;
}

.button-groupA {}
.button-groupA__list {}
.button-groupA__item {}
.button-groupA__link {
	display: block;
	color: #75331b;
	padding: 12px 12px 12px 40px;
	margin-bottom: 8px;
	border: 1px solid #CCC;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	background-color: #FFF;
	background-repeat: no-repeat;
	background-position: 10px 14px;
	background-size: 20px 20px;
	position: relative;
}
.button-groupA__link__active {
	color: #FFF;
	background-color: #2679ff;
}
.icon_cut {
	background-image: url(./img/icon/icon_cut-grey.svg);
}
.click-active.icon_cut {
	background-image: url(./img/icon/icon_cut-white.svg);
}
.icon_hair {
	background-image: url(./img/icon/icon_hair-gray.svg);
}
.click-active.icon_hair {
	background-image: url(./img/icon/icon_hair-white.svg);
}
.icon_dryer {
	background-image: url(./img/icon/icon_dryer-gray.svg);
}
.click-active.icon_dryer {
	background-image: url(./img/icon/icon_dryer-white.svg);
}

.icon_treatment {
	background-image: url(./img/icon/icon_treatment-gray.svg);
}
.click-active.icon_treatment {
	background-image: url(./img/icon/icon_treatment-white.svg);
}

.icon_areapin {
	background-image: url(./img/icon/icon_areapin-gray.svg);
}
.click-active.icon_areapin {
	background-image: url(./img/icon/icon_areapin-white.svg);
}


.button-groupB__list {
	display: flex;
	flex-wrap: wrap;
}
.button-groupB__item {
	width: 100%;
	color: #75331b;
	padding: 16px;
	margin-bottom: 16px;
	border: 1px solid #CCC;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	background-color: #FFF;
	background-repeat: no-repeat;
	background-position: 10px 14px;
	background-size: 20px 20px;
}
.button-groupB__item__select {
	border: 4px solid #2679ff;
}

.button-groupB__link {
	width: 100%;
}
.button-groupB__name {
	display: block;
	font-size: 20px;
	color: #0b4199;
	margin-bottom: 8px;
}
.button-groupB__image {
	display: block;
	width: 100%;
	padding-top: 56.25%;
	background: #CCC;
	margin-bottom: 8px;
	border-radius: 8px;
}

.button-groupB__review {
	margin-top: 8px;
	margin-bottom: 4px;
	display: table;
	width: 100%;
}
.button-groupB__stararea {
	display: table-cell;
	width: 110px;
}
.button-groupB__star {
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url(./img/system/review_star_gray.svg);
}
.button-groupB__star__half {
	background: url(./img/system/review_star_on_half.svg);
}
.button-groupB__star__full {
	background: url(./img/system/review_star_on.svg);
}
.button-groupB__star-1 {}
.button-groupB__star-2 {}
.button-groupB__star-3 {}
.button-groupB__star-4 {}
.button-groupB__star-5 {}
.button-groupB__comment {
	display: table-cell;
	background: url(./img/icon/icon_balloon-blue.svg) 0px 6px no-repeat;
	background-size: 16px 16px;
	line-height: 14px;
	font-size: 14px;
	padding-left: 20px;
	color: #34a2eb;
}
.button-groupB__intro {
	display: block;
}
.button-groupB__address {
	margin-top: 12px;
	display: block;
	background: url(./img/icon/icon_pin-gray.svg) 0 0 no-repeat;
	background-size: 16px 16px;
	font-size: 14px;
	padding-left: 20px;
	line-height: 14px;
	color: #666;
}
.button-groupB__reserv {
	display: block;
	text-align: center;
	padding-top: 16px;
}
.button-groupB__reserv__link {
	display: block;
	width: 100%;
	margin: 0 auto 0 auto;
	padding: 16px;
	background: #2679ff;
	border-radius: 8px;
	color: #FFF;
}

.button-groupA__link__last {
	margin-bottom: 0px;
}


.button-groupC {}
.button-groupC__list {
	display: flex;
	flex-wrap: wrap;
}
.button-groupC__item {
	width: 100%;
	margin-bottom: 8px;
}
.button-groupC__link {
	display: block;
	color: #75331b;
	padding: 12px 12px 12px 40px;
	border: 1px solid #CCC;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	background-color: #FFF;
	background-repeat: no-repeat;
	background-position: 10px 14px;
	background-size: 20px 20px;
	position: relative;
}
.button-groupC__link__active {
	color: #FFF;
	background-color: #2679ff;
}
.button-groupC__link__face {
	padding-left: 50px;
}
.button-groupC__link__faceicon {
	display: block;
	width: 32px;
	height: 32px;
	background-color: rgba(0,0,0,0.2);
	position: absolute;
	left: 8px;
	top: 8px;
	border-radius: 32px;
}
.button-groupC__link__faceicon.sample1 {
	background: url(./img/sample/sample_stylist_face_1.png) 0 0 no-repeat;
	background-size: 32px 32px;
}
.button-groupC__link__faceicon.sample2 {
	background: url(./img/sample/sample_stylist_face_2.png) 0 0 no-repeat;
	background-size: 32px 32px;
}

.dateselecterA {
	width: 100%;
	border-left: 1px solid #CCC;
	border-top: 1px solid #CCC;
}
.dateselecterA tr td {
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
}

.dateselecterA-ym {
	text-align: center;
	font-size: 14px;
	line-height: 100%;
	padding: 8px;
}
.dateselecterA-week__item {
	width: 45px;
}
.dateselecterA-week__link {
	display: block;
	vertical-align: middle;
	font-size: 12px;
	text-align: center;
	padding: 23px 0 23px 0;
	background: #FFF;
	color: #2679ff;
}

.dateselecterA-date {
	line-height: 100%;
	padding: 4px 0 4px 0;
}
.dateselecterA-date__sat {
	background: #a6bcff;
	color: #2d4eb3;
}
.dateselecterA-date__sat .dateselecterA-num,
.dateselecterA-date__sat .dateselecterA-day {
	color: #2d4eb3;
}
.dateselecterA-date__sun {
	background: #ffbfba;
}
.dateselecterA-date__sun .dateselecterA-num,
.dateselecterA-date__sun .dateselecterA-day {
	color: #cf473c;
}

.dateselecterA-num {
	font-size: 12px;
	text-align: center;
}
.dateselecterA-day {
	font-size: 10px;
	text-align: center;
}

.dateselecterA-time {
	font-size: 12px;
	line-height: 100%;
	text-align: center;
	vertical-align: middle;
}

.dateselecterA-select__item {
	
}
.dateselecterA-select__link {
	display: block;
	width: 100%;
	text-align: center;
	line-height: 100%;
	padding: 8px 0 8px 0;
	color: #2679ff;
}
.dateselecterA-select__link__ng {
	color: #999;
	background: #EEE;
}
.dateselecterA-select__link__select {
	background: #2679ff;
	color: #FFF;
}

.selecterA-kakuin {}
.selecterA-kakuin__list {}
.selecterA-kakuin__title {
	color: #0b4199;
	font-weight: bold;
}
.selecterA-kakuin__text {
	margin-bottom: 16px;
}
.selecterA-kakuin__text__last {
	margin-bottom: 16px;
}

.selecterA-kakuin__complete {
	
}
.selecterA-kakuin__complete-button {
	display: block;
	background: #2679ff;
	text-align: center;
	padding: 16px 0 16px;
	color: #FFF;
	border-radius: 8px;
}

.selecterLock {
	background: #CCC;
	overflow: hidden;
	height: 200px;
}
.selecterLock .selecterA__title {
	background: #CCC;
	text-shadow: none;
}
.selecterLock .button-groupB,
.selecterLock .selecterA_inner,
.selecterLock .selecterB_inner {
	pointer-events: none;
	opacity: 0;
}

.click-active {
	color: #FFF;
	background-color: #2679ff;
}
.click-active-outline {
	border: 4px solid #2679ff;
}



/* ---------------------------------------------------------------------------------------------------- */

@media (min-width: 769px) {
	/*PC*/
	.navopener {
		display: none;
	}
	.headmenu {
		padding-right: 0;
	}
	
}

@media (min-width: 730px) {
	.button-groupB__list {
		gap: 16px;
	}
	.button-groupB__item {
		width: calc(50% - 8px);
		margin-bottom: 0;
	}
	
	.button-groupC__list {
		gap: 8px;
	}
	.button-groupC__item {
		width: calc(50% - 8px);
		margin-bottom: 0;
	}

}
@media (min-width: 1000px) {
	.button-groupB__list {
		gap: 16px;
	}
	.button-groupB__item {
		width: calc(33% - 8px);
		margin-bottom: 0;
	}
	
	.button-groupC__list {
		gap: 8px;
	}
	.button-groupC__item {
		width: calc(33% - 8px);
		margin-bottom: 0;
	}
	
}


@media (max-width: 768px) {
	/*SP*/
	.headmenu__list {
		display: none;
	}
	.top-block-title {
		font-size: 20px;
	}
	
	/* トップのタブ */
	.tab-menu {
		border-bottom: 2px solid #2679ff;
	}
	.tab-menu__link {
		font-size:14px;
		padding: 8px 0 8px 0;
	}
	.search-link-type1__text {
		font-size: 14px;
		font-weight: normal;
		padding: 12px 8px 8px 8px;
	}
	
}

/*PCのみhover*/
@media (min-width: 769px) {
	
	.headmenu__link,
	.menu__link,
	.tab-menu__link,
	.search-link-type1__link,
	.dammy
	{
		cursor: pointer;
		transition: opacity 500ms;
	}
	
	.headmenu__link:hover,
	.menu__link:hover,
	.tab-menu__link:hover,
	.search-link-type1__link:hover,
	.dammy
	{
		opacity: 0.5;
	}
	
}