@charset "UTF-8";

html {
	font-family: "NotoSerifJP", serif;
	overflow-y: scroll;
}

#contents {
	width: 730px;
	margin: 0 0 30px 0;
	float: left;
}

/* ヘッダー画像 */
#site-title img {
	max-height: 108px;
	margin-top: 10px;
}

.site-main {
	width: 500px;
	padding-left: 20px;
	margin: 30px 0 0 0;
}

.site-main h2 {
	margin: 0 0 5px 0;
	padding: 0 0 0 10px;
	line-height: 30px;
	font-size: 1em;
	/*.site-main は max480px (mobile). 加えて20px左に余白があるので480-20 = 460.*/
	border-radius: 6px;
	background: linear-gradient(to bottom, rgba(125, 126, 125, 1) 0%, rgba(14, 14, 14, 1) 100%);
	color: #ffffff;
}

@media (max-width: 480px) {
	.site-main {
		width: 100%;
		padding-left: 0px;
		margin: 30px 0 0 0;
	}

	.site-main h2 {
		width: 100%;
	}
}

/*トップ終了の挨拶*/

.greeting {
	border-style: solid;
	border-width: 2px;
	padding: 8px;
	border-color: #0098db;
	border-radius: 15px;
	margin-bottom: 25px;
}

.greeting #signature {
	margin: 5px 0 5px 0;
	text-align: right;
}

/*トップお知らせ*/

.news {
	margin-bottom: 5px;
}

.news dl {
	font-size: .9em;
	margin: 0;
	padding-left: 10px;
}

.news dt {
	line-height: 2em;
	font-weight: bold;
	color: #0b3865;
}

.news dd {
	font-size: 1em;
	margin: 0;
	padding: 0 0 5px 0;
	border-bottom: #999999 dotted 1px;
	line-height: 1.75em;
}

.news dd:last-child {
	border-bottom: none;
}

dl.news_scroll {
	width: 95%;
	height: 240px;
	overflow-y: scroll;
}

/*トップ申込期間表示*/

.important-dates-table {
	font-size: 0.9em;
	margin: 0;
	width: 100%;
}

.important-dates-table td {
	border-bottom: 1px dotted black;
	padding: 10px 0;
}

.important-dates-table td:nth-of-type(1) {
	text-align: right;
	width: 34%;
}

.important-dates-table td:nth-of-type(3) {
	text-align: left;
	width: 64%;
}

.important-dates-table tr:last-child td {
	border-bottom: none;
}

/*トップ連絡先表示*/

.site-main h4 {
	margin: 0;
	padding: 0;
	font-size: 1em;
	font-weight: bold;
	color: #0b3865;
	margin-top: .5em;
	position: relative;
}

.site-main h4:before {
	content: '';
	display: block;
	position: absolute;
	top: 8px;
	left: -15px;
	width: 10px;
	height: 10px;
	background-color: #062C54;
	transform: rotate(45deg) skew(10deg, 10deg);
}

.contacts {
	margin: 10px 0 50px 25px;
}

.contacts dl {
	font-size: 0.9em;
	margin: 0;
}

.contacts dt {
	font-weight: bold;
	line-height: 1.5em;
}

.contacts dd {
	margin: 0;
	line-height: 1.5em;
}

.contacts dd a {
	text-decoration: none;
	padding: 0 2px;
}

/*上に戻るボタン*/
#page-top {
	border: solid 2px rgba(255, 255, 255, 0.47);
	cursor: pointer;
	padding: 0;
	appearance: none;
	position: fixed;
	right: 30px;
	bottom: 50px;
	z-index: 100;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	box-shadow: 3px 4px 4px rgb(0 0 0 / 50%);
	background-color: #A3A3A2;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.0;
	transition: ease .3s opacity;
}

#page-top.view {
	opacity: 1.0;
}

#page-top::before {
	font: var(--fa-font-solid);
	content: "\f102";
	font-size: 20px;
	color: #fff;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 5px;
}

#page-top::after {
	content: "上に戻る";
	font-family: "NotoSerifJP";
	font-size: 16px;
	color: #fff;
}

#page-top:hover {
	transform: scale(1.1);
}


/*トップ画像スライダー関係*/
.slider {
	opacity: 0;
	transition: opacity .3s linear;
}

.slider.slick-initialized {
	opacity: 1;
}

.lightbox-container {
	padding-top: 0;
	padding-bottom: 15px;
}

.lightbox-container ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

/*トップ広告バナー関係*/
#ad {
	width: 200px;
	padding-left: 20px;
	margin: 30px 0 0 0;
}

#ad a,
a:focus {
	outline: none;
}

#ad ul {
	margin: 0;
	padding: 0;
}

#ad li {
	width: 200px;
	border: #999999 solid 1px;
	margin: 0 0 10px 0;
	padding: 0;
	list-style: none;
	color: #999999;
	text-align: center;
	vertical-align: middle;
}

#ad a {
	display: block;
}

#ad img {
	width: 198px;
	margin: 0;
	padding: 0;
}

#ad li.logo {
	border: none;
}

#ad img.logo {
	width: 155px;
}

#flyer li p {
	margin-bottom: 0;
	margin-top: 0;
}

#sponsers li p {
	margin-bottom: 0;
	margin-top: 0;
}


/* slick */
.slick-dots li {
	width: 10px;
}