@charset "UTF-8";
/* CSS Document */
#lesson-notes {
	margin: 0 auto;
	padding: 1em;
	background-color: #FAFAFA;
	max-width: 95vw;
}
#lesson-notes.no-data {
	text-align: center;
}

#lesson-notes details > summary {
	cursor: pointer;
	list-style: none !important;
	font-size: 2.5em;
	margin: 1em 0;
	padding-bottom: .25em;
	border-bottom: 2px solid #000;
}

#lesson-notes details > summary::-webkit-details-marker {
	display: none;
}

#lesson-notes details {
	transition: 0.5s;
}

#lesson-notes section.year {
	
}

#lesson-notes div.card {
	clear: both;
	height: auto;
	border-bottom: 1px dashed #CCC;
	padding: .5em;
	margin-bottom: 1em;	
}

#lesson-notes time {
	display: inline-block;
	margin: 0;
	width: 6em;
}

#lesson-notes h3 {
	display: inline-block;
	border-bottom: 2px solid; 
	line-height: 1em;
	padding: 0 0 .1em 0;
	margin: 0;
}

#lesson-notes .cat-a { border-color: var(--lesson-cat-color-1); }
#lesson-notes .cat-b { border-color: var(--lesson-cat-color-2); }
#lesson-notes .cat-c { border-color: var(--lesson-cat-color-3); }
#lesson-notes .cat-d { border-color: var(--lesson-cat-color-4); }
#lesson-notes .cat-e { border-color: var(--lesson-cat-color-5); }
#lesson-notes .cat-f { border-color: var(--lesson-cat-color-6); }
#lesson-notes .cat-g { border-color: var(--lesson-cat-color-7); }
#lesson-notes .cat-h { border-color: var(--lesson-cat-color-8); }
#lesson-notes .cat-i { border-color: var(--lesson-cat-color-9); }

#lesson-notes time span:first-child {
	font-weight: bold;
	font-size: 2em;
}
#lesson-notes time span:first-child::after{
	content: "月";
	font-size: .5em;
}
#lesson-notes time span:last-child::after{
	content: "日";
}

#lesson-notes aside {
	clear: both;
	font-family: "Klee One", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.5em;
	margin: .5em 0 0 1em;
}

#lesson-notes aside nav {
	display: block;
	margin: 0;
	text-align: right;
	border: none;
}
#lesson-notes aside nav a {
	margin-left: .5em;
}
#lesson-notes aside nav a:hover {
	color: #CCC;
	transition: .5s;
}

#lesson-notes aside.heater-ro::before,
#lesson-notes aside.heater-furo::before,
#lesson-notes aside.heater-hachi::before {
	content: url('../parts/img/icon-ro.svg');
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	margin-right: .5em;
}
#lesson-notes aside.heater-ro::before { content: url('../parts/icon-ro.svg'); }
#lesson-notes aside.heater-furo::before { content: url('../parts/icon-furo.svg'); }
#lesson-notes aside.heater-hachi::before { content: url('../parts/icon-hachi.svg'); }

#lesson-notes .stamp {
	float: right;
	ont-size: 2em;
	border:2px solid #D1483E;
	border-radius:50%;
	color:#D1483E;
	width:1.8em;
	height:1.6em;
	margin:auto; 
	transform: rotate(-7deg);
}
#lesson-notes .stamp span {
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	letter-spacing: normal;
	display: block;
	margin: auto;
	height: 100%;
	text-align: center;
	font-size: .45em;
	line-height: 1em;
	writing-mode: vertical-rl;
	transform: scale(4, 1);
}
#lesson-notes .stamp.soshu span {
	display: none;
}
#lesson-notes .stamp.soshu {
	border: none;
	width:2em;
	height:2em;
	background-image: url('../parts/img/stamp.svg');
	filter: invert(42%) sepia(65%) saturate(865%) hue-rotate(321deg) brightness(82%) contrast(100%);
	transform: rotate(-7deg);
}

/*==#lesson-form============================================================*/

#lesson-form {
	border: 1px solid #CCC;
	border-radius: .5em;
	padding: 1em;
	margin-bottom: 1em;
	width: 100%;
}


#lesson-form h4 {
	padding: 0;
	margin: 0 0 1em 0;
	border-bottom: 1px solid #333;
}

#lesson-form div {
	display: flex;
	width: 100%;
	justify-content: flex-start;
	margin-bottom: 1em;
}
#lesson-form div:nth-last-of-type(2) {
	display: block;
}

#lesson-form label {
	display: inline-block;
}

#lesson-form input[type=date] {
	display: inline-block;
	border: none;
	width: auto;
	margin: 0;
	font-size: 1em;
}

#lesson-form select {
	appearance: none;
	border: none;
	outline: 0;
	background: #fff;
	background-image: none;
	box-shadow: none;
	font-size: 1.5em;
	cursor: pointer;
} 
#lesson-form textarea {
	border: none;
	border-bottom: 1px solid #CCC;
	font-family: 'tegaki';
}

#lesson-form form input {
	border: none;
	border-bottom: 2px solid #CCC;
	width: 100%;
	margin-bottom: 1em;
	font-size: 1.2em;
}

#lesson-form .message {
	display: flex;
	justify-content: center;
	border-top: 1px solid #CCC;
	margin: 1em auto;
	padding-top: .5em;
	text-align: center!important;
	color: red;
}