<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/** 共通 */
@font-face {
	font-family: 'Noto Sans Japanese';
	font-style: normal;
	font-weight: 500;
	src: url(/contents/nikki/fonts/NotoSansCJKjp-Regular.woff) format('opentype');
}

@font-face {
	font-family: 'Noto Sans Japanese';
	font-style: normal;
	font-weight: 600;
	src: url(/contents/nikki/fonts/NotoSansCJKjp-Medium.woff) format('opentype');
}

@font-face {
	font-family: 'Noto Sans Japanese';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(/contents/nikki/fonts/NotoSansCJKjp-Bold.woff) format('opentype');
}

.pcOnly {
	display: block;
}

@media screen and (max-width: 600px) {
	.pcOnly {
		display: none;
	}
}

.spOnly {
	display: none;
}

@media screen and (max-width: 600px) {
	.spOnly {
		display: block;
	}
}

/** #contents */
#contents {
	display: flex;
	position: fixed;
	width: 100%;
	height: 100%;
	margin-top: auto;
	margin-bottom: auto;
	background-color: #f5f5f5;
}

@media screen and (max-width: 600px) {
	#contents {
		position: relative;
		background-color: #fff;
	}
}

/** .ms-area-main */
#contents .ms-area-main {
	float: none;
	width: auto;
	height: auto;
	margin: auto;
	color: #333;
	font-size: 16px;
	font-family: 'Noto Sans Japanese', '游ゴシック', 'Yu Gothic', '游ゴシック体', YuGothic, sans-serif;
	line-height: 1.4;
}

@media screen and (max-width: 600px) {
	#contents .ms-area-main {
		width: 100%;
	}
}

/** .ms-content */
#contents .ms-content {
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	position: relative;
	width: 504px;
	max-height: calc(100vh - 50px);
	margin: 0 auto;
	padding: 32px;
	border-radius: 4px;
	box-sizing: border-box;
	box-shadow: 0 3px 6px rgba(0 0 0 / 30%);
	background-color: #fff;
}

@media screen and (max-width: 600px) {
	#contents .ms-content {
		overflow: auto;
		width: 100%;
		max-width: 504px;
		max-height: unset;
		padding: 32px;
		border-radius: 0;
		box-shadow: none;
	}
}

/** main */
@media screen and (max-width: 600px) {
	main {
		min-height: calc(100vh - 160px);
		min-height: calc(100dvh - 160px);
	}
}

/** header */
header {
	margin-bottom: 32px;
}

/** .logo-wrap */
#contents .logo-wrap .logo-item.is-minshu img {
	width: 118px;
	height: 30px;
}
#contents .logo-wrap .logo-item.is-campus img {
	width: 198px;
	height: 20px;
	padding: 5px 0;
}

/** .step-wrap */
#contents .step-wrap {
	margin-bottom: 40px;
}

@media screen and (max-width: 600px) {
	#contents .step-wrap {
		margin-bottom: 32px;
	}
}

#contents .step-item-wrap {
	display: flex;
	overflow: hidden;
	height: 40px;
}
#contents .step-item-wrap .step-item {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 25%;
	background: #dfdfdf;
	text-align: center;
}
#contents .step-item-wrap .step-item::before,
#contents .step-item-wrap .step-item::after {
	position: absolute;
	width: 0;
	height: 0;
	margin: auto;
	content: '';
}
#contents .step-item-wrap .step-item::before {
	top: -20px;
	right: -10px;
	z-index: 2;
	border-width: 40px 0 40px 18px;
	border-style: solid;
	border-color: transparent transparent transparent #fff;
}
#contents .step-item-wrap .step-item::after {
	top: -20px;
	right: -6px;
	z-index: 2;
	border-width: 40px 0 40px 18px;
	border-style: solid;
	border-color: transparent transparent transparent #dfdfdf;
}
#contents .step-item-wrap .step-item:first-child {
	text-indent: 0;
}
#contents .step-item-wrap .step-item:last-child::before,
#contents .step-item-wrap .step-item:last-child::after {
	display: none;
}
#contents .step-item-wrap .step-item.is-current {
	background: #002896;
	color: #fff;
}
#contents .step-item-wrap .step-item.is-current::after {
	border-color: transparent transparent transparent #002896;
}
#contents .step-item-wrap .step-item .step-item-text {
	position: relative;
	z-index: 3;
	text-indent: 8px;
}

@media screen and (max-width: 600px) {
	#contents .step-item-wrap .step-item .step-item-text {
		font-size: 14px;
	}
}

@media screen and (max-width: 359px) {
	#contents .step-item-wrap .step-item .step-item-text {
		font-size: 12px;
	}
}

/** .copyright */
#contents .copyright {
	color: #666;
	font-size: 14px;
	text-align: center;
}

/* .page-error-msg-wrap */
.page-error-msg-wrap {
	display: none;
	position: fixed;
	z-index: 5;
	width: calc(504px - 64px);
	transform: translateY(-16px);
}

@media screen and (max-width: 600px) {
	.page-error-msg-wrap {
		left: 50%;
		width: calc(100vw - 64px);
		max-width: calc(504px - 32px);
		transform: translate(-50%, -16px);
	}
}

.page-error-msg-wrap .page-error-msg {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 16px 32px 16px 38px;
	border: 1px solid #df0101;
	border-radius: 3px;
	box-sizing: border-box;
	background-color: #fff0f0;
	color: #4d4d4d;
}

@media screen and (max-width: 600px) {
	.page-error-msg-wrap .page-error-msg {
		max-width: calc(100vw - 16px);
	}
}

.page-error-msg-wrap .page-error-msg::before {
	position: absolute;
	top: 50%;
	left: 24px;
	width: 14px;
	height: 14px;
	background: url(/contents/nikki/responsive/config/img/icon_warning_outlined_red.svg) no-repeat;
	background-size: cover;
	transform: translate(-50%, -50%);
	content: '';
}
.page-error-msg-wrap .page-error-msg .page-error-msg-text {
	color: #df0101;
	font-size: 12px;
	text-align: left;
}
.page-error-msg-wrap .page-error-msg .page-error-msg-text .is-color-black {
	color: #333;
}
.page-error-msg-wrap .page-error-msg .page-error-msg-text .errLinkWrap {
	display: flex;
	flex-wrap: wrap;
}
.page-error-msg-wrap .page-error-msg .page-error-msg-text .errLinkWrap .errLinkItem {
	padding-right: 8px;
	transition: all .3s ease;
	color: #df0101;
	text-decoration: underline;
	cursor: pointer;
}
.page-error-msg-wrap .page-error-msg .page-error-msg-text .errLinkWrap .errLinkItem:hover {
	text-decoration: none;
}
.page-error-msg-wrap .page-error-msg .page-error-msg-close-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: -8px;
	width: 24px;
	height: 24px;
	transform: translate(-50%, -50%);
	transition: all .3s ease;
	cursor: pointer;
}
.page-error-msg-wrap .page-error-msg .page-error-msg-close-btn:hover {
	opacity: .85;
	text-decoration: none;
}
.page-error-msg-wrap .page-error-msg .page-error-msg-close-btn img {
	width: 14px;
	height: 14px;
}
</pre></body></html>