/* CSS for Kenshin Web App */
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);


/* --- global font / layout --- */
html, body {
	font-family: "Helvetica Neue",
		Arial,
		"Hiragino Kaku Gothic ProN",
		"Hiragino Sans",
		Meiryo,
		sans-serif;
}

.drawer-content {
	height: calc(100vh - 3rem) !important;
}

/* --- original class --- */
.ks-nodisp {
	display: none;
}
.ks-nodisp-important {
	display: none !important;
}
.ks-disabled {
	pointer-events: none;
}
/* --- header --- */

/* --- drawer class --- */


/* --- page --- */

#ks-page-training .ks-options ul li, 
#ks-page-judge .ks-options ul li, 
#ks-page-question .ks-options ul li,
#ks-page-sheet .ks-options ul li {
	border: 1px #94a3b8 solid;
	border-radius: 0.25rem;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	background: #e2e8f0;
	margin-bottom: 0.75rem;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1)
}
#ks-page-training .ks-options ul li:hover, 
#ks-page-question .ks-options ul li.notIOS:hover,
#ks-page-sheet .ks-options ul li:hover {
	border: 1px #5eead4 solid;
	/*background: #ccfbf1;*/
}

#ks-page-training .ks-options ul li .ks-options-number, 
#ks-page-judge .ks-options ul li .ks-options-number, 
#ks-page-question .ks-options ul li .ks-options-number,
#ks-page-sheet .ks-options ul li .ks-options-number {
	display: block;
	width: 14%;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-align: center;
	flex-flow: row wrap;
	justify-content: center;
	align-self: center;
}
#ks-page-training .ks-options ul li .ks-options-text, 
#ks-page-judge .ks-options ul li .ks-options-text, 
#ks-page-question .ks-options ul li .ks-options-text,
#ks-page-sheet .ks-options ul li .ks-options-text {
	display: block;
	width: 86%;
	padding: 1rem;
	/*text-align: justify;*/
	background: #ffffff;
	border-radius: 0 0.25rem 0.25rem 0;
}
@media (min-width: 768px) {
	#ks-page-training .ks-options ul li .ks-options-number,
	#ks-page-judge .ks-options ul li .ks-options-number, 
	#ks-page-question .ks-options ul li .ks-options-number,
	#ks-page-sheet .ks-options ul li .ks-options-number{
		width: 10%;
	}
	#ks-page-training .ks-options ul li .ks-options-text,
	#ks-page-judge .ks-options ul li .ks-options-text,
	#ks-page-question .ks-options ul li .ks-options-text,
	#ks-page-sheet .ks-options ul li .ks-options-text {
		width: 90%;
	}
}
#ks-page-judge .ks-options ul li.ks-correct .ks-options-number,
#ks-page-sheet .ks-options ul li.ks-correct .ks-options-number {
	color: rgb(21, 94, 117);
}
#ks-page-judge .ks-options ul li.ks-correct,
#ks-page-sheet .ks-options ul li.ks-correct {
	border: 4px #06b6d4 solid;
	background: #67e8f9;
}
#ks-page-judge .ks-options ul li.ks-incorrect,
#ks-page-sheet .ks-options ul li.ks-incorrect {
	border: 4px #ef4444 solid;
	background: #ef4444;
}
#ks-page-judge .ks-options ul li.ks-incorrect .ks-options-number,
#ks-page-sheet .ks-options ul li.ks-incorrect .ks-options-number {
	color: #ffffff;
}
#ks-page-judge .ks-options ul li.ks-incorrect .ks-options-text,
#ks-page-sheet .ks-options ul li.ks-incorrect .ks-options-text{
	color: #b91c1c;
	font-weight: bold;
}
#ks-page-judge .ks-judgebox-correct,
#ks-page-sheet .ks-judgebox-correct {
	background: #cffafe;
	margin-top: 1.7rem;
	padding: 1.5rem;
}
#ks-page-judge .ks-judgebox-correct .ks-judgetitle,
#ks-page-sheet .ks-judgebox-correct .ks-judgetitle {
	color: #155e75;
	text-align: center;
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: bold;
	margin: 0 0 1rem 0;
}
#ks-page-judge .ks-judgebox-incorrect,
#ks-page-sheet .ks-judgebox-incorrect {
	background: #fecaca;
	margin-top: 1.7rem;
	padding: 1.5rem;
}
#ks-page-judge .ks-judgebox-incorrect .ks-judgetitle,
#ks-page-sheet .ks-judgebox-incorrect .ks-judgetitle {
	color: #b91c1c;
	text-align: center;
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: bold;
	padding-bottom: 0.75rem;
	border-bottom: solid 2px #f87171;
}
#ks-page-judge .ks-judgebox-incorrect .ks-judgetext,
#ks-page-sheet .ks-judgebox-incorrect .ks-judgetext {
	font-weight: bold;
	margin: 1rem 0;
}
#ks-page-judge .ks-judgebox-correct .ks-judge-btnbox,
#ks-page-judge .ks-judgebox-incorrect .ks-judge-btnbox,
#ks-page-sheet .ks-judgebox-incorrect .ks-judge-btnbox {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
}
#ks-page-judge .ks-judgebox-correct .ks-judge-btnbox button,
#ks-page-judge .ks-judgebox-incorrect .ks-judge-btnbox button,
#ks-page-sheet .ks-judgebox-incorrect .ks-judge-btnbox button{
	margin: 0.25rem 0.5rem;
	border-radius: 3px;
}
#ks-page-judge .ks-judgebox-correct .ks-judge-btnbox label.review-lesson,
#ks-page-judge .ks-judgebox-incorrect .ks-judge-btnbox label.review-lesson,
#ks-page-sheet .ks-judgebox-incorrect .ks-judge-btnbox label.review-lesson {
	background-color: #0891b2;
	border:	#0e7490;
	color: #ffffff
}
#ks-page-judge .ks-judgebox-correct .ks-judge-btnbox label.review-lesson:hover,
#ks-page-judge .ks-judgebox-incorrect .ks-judge-btnbox label.review-lesson:hover,
#ks-page-sheet .ks-judgebox-incorrect .ks-judge-btnbox label.review-lesson:hover {
	background-color: #0e7490;
	border:	#155e75;
}
#ks-page-judge .ks-judgebox-correct .ks-judge-btnbox button.next-question,
#ks-page-judge .ks-judgebox-incorrect .ks-judge-btnbox button.next-question,
#ks-page-sheet .ks-judgebox-incorrect .ks-judge-btnbox button.next-question {
	background-color: #ffffff;
	border:	#ffffff;
	color: #0e7490;
	font-weight: bold;
}
#ks-page-judge .ks-judgebox-correct .ks-judge-btnbox button.next-question:hover,
#ks-page-judge .ks-judgebox-incorrect .ks-judge-btnbox button.next-question:hover,
#ks-page-sheet .ks-judgebox-incorrect .ks-judge-btnbox button.next-question:hover {
	background-color: #f8fafc;
	border:	#ffffff;
}

