@charset "utf-8";
/* CSS Document */

*{
	padding: 0;
	margin: 0;
}

/* ********************************************************************************************
　　　　　　　　　全体
******************************************************************************************** */
body{
	font-family: "ヒラギノ角ゴ Pro W5", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-size: 11px;
	font-size: 3.1vw;
	line-height: 1.8em;
	background: #ffffff;
	color: #707070;
}

/* 画像 */
img{
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

/* リンク */
a{
	color: #0C93D3;
	text-decoration: none;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
a:hover{
	opacity:0.7;
	filter: alpha(opacity=70);
}

/* ********************************************************************************************
　　　　　　　　　ヘッダー
******************************************************************************************** */
#header{
	width: 100%;
}

/* ページタイトル */
h1{
	width: 100%;
	font-size: 1.7em;
	line-height: 1em;
	font-weight: normal;
	letter-spacing: 0.2em;
	text-align: center;
	color: #ffffff;
	background: #0C93D3;
	padding: 0.88em 0;
}

/* フォーム */
input{
	font-family: "ヒラギノ角ゴ Pro W5", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

/* -------フロー領域------------------------------------------- */
.flow{
    position: relative;
    width: 100%;
}
.flow:before {
    content:"";
    display: block;
    padding-top: 10.8527%;
}
.flow p{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.flow p span{
	display: none;
}

/* 表示画像 */
.flow01 .flow p{
	background: url(../images/flow01.jpg) no-repeat 0 0;
	background-size: cover;
}
.flow02 .flow p{
	background: url(../images/flow02.jpg) no-repeat 0 0;
	background-size: cover;
}
.flow03 .flow p{
	background: url(../images/flow03.jpg) no-repeat 0 0;
	background-size: cover;
}

/* フロータイトル */
h2.flowtitle{
    width: 100%;
	font-size: 1.5em;
	line-height: 1em;
	font-weight: normal;
	text-align: center;
	color: #ffffff;
	background: #7FC5F3;
	padding: 0.8667em 0;
}

/* ********************************************************************************************
　　　　　　　　　メイン
******************************************************************************************** */
main{
	padding-bottom: 25%;
}

/* 金額表示------------------------------------------- */

/* 価格 */
.price{
	color: #f4466b;
}
.price::before{
	content: "￥";
}
.price::after{
	content: "（税込）";
}

/* 合計 */
.total ul{
	width: 100%;
	list-style: none inside;
	box-sizing: border-box;
	padding: 0.25em 0 0.5em 4.8%;
	font-size: 1.4em;
	line-height: 1.7em;
}
.total li{
	width: 100%;
	text-align: right;
}
.total li:nth-child(1)::before{
	content: "金額：";
}
.total li:nth-child(2)::before{
	content: "施術時間：";
}
.total li:nth-child(2)::after{
	content: "（目安）";
}
.total .price{
	font-size: 1.1em;
	font-weight: bold;
}

/* ボタン------------------------------------------- */
button{
	font-family: "ヒラギノ角ゴ Pro W5", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	cursor: pointer;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	width: 100%;
	padding: 1em 0;
	border-radius: 0.38em;
	border: none;
	text-align: center;
	line-height: 1em;
}
button:hover{
	opacity:0.7;
	filter: alpha(opacity=70);
}

/* メインボタン */
.mainbtn{
	background: #0C93D3;
	color: #ffffff;
	padding: 0.867em 0;
	font-size: 1.5em;
	letter-spacing: 0.2em;
}

.mainbtn:disabled{
	background: #aaaaaa;
	color: #ffffff;
	padding: 0.867em 0;
	font-size: 1.5em;
	letter-spacing: 0.2em;
}

/* サブボタン */
.subbtn{
	background: #43b8f0;
	color: #ffffff;
	font-size: 1.3em;
}

/* サブボタン2 */
.subbtn2{
	background: #898989;
	color: #ffffff;
	font-size: 1.3em;
}

/* -------開閉エリア------------------------------------------- */
input[type="checkbox"].ocbtn{
    display: none;
}
.openbtn{
	cursor: pointer;
}
.openbox{
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0;
    padding: 0;
    list-style: none;
}
input[type="checkbox"].ocbtn ~ .openbox{
    height: 0;
    overflow: hidden;
}
input[type="checkbox"].ocbtn:checked ~ .openbox{
    height: auto;
}
input[type="checkbox"].ocbtn:checked ~ .hidebox{
	display: none;
}

/* ********************************************************************************************
　　　　　　　　　フッター
******************************************************************************************** */
#footer{
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 999;
}

/* -------グローバルナビゲーション------------------------------------------- */
.gnav ul{
	list-style: none inside;
	width: 100%;
	font-size: 0.9em;
	line-height: 1em;
	background: #0C93D3;
	overflow: hidden;
	zoom:1;
	margin: 0;
	padding: 0;
}
.gnav li{
	float: left;
	width: 20%;
	text-align: center;
	margin: 0;
	padding: 0;
}
.gnav a{
	display: block;
	width: 100%;
	color: #ffffff;
	padding: 55% 0 10% 0;
}

/* 各アイコン画像 */
.gnav ul li:nth-child(1) a{
	background: url(../images/nav01.png) no-repeat 50% 26%;
	background-size: 42% auto;
}
.gnav ul li:nth-child(2) a{
	background: url(../images/nav02.png) no-repeat 50% 26%;
	background-size: 42% auto;
}
.gnav ul li:nth-child(3) a{
	background: url(../images/nav03.png) no-repeat 50% 26%;
	background-size: 42% auto;
}
.gnav ul li:nth-child(4) a{
	background: url(../images/nav04.png) no-repeat 50% 26%;
	background-size: 42% auto;
}
.gnav ul li:nth-child(5) a{
	background: url(../images/nav05.png) no-repeat 50% 26%;
	background-size: 42% auto;
}

/* アクティブページ */
.gnav ul li:nth-child(1){
	background: #43b8f0;
}

/* ********************************************************************************************
　　　　　　　　　メインコンテンツ中身
******************************************************************************************** */

/* ********メニュー選択（メニュー未選択）******************************************* */
#menu_noselect main{
	padding-bottom: 0;
}
.noselect{
	width: 100%;
	text-align: center;
	font-size: 1.2em;
	line-height: 1.5em;
	color: #0C93D3;
	padding: 12.7% 0;
}

/* -------メニュー選択領域------------------------------------------- */
.selectarea{
	width: 100%;
	box-sizing: border-box;
	padding: 1.3em 1.3em 25% 1.3em;
	background: #efefef;
}

/* 各メニュー------------ */
.selectarea section{
	width: 100%;
	box-sizing: border-box;
	padding: 1em;
	margin: 0 0 0.2em 0;
	background: #ffffff;
}

/* メニュー名------------ */
.selectarea section h3{
	font-size: 1.25em;
	font-weight: normal;
	color: #0C93D3;
	padding-bottom: 0.4em;
}

/* メニュー名の頭が括弧で始まる場合 */
.hdbracket{
	text-indent: -0.5em;
}

/* メニュー詳細------------ */
.menudtl{
	width: 100%;
	overflow: hidden;
	zoom:1;
}

/* メニュー画像 */
.menuimg{
	float: left;
	width: 21%;
	border-radius: 0.5em;
	margin-right: 4%;
	overflow: hidden;
    position: relative;
	background: #d2d2d2 url(../images/noimg.png) no-repeat 50% 50%;
	background-size: 65% auto;
}
.menuimg:before {
    content:"";
    display: block;
    padding-top: 100%;
}
.menuimg p {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.menuimg img{
	width: 100%;
	height: auto;
}

/* メニュー金額・時間・条件 */
.menudtl ul{
	list-style: none inside;
	float: left;
	width: 75%;
	box-sizing: border-box;
	padding: 0.25em 0 0 0;
	font-size: 1.2em;
	line-height: 1.5em;
}
.menudtl li:nth-child(1)::before{
	content: "金額：";
}
.menudtl li:nth-child(2)::before{
	content: "施術時間：";
}
.menudtl li:nth-child(2)::after{
	content: "（目安）";
}
.menudtl li:nth-child(3)::before{
	content: "利用条件：";
}

/* 最初からやり直す */
.resetarea{
	width: 100%;
	box-sizing: border-box;
	padding: 1.3em;
}

/* メニュー説明------------ */
.menuinfo{
	padding: 1em 0;
}

/* ********メニュー選択（メニュー選択時）******************************************* */
#menu_select main{
	padding-bottom: 0;
}

/* -------選択中メニュー------------------------------------------- */
.selected{
	width: 100%;
	box-sizing: border-box;
	padding: 1.3em;
}
.selected h3{
	width: 100%;
	text-align: center;
	font-size: 1.2em;
	font-weight: normal;
	line-height: 1em;
	color: #0C93D3;
	padding-bottom:0.7em;
}

/* 各メニュー------------ */
.selected section{
	width: 100%;
	box-sizing: border-box;
	padding: 1em;
	margin: 0 0 1em 0;
	background: #efefef;
	border-radius: 0.5em;
}

/* メニュー名------------ */
.selected section .openbtn{
	display: block;
	font-size: 1.15em;
	font-weight: normal;
	color: #0C93D3;
	padding: 0 6% 0 0;
	background: url(../images/bg_open.png) no-repeat right 50%;
	background-size: 5% auto;
}

/* 開閉時矢印動作*/
.selected section input[type="checkbox"].ocbtn:checked ~ .openbtn{
	background: url(../images/bg_close.png) no-repeat right 50%;
	background-size: 5% auto;
}

/* 露出金額------------ */
.selected section .hidebox{
	font-size: 1.1em;
	line-height: 1em;
	padding-top: 1em;
}
.selected section .hidebox::before{
	content: "金額：";
}

/* 開閉部------------ */
.selected section input[type="checkbox"].ocbtn:checked ~ .openbox{
	padding-top: 1em;
}

/* 合計------------ */
#menu_select .total h4{
	font-size: 1.5em;
	font-weight: normal;
	color: #0C93D3;
}
#menu_select .total,#menu_select .total li{
	text-align: center;
}

