@charset "UTF-8"; /* CSS Document */


body {
	background: #fff;
}


/* ----------------------------------------------
   ページタイトル
------------------------------------------------ */
#pageTitle {
	margin: 0 0 2.5rem;
	background: var(--jk-neutral-color9);
}
#pageTitle .wrap {
	position: relative;
	padding: 0 7rem;
	text-align: center;
}
#pageTitle h1 {
	display: inline-block;
	font-size: 2rem;
	line-height: 1.5;
	margin: 0 auto;
	padding: 2rem 1rem;
	text-align: left;
}
#pageTitle .lang {
	position: absolute;
	display: flex;
	top: 50%;
	right: 0;
	margin: -1rem 0 0;
	padding: 0;
}
#pageTitle .lang li {
	display: inline-block;
	font-size: .875rem;
	font-weight: bold;
	line-height: 2rem;
	margin: 0;
	padding: 0;
	list-style-type: none;
}
#pageTitle .lang li a,
#pageTitle .lang li span {
	display: block;
	color: var(--jk-text-color);
	padding: 0 .75rem;
	background: var(--jk-neutral-color8);
	text-decoration: none;
}
#pageTitle .lang li span.active {
	color: #fff;
	background: var(--jk-neutral-color2);
}


/* ----------------------------------------------
   ページ本文
------------------------------------------------ */
#pageBody {
	margin: 2rem 0 0;
	padding: 0 0 2rem;
}
#pageBody section {
	scroll-margin-top: 1rem;
}
#pageBody h2 {
	position: relative;
	font-size: 1.75rem;
	line-height: 1.3;
	margin: 2rem 0 1rem;
	padding-left: 1.25rem;
}
#pageBody h2::before {
	position: absolute;
	top: 0;
	left: 0;
	width: .375rem;
	height: 100%;
	content: "";
	background: var(--jk-neutral-color2);
	border-radius: var(--jk-border-radius);
}
#pageBody h3 {
	font-size: 1.5rem;
	line-height: 1.3;
	margin: 2rem 0 1rem;
	padding: .75rem 1rem;
	background: var(--jk-neutral-color9);
}
#pageBody h4 {
	font-size: 1.25rem;
	line-height: 1.3;
	margin: 1.5rem 0 1rem;
}
#pageBody h5 {
	font-size: 1.125rem;
	line-height: 1.3;
	margin: 1.25rem 0 1rem;
}
#pageBody p,
#pageBody ol,
#pageBody ul {
	margin-bottom: 1.25rem;
}
#pageBody ul {
	padding-left: 1.25em;
	list-style-type: none;
}
#pageBody ul li {
	position: relative;
	line-height: 1.7;
	margin-bottom: .25rem;
}
#pageBody ul li::before {
	position: absolute;
	top: .7em;
	left: -1em;
	width: .4em;
	height: .4em;
	content: "";
	background: var(--jk-neutral-color2);
	border-radius: 50%;
}
#pageBody ol {
	display: table;
	counter-reset: ol_li;
	list-style-type: none;
	padding-left: 0;
}
#pageBody ol li {
	display: table-row;
	line-height: 1.7;
	margin-bottom: .25rem;
}
#pageBody ol li::before {
	display: table-cell;
	counter-increment: ol_li;
	content: counter(ol_li)".";
	padding-right: .5rem;
	text-align: right;
	white-space: nowrap;
}
#pageBody ol li ol {
	margin: .5em 0 1em;
}
#pageBody ol li ol li::before {
	content: "("counter(ol_li)")";
}
#pageBody a {
	text-decoration: none;
}
#pageBody hr {
	height: 0;
	margin: 3rem 0;
	border: none;
	border-top: 2px solid var(--jk-neutral-color8);
	opacity: 1;
}
#pageBody .box {
	margin: 1.5rem 0;
	padding: 1.5rem;
	background: #fff;
	border: 2px solid var(--jk-neutral-color2);
}
#pageBody .box.bg {
	background: var(--jk-neutral-color9);
	border-color: var(--jk-neutral-color9);
}
#pageBody .box > *:first-child {
	margin-top: 0 !important;
}
#pageBody .box p,
#pageBody .box ul,
#pageBody .box ol {
	margin: 0;
}
#pageBody p.link {
	position: relative;
	line-height: 1.8;
	padding-left: 1.5em;
}
#pageBody p.link .fa-angle-right {
	position: absolute;
	top: .4em;
	left: 0;
	display: inline-block;
	width: 1.5em;
	font-size: .75em;
	line-height: 1.5em;
	color: #fff;
	margin-right: .5rem;
	background: var(--jk-neutral-color2);
	border-radius: 50%;
	text-align: center;
}
#pageBody p.link a {
	font-weight: bold;
}
#pageBody p.note {
	font-size: .875rem;
	line-height: 1.5;
	padding-left: 1em;
	text-indent: -1em;
}
#pageBody p.note * {
	text-indent: 0;
}
#pageBody .fa-up-right-from-square,
#pageBody .fa-external-link-alt,
#pageBody .fa-file-pdf,
#pageBody .fa-download {
	color: var(--jk-text-sub-color);
}


