body {
	background-color: #663333;
    color: #D6EFFF;
    font-family:  'MS Gothic', 'ＭＳ ゴシック' , 'MS ゴシック' , Msgothic, 'ヒラギノ明朝 ProN', sans-serif;
    font-smooth: never;
    -webkit-font-smoothing : none;
    font-size: 12px;
    line-height: 13px;
}

body a:link{
	color: #246C7C;
	text-shadow: #13383F;
}

hr {
	border-top: 2px solid #5F90CA;
	border-bottom: 0px;
}

header {
	background-color: #4C2626;
	text-align: center;
}
header ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	display: inline-block;
}
header ul li {
	float: left;
	padding: 8px;
}
header ul li a{
	font-size: 16px;
	line-height: 17px;
	display: block;
	color: white;
	text-align: center;
	padding: 16px 64px;
	text-decoration: none;
	background-color: #15215A;
	
	border-radius: 0px 8px 8px 0px;
	border: 2px solid #D6EFFF;
	border-style: dashed;
}
header ul li a:hover{
	color: white;
	background-color: #5F90CA;
}

.box-diff {
	border: 1px solid #5F90CA;
	display: inline-grid;
	grid-template-columns: auto auto;
	padding: 8px;
	gap: 16px;
	border-radius: 8px
}

.box-diff-txt {
	color: #D6EFFF;
	text-shadow: 1px 1px #5F90CA;
	margin: auto;
}

.box {
	color: #D6EFFF;
	text-shadow: 0px 1px #5F90CA;
	background: #15215A;
	border-radius: 0px 8px 8px 0px;
	border: 2px solid #D6EFFF;
	border-style: dashed;
	padding: 0px 8px 2px 8px;
	width: 320px;
}

.box p {
	top: 8px;
	right: 16px;
}
.box img {
	float: right;
	width: 48px;
	height: 48px;
	margin-left: -48px;
	margin-top: -8px;
	margin-bottom: 8px;
}

.calendarbox {
	margin: auto;
	width: 256px;
}

.calendar {
	display: grid;
	grid-template-columns: auto auto auto auto auto;
	
}
.calendar > div {
	font-size: 16px;
	line-height: 32px;
	text-align: center;
	border: 2px solid white;
	background-color: #15215A;
	display: block;
	text-decoration: none;
}

.cursor {
	opacity: 1.0;
	text-shadow: none;
	animation-name: cursor_anim;
	animation-duration: 0.5s;
	animation-iteration-count: infinite;
}
@keyframes cursor_anim {
	49% {opacity: 1.0;}
	50% {opacity: 0.0;}
	99% {opacity: 0.0;}
}