/* ********日時選択（サロンの空き状況）******************************************* */
#date_select main{
	padding-bottom: 0;
}

/* -------スケジュール選択領域------------------------------------------- */
.scharea{
	width: 100%;
	background: #efefef;
	padding-bottom: 25%;
}
.scharea .inner{
	width: 100%;
	box-sizing: border-box;
	padding: 1.3em;
}
.scharea ul{
	list-style: none inside;
}

/* サロン・スタイリスト切り替え------------ */
nav.tab{
	width: 100%;
	font-size: 1.4em;
	line-height: 1em;
	color: #707070;
}
nav.tab a{
	width: 100%;
	display: block;
	color: #707070;
	padding: 0.89em 0;
}
nav.tab ul{
	width: 100%;
	overflow: hidden;
	zoom:1;
}
nav.tab ul li{
	float: left;
	text-align: center;
}
nav.tab ul li:nth-child(1){
	width: 44%;
}
nav.tab ul li:nth-child(2){
	width: 56%;
}

/* 非アクティブページ */
#date_select nav.tab ul li:nth-child(1){
	padding: 0.89em 0;
}
#date_select nav.tab ul li:nth-child(2) a{
	background: #d2d2d2;
}

/* 週移動ナビゲーション------------ */
nav.weeknav{
	width: 100%;
	padding: 0 0 1.3em 0;
}
nav.weeknav ul{
	font-size: 1.2em;
	line-height: 1em;
	overflow: hidden;
	zoom:1;
}
nav.weeknav li:nth-child(1){
	float: left;
}
nav.weeknav li:nth-child(2){
	float: right;
}
nav.weeknav li a{
	display: block;
	height: 1em;
	color: rgba(112,112,112,0.70);
}

