@media (min-width: 1000px) {
	header {
		background-color: transparent;
	}
	header #headerInner {
		border-bottom: 1px solid #fff;
	}
	header.is-fixed #headerInner {
		border-bottom: none;
	}
}
#contact {
	background-color: transparent;
}

/*
#mainVisual
---------------------------*/
#mainVisual {
	position: relative;
	height: 100vh;
	overflow: hidden;
}
#mainVisual #mainVisualImage {
	position: relative;
	width: 100%;
	aspect-ratio: 1/2;
}
#mainVisual #mainVisualImage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#mainVisual #mainVisualImage:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-color: rgba(0, 0, 0, 0.2);
	z-index: 1;
}
#mainVisual .pageTitle {
	text-align: left;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 4.8%;
	z-index: 2;
	margin: auto;
	color: #fff;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
#mainVisual .pageTitle h1 {
	font-size: 16px;
	font-weight: 600;
	padding-bottom: 1em;
}
#mainVisual .pageTitle h2 {
	font-family: "Reddit Sans", sans-serif;
	font-size: 32px;
	font-weight: 700;
	font-style: italic;
}
#mainVisual .pageTitle h2 span {
	font-weight: 700;
	font-style: italic;
}
#mainVisual .pickUpNews {
	position: absolute;
	bottom: 20px;
	right: 0;
	background-color: rgba(255, 255, 255, 0.95);
	border-top-left-radius: 100px;
	border-bottom-left-radius: 100px;
	z-index: 2;
}
#mainVisual .pickUpNews a {
	display: inline-block;
	padding: 10px 10px 10px 30px;
}
#mainVisual .pickUpNews .date {
	display: inline-block;
	font-family: "Reddit Sans", sans-serif;
	font-weight: 600;
	color: #261E47;
}
#mainVisual .pickUpNews .newsTitle {
	text-decoration: underline;
}
#mainVisual .pickUpNews .dateWrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 5px;
}
#mainVisual .more .btn {
	white-space: nowrap;
	color: #fff;
	background-color: #4687EA;
	font-family: "Reddit Sans", sans-serif;
	border-radius: 50px;
	display: inline-block;
	padding: 5px 10px;
	margin-left: 10px;
}
@media (min-width: 1100px) {
	#mainVisual #mainVisualImage {
		aspect-ratio: 3/2;
	}
	#mainVisual .pageTitle {
		padding-left: 0;
		right: auto;
		left: 50px;
		text-align: left;
	}
	#mainVisual .pageTitle h1 {
		font-size: 18px;
	}
	#mainVisual .pageTitle h2 {
		font-size: 66px;
	}
	#mainVisual .serviceName {
		font-size: 18px;
	}
	#mainVisual .concept {
		font-size: 30px;
	}
	#mainVisual .pickUpNews {
		position: absolute;
		bottom: 20px;
		right: 0;
	}
	#mainVisual .pickUpNews a {
		display: flex;
		align-items: center;
		padding: 15px 20px 15px 30px;
	}
	#mainVisual .pickUpNews .date {
		font-size: 18px;
		padding-bottom: 0;
	}
	#mainVisual .pickUpNews p + p {
		margin-left: 20px;
	}
	#mainVisual .pickUpNews .more .btn {
		padding: 10px 20px;
		margin-left: 0;
	}
	#mainVisual .pickUpNews .dateWrap {
		padding-bottom: 0;
		margin-right: 20px;
	}
}