/* ----------------------------------------------
   パンくず
------------------------------------------------ */
#breadcrumb {
	color: var(--jk-text-color);
	padding: 1rem 0;
	background: var(--jk-neutral-color10);
}
#breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
}
#breadcrumb li {
	font-size: .75rem;
	line-height: 1.5;
	margin: 0;
	padding: 0;
	list-style-type: none;
}
#breadcrumb li:after {
	font: var(--fa-font-solid);
	content: "\f105";
	margin: 0 .25rem;
}
#breadcrumb li:last-child:after {
	display: none;
}
#breadcrumb a {
	color: var(--jk-text-color);
	text-decoration: none;
}


/* ----------------------------------------------
   フッター
------------------------------------------------ */
#footerNeutral ul {
	margin: 0;
	padding: 0;
}
#footerNeutral li {
	font-size: .875rem;
	margin: 0;
	padding: 0;
	list-style-type: none;
}
#footerNeutral a {
	color: var(--jk-text-color);
	text-decoration: none;
}
#footerNeutral .fa-external-link-alt {
	color: var(--jk-text-sub-color);
}
#footerNeutral .footerNav {
	line-height: 1.3;
	padding: 2.5rem 0;
	background: var(--jk-neutral-color9);
}
#footerNeutral .footerNav .logo {
	height: 3rem;
	margin: 0;
}
#footerNeutral .footerNav .logo img {
	height: 1.5rem;
}
#footerNeutral .footerNav .school .logo img {
	height: 1.25rem;
}
#footerNeutral .footerNav h2 {
	font-size: 1.125rem;
	margin-bottom: 1.75rem;
}
#footerNeutral .footerNav h3 {
	font-size: 1rem;
	margin-bottom: 1rem;
}
#footerNeutral .footerNav ul {
	padding-left: .75rem;
	border-left: 2px solid var(--jk-neutral-color7);
}
#footerNeutral .footerNav li+li {
	margin-top: .75rem;
}
/*#footerNeutral .footerLinks {
	line-height: 1.3;
	padding: 2.5rem 0;
	background: var(--jk-neutral-color8);
}*/


/* ----------------------------------------------
   Media Queries
------------------------------------------------ */
@media (any-hover: hover) {
	
	#pageTitle .lang li a {
		transition: background-color .3s;
	}
	#pageTitle .lang li a:hover {
		background: var(--jk-neutral-color7);
	}
	#pageBody a:hover {
		text-decoration: underline;
	}
	#breadcrumb a span.hoverLine,
	#footerNeutral a span.hoverLine {
		background: linear-gradient(var(--jk-text-color),var(--jk-text-color)) 100% 100%/0 1px no-repeat;
	}
	
}

@media print, screen and (min-width: 1200px) {
	
	/* ページ本文 */
	#pageBody .centerBtn .btn {
		min-width: 300px;
	}
	#pageBody .cols2 {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1rem 1.5rem;
		margin: 1.5rem 0;
	}
	#pageBody .cols3 {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 1rem 1.5rem;
		margin: 1.5rem 0;
	}
	#pageBody .cols2 .col > *:first-child,
	#pageBody .cols3 .col > *:first-child {
		margin-top: 0 !important;
	}
	
	/* フッター */
	#footerNeutral .footerNav .cols {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 1rem;
	}
	/*#footerNeutral .footerLinks ul {
		display: flex;
		justify-content: space-evenly;
	}*/
	
}

@media only screen and (max-width: 1199px) {
	
	/* ページタイトル */
	#pageTitle {
		margin: 0 0 1.25rem;
	}
	#pageTitle .wrap {
		padding: 0;
	}
	#pageTitle h1 {
		font-size: 1.5rem;
	}
	#pageTitle .lang {
		position: relative;
		top: inherit;
		right: inherit;
		justify-content: center;
		margin: -1rem 0 0;
		padding: 0 0 1.5rem;
	}
	#pageTitle .lang li {
		font-size: .75rem;
		line-height: 1.5rem;
	}
	
	/* 障害情報 */
	#failure {
		padding: 0 1rem;
	}
	
	/* メンテナンス情報 */
	#maintenance {
		padding: 0 1rem;
	}
	
	/* ページ本文 */
	#pageBody {
		margin: 1.5rem 0 0;
		padding: 0 1rem 2rem;
	}
	#pageBody h2 {
		font-size: 1.5rem;
		margin: 2rem 0 1.5rem;
		padding-left: 1rem;
	}
	#pageBody h2::before {
		width: .25rem;
	}
	#pageBody h3 {
		font-size: 1.25rem;
	}
	#pageBody h4 {
		font-size: 1.125rem;
	}
	#pageBody h5 {
		font-size: 1rem;
	}
	#pageBody hr {
		margin: 2rem 0;
	}
	
	/* パンくず */
	#breadcrumb {
		padding: .75rem 1rem;
	}
	
	/* フッター */
	#footerNeutral .footerNav {
		padding: 1.5rem 1rem;
	}
	#footerNeutral .footerNav li + li {
		margin-top: 1rem;
	}
	#footerNeutral .footerNav .col+.col {
		margin-top: 1.5rem;
	}
	/*#footerNeutral .footerLinks {
		padding: .75rem 0;
	}
	#footerNeutral .footerLinks ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	#footerNeutral .footerLinks ul li {
		margin: .75rem;
	}*/
	
}
