@charset "utf-8";

/* === font === */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
/* font-family: 'Noto Sans JP', sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
/* font-family: "Outfit", sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
/* font-family: "Oswald", sans-serif; */


/* === title === */

#ttl {
	padding: 70px 80px 80px;
	background: #edefec;
}
#ttl h1 {
	max-width: 1200px;
	margin: 0 auto;
	line-height: 1;
}
#ttl h1 strong {
	font-size: 4.8rem;
	font-weight: 500;
	display: block;
}
#ttl h1 span {
	margin-bottom: 20px;
	color: #014d9e;
	font-size: 1.8rem;
	font-weight: 700;
	display: block;
}

#ttl.ttl_openseminar { background: url(../img/news/openseminar/ttl.png) no-repeat center / cover; }

#ttl.ttl_startup { background: #18b9c9; }
#ttl.ttl_startup h1 strong { color: #ffdf03; }
#ttl.ttl_startup h1 span { color: #fff; }

#ttl.ttl_fund { background: #84a075; }
#ttl.ttl_fund h1 strong { color: #fff; }
#ttl.ttl_fund h1 span { color: #fff; }

@media (min-width: 768px) and (max-width: 1199px) {
	#ttl {
		padding: 70px 40px 80px;
	}
}

@media only screen and (max-width: 767px) {
	#ttl {
		padding: 30px 15px 25px;
		background: #edefec;
	}
	#ttl h1 strong {
		font-size: 2.4rem;
	}
	#ttl h1 span {
		margin-bottom: 10px;
		font-size: 1.4rem;
	}
}


/* === contents === */

#contents {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 80px 640px;
}

@media (min-width: 768px) and (max-width: 1199px) {
	#contents {
		padding: 0 40px 120px;
	}
}

@media only screen and (max-width: 767px) {
	#contents {
		padding: 0;
	}
}

/* -- layout -- */

#main {
	width: calc(100% - 340px);
	padding-top: 100px;
	float: left;
}
section {
	margin-bottom: 90px;
}
section:last-child {
	margin-bottom: 0;
}
.mgb45 {
	margin-bottom: 45px !important;
}
.mgb30 {
	margin-bottom: 30px !important;
}

@media (min-width: 768px) and (max-width: 1199px) {
	#main {
		width: 100%;
	}
}

@media only screen and (max-width: 767px) {
	#main {
		width: calc(100% - 30px);
		padding: 45px 15px 90px;
		float: none;
	}
	section {
		margin-bottom: 60px;
	}
	.mgb45 {
		margin-bottom: 30px !important;
	}
	.mgb30 {
		margin-bottom: 20px !important;
	}
}

/* -- headline -- */

h2 {
	margin-bottom: 50px;
	padding-bottom: 30px;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.5;
	position: relative;
	clear: both;
}
h2:after {
	width: 60px;
	height: 5px;
	background: #014d9e;
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
}
.h2_facilities {
	color: #999;
	font-size: 1.8rem;
	font-weight: 500;
	display: block;
}
h3 {
	margin-bottom: .25em;
	color: #014d9e;
	font-size: 2rem;
	font-weight: 700;
	clear: both;
}
h4 {
	margin-bottom: .25em;
	font-size: 1.8rem;
	font-weight: 700;
	clear: both;
}

@media only screen and (max-width: 767px) {
	h2 {
		margin-bottom: 25px;
		padding-bottom: 15px;
		font-size: 2rem;
	}
	h2:after {
		width: 30px;
		height: 3px;
	}
	h3 {
		font-size: 1.6rem;
		font-weight: 700;
	}
	h4 {
		font-size: 1.5rem;
	}
}

/* -- text -- */

p {
	text-align: left;
}
.txt_center {
	text-align: center;
}
.txt_right {
	text-align: right;
}
.color_red {
	color: #c00;
}
.color_blue {
	color: #014d9e;
}

/* -- unordered list -- */

ul.list {
	margin-bottom: 1em;
}
ul.list li {
	padding-left: 1em;
	line-height: 1.75;
	position: relative;
}
ul.list li:before {
	color: #014d9e;
	content: "●";
	position: absolute;
	top: 0;
	left: 0;
}

ul.list_pdf {
	border-top: 1px solid #edefec;
}
ul.list_pdf li {
	border-bottom: 1px solid #edefec;
	line-height: 1.5;
}
ul.list_pdf li a {
	padding: 1em 50px 1em 1em;
	background: url(../../img/common/pdf.svg) no-repeat center right 1em;
	color: #333;
	display: block;
}
ul.list_pdf li a:hover {
	color: #014d9e;
}