/* 矢印 */
nav.weeknav li:nth-child(1) a{
	padding-left: 1.2em;
	background: url(../images/weeknav_pre.png) no-repeat left 0;
	background-size: auto 1em;
}
nav.weeknav li:nth-child(2) a{
	padding-right: 1.2em;
	background: url(../images/weeknav_next.png) no-repeat right 0;
	background-size: auto 1em;
}

/* 予約表------------ */
.schtable{
	width: 100%;
	font-size: 1.3em;
	line-height: 1em;
	text-align: center;
	padding: 0 0 1em 0;
	margin: 0;
	overflow: hidden;
	zoom:1;
}
.tablehd,.tabledt{
	float: left;
	box-sizing: border-box;
}
.tablehd{
	width: 18%;
	border-left: #efefef solid 0.15em;
}
.tabledt{
	width: 82%;
	border-left: #efefef solid 0.15em;
}
.tabledt li{
	border-bottom: #efefef solid 0.15em;
	box-sizing: border-box;
}

/* 表ヘッダー */
.tablehd li{
	width: 100%;
	height: 2em;
	padding: 0.5em 0;
	color: #ffffff;
	background: #43b8f0;
	border-bottom: #efefef solid 0.15em;
	box-sizing: border-box;
}
.tablehd li:first-child{
	height: 6em;
	background: #0c93d3;
	display:-ms-flexbox;
	display:-webkit-box;
	display:-webkit-flex;
	display:flex;
	-ms-flex-align:center;
	-webkit-box-align:center;
	-webkit-align-items:center;
	align-items:center;
	-ms-flex-pack:center;
	-webkit-box-pack:center;
	-webkit-justify-content:center;
	justify-content:center;
}

