/* ************************************************ */
/* BODY												*/
/* ************************************************ */
/* 画面 縦横対応なので文字の大きさを決めてからそれを基準に高さを設定するようにする */
html, body {
	width						: 100% !important;
	height						: 100%;
}
body {
	font-size					: 14px;
	-webkit-text-size-adjust	: 100%;
	-webkit-font-smoothing		: antialiased;
	-moz-osx-font-smoothing		: grayscale;
	background-color			: #ffffef; /* #FAFAFA; */
	min-width					: 100%;
	min-height					: 100%;
	position					: relative;
	color						: #595757;  /* テキスト基準色 */
	font-family					: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

/* ************************************************ */
/* フォントサイズ										*/
/* ************************************************ */
.font-size-s {
	font-size					: 80%;
}
.font-size-m {
	font-size					: 120%;
}
.font-size-l {
	font-size					: 140%;
	font-weight					: bold;
}
.bold {
	font-weight					: bold;
}

/* デバイスピクセルレートによって文字の大きさを変える Nexsus S, GALAXY S2 */
/*@media only screen and (-webkit-device-pixel-ratio: 1.5) {
	body {
		font-size				: 16px;
	}
	.font-size-m {
		font-size				: 110%;
	}
	.font-size-l {
		font-size				: 120%;
		font-weight				: bold;
	}
}*/

/* デバイスピクセルレートによって文字の大きさを変える iPhone3GS, iPad, ASUS ZenPad */
/*@media only screen and (-webkit-device-pixel-ratio: 1) and (max-width: 768px) {
	body {
		font-size				: 20px;
	}
	.font-size-m {
		font-size				: 110%;
	}
	.font-size-l {
		font-size				: 120%;
		font-weight				: bold;
	}
}
*/

/* ************************************************ */
/* ボタン選択時のハイライト、テキストの選択を無効にする			*/
/* ************************************************ */
button, div, form {
	display						: block;
	font-size					: 100%;		/* フォントサイズを基準値にあわせる */
	color						: #595757;	/* テキスト基準色 */
    -webkit-tap-highlight-color : rgba(0, 0, 0, 0);  /* 選択時のハイライトを消す */
	user-select					: none;		/* CSS3 */
	-moz-user-select			: none;		/* Firefox */
	-webkit-user-select			: none;		/* Safari、Chromeなど */
	-ms-user-select				: none;		/* IE10かららしい */
	outline						: none;
	box-sizing					: border-box;
	/*outline-width: thin;
 	outline-style: dotted;
 	outline-color: #595757;*/
}

/* ************************************************ */
/* ul												*/
/* ************************************************ */


/* ************************************************ */
/* buttom												*/
/* ************************************************ */
.button {
	border-radius				: 3px;
	border						: 1px solid #595757;
	line-height					: 1.6em;
	padding						: 0.3em 2em;
	font-weight					: bold;
}

.btn_login {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,f3f3f3+50,ededed+51,ffffff+100;White+Gloss+%232 */
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}


#logbtn{
	width:120px;
	color:#4D4D4D;
	margin:0 auto;
}
	#logbtn a:hover{
		text-decoration:none;
	}
	#logbtn button{
		width:100%;
		height:50px;
		background-image: url("../../img/btna.png");
		background-size:100% 100%;
		background-repeat:no-repeat;
	}
	#logbtn button:hover{
		opacity:1;
	}
	#logbtn button:active{
		width:100%;
		background-image: url("../../img/btnb_2.png");
		background-size:100% 100%;
		background-repeat:no-repeat;
		color:#ffffff;
	}
		#logbtn button p{
			font-size:18px;
			margin:5px 10px;
			font-family: "游明朝 Light", "游明朝", "YuMincho", serif;
			font-weight:bold;
		}

/* ************************************************ */
/* 入力ボックス										*/
/* ************************************************ */
input {
	border						: 2px solid #595757;
	box-sizing					: border-box;
	border-radius				: 4px;
	background-color			: #FFF;
	width						: 100%;
	font-size					: 100%;
	line-height					: 1.4em;
	padding						: 0.2em 0.4em;
	margin-top					: 0em;		/* セレクトボックスも同じだけあける */
	margin-bottom				: 0.2em;	/* セレクトボックスも同じだけあける */
}
.input-label {
	display						: block;
	width						: 100%;
	margin-top					: 0.5em;
	margin-bottom				: 0.2em;
	margin-left					: 0.1em;
}

/* ************************************************ */
/* コンテンツ表示領域 (左右ちょっと余白とるデザイン)			*/
/* ************************************************ */
#hb_main_frame {
	width						: 96%;
	height						: 96%;
	min-height					: 96%;
	margin						: auto;
	overflow					: hidden !important;
	position					: relative;
}

/* ************************************************ */
/* リンク文字のハイライト除去								*/
/* ************************************************ */
a {
    -webkit-tap-highlight-color	: rgba(0, 0, 0, 0);
    tap-highlight-color			: rgba(0, 0, 0, 0);
}
a:active,
a:link,
a:visited
{
	color						: #595757;
	text-decoration				: none;
}
a:hover {
	text-decoration				: underline;
}

/* ************************************************ */
/* 下線フォント										*/
/* ************************************************ */
.underline {
	text-decoration				: underline;
}