/* -- ordered list -- */

ol {
	padding-left: 20px;
}


/* -- notes -- */

p.notes {
	margin-left: .5em;
	font-size: 1.2rem;
	text-indent: -1em;
}
p.notes_non {
	font-size: 1.2rem;
}
dl.notes {
	font-size: 1.2rem;
}
dl.notes dt {
	font-weight: 400;
	float: left;
}
dl.notes dd {
	padding-left: 2.5em;
}

/* -- image -- */

.img {
	margin: 50px 0;
	text-align: center;
}
.img img {
	width: 100%;
}

@media only screen and (max-width: 767px) {
	.img {
		margin: 25px 0;
	}
}

/* -- table -- */

table {
	width: 100%;
}

table tr th,
table tr td {
	padding: 15px;
	border-right: 3px solid #fff;
	line-height: 1.75;
}
table tr th {
	background: #014d9e;
	color: #fff;
	text-align: center;
}
table tr td {
	vertical-align: middle;
}
table tr:nth-child(even) td {
	background: #edefec;
}

@media only screen and (max-width: 767px) {
	.table {
		overflow: scroll;
	}
	table tr th,
	table tr td {
		white-space: nowrap;
	}
}


/* -- button -- */

.btn a {
	height: 48px;
	background: #edefec;
	border: 1px solid #edefec;
	border-radius: 24px;
	color: #014d9e;
	line-height: 48px;
	text-align: center;
	display: block;
}
.btn a:hover {
	background: #fff;
	border: 1px solid #014d9e;
}
.btn._small a {
	width: 240px;
	margin: 0 auto;
}
.btn._merit a {
	background: #fff;
	border-color: #18b9c9;
	color: #18b9c9;
}
.btn._merit a:hover {
	background: #18b9c9;
	color: #fff;
}


/* -- preparation -- */

.preparation {
	padding: 200px 0;
	text-align: center;
}
.preparation img {
	margin-bottom: 20px;
}
.preparation p {
	line-height: 1.75;
	text-align: center;
}

@media only screen and (max-width: 767px) {
	.preparation {
		padding: 150px 0;
	}
	.preparation img {
		width: 240px;
	}
}

/* -- page navi -- */

.nav_page {
	margin-top: 60px;
	font-size: 1.4rem;
	text-align: center;
	zoom: 1;
}
.nav_page:after {
	content:"";
	display: block;
	clear: both;
}
.nav_page li {
	margin: 0 2px;
	display: inline-block;
}
.nav_page li a {
	width: 30px;
	height: 30px;
	border: 1px solid #fff;
	border-radius: 15px;
	color: #333;
	display: block;
}
.nav_page li a.current {
	background: #014d9e;
	border-color: #014d9e;
	color: #fff;
}
.nav_page li a:hover {
	border-color: #014d9e;
	color: #014d9e;
}
.nav_page li.prev,
.nav_page li.next {
	margin: 0 10px;
	font-size: 1.3rem;
}
.nav_page li.prev a,
.nav_page li.next a {
	width: auto;
}
.nav_page li.prev a:hover,
.nav_page li.next a:hover {
	border-color: #fff;
}

@media only screen and (max-width: 767px) {
	.nav_page {
		margin-top: 30px;
		font-size: 1.3rem;
	}
}


/* === sidebar === */

#sidebar {
	width: 240px;
	margin-top: -30px;
	float: right;
}
.sb_ttl {
	height: 160px;
	background: #014d9e;
	color: #fff;
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	position: relative;
}
.sb_ttl span {
	white-space: nowrap;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
	display: block;
}
.sb_ttl span img {
	width: 180px;
	opacity: .25;
}
.sb_nav_locl li {
	border-bottom: 1px solid #ddd;
	line-height: 1.5;
}
.sb_nav_locl a {
	padding: .8em 1em;
	color: #333;
	display: block;
}
.sb_nav_locl a:hover,
.sb_nav_locl a.current {
	color: #014d9e;
	font-weight: 500;
}

@media (min-width: 768px) and (max-width: 1199px) {
	#sidebar {
		display: none;
	}
}

@media only screen and (max-width: 767px) {
	#sidebar {
		width: 100%;
		margin-top: 0;
		float: none;
	}
	.sb_ttl {
		height: auto;
		padding: 10px 15px;
		font-size: 1.4rem;
		font-weight: 700;
	}
	.sb_ttl span {
		position: relative;
		top: initial;
		left: initial;
		transform: initial;
		-webkit- transform: initial;
		display: inline;
	}
	.sb_nav_locl a {
		padding: 12px 15px;
	}
}