@charset "utf-8";

*,
::before,
::after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

ul,
ol {
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
}

body {
	font-family:serif;
	font-size: 17px;
	color: #1d1441;
	line-height:26px;
	background-color: #ffffff;
}

img {
	max-width: 100%;
}

.header {
	position: fixed;
	top: 20px;
	left: 30px;
	right: 30px;
	background-color: #ecf3f8;
	z-index: 10;
	box-shadow: 0 5px 5px rgba(87, 76, 120, 0.5);
}

.header-inner {
	max-width: 930px;
	height: 50px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 40px;
	padding-right: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.main {
	width: auto;
}

h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  padding-bottom: 10px;
}

.bottom-nav {
	display: none;
}

.header-logo {
	display: block;
	width: 80px;
}

.site-menu ul {
	display: flex;
}

.site-menu ul li {
	margin-left: 20px;
	margin-right: 20px;
	font-weight: bold;
	color: #0e0f67;
}

.footer {
	color: #0e0f67;
	background-color: #e9f10732;
	padding-bottom: 15px;
}

.footer-list {
	width: 90%; 
	display: flex;
	gap: 100px;
	justify-content: center;
	padding: 0 100px;
	align-items: center;
}

.footer-info {
	min-width: 230px;
	color: #1c5375;
	font-weight: bolder;
	padding: 30px 30px;
	font-size: 16px;
	line-height: 25px;
	text-align: center;
}

.footer-info h4 {
	color: #0c517d;
	font-weight: bold;
	padding-top: 10px;
	font-size: 32px;
}

.footer-info img {
	display: block;
	width: 50%;
	margin: auto;
	padding-top: 15px;
}

.footer-address {
	padding-left: 50px;
	color: #0e0f67;
	font-weight: normal;
	font-size: 18px;
	line-height: 23px;
}

.small {
	font-size: 18px;
}

.term,
.copyright {
	font-size: 18px;
	font-weight: bold;
	padding-top: 10px;
 padding-bottom: 5px;
}

.term {
	color: #027606;
}

@media (max-width: 800px) {
	.header-inner {
		display: none;
	}

	.small {
		font-size: 16px;
	}

	.footer {
		padding-bottom: 40px;
	}

	.footer-list {
		display: flex;
		flex-direction: column;
		margin: 0 auto;
		gap: 0px;
	}

	.footer-info {
		font-size: 16px;
		line-height: 24px;
		text-align: center;
	}

	.footer-info img {
		padding-bottom: 0px;
		display: block;
		width: 60%;
	}

	.footer-address {
		font-size: 16px;
		text-align: center;
		padding: 0px 15px;
	}

	.term,
	.copyright {
		font-size: 16px;
		padding-top: 10px;
	}

	.bottom-nav {
		position: fixed;
		bottom: 0;
		width: 100%;
		display: flex;
		justify-content: space-around;
		background-color: #ecf3f8;
		border-top: 1px solid #ccc;
		padding: 10px 0;
	}

	.bottom-nav a {
		text-decoration: none;
		color: #011440;
		font-size: 14px;
		font-weight: bold;
		text-align: center;
	}

	.bottom-nav a:hover {
		color: #039bfa;
	}


}