/* ************************************************ */
/* グラデーション										*/
/* ************************************************ */
.gradient_gry01 {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#eeeeee+0,eeeeee+100;Grey+Flat */
	background: #eeeeee; /* Old browsers */
	background: -moz-linear-gradient(top,  #eeeeee 0%, #eeeeee 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #eeeeee 0%,#eeeeee 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #eeeeee 0%,#eeeeee 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
}
.gradient_gry02 {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#eeeeee+0,cccccc+100;Gren+3D */
	background: #eeeeee; /* Old browsers */
	background: -moz-linear-gradient(top,  #eeeeee 0%, #cccccc 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #eeeeee 0%,#cccccc 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #eeeeee 0%,#cccccc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */
}

/* ************************************************ */
/* 背景色											*/
/* ************************************************ */
.color_white {
	background-color			: #FFF;
}
.color_jikishin_blue {
	background-color			: #0096E4;
}

/* ************************************************ */
/* 													*/
/* HEADER											*/
/* 													*/
/* ************************************************ */
header {
	width						: 100%;
	min-width					: 960px;
	/*border-bottom				: 1px solid #595757;*/
}
.header_upperside {
	width						: 100%;
	height						: 2.4em;
	line-height					: 2.4em;
}
.header_content {
	width						: 960px;
	margin						: 0 auto !important;
	padding						: 0 !important;
}
.header_upper_logo {
	width						: 35%;
	display						: inline-block;
	float						: left;
}
.header_link {
	width						: 65%;
	height						: 2.4em;
	line-height					: 2.4em;
	display						: inline-block;
}
.header_link li {
	float						: left;
	margin						: 0 1em;
	display						: inline-block;
	float						: right;
}
.header_link li a {
	text-decoration				: none;
}
.header_lowerside {
	width						: 100%;
	height						: 4em;
	line-height					: 4em;
	display						: inline-block;
	clear						: both;
	margin						: 0 !important;
	padding						: 0 !important;
}
.jikishin-biyou_logo {
	width						: 22%;
	height						: 3.2em;	/* マージンと合わせて 4em */
	margin-top					: 0.8em;
	text-indent					: -9999px;
	background					: url("../../../common/img/jblogo.png");
	background-repeat			: no-repeat;
	background-size				: contain;
    vertical-align				: bottom;
	float 						: left;
	cursor						: pointer;
	box-sizing					: border-box;
}
nav {
	height						: 4em;
	display						: block;
	float 						: left;
	margin-left					: 2.5em;		/* ロゴとメニューの隙間 */
	box-sizing					: border-box;
}
nav ul {
	width						: 100%;
	height						: 100%;
}
nav ul li {
	float 						: left;
	height						: 100%;
	line-height					: 1.2em;
	text-align					: center;
	margin						: 0;
	box-sizing					: border-box;
	padding						: 0.9em 1.3em;
	display						: block;
	cursor						: pointer;
}
nav ul li:hover {
	border-radius				: 2px;
	transition					: 0.6s;
	background-color			: #CCC;
}
nav ul li a {
	display						: block;
}
/* ナビメニュー ホバー時に色を変える */
nav ul li a:hover {
	text-decoration				: none !important;
}
/* ナビメニューの英字を小さく表示 */
nav ul li span {
	font-size					: 80%;
}
.header_point_info {
	width						: 29%;
	height						: 100%;
	float 						: left;
}
.header_point_info ul {
	line-height					: 1.5em;
	padding						: 0.5em;
}
.header_point_info ul li {
	text-align					: right;
}
.header_point_info ul li span {
	margin-left					: 1em;
}
.header_cart {
	float						: right;
	height						: 100%;
}
.header_cart ul {
	line-height					: 0.5em;
	padding						: 0.5em 0 0 0;
}

/* ************************************************ */
/* 													*/
/* LOGIN											*/
/* 													*/
/* ************************************************ */
.wrapp_login_dialog {
	width						: 100%;
	height						: 25em !important;
	position					: absolute;
	top							: 0;
	right						: 0;
	bottom						: 0;
	left						: 0;
	margin						: auto;
}
/* Materials for salon professional. */
.header_logo {
	text-align					: center;
	font-family					: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
/* ロゴ左右のイラスト */
.header_logo::after {
	content						: " ";
	margin-top					: 0.6em;
	margin-left					: 0.4em;
	display						: inline-block;
	width						: 2em;
	height						: 1.4em;
	background					: url("../../../common/img/headermark.png");
	background-repeat			: no-repeat;
	background-size				: contain;
    vertical-align				: middle;
}
/* ロゴ左右のイラスト */
.header_logo::before {
	content						: " ";
	margin-top					: 0.6em;
	margin-right				: 0.4em;
	display						: inline-block;
	width						: 2em;
	height						: 1.4em;
	background					: url("../../../common/img/headermark.png");
	background-repeat			: no-repeat;
	background-size				: contain;
    vertical-align				: middle;
}
/* ダイアログ */
.login_dialog {
	width						: 80%;
	max-width					: 500px;
	margin						: 1em auto 1em auto;
	padding						: 1.5em 2em;
	border-radius				: 4px;
}
.login_dialog ul {
	line-height					: 1.5em;
}
.login_dialog ul li {
	margin-bottom				: 0.5em;
	margin-bottom				: 0.5em;
}
.login_dialog ul li:nth-child(9),
.login_dialog ul li:nth-child(7) {
	text-align					: center !important;
	margin-top					: 1.6em;
	margin-bottom				: 1.4em;
}
.login_dialog ul li button {
	margin						: 0 auto;
}


