@charset "UTF-8";

* {
	box-sizing: content-box;
	font-family: 'Noto Sans JP', sans-serif;
}

body {
	color: #182741;
	font-size: 16px;
	width: 100%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", 'YuGothic', '游ゴシック', "メイリオ", Meiryo, 'ＭＳ Ｐゴシック', 'PT Sans', sans-serif, 'Gulim', 'Apple Gothic';
	letter-spacing: 0.03em;
}

.inner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 30px;
	padding-right: 30px;
}

/*  ヘッダー  */
header {
	width: 100%;
	padding-top: 30px;
	padding-bottom: 16px;
}

header .inner {
	align-items: flex-start;
}

header h1 img {
	width: 252px;
	height: 100%;
}

header h1 a:hover img {
	text-decoration: none;
	cursor: pointer;
	filter: alpha(opacity=60);
	/* ie lt 8 */
	-ms-filter: "alpha(opacity=60)";
	/* ie 8 */
	-moz-opacity: 0.6;
	/* FF lt 1.5, Netscape */
	-khtml-opacity: 0.6;
	/* Safari 1.x */
	opacity: 0.6;
	zoom: 1;
	-webkit-transition: opacity 0.4s ease-out;
	-moz-transition: opacity 0.4s ease-out;
	-o-transition: opacity 0.4s ease-out;
	-ms-transition: opacity 0.4s ease-out;
	transition: opacity 0.4s ease-out;
}


h2 {
	font-size: 30px;
	line-height: 1.4;
	font-weight: bold;
	color: #fff;
}

/*  content1  */
#content1 {
	width: 100%;
	background-color: rgba(87, 172, 220, 0.26);
	padding-top: 118px;
	padding-bottom: 100px;
}

#content1 h2 {
	color: revert;
	margin-bottom: 74px;
	letter-spacing: 0.03em;
	-webkit-font-feature-settings: "palt" 1;
	font-feature-settings: "palt" 1;
}

#content1 p {
	max-width: 776px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

#content1 a {
	font-weight: bold;
	color: #182741;
	text-decoration: underline;
	transition: .3s;
}

#content1 a:hover {
	color: revert;
}

/*  content2  */
#content2 {
	width: 100%;
	background-color: #57acdc;
	padding-top: 54px;
	padding-bottom: 106px;
}

#content2 h2 {
	margin-bottom: 24px;
}

#content2 .inner2 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;

	gap: 30px;
	width: 100%;
	max-width: 766px;
}

#content2 .inner2>a {
	display: flex;
	flex-flow: column;
	width: calc(50% - 55px);
	background-color: #fff;
	color: #182741;
	padding: 17px;
	border: 3px solid #fff;
	transition: .5s;
}

#content2 .inner2>a:hover {
	border-color: #182741;
}

#content2 .inner2>a h3 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 12px;
	line-height: 1.2;
}

#content2 .inner2>a p {
	line-height: 1.4;
}

#content2 .inner2>a img {
	display: flex;
	width: 100%;
	max-width: 100%;
	height: auto;
	margin-top: auto;
}

/*  content3  */
#content3 {
	width: 100%;
	padding-top: 60px;
	padding-bottom: 84px;
}

#content3 .inner {
	max-width: 770px;
}

#content3 h2 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	background-color: #57acdc;
	border-radius: 50vh;
	margin-bottom: 34px;
	line-height: 1;
	padding-right: 44px;
}

#content3 h2 img {
	position: absolute;
	width: 90px;
	right: 14%;
	bottom: -2px;
}

#content3 p {
	line-height: 1.4;
	letter-spacing: 0.01em;
}

#content3 .qr {
	display: flex;
	margin-top: 38px;
}

#content3 .qr img {
	max-width: 108px;
	margin-right: 20px;
}

#content3 .qr p {
	line-height: 1;
	text-align: center;
}

#content3 a.btn {
	background-color: #fff134;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 300px;
	height: 56px;
	transition: .3s;
	font-weight: bold;
	margin-top: 8px;
	margin-bottom: 12px;
}

#content3 a.btn:hover {
	background-color: #182741;
	color: #fff;
}

#content3 a {
	color: #182741;
}

/*  content4  */
#content4 {
	width: 100%;
	background-color: #57acdc;
	padding-top: 40px;
	padding-bottom: 110px;
}

#content4 a {
	display: flex;
	align-items: center;
	color: #fff;
	width: 370px;
	height: 76px;
	border: 2px #fff solid;
	transition: .3s;
	font-weight: bold;
	margin-top: 50px;
	padding-left: 14px;
	padding-right: 14px;
}

#content4 a .fas {
	margin-left: auto;
	font-size: 30px;
}

#content4 a:hover {
	background-color: #fff;
	color: #57acdc;
}



/*  フッター  */
#footer {
	background-color: #182741;
	padding-top: 24px;
	padding-bottom: 40px;
}

#footer p {
	color: #fff;
	text-align: center;
	display: block;
	font-size: 11px;
}

/*  スクロールボタン  */
.page-top {
	position: fixed;
	bottom: 20px;
	right: 15px;
	z-index: 100;
}