/* 月 */
.month{
	width: 100%;
	height: 2.5em;
	border-right: #efefef solid 0.15em;
	background: #0c93d3;
	color: #ffffff;
	display:-ms-flexbox;
	display:-webkit-box;
	display:-webkit-flex;
	display:flex;
	-ms-flex-align:center;
	-webkit-box-align:center;
	-webkit-align-items:center;
	align-items:center;
	-ms-flex-pack:center;
	-webkit-box-pack:center;
	-webkit-justify-content:center;
	justify-content:center;
}

/* 週 */
.week{
	width: 100%;
	overflow: hidden;
	zoom:1;
}
.week ul{
	float: left;
	width: 14.2857%;
	box-sizing: border-box;
	border-right: #efefef solid 0.15em;
}

/* 日付 */
.week ul li.date{
	height: 3.5em;
	line-height: 1.5em;
	color: #ffffff;
	background: #43b8f0;
	display:-ms-flexbox;
	display:-webkit-box;
	display:-webkit-flex;
	display:flex;
	-ms-flex-align:center;
	-webkit-box-align:center;
	-webkit-align-items:center;
	align-items:center;
	-ms-flex-pack:center;
	-webkit-box-pack:center;
	-webkit-justify-content:center;
	justify-content:center;
}

/* 予約セル */
.week ul li{
	width: 100%;
	height: 2em;
	padding: 0.5em 0;
	background: #ffffff;
	color: rgba(112,112,112,0.70);
}

/* ********日時選択（スタイリスト指名）******************************************* */
#stylist_select main{
	padding-bottom: 0;
}

/* -------決定内容領域------------------------------------------- */
.yourdate{
	font-size: 1.4em;
	padding-bottom: 0.85em;
}

/* -------スタイリスト選択領域------------------------------------------- */
#stylist_select .selectarea h3{
	font-size: 1.4em;
	font-weight: normal;
	line-height: 1em;
	padding-bottom: 0.6em;
}
.nostylist{
	margin-bottom: 1.6em;
}

/* スタイリスト詳細------------ */
.stylistdtl{
	width: 100%;
	overflow: hidden;
	zoom:1;
}
.stylisttxt{
	float: left;
	width: 52%;
	padding: 0.25em 0 0 0;
}
.stylisttxt h4{
	font-size: 2em;
	line-height: 1em;
	font-weight: normal;
}

/* スタイリスト画像 */
.stylistimg{
	float: left;
	width: 46%;
	border-radius: 50%;
	margin-right: 2%;
	overflow: hidden;
    position: relative;
	background: #d2d2d2 url(../images/noimg.png) no-repeat 50% 50%;
	background-size: 65% auto;
}
.stylistimg:before {
    content:"";
    display: block;
    padding-top: 100%;
}
.stylistimg p {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.stylistimg img{
	width: 100%;
	height: auto;
}

/* スタイリスト勤務年数・指名料 */
.stylistdtl ul{
	list-style: none inside;
	box-sizing: border-box;
	padding: 0.8em 0 0 0;
	font-size: 1.2em;
	line-height: 1.5em;
}
.stylistdtl li:nth-child(1) span{
	color: #0c93d3;
}
.stylistdtl li:nth-child(2)::before{
	content: "金額：";
}

/* スタイリスト説明------------ */
.stylistinfo{
	padding: 0.7em 0;
	line-height: 1.6em;
}

/* ********日時選択（スタイリスト別空き状況）******************************************* */
#date_stselect main{
	padding-bottom: 0;
}

/* -------スケジュール選択領域------------------------------------------- */

/* サロン・スタイリスト切り替え------------ */
/* 非アクティブページ */
#date_stselect nav.tab ul li:nth-child(1) a{
	background: #d2d2d2;
}
#date_stselect nav.tab ul li:nth-child(2){
	padding: 0.89em 0;
}

/* ご指名のスタイリスト------------ */
#date_stselect .scharea h3{
	font-size: 1.4em;
	font-weight: normal;
	line-height: 1em;
	padding-bottom: 0.6em;
}
#date_stselect .scharea section{
	width: 100%;
	box-sizing: border-box;
	padding: 1em;
	margin: 0 0 0.2em 0;
	background: #ffffff;
}