/* テスト結果一覧など */
/* ヘッダ部分 */
.sheet-table {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(13, minmax(0, 1fr));
	gap: 0px;
}
.sheet-table .table-hd-number {
	grid-column: span 1 / span 1;
	background: #0891b2;
	padding: 0.25rem;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem; /* 14px */
	line-height: 1.25rem; /* 20px */
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: stretch;
}
.sheet-table .table-hd-category {
	grid-column: span 6 / span 6;
	background: #0891b2;
	padding: 0.25rem 0.75rem;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem; /* 14px */
	line-height: 1.25rem; /* 20px */
	border-left: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: stretch;
}
.sheet-table .table-hd-answer {
	grid-column: span 3 / span 3;
	background: #0891b2;
	padding: 0.25rem;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem; /* 14px */
	line-height: 1.25rem; /* 20px */
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: stretch;
}
.sheet-table .table-hd-mark {
	grid-column: span 3 / span 3;
	background: #0891b2;
	padding: 0.25rem;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem; /* 14px */
	line-height: 1.25rem; /* 20px */
	border-left: 2px solid #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: stretch;
}
.sheet-table .table-hd-recent3 {
	grid-column: span 6 / span 6;
	background: #0891b2;
	padding: 0.25rem;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem; /* 14px */
	line-height: 1.25rem; /* 20px */
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: stretch;
}

