/* ======================================================================================== */
/* RESET */
/* ======================================================================================== */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td{margin:0; padding:0;}
table{border-collapse:collapse; border-spacing:0;}
fieldset, img, hr{border:0;}
address, caption, cite, code, dfn, em, strong, th, var{font-style:normal; font-weight:normal;}
ol, ul{list-style:none;}
caption, th{text-align:left;}
h1, h2, h3, h4, h5, h6{font-size:100%; font-weight:normal;}
q:before, q:after{content:”;}
abbr, acronym{border:0;}
input,button,select,textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}
*{margin:0;padding:0;border:0;list-style-type:none;zoom:1;-webkit-text-size-adjust: none;}
*{font: inherit;font-style: normal;text-decoration:none;color: inherit;}


/* ======================================================================================== */
/* Root */
/* ======================================================================================== */
:root {
	--font-base-color: #333;
	--theme-light-color: #c1f7fd;
	--theme-medium-color: #2495cc;
	--theme-deep-color: #3a5e79;
}

/* ======================================================================================== */
/* Common */
/* ======================================================================================== */

*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	list-style-type: none;
	word-wrap: break-word;
}

body {
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: var(--font-base-color);
	background: #f7f7f7;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	position: relative;
}

body.no-scroll {
	position: fixed;
	width: 100%;
}