/*
#overview
---------------------------*/
#overview {
	background-image: url(../img/common/bg-logo.svg);
	background-position: right 20px center;
	background-repeat: no-repeat;
	background-size: 50% auto;
}
#overview .overviewTitle {
	background-color: #261E47;
	color: #fff;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	padding: 10px;
	margin-bottom: 15px;
}
#overview .overviewTitle > * {
	font-weight: 600;
}
#overview .schedule {
	color: #261E47;
}
#overview .schedule p {
	display: inline-block;
	font-weight: 600;
}
#overview .schedule .date {
	position: relative;
	font-family: "Reddit Sans", sans-serif;
	font-size: 24px;
	font-weight: 700;
	padding-right: 15px;
	margin-right: 15px;
}
#overview .schedule .date:after {
	content: "";
	display: block;
	width: 1px;
	height: 24px;
	background-color: #261E47;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	transform: rotate(45deg);
}
#overview .schedule .detail {
	font-size: 18px;
}
#overview .entry {
	color: #261E47;
	padding-top: 15px;
}
#overview .entry dt {
	font-size: 18px;
	font-weight: 600;
	border-bottom: 1px solid #261E47;
	padding-bottom: 0.5em;
	margin-bottom: 0.5em;
}
#overview .entry dd {
	font-size: 20px;
}
#overview .entry dd span {
	font-weight: 600;
}
#overview .entry dd .date {
	font-family: "Reddit Sans", sans-serif;
	font-weight: 700;
	font-size: 20px;
}
@media (min-width: 1000px) {
	#overview {
		background-position: right 50px center;
		background-size: 30% auto;
	}
	#overview .overviewTitle {
		font-size: 24px;
		padding: 10px;
		margin-bottom: 30px;
	}
	#overview .schedule .date {
		font-size: 70px;
		padding-right: 30px;
		margin-right: 25px;
	}
	#overview .schedule .date:after {
		height: 60px;
		transform: rotate(45deg);
	}
	#overview .schedule .detail {
		font-size: 28px;
	}
	#overview .entry {
		padding-top: 30px;
	}
	#overview .entry dt {
		font-size: 24px;
		padding-bottom: 0.5em;
		margin-bottom: 0.5em;
	}
	#overview .entry dd {
		font-size: 50px;
	}
	#overview .entry dd .date {
		font-size: 50px;
	}
}

/*
#news
---------------------------*/
#news .newsList li {
	border-bottom: 1px solid #DCDCDC;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
#news .newsList li a {
	position: relative;
	display: block;
	padding-right: 15px;
}
#news .newsList li a:after {
	border-top: solid 1px #4687EA;
	border-right: solid 1px #4687EA;
	width: 8px;
	height: 8px;
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	transform: rotate(45deg);
	right: 10px;
	margin: auto;
	transition: all 0.3s ease-out;
}
#news .newsList li a:hover:after {
	right: 0;
}
#news .newsList .date {
	font-family: "Reddit Sans", sans-serif;
	padding-bottom: 0.5em;
}
@media (min-width: 1000px) {
	#news .newsList li {
		padding-bottom: 25px;
		margin-bottom: 25px;
	}
	#news .newsList li a {
		display: flex;
	}
	#news .newsList .date {
		font-family: "Reddit Sans", sans-serif;
		padding: 0 1em 0 0;
	}
}

/*
#information
---------------------------*/
#information {
	background-image: url(../img/top/information-bg.jpg);
	background-size: cover;
}
#information .programBox {
	background-color: rgba(255, 255, 255, 0.8);
	border: 1px solid #4687EA;
}
#information .programBox .title {
	background-color: #4687EA;
	color: #fff;
	font-size: 18px;
	padding: 10px;
}
#information .programBox .title span {
	position: relative;
	display: block;
	font-weight: 600;
}
#information .programBox .title span:before {
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	position: absolute;
	content: "";
	background-image: url(../img/common/icon-pdf.svg);
	background-position: center center;
	background-repeat: no-repeat;
	width: 19px;
	height: 20px;
	display: block;
}
#information .programBox .program {
	text-align: center;
	padding: 20px;
}
@media (min-width: 1000px) {
	#information .programBox .title {
		font-size: 24px;
		padding: 20px;
	}
	#information .programBox .program {
		padding-top: 20px;
	}
	#information .programBox .program img {
		width: 260px;
	}
}

#for-runners {
	border: 10px solid #F7F7F5;
}
@media (min-width: 1000px) {
	#for-runners {
		border: 20px solid #F7F7F5;
	}
}

/*# sourceMappingURL=top.css.map */