@charset "utf-8";

/*　ベース　================================== */
* { box-sizing: border-box; }
* img { vertical-align: bottom; }

body {  font-family: "Zen Maru Gothic", sans-serif; font-style: normal; font-weight: 400; font-size: 16px; line-height: 1.5; color: #222;}


/*　ヘッダー　================================== */
.header {
	max-width: 1920px;
	margin: 0 auto;
	background-color: #fff;
	position: sticky;
	top: 0;
	z-index: 100;
}
.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	min-width: 1280px;
	height: 95px;
	margin: 0 auto;
}
.header-logo img {
	width: 560px;
}
.nav-list {
	display: flex;
	gap: 30px;
}
.nav-item a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #001144;
	font-weight: 700;
	position: relative;
}
.nav-item a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #001144;
	transition: width 0.3s ease;
}
.nav-item a:hover::after {
	width: 100%;
}
.nav-item img {
	width: 11px;
	margin-left: 8px;
	transform: translateY(2px);
}
.hamburger {
	display: none;
}

/*　フッター　================================== */
.footer-info {
	background-color: #edefd8;
	padding: 60px 0;
}
.footer-info-inner {
	max-width: 1920px;
	min-width: 1280px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
}
.footer-chara img {
	width: 342px;
}
.footer-logo-area {
	text-align: left;
}
.footer-logo-area img {
	width: 400px;
	margin-bottom: 20px;
}
.footer-address-name {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}
.footer-address {
	font-size: 16px;
	line-height: 1.8;
}
.footer-address a {
	color: #0e62a9;
}
.footer-copy {
	background-color: #000763;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 32px;
	font-size: 14px;
}

/*　タブレット版 (1024px - 768px)　================================== */
@media screen and (max-width: 1024px) {

	body {
		min-width: 360px;
	}
    
	/* ヘッダー */
	.header-inner {
		min-width: 100%;
		padding: 0 20px;
	}
	.header-logo img {
		width: 295px;
	}
	.hamburger {
		display: block;
		position: relative;
		width: 40px;
		height: 40px;
		background: transparent;
		border: none;
		cursor: pointer;
		z-index: 110;
		padding: 0;
		margin: 0;
	}
	.hamburger span {
		position: absolute;
		left: 5px;
		width: 30px;
		height: 3px;
		background-color: #001144;
		border-radius: 2px;
		transition: all 0.3s ease;
	}
	.hamburger span:nth-child(1) { top: 10px; }
	.hamburger span:nth-child(2) { top: 18px; }
	.hamburger span:nth-child(3) { top: 26px; }

	.hamburger.is-active span:nth-child(1) {
		top: 18px;
		transform: rotate(45deg);
	}
	.hamburger.is-active span:nth-child(2) {
		opacity: 0;
	}
	.hamburger.is-active span:nth-child(3) {
		top: 18px;
		transform: rotate(-45deg);
	}

	.header-nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: rgba(255, 255, 255, 0.95);
		z-index: 105;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
	}
	.header-nav.is-active {
		opacity: 1;
		visibility: visible;
	}
	.nav-list {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 100%;
		gap: 40px;
	}
	.nav-item a {
		font-size: 20px;
	}

	/* フッター */
	.footer-info-inner {
		min-width: 100%;
		padding: 0 20px;
	}
}

/*　スマホ版 (768px)　================================== */
@media screen and (max-width: 768px) {
	/* ヘッダー */
	.header-inner {
		height: 60px;
		padding: 0 10px 0 20px;
	}
	.header-logo img {
		width: 280px;
	}
	.hamburger {
		width: 30px;
		height: 30px;
	}
	.hamburger span {
		left: auto;
		right: 0;
		width: 26px;
		height: 2px;
	}
	.hamburger span:nth-child(1) { top: 8px; }
	.hamburger span:nth-child(2) { top: 14px; }
	.hamburger span:nth-child(3) { top: 20px; }

	.hamburger.is-active span:nth-child(1) { top: 14px; }
	.hamburger.is-active span:nth-child(3) { top: 14px; }

	/* フッター */
	.footer-info-inner {
		flex-direction: column;
		gap: 30px;
	}
	.footer-chara img {
		width: 200px;
	}
	.footer-logo-area img {
		width: 100%;
		max-width: 300px;
	}
	.footer-address a {
		word-break: break-all;
	}
}