.font-min{
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.pc{
	display: block;
	opacity: 1;
	visibility: visible;
	height: auto;
}

.mobile{
	display: none;
	opacity: 0;
	visibility: hidden;
	height: 0;
}

@media screen and (max-width: 640px) {
	.pc{
		display: none;
		opacity: 0;
		visibility: hidden;
		height: 0;
	}
	
	.mobile{
		display: block;
		opacity: 1;
		visibility: visible;
		height: auto;
	}
}

a{
	text-decoration: none;
	color: currentColor;
	outline: none;
}

a:focus,
.btn:focus,
input[type="button"]:focus,
input[type="submit"]:focus {
	outline:none;
}

.hover{
	transition: all .2s;
}
.hover:hover{
	cursor: pointer;
	opacity: 0.6;
}

.is-hidden{
	opacity: 0.4;
	pointer-events: none;
}

:focus {
    outline: none;
}


/* ============================================ */
/* Container */
/* ============================================ */
.container{
}



/* ============================================ */
/* Category */
/* ============================================ */
.category{
}

/* ============================================ */
/* Card */
/* ============================================ */
.card-list{
}

.card{
}

/* ============================================ */
/* Status */
/* ============================================ */
.status{
}


/* ============================================ */
/* font */
/* ============================================ */



/* ============================================ */
/* Text */
/* ============================================ */
.text{	
}

/* ============================================ */
/* no-post */
/* ============================================ */
.no-post{
}


/* ============================================ */
/* Icon */
/* ============================================ */
.icon{
}


/* ============================================ */
/* Btn */
/* ============================================ */
.btn{
	cursor: pointer;
	transition: all .2s;
	border: none;
	text-indent: 0.15em;
	letter-spacing: 0.15em;
	margin: 0 auto;
	display: block;
}

.btn--basic{
	padding: 10px 25px;
	border-radius: 30px;
	color: #fff;
	font-weight: bold;
	background: var(--theme-medium-color);
	display: flex;
	align-items: center;
}

.btn--sub{
	padding: 5px 15px;
	border-radius: 30px;
	color: #fff;
	background: var(--theme-deep-color);
	margin: 0;
	font-size: 12px;
	font-weight: bold;
}

.btn--fixed{
	position: fixed;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	margin: auto;
	display: flex;
	align-items: center;
}

.btn span+span{
	margin-left: 5px;
}

.btn--back{
	position: fixed;
	left: 10px;
	font-size: 28px !important;
}

.btn--home{
	position: fixed;
	right: 10px;
	font-size: 28px !important;
}

.btn--home.yh{
	color: var(--theme-medium-color);
	pointer-events: none;
}

/* ============================================ */
/* Breadcrumb */
/* ============================================ */
.breadcrumb{
}


/* ============================================ */
/* SNS */
/* ============================================ */
.sns-area{
}


/* ============================================ */
/* Form */
/* ============================================ */
.form{
}


/* ============================================ */
/* Row */
/* ============================================ */
.rows{
}


/* ============================================ */
/* List */
/* ============================================ */
 
.list{
}

/* ============================================ */
/* Search */
/* ============================================ */
.search{
}


/* ============================================ */
/* Modal */
/* ============================================ */
.modal{
}




/* ============================================ */
/* input */
/* ============================================ */
.input-area{
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto 40px;
	height: auto;
	border-bottom: solid 1px var(--gray-medium-color);
}

.input-head{
	font-weight: bold;
	font-size: 13px;
	width: 100%;
	margin-bottom: 5px;
	letter-spacing: 0.1em;
}

.input-head label,
.input-head p{
	margin: 1rem;
	margin-left: 0;	
}

.input-data{
	width: 100%;
	margin-bottom: 15px;
}

.input-data--confirm{
	margin: 1rem;
}

.input-data input,
.input-data textarea,
.input-data select{
	display: inline-block;
	padding: 0.5rem 1rem;
	border: 1px solid #b2b2b2;
	border-radius: 5px;
	line-height: 1.5em;
	box-sizing: border-box;
	font-size: 1.125rem;
	-webkit-appearance: none;
	appearance: none;
	background: #fff;
}

.input-data input{
	width: 100%;
}

.input-data input[type="password"]{
	max-width: 500px;
}

.input-data textarea{
	width: 100%;
	resize: vertical;
	min-height: 180px;
}

.input-data select{
	width: 100%;
}

.checkbox-area{
	margin-top: 50px;
	padding: 10px;
	text-align: center;
	font-size: 0.875rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.checkbox-area--sort{
	justify-content: flex-end;
	margin-top: 0;
	padding-right: 22px;
	border-top: solid 1px var(--gray-light-color);
}

.checkbox-area input[type="checkbox"]{
	margin-right: 0.5rem;
	display: inline-block;
}

.checkbox-area__text{
	display: inline-block;
	text-align: left;
}

.checkbox-area__text a{
	color: var(--blue-medium-color);
	text-decoration: underline;
}

.btn-area{
	text-align: center;
	padding-top: 40px;
}

.input-error{
	font-size: 12px;
	color: red;
	margin: 0.5rem 1rem;
}

/* ============================================ */
/* Header */
/* ============================================ */

header{
	margin: 0 auto;
	padding: 15px 0;
	text-align: center;
	width: 100%;
	background: #fff;
	position: fixed;
	top: 0;
	border-bottom: solid 1px #eee;
	font-weight: bold;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	overflow-y: hidden;
	overflow-x: auto;
}

header img.logo{
	width: 150px;
}

header .header-title{
	white-space: nowrap;
	position: absolute;
	left: 0;
	right: 0;
	padding: 0 50px;
}

.header-home{
	justify-content: space-between;
	padding: 0 20px;
}

/* ============================================ */
/* Nav */
/* ============================================ */

nav{
	margin: 0 auto;
	width: 100%;
	height: 70px;
	background: #222;
	color: #fff;
	position: fixed;
	bottom: 0;
}


nav ul{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 0.875rem;
	justify-content: center;
	margin: 0 auto;
	max-width: 1000px;
	text-align: center;
}

nav ul li{
	width: 25%;
}

nav.nav-top ul li{
	width: 50%;
}

nav ul li a{
	display: block;
	padding: 15px 0;
}

nav ul li a:hover{
	background: var(--theme-light-color);
	color: var(--font-base-color);
}

nav ul li p{
	font-size: 10px;
	text-indent: 0.2em;
	letter-spacing: 0.2em;
}

nav ul li.yh{
	background: var(--theme-medium-color);
	pointer-events: none;
}

/* ============================================ */
/* Main */
/* ============================================ */

main{
	margin: 49px auto 100px;
	width: 100%;
	max-width: 1000px;
	padding: 0 20px;
}

@media screen and (max-width: 640px) {
	.main{
		margin: 0 auto 150px;
	}	
}

/* ============================================ */
/* Heading */
/* ============================================ */

.heading{
}


/* ============================================ */
/* Thumbnail */
/* ============================================ */

.thumbnail{
}



/* ============================================ */
/* Section */
/* ============================================ */

.section{
}

/* ============================================ */
/* Footer */
/* ============================================ */
.footer{
}


/* ============================================ */
/* Pager */
/* ============================================ */
.pager{
}



/* ======================================================================================== */
/* Page-HOME */
/* ======================================================================================== */

ul.home-list{
	margin: 0 -20px;
	border-top: solid 1px #ddd;
	
}

ul.home-list li{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: solid 1px #ddd;
	padding: 15px;

}

.home-list-date{
	min-width: 40px;
	font-size: 13px;
}

.home-list-title{
	margin: 0 15px 0 10px;
	font-weight: bold;
	flex: auto;

}

.home-list-setting{
	color: #999;
	user-select: none;
	cursor: pointer;
}

.home-list-setting:hover{
	color: var(--theme-medium-color);
}

/* home-add */
.home-add{
	margin-top: 30px;
}


/* ======================================================================================== */
/* Page-LOGIN */
/* ======================================================================================== */






/* ======================================================================================== */
/* Page-CONTENT-INDEX */
/* ======================================================================================== */
.summary-list-wrap{
	margin-top: 30px;
	border: solid 1px #999;
}

ul.summary-list{
	display: flex;
	flex-wrap: wrap;
	background: #fff;
}

ul.summary-list li{
	border: solid 1px #eee;
	width: 33.3%;
	padding: 10px;
}

ul.summary-list .summary-column2{
	width: 66.6%;
}

ul.summary-list .summary-column3{
	width: 100%;
}

ul.summary-list strong{
	font-weight: bold;
}

/* ======================================================================================== */
/* Page-SCHEDULE */
/* ======================================================================================== */
.schedule-header{
	position: fixed;
	overflow-y: hidden;
	overflow-x: scroll;
	width: 100%;
	top: 50px;
	background: #fff;
	border-bottom: solid 1px #ddd;
	white-space: nowrap;
}

ul.schedule-cat{
	display: flex;
	padding: 10px;
	max-width: 1000px;
	margin: 0 auto;
	font-size: 13px;
}

ul.schedule-cat li{
	font-weight: bold;
	padding: 3px 15px;
	background: #eee;
	border-radius: 20px;
	margin: 0 10px;
	flex-shrink: 0;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	cursor: pointer;
}

ul.schedule-cat li.yh{
	background: var(--theme-medium-color);
	color: #fff;
}

ul.schedule-cat li:last-child:after{
	content: "";
	width: 65px;
	height: 20px;
	display: block;
	position: absolute;
}

ul.schedule-list{
	margin-top: 60px;
}

ul.schedule-list li{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	padding: 10px;
	border: solid 1px #eee;
	margin-bottom: 10px;
}

.schedule-list-head{
	display: flex;
	align-items: center;
	flex-direction: column;
}

.schedule-list-head p{
	font-size: .75rem;
}

.schedule-list-num{
	min-width: 70px;
	max-width: 50%;
	min-height: 70px;
	text-align: center;
	background: var(--theme-deep-color);
	color: #fff;
	font-weight: bold;
	padding: 5px 15px;
	border-radius: 10px;
	text-indent: 0.1em;
	letter-spacing: 0.1em;
	display: flex;
	align-items: center;
	justify-content: center;
}

.schedule-list-content{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 170px;
	max-width: 50%;
	padding: 0 10px;
}

.schedule-list-content .input-data{
	margin-bottom: 0;
	padding: 0 10px;
}

.schedule-list-content .input-data input{
	text-align: center;
}

@media screen and (max-width: 640px) {
	.schedule-header::-webkit-scrollbar {
		display: none;
	}
	.schedule-list-content{
		min-width: 50%;
	}
}

/* ======================================================================================== */
/* Page-PROCESS */
/* ======================================================================================== */
ul.process-list{
	margin: 0 -20px;
	border-top: solid 1px #ddd;
}

ul.process-list li{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	border-bottom: solid 1px #ddd;
}

.process-list-num{
	font-weight: bold;
	padding: 5px;
	font-size: 20px;
}

.process-list-title{
	flex: 1;
	padding: 0 20px;
	font-size: 15px;
}


/* ======================================================================================== */
/* Page-PREOLE */
/* ======================================================================================== */
.people-all{
	overflow-x: auto;
	overflow-y: auto;
	max-height:calc(100vh - 120px);
	max-width: 1000px;
	position: fixed;
	top: 50px;
	bottom: 70px;
	left: 0;
	right: 0;
	margin: auto;

}
table.people-list {
	min-width: 1200px;
	background: #fff;
}

table.people-list tr:first-child th{
	color: #fff;
	background: var(--theme-deep-color);
	font-weight: bold;
}


table.people-list th,
table.people-list td {
	width: auto;
	vertical-align: middle;
	text-align: center;
	padding: 10px;
	border: 1px solid #ddd;
	z-index: 1;
}

table.people-list th{
	position: sticky;
	top: 0;
	left: 0;
	z-index: 50;
	background: #eaeaea;
	font-weight: bold;
	padding: 10px;
}

table.people-list th:before {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	width: 100%;
	height: 100%;
	border: 1px solid #ddd;
	z-index: -1;
}

table.people-list tr:first-child th:first-child{
	z-index: 100;
	min-width: 100px;
}

table.people-list td{
	font-size: 15px;
	min-width: 40px;
}

.th-nav{
	display: flex;
	align-items: center;
	justify-content: space-around;
}

th.week-saturday{
	color: #5f9eff !important;
}

td.week-saturday{
	background: #dcf0ff;
}

th.week-sunday{
	color: #ff6f6f !important;
}

td.week-sunday{
	background: #ffe2e2;
}