@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

html body {
	color: #333;
	line-height: 1.8;
	letter-spacing: 0.06em;
	font-family: 'Lato', 'Noto Sans JP', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

html body * {
	box-sizing: border-box;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

html body p {
	text-align: justify;
	margin: 0 0 1.5em;
}

html body img {
	max-width: 100%;
}

html body ul {
	list-style-type: none;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}


@media screen and (max-width: 1200px) {
	.container {
		padding: 0 15px;
	}
}


/* ===================== */
/* Header */
/* ===================== */
header {
	background: #fff;
	padding: 0 0 0 0;
	border-bottom: 1px solid #ccc;
}

header .container {
	display: flex;
	justify-content: space-between;
}

header .container h1 {
	margin: 15px 0;
}

header .container h1 a {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

header .container h1 a img {}

header .container nav {}

header .container nav ul {
	height: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-weight: bold;
	letter-spacing: 0.10em;
}

header .container nav ul li {
	padding: 0 10px;
	border-left: 1px dotted #bbb;
	position: relative;
}

header .container nav ul li::after {
	content: '';
	width: 100%;
	height: 100%;
	display: inline-block;
	background: #000;
	position: absolute;
	top: 0;
	left: 0;
	transform: scaleX(0);
	transition: 0.2s all ease;
	transform-origin: 0 0;
}

header .container nav ul li:hover::after {
	transform: scaleX(1);
}

header .container nav ul li:first-child {
	border: none;
}

header .container nav ul li a {
	text-decoration: none;
	color: #333;
	display: inline-block;
	position: relative;
	transition: 0.2s all ease;
	z-index: 10;
}

header .container nav ul li:hover a {
	color: #fff;
}

header .container .hamburger {
	display: none;
}

@media screen and (max-width:480px) {
	header {
		height: 60px;
	}

	header .container h1 {
		margin: 0 0 0 0;
	}

	header .container nav {
		display: none;
		position: absolute;
		width: 100%;
		top: 60px;
		left: 0;
		z-index: 99999;
		background: rgba(0,0,0,0.85);
		box-shadow: 0 2px 8px rgba(0,0,0,0.5);
	}

	header .container nav ul {
		display: block;
		width: 100%;
	}

	header .container nav ul li {
		border-bottom: 1px solid #777 !important;
		border-left: none !important;
	}

	header .container nav ul li:last-child {
		border-bottom: none !important;
	}

	header .container nav ul li::before,
	header .container nav ul li::after {
		display: none;
	}

	header .container nav ul li a {
		display: block;
		padding: 0.8em;
		position: relative;
		color: #fff;
	}

	header .container nav ul li a::after {
		content: '\f105';
		font-family: 'FontAwesome';
		position: absolute;
		top: 50%;
		right: 0.8em;
		transform: translateY(-50%);
		opacity: 0.5;
		font-weight: normal;
	}

	header .container .hamburger {
		cursor: pointer;
		align-self: center;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 40px;
		height: 28px;
	}

	header .container .hamburger .hamburger_item {
		display: block;
		width: 100%;
		height: 1px;
		background: #999;
		transition: 0.5s all ease;
	}

	header .container .hamburger.active .hamburger_item:nth-child(1) {
		transform: translateY(14px) rotate(45deg);
	}

	header .container .hamburger.active .hamburger_item:nth-child(2) {
		opacity: 0;
	}

	header .container .hamburger.active .hamburger_item:nth-child(3) {
		transform: translateY(-13px) rotate(-45deg);
	}


}

/* ===================== */
/* underlayer */
/* ===================== */

/* Heading */
.mainContents h3 {
	font-size: 22px;
	border-bottom: 3px solid #ccc;
	padding: 0 0.5em 5px;
}

.mainContents h4 {
	font-size: 18px;
	border-left: 7px solid #ccc;
	margin: 20px 0 15px;
	padding: 0.15em 0.45em;
}

.mainContents h5 {
	font-size: 18px;
	margin: 0 0 10px;
}

@media screen and (max-width:480px) {
	.mainContents h4 {
		font-size: 4.0vw;
	}
}

/* ----------------------- */

.ttl_section {
	background: #999;
	margin: 0 0 80px;
	padding: 80px 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.ttl_section::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	z-index: 50;
	background: transparent url('/common/img/pattern001.png') repeat 0 0;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.8;
}

.ttl_section h2 {
	position: relative;
	z-index: 100;
	color: #fff;
	font-size: 36px;
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.9);
	letter-spacing: 0.1em;
	text-align: center;
}

.tableStyle01 {
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
	border: 1px solid #ddd;
}

.tableStyle01 tr {}

.tableStyle01 tr th {
	text-align: right;
	padding: 1.2em 1.0em;
	vertical-align: top;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	background: #fff6f6;
}

.tableStyle01 tr td {
	padding: 1.2em 1.0em;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid#ddd;
}

.link_btn {
	display: block;
	width: 100%;
	max-width: 360px;
	margin: 0 auto;
	padding: 0.8em 10px;
	background: #bb0000;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	border-radius: 0.4em;
	transition: 0.3s all ease;
	position: relative;
}

.link_btn::after {
	content: '\f105';
	font-family: 'FontAwesome';
	position: absolute;
	top: 48%;
	right: 15px;
	transform: translateY(-50%);
	font-size: 1.3em;
	transition: 0.3s all ease;
}

.link_btn:hover {
	opacity: 0.8;
}

.link_btn:hover::after {
	right: 10px;
}

@media screen and (max-width: 480px) {
	.link_btn {
		font-size: 0.95em;
	}
}


/* ===================== */
/* Footer */
/* ===================== */
footer {
	background: #efefef;
	border-top: 1px solid #ccc;
	margin: 80px 0 0;
	padding: 30px 0 0;
}

footer .copyright {
	background: #aaa;
	text-align: center;
	font-size: 0.8em;
	color: #efefef;
	margin: 50px 0 0;
	padding: 0.5em 0;
}


@media screen and (max-width:480px) {
	.ttl_section {
		padding: 30px 0;
	}

	.ttl_section h2 {
		font-size: 7.0vw;
	}

	.mainContents h3 {
		font-size: 5.5vw;
	}

	footer .copyright {
		font-size: 3.0vw;
	}
}


/* ===================== */
/* Input */
/* ===================== */
span.required {
	background: #bb0000;
	display: inline-block;
	color: #fff;
	font-size: 0.8em;
	font-weight: normal;
	margin: 0 0 0 0.5em;
	padding: 0.1em 0.5em;
	border-radius: 0.25em;
}

span.optional {
	background: #929292;
	display: inline-block;
	color: #fff;
	font-size: 0.8em;
	font-weight: normal;
	margin: 0 0 0 0.5em;
	padding: 0.1em 0.5em;
	border-radius: 0.25em;
}

input,
textarea {
	font-family: 'Lato',
	'Noto Sans JP',
	"Helvetica Neue",
	Arial,
	"Hiragino Kaku Gothic ProN",
	"Hiragino Sans",
	Meiryo,
	sans-serif;
	padding: 0.5em 0.5em;
	font-size: 16px;
}

.btn {
	display: block;
	width: 100%;
	max-width: 360px;
	margin: 0 auto;
	background: none;
	border: none;
	font-family: 'Lato',
	'Noto Sans JP',
	"Helvetica Neue",
	Arial,
	"Hiragino Kaku Gothic ProN",
	"Hiragino Sans",
	Meiryo,
	sans-serif;
	padding: 0.8em 10px;
	font-size: 16px;
	border-radius: 0.4em;
	cursor: pointer;
	transition: 0.3s all ease;
}

.btn:hover {
	opacity: 0.8;
}

.submit_btn {
	background: #bb0000;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
}