/* ボタン */
.otherstl{
	margin: 0.867em 0;
	letter-spacing: 0;
}
.inner .otherstl:last-child{
	margin: 0;
}

/* ********日時選択（スタイリストを指名して空き状況を確認）******************************************* */
#stdate_list_select main{
	padding-bottom: 0;
}

/* -------スタイリスト選択領域------------------------------------------- */
#stdate_list_select .scharea section{
	width: 100%;
	box-sizing: border-box;
	padding: 1em;
	margin: 0 0 0.2em 0;
	background: #ffffff;
}
#stdate_list_select .scharea h3{
	font-size: 1.1em;
	font-weight: normal;
	line-height: 1em;
	padding-bottom: 1em;
}

/* サロン・スタイリスト切り替え------------ */
/* 非アクティブページ */
#stdate_list_select nav.tab ul li:nth-child(1) a{
	background: #d2d2d2;
}
#stdate_list_select nav.tab ul li:nth-child(2){
	padding: 0.89em 0;
}

/* ********予約内容の確認******************************************* */
/* -------選択中メニュー------------------------------------------- */
#reserve_confirm .selected h4{
	font-size: 1.4em;
	font-weight: normal;
	line-height: 1em;
	padding-bottom: 0.6em;
}
#reserve_confirm .selected h5{
	font-size: 2em;
	line-height: 1em;
	font-weight: normal;
}

/* -------確認事項------------------------------------------- */
.confirm{
	width: 100%;
}
.confirm section{
	width: 100%;
	background: #efefef;
	margin-bottom: 1.5em;
}
.confirm section:nth-child(2){
	margin-bottom: 1em;
}
.confirm .inner{
	padding: 1.3em;
}

/* コンテンツヘッダー------------ */
.confirm section header{
	width: 100%;
	text-align: center;
	color: #ffffff;
	background: #0c93d3;
}
.confirm section header h3{
	width: 100%;
	padding: 0.8em 0;
	font-size: 1.5em;
	font-weight: normal;
	line-height: 1em;
}

/* お客様の情報------------ */
.yourinfo ul{
	list-style: none inside;
}

/* 氏名 */
/*
.yourinfo li:nth-child(1){
	font-size: 2em;
	line-height: 1em;
	padding-bottom:0.5em;
}
.yourinfo li:nth-child(1)::after{
	content: "様";
	padding-left: 0.8em;
}
*/

/* 電話番号 */
.yourinfo input[type="tel"], .yourinfo input[type="text"] {
	display: block;
	width: 100%;
	font-size: 1.5em;
	box-sizing: border-box;
	padding: 0.6em 1.5em;
	border: #0c93d3 solid 1px;
	border-radius: 0.33em;
	color: #0c93d3;
}

/* コンテンツタイトル */
.yourinfo .ctt{
	display: inline-block;
	font-size: 0.6em;
	color: #0c93d3;
	padding-right: 1.5em;
}
.yourinfo li .ctt{
	font-size: 1.2em;
}

/* サロンからお客様へ------------ */
.fromsalon p{
	width: 100%;
	box-sizing: border-box;
	padding: 1.25em;
	margin-bottom: 1.25em;
	font-size: 1.2em;
	line-height: 1.5em;
	color: #626262;
	background: #dcdcdc;
	border-radius: 0.4em;
}

/* チェックボックス */
.fromsalon input{
	display: none;
}
label.check{
	font-size: 1.4em;
	cursor: pointer;
	margin-left: 0.5em;
}
.fromsalon input[type="checkbox"] + label.check {
    display: block;
    background: url(../images/nocheck.png) no-repeat 0 0;
    background-size: 1.1em;
	padding-left: 1.5em;
	color: #999999;
}

.fromsalon input[type="checkbox"]:checked + label.check {
    background: url(../images/check.png) no-repeat 0 0;
    background-size: 1.1em;
	color: #0c93d3;
}

/* 申請ボタン------------ */
.submit{
	letter-spacing: 0;
}
.submit:disabled{
	letter-spacing: 0;
}

/* ********ご予約の確定に関して******************************************* */
#reserve_finish main .inner{
	padding: 1.3em;
}
#reserve_finish main .inner p{
	font-size: 1.4em;
	line-height: 1.7em;
}

/* Style for booking select */
.booking_select {
	cursor: pointer;
}

/* Form error */
form .error {
  color: #ff0000;
}