
/****************************************
 ナビゲーション
****************************************/

/* 全体 */
.navigation {
    margin: 0.5rem 0;
    padding: 0.5rem 0;
    font-size: 14px;
    font-weight: bold;
}

/****************************************
 メニュー
****************************************/

.menu {
	margin-bottom: 1.7rem;
}


/****************************************
 選択中施術
****************************************/

.service-list-title {
	background-color: #343A40;
	color: #ffffff;
}

.service-list {
	border: solid 1px #343A40;
}


/****************************************
 施術選択
****************************************/

.select-service {
	border: solid 1px #343A40;
}

.select-service:hover {
	/* background-color: #343A40; */
	background-color:var(--select-service-hover-backgroundcolor);
	color: #ffffff;
	transition: 0.3s;
}

.service_check_area:hover {
	/* background-color: #343A40; */
	background-color:var(--select-service-hover-backgroundcolor);
}

.select-service-box ul,
.select-set-service-box ul {
	padding-inline-start: 0;
	list-style: none;
}

.select-service-box li.parent_item_list_item {
	margin-bottom: 10px;
}

.select-service-box p,
.select-set-service-box p {
	margin-top: 0;
	margin-bottom: 0;
}

.select-service-box p:after,
.select-set-service-box p::after {
	content: "";
	position: absolute;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	width: 10px;
	right: 10px;
	height: 10px;
	transform: rotate(45deg);
}

.select-service-box p.open,
.select-set-service-box p.open {
	/* background-color: #efefef;*/
	background-color:var(--select-service-box-open-backgroundcolor);
}

.select-service-box p.open:after,
.select-set-service-box p.open::after {
	content: "";
	position: absolute;
	border-left: 1px solid #000;
	border-top: 1px solid #000;
	border-right: 0;
	border-bottom: 0;
	width: 10px;
	right: 10px;
	height: 10px;
	transform: rotate(45deg);
}

.select-service{
	/* display: flex; */
	align-items: center;
	padding-right: 0.5rem;
}

.select-service-title{
	flex-grow: 1;
}

.service-setumei{
	color: var(--treatment-setsumei-font-color);
}

.select-service-circle-right{
	flex-basis: 1.0rem;
}

ul.child_item_list {
	display: none;
}

.select_service_list {
	margin-bottom: 0;
}

.select_staff {
	position: relative;
}

/* 擬似要素で下三角形を作成 */
.select_staff:after {
	content: "";
	position: absolute;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	width: 10px;
	right: 10px;
	height: 10px;
	transform: rotate(45deg);
}

.select_staff.open::after {
	content: "";
	position: absolute;
	border-left: 1px solid #000;
	border-top: 1px solid #000;
	border-right: 0;
	border-bottom: 0;
	width: 10px;
	right: 10px;
	height: 10px;
	transform: rotate(45deg);
}

/****************************************
 予約一覧
****************************************/

/* タイトル */
.title {
    padding: 0.5rem 1rem;
    background-color: #343A40;
    color: #ffffff;
}

/* 内容 */
.contents {
    padding: 0.5rem 1rem;
    border: solid 3px #343A40
}

/****************************************
 カレンダー
****************************************/

/* 親テーブル */
.table-parent {
	width: 100%;
	line-height: initial;
}

.table-parent td {
    padding: 0;
}

/* 子テーブル */
.table-child {
    width: 100%;
	border-collapse: collapse;
	border: 1px #1C79C6 solid;
	text-align:center;
}

.table-child td {
	border: 1px #1C79C6 solid;
	border-collapse: collapse;
	height: 33px;
} 
.table-child th {
	border: 1px #1C79C6 solid;
	border-collapse: collapse;
	height: 40px;
}

/* 土曜 */
.sat {
	color:#4466BB;
	background-color:#D9E3EC;
}

/* 日曜 */
.san {
	color:#BB5555;
	background-color:#EEDDD9;
}

/* 祝日 */
.holi {
	color:#BB5555;
	background-color:#EEDDD9;
}

/* 平日 */
.non {
	background-color:#DCDCDC;
}

/* フォントサイズ_PC */

/* 曜日ヘッダー */
/* 時間 */
.table-child th.week_hader_font_size,
.table-child tr td.time{
	font-size:11px;
}

/* /フォントサイズ_PC */

/* フォントサイズ_スマホ */

@media screen and (max-width: 600px) {
	/* 曜日ヘッダー */
	.table-child th.week_hader_font_size,
	.table-child tr td.time {
		font-size:8px;
	}
}

/* /フォントサイズ_スマホ */


/****************************************
 注意事項
****************************************/

.cautions {
    text-align: left;
}

.cautions-title,
.memo-title{
    padding: 0.5rem 1rem;
    background-color: #9c3b3b;
    color: #ffffff;
}

.cautions-title div[aria-expanded="false"]:after {
content: "";
position: absolute;
border-right: 3px solid #fff;
border-bottom: 3px solid #fff;
width: 15px;
right: 15px;
height: 15px;
transform: rotate(45deg);
}

.cautions-title div[aria-expanded="true"]:after {
content: "";
position: absolute;
border-left: 3px solid #fff;
border-top: 3px solid #fff;
border-right: 0;
border-bottom: 0;
width: 15px;
right: 15px;
height: 15px;
transform: rotate(45deg);
top: 15px;
}