/* 奇数行 */
.sheet-table .table-odd-number {
	grid-column: span 1 / span 1;
	background: #ffffff;
	padding: 0.25rem;
	color: #181A2A;
	font-weight: 600;
	font-size: 1rem; /* 16px */
	line-height: 1.25rem; /* 20px */
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: stretch;
}
.sheet-table .table-odd-category {
	grid-column: span 6 / span 6;
	background: #ffffff;
	padding: 0 0.5rem;
	color: #181A2A;
	font-weight: 400;
	font-size: 1rem; /* 16px */
	line-height: 1.25rem; /* 20px */
	text-align: left;
	border-left: 2px solid #e2e8f0;
	border-right: 2px solid #e2e8f0;
	display: flex;
	align-items: center;
	align-self: stretch;
}
.sheet-table .table-odd-answer {
	grid-column: span 3 / span 3;
	background: #ffffff;
	padding: 0.25rem;
	color: #181A2A;
	font-weight: 400;
	font-size: 1rem; /* 16px */
	line-height: 1.25rem; /* 20px */
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: stretch;
}
.sheet-table .table-odd-mark {
	grid-column: span 3 / span 3;
	background: #ffffff;
	padding: 0.25rem;
	color: #181A2A;
	font-weight: 400;
	font-size: 1rem; /* 16px */
	line-height: 1.25rem; /* 20px */
	border-left: 2px solid #e2e8f0;
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: stretch;
	min-height: 32px;
}
.sheet-table .table-odd-recent {
	grid-column: span 2 / span 2;
	background: #ffffff;
	padding: 0.25rem;
	color: #181A2A;
	font-weight: 600;
	font-size: 1rem; /* 16px */
	line-height: 1.25rem; /* 20px */
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: stretch;
}

/* 偶数行 */
.sheet-table .table-even-number {
	grid-column: span 1 / span 1;
	background: #e2e8f0;
	padding: 0.25rem;
	color: #181A2A;
	font-weight: 600;
	font-size: 1rem; /* 16px */
	line-height: 1.25rem; /* 20px */
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: stretch;
}
.sheet-table .table-even-category {
	grid-column: span 6 / span 6;
	background: #e2e8f0;
	padding: 0 0.5rem;
	color: #181A2A;
	font-weight: 400;
	font-size: 1rem; /* 16px */
	line-height: 1.25rem; /* 20px */
	text-align: left;
	border-left: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
	display: flex;
	align-items: center;
	align-self: stretch;
}
.sheet-table .table-even-answer {
	grid-column: span 3 / span 3;
	background: #e2e8f0;
	padding: 0.25rem;
	color: #181A2A;
	font-weight: 400;
	font-size: 1rem; /* 16px */
	line-height: 1.25rem; /* 20px */
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: stretch;
}
.sheet-table .table-even-mark {
	grid-column: span 3 / span 3;
	background: #e2e8f0;
	padding: 0.25rem;
	color: #181A2A;
	font-weight: 400;
	font-size: 1rem; /* 16px */
	line-height: 1.25rem; /* 20px */
	border-left: 2px solid #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: stretch;
	min-height: 32px;
}
.sheet-table .table-even-recent {
	grid-column: span 2 / span 2;
	background: #e2e8f0;
	padding: 0.25rem;
	color: #181A2A;
	font-weight: 600;
	font-size: 1rem; /* 16px */
	line-height: 1.25rem; /* 20px */
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: stretch;
}
/* 正誤表記 */
.sheet-table .answer-correct {
	color: #0891b2;
	font-weight: 600;
	font-size: 0.75rem;
}
.sheet-table .answer-incorrect {
	color: #334155;
	font-weight: 600;
	font-size: 0.75rem;
}

/* お知らせ一覧 */
#ks-page-infoindex .container .info-newsitem {
	margin: 0.5rem 0;
	padding: 0.5rem;
	border: 1px solid #cccccc;

}
#ks-page-infoindex .container .info-newsitem {
	margin: 0.5rem 0;
	padding: 1.5rem;
	border: 1px solid #cccccc;
	box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
#ks-page-infoindex .container .info-newsitem .newsitem-titlebox {
	display: flex;
	flex-flow: row wrap;
	justify-content: start;
	align-items: center;
	border-bottom: 2px dotted #94a3b8;
}
#ks-page-infoindex .container .info-newsitem .newsitem-titlebox .newsitem-date {
	color: #0f172a;
	font-size: 0.875rem; /* 14px */
	background-color: #96e4d4;
	display: block;
	padding: 0.1rem 0.3rem 0 0.25rem;
	margin: 0 1rem 0 0;
	align-self: center;
}
#ks-page-infoindex .container .info-newsitem .newsitem-titlebox .newsitem-title {
	color: #0e7490;
	font-size: 1rem; /* 18px */
	line-height: 1.25rem; /* 24px */
	font-weight: 600;
	padding: 0.8rem 0 0.5rem 0;
	align-self: center;
	display: flex;
	align-items: center;
}
#ks-page-infoindex .container .info-newsitem .newsitem-text {
	padding: 1.5rem 0 0 0;
}
#ks-page-infoindex .container .info-newsitem .newsitem-text a.newsitem-text-link {
	color: #14b8a6;
	font-size: 0.875rem; /* 14px */
	margin-top: 0.75rem;
	display: flex;
	align-items: center;
}
#ks-page-infoindex .btn-group .btn {
	background-color: #94a3b8;
	border-color: #ffffff;
	color: #ffffff;
}
#ks-page-infoindex .btn-group .btn:hover {
	background-color: #64748b;
}
#ks-page-infoindex .btn-group .btn.btn-active {
	background-color: #06b6d4;
}
#ks-page-infoindex .btn-group .btn.btn-active:hover {
	background-color: #0891b2;
}

