@charset "UTF-8";


/*! info ============================================== */

#home main dl.info {
	width: 100%;
	max-height: 200px;
	margin: -5px 0 0;
	padding: 0;
	line-height: 1.6;
	overflow-y: auto;	
	}

#home main dl.info dt {
	float: left;
	clear: both;
	padding-top: 10px;
	font-weight: bold;
	color: #808080;
	}

#home main dl.info dd {
	width: calc(100% - 20px);
	padding: 10px 0 9px 220px;
	border-bottom: 1px dotted #cccccc;
	text-align: left;
	}

#home main dl.info dd:last-of-type {
	border: none;
	}

#home main dl.info dd a {
	color: #4d4d4d;
	}

#home main dl.info dd a:hover {
	color: #e59100;
	}

/* scroll-bar */
#home main dl.info::-webkit-scrollbar {
	width: 3px;
	}

#home main dl.info::-webkit-scrollbar-track {
	border-radius: 3px;
	background: #eeeeee;
	}

#home main dl.info::-webkit-scrollbar-thumb {
	border-radius: 3px;
	background: #7592ad;
	}

/* category */
#home main dl.info dt span[class^="cate-"] {
	display: inline-block;
	width: 100px;
	margin-left: 20px;
	padding: 4px 0;
	font-size: 10px;
	line-height: 1;
	text-align: center;
	color: #ffffff;
	}
#home main dl.info span.cate-blu { background-color: #559ff2;}
#home main dl.info span.cate-orn { background-color: #f2b655;}
#home main dl.info span.cate-grn { background-color: #77cf7b;}
#home main dl.info span.cate-red { background-color: #f25555;}
#home main dl.info span.cate-blk { background-color: #aebbbf;}


/*! cal ============================================== */

#home main .cal {
	display: flex;
	justify-content: space-between;
	width: 100%;
	}

#home main .cal table {
	width: 495px;
	background-color: #f8f7fa;
	}

#home main .cal table th,
#home main .cal table td {
	text-align: center;
	vertical-align: middle;
	font-weight: bold;
	}

#home main .cal table tr:first-child th {
	height: 70px;
	background-color: #8877cf;
  background-image: linear-gradient(
    -45deg,
    transparent 25%, #9282d4 25%,
    #9282d4 50%, transparent 50%,
    transparent 75%, #9282d4 75%,
    #9282d4
		);
  background-size: 6px 6px;
	background-repeat: repeat;
	}

#home main .cal table tr:nth-child(2) th {
	height: 30px;
	background-color: #e4d8f9;
	font-size: 11px;
	}

#home main .cal table td {
	height: 40px;
	}
#home main .cal table tr:nth-child(3) td {
	height: 55px;
	padding-top: 15px;
	}
#home main .cal table tr:last-child td {
	height: 55px;
	padding-bottom: 15px;
	}

/* date */
#home main .cal table tr:first-child th span {
	display: block;
	width: 200px;
	height: 40px;
	margin: 0 auto;
	background-color: #6251b8;
	border-radius: 20px;
	font-size: 20px;
	font-weight: normal;
	line-height: 40px;
	color: #9282d4;
	}

#home main .cal table tr:first-child th span b {
	color: #ffffff;
	}

#home main .cal table th:first-child,
#home main .cal table td:first-child {
	color: #ab3249;
	}

#home main .cal table th:last-child,
#home main .cal table td:last-child {
	color: #4564bb;
	}

/* link */
#home main .cal table td a {
	position: relative;
	display: block;
	width: 29px;
	height: 29px;
	margin: 0 auto;
	background-color: #8877cf;
	border-radius: 50%;
	line-height: 29px;
	color: #ffffff;
	z-index: 2;
	-webkit-font-smoothing: antialiased;
	}

#home main .cal table td a:hover {
	background-color: transparent;
	color: #ffffff;
	}

#home main .cal table td a::after {
	content:"";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	transform: scale(1.6);
	z-index: -1;
	transition: all 0.4s ease;
	}

#home main .cal table td a:hover::after {
	background-color: #e59100;
	transform: scale(1);
	}
