@charset "utf-8";


/*--------------------------------------------------*/
/* header */
/*--------------------------------------------------*/

.l_nav {
	display: flex;
	gap: 10px;
	margin: 0.83em 0;
}

.l_nav_title {
	margin: 0;
	flex: 1;
}

/*--------------------------------------------------*/
/* select */
/*--------------------------------------------------*/

.l_select {
	position: relative;
}

.l_select select {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.0);
	background-color: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
}

.l_select select option {
	background-color: #555;
	color: #FFF;
	font-size: 13px;
	font-weight: 500;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
}

.l_select select::-webkit-scrollbar {
	width: 8px;
}

.l_select select::-webkit-scrollbar-track {
	background-color: #333;
}

.l_select select::-webkit-scrollbar-thumb {
	background-color: #777;
	border-radius: 10px;
}

.l_select_view {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #0a294e;
	color: #FFF;
	height: 100%;
	padding: 0 35px 0 10px;
	border-radius: 6px;
}

.l_select_view::after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background: url(../img/caret-down-sharp-solid.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -9px;
    pointer-events: none;
}

/*--------------------------------------------------*/
/* table */
/*--------------------------------------------------*/

.table {
	position: relative;
	overflow: hidden;
	width: 100%;
	display: flex;
	font-size: 14px;
	list-style: 1;
}

.table_th {
	border-top: var(--c-table-border) solid 1px;
}

.table_note div,
.table_th div,
.table_dd div,
.table_week div,
.table_day div {
	line-height: 1;
	padding: 7px 5px;
	box-sizing: border-box;
	border-bottom: var(--c-table-border) solid 1px;
	border-right: var(--c-table-border) solid 1px;
}

.table_th div {
	padding: 7px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #ebf2f4;
	border-left: var(--c-table-border) solid 1px;
}

.table_th ._note,
.table_th ._week,
.table_th ._day {
	text-align: center;
}

.table_th ._day,
.table_day div {
	background-color: #35536B;
	color: #FFF;
}

.table_th ._week,
.table_week div {
	background-color: #35536B;
	color: #FFF;
}

.table_body {
	overflow: auto;
}

.table_note,
.table_dd,
.table_day,
.table_week {
	display: flex;
}

.table_note div,
.table_dd div,
.table_week div,
.table_day div {
	flex: 0 0 35px;
	width: 35px;
	text-align: center;
}

.table_day div {
	border-top: var(--c-table-border) solid 1px;
}

/*--------------------------------------------------*/
/* l_table_date */
/*--------------------------------------------------*/

.l_table_con,
.l_table_date {
	border-collapse: collapse;
	width: 100%;
}

.l_table_con.year {
	table-layout: fixed
}

.l_table_con td, .l_table_con th,
.l_table_date td, .l_table_date th {
	border: solid 1px #bbb;
	text-align: center;
	line-height: 1.1;
	
}

.l_table_con.year th:first-child {
	width: 12em
}


.l_table_con th, .l_table_date th {
	background-color: #35536B;
	color: #FFF;
}

.l_table_date td, .l_table_date th {
	padding: 5px;
}

.l_table_con td, .l_table_con th {
	font-size: 11px;
	padding: 5px 3px;
}

.l_table_con td:last-child {
	white-space: nowrap;
}

.l_table_con td:not(:last-child):not(:first-child):not(:nth-child(2)) {
	width: 7%;
}

@media (max-width: 500px) {
	.l_table_con td, .l_table_con th,
	.l_table_date td, .l_table_date th {
		font-size: 11px;
		padding: 3px;
	}
}