.page-top a {
	text-decoration: none;
	color: #fff;
	text-align: center;
	display: block;
}

.page-top a:hover {
	text-decoration: none;
	cursor: pointer;
	filter: alpha(opacity=60);
	/* ie lt 8 */
	-ms-filter: "alpha(opacity=60)";
	/* ie 8 */
	-moz-opacity: 0.6;
	/* FF lt 1.5, Netscape */
	-khtml-opacity: 0.6;
	/* Safari 1.x */
	opacity: 0.6;
	zoom: 1;
	-webkit-transition: opacity 0.4s ease-out;
	-moz-transition: opacity 0.4s ease-out;
	-o-transition: opacity 0.4s ease-out;
	-ms-transition: opacity 0.4s ease-out;
	transition: opacity 0.4s ease-out;
}

/*  近大ロゴ  */
#footer .logo {
	display: block;
	background-color: #00507e;
	text-align: center;
	padding: 8px 26px 0px 10px;
	width: 170px;
	transition: .3s;
	margin-bottom: 30px;
}

#footer .logo:hover {
	background-color: #fff;
}

.svg {
	width: 110px;
	fill: #fff;
}

#footer .logo:hover .svg {
	fill: #231815;
}

@media only screen and (max-width: 768px) {
	body {
		font-size: 14px;
	}

	.inner {
		padding-left: calc(100vw * 30 / 768);
		padding-right: calc(100vw * 30 / 768);
	}

	/*  ヘッダー  */
	header {
		padding-top: calc(100vw * 30 / 768);
		padding-bottom: calc(100vw * 30 / 768);
	}

	header .inner {
		align-items: center;
	}

	header h1 img {
		width: 230px;
	}

	h2 {
		font-size: 26px;
	}

	/*  content1  */
	#content1 {
		padding-top: calc(100vw * 60 / 768);
		padding-bottom: calc(100vw * 50 / 768);
	}

	#content1 h2 {
		margin-bottom: calc(100vw * 42 / 768);
	}

	/*  content2  */
	#content2 {
		padding-top: calc(100vw * 54 / 768);
		padding-bottom: calc(100vw * 106 / 768);
	}

	#content2 h2 {
		margin-bottom: calc(100vw * 24 / 768);
	}

	#content2 .inner2 {
		flex-flow: column;
		gap: calc(100vw * 30 / 768) 0;
	}

	#content2 .inner2>a {
		width: calc(100% - calc(100vw * 55 / 768));
		padding: calc(100vw * 20 / 768);
	}

	#content2 .inner2>a h3 {
		font-size: 20px;
		margin-bottom: calc(100vw * 12 / 768);
	}

	/*  content3  */
	#content3 {
		width: calc(100% - 30px);
		padding-top: calc(100vw * 60 / 768);
		padding-bottom: calc(100vw * 84 / 768);
		margin-left: auto;
		margin-right: auto;
	}

	#content3 h2 {
		font-size: 20px;
		height: 50px;
		height: calc(100vw * 70 / 768);
		margin-bottom: calc(100vw * 34 / 768);
		padding-right: 0;
	}

	#content3 h2 img {
		display: none;
		position: absolute;
		width: calc(100vw * 90 / 768);
		right: 4%;
		bottom: -2px;
	}


	#content3 .qr {
		flex-flow: column;
		align-items: center;
		margin-top: calc(100vw * 38 / 768);
	}

	#content3 .qr img {
		margin-right: calc(100vw * 20 / 768);
	}

	#content3 a.btn {
		width: calc(100vw * 550 / 768);
		max-width: 300px;
		height: calc(100vw * 100 / 768);
		max-height: 56px;
		margin-top: calc(100vw * 8 / 768);
		margin-bottom: calc(100vw * 12 / 768);
	}

	/*  content4  */
	#content4 {
		padding-top: calc(100vw * 40 / 768);
		padding-bottom: calc(100vw * 110 / 768);
	}

	#content4 a {
		width: 370px;
		height: 76px;
		width: calc(100vw * 500 / 768);
		height: calc(100vw * 100 / 768);
		margin-top: calc(100vw * 50 / 768);
		padding-left: calc(100vw * 14 / 768);
		padding-right: calc(100vw * 14 / 768);
	}

	#content4 a .fas {
		margin-left: auto;
		font-size: calc(100vw * 30 / 768);
	}

	/*  フッター  */
	#footer {
		padding-top: calc(100vw * 24 / 768);
		padding-bottom: calc(100vw * 40 / 768);
	}

	/*  スクロールボタン  */
	.page-top {
		position: fixed;
		bottom: 20px;
		right: 15px;
		z-index: 100;
	}

	.page-top a {
		text-decoration: none;
		color: #fff;
		text-align: center;
		display: block;
	}

}

/*  表示・非表示  */
@media only screen and (max-width: 725px) {
	.hidden {
		display: none;
	}
}

@media only screen and (min-width: 725px) {
	.visible {
		display: none;
	}
}

/*  表示・非表示2  */
@media only screen and (max-width: 425px) {
	.hidden2 {
		display: none;
	}
}

@media only screen and (min-width: 425px) {
	.visible2 {
		display: none;
	}
}