/* ks-accordion */
#ks-page-appinfo .container .ks-accordion {
	margin: 0.75rem auto 3rem auto;
	max-width: 100%;
	}
#ks-page-appinfo .container .ks-acc-toggle {
	display: none;
	}
#ks-page-appinfo .container .ks-acc-option {
	position: relative;
	margin-bottom: 0.75rem;
	}
.ks-acc-title,
.ks-acc-content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
	}
.ks-acc-title {
	background: #e2e8f0;
	padding: 0.5rem 1rem;
	display: block;
	color: #333;
	font-weight: 600;
	font-size: 0.875rem; /* 14px */
	}
.ks-acc-title::after,
.ks-acc-title::before {
	content: "";
	position: absolute;
	right: 1em;
	top: 1em;
	width: 2px;
	height: 0.75em;
	background-color: #475569;
	transition: all 0.3s;
	}
.ks-acc-title::after {
	transform: rotate(90deg);
	}
.ks-acc-content {
	max-height: 0;
	overflow: hidden;
	font-size: 0.875rem; /* 14px */
	padding: 0 0 0 1rem
	}
.ks-acc-content .acc-content-hl {
		padding: 1em 0 0.5rem;
		font-size: 0.9375rem; /* 15px */
		line-height: 1.25;
		font-weight: 600;
		color: #0891b2;
		}
.ks-acc-content .acc-content-txt {
	padding: 0 0 0 1rem;
	font-size: 0.875rem; /* 14px */
	line-height: 1.5;
	}
.ks-acc-toggle:checked + .ks-acc-title + .ks-acc-content {
	max-height: 500px;
	transition: all 1.0s;
	}
.ks-acc-toggle:checked + .ks-acc-title::before {
	transform: rotate(90deg) !important;
	}

.ks-acc-content .ks-appinfo-table {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(10, minmax(0, 1fr));
	gap: 0px;
	padding: 0.5rem 0;
}
.ks-acc-content .ks-appinfo-table .ks-apptable-item {
	grid-column: span 3 / span 3;
	padding: 0.5rem 0;
	border-bottom: 2px solid #f1f5f9;
}
.ks-acc-content .ks-appinfo-table .ks-apptable-content {
	grid-column: span 7 / span 7;
	padding: 0.5rem 0;
	border-bottom: 2px solid #f1f5f9;
}

/* ks-accordion-mv */
.ks-accordion-mv {
	margin: 0 auto;
	width: 100%;
	}
.ks-acc-toggle-mv {
	display: none;
	}
.ks-acc-option-mv {
	position: relative;
	margin-bottom: 0.75rem;
	}
.ks-acc-title-mv,
.ks-acc-content-mv {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
	}
.ks-acc-title-mv {
	background: #0891b2;
	margin: 0 auto;
	padding: 0.75rem 2rem 0.75rem 1rem;
	display: block;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem; /* 14px */
	display: flex;
	justify-content: center;
	align-items: center;
	width: 180px;
	}
.ks-acc-title-mv::after,
.ks-acc-title-mv::before {
	content: "";
	position: absolute;
	right: 1.25em;
	top: 1.25em;
	width: 2px;
	height: 0.75em;
	background-color: #164e63;
	transition: all 0.3s;
	}
.ks-acc-title-mv::after {
	transform: rotate(90deg);
	}
.ks-acc-content-mv {
	max-height: 0;
	overflow: hidden;
	font-size: 0.875rem; /* 14px */
	padding: 0;
	}
.ks-acc-toggle-mv:checked + .ks-acc-title-mv + .ks-acc-content-mv {
	max-height: 56.25%;
	transition: all 1.5s;
	}
.ks-acc-toggle-mv:checked + .ks-acc-title-mv::before {
	transform: rotate(90deg) !important;
	}

.ks-acc-content-mvbox {
		position: relative;
		padding: 56.25% 0 0 0;
		margin-top:0.5em;
}

.ks-acc-content-mvbox iframe {
		position: absolute;
		top: 0.25rem;
        left: 0;
        width: 100%;
        height: 100%;
	}
@media (max-width: 480px) {	
	.ks-acc-content-mvbox {
		padding: 56.25% 0 0 0;
	}
}
