html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

* {
	box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

html,
body {
	background: #fff;
}

strong,
b {
	font-weight: 800;
}

a {
	text-decoration: none;
}

body {
	background-color: #f3f3f3;
}

.container-full {
	padding: 0 15px;
}

.container {
	width: 1200px;
	margin: 0 auto;
}

.header .container-full {
	transition: 0.3s;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header .logo {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	position: relative;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}

.header .logo span {
	position: relative;
	z-index: 2;
}

.header .logo:after {
	position: absolute;
	top: 0;
	left: -100px;
	bottom: 0;
	background: #004a94;
	transform: skew(30deg, 0deg);
	content: "";
	z-index: 1;
	width: calc(100% + 130px);
}

.header .feedback-btn {
	transition: 0.3s;
	background: #004a94;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 2px;
	padding: 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 80px;
	margin-right: -15px;
	position: relative;
	box-sizing: content-box;
	overflow: hidden;
}

.header .feedback-btn span {
	position: relative;
	color: #ffffff;
	font-size: 17px;
	font-weight: 500;
	z-index: 1;
	width: 40px;
}

.header .feedback-btn .liquid {
	position: absolute;
	top: 0px;
	left: 0;
	width: 200px;
	height: 80px;
	background: #004a94;
	box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.1);
	transition: 0.5s;
}

.header .feedback-btn .liquid::before,
.header .feedback-btn .liquid::after {
	position: absolute;
	top: 0;
	left: 50%;
	width: 200px;
	height: 80px;
	transform: translate(-50%, -75%);
	content: "";
}

.header .feedback-btn .liquid::before {
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	animation: animate 4s linear infinite;
}

.header .feedback-btn .liquid::after {
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	animation: animate 7s linear infinite;
}

@keyframes animate {
	0% {
		transform: translate(-50%, -75%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -75%) rotate(360deg);
	}
}

.header .navigation {
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex: 1;
	margin: 0 20px 0 80px;
}

.header .navigation a {
	color: #111;
	font-size: 16px;
	position: relative;
	height: 24px;
	line-height: 24px;
	font-weight: 600;
	overflow: hidden;
	display: block;
	box-sizing: border-box;
	padding-bottom: 5px;
}

.header .navigation a.active {
	color: #004a94;
}

.header .navigation a span {
	transition: 0.3s;
	position: relative;
	line-height: 24px;
	display: inline-block;
}

.header .navigation a span::before {
	color: #004a94;
	position: absolute;
	top: 100%;
	content: attr(data-hover);
	box-sizing: border-box;
	transform: translate3d(0, 0, 0);
}

.header .navigation a:hover {
	transition: 0.3s;
}

.header .navigation a:hover span {
	transition: 0.3s;
	transform: translateY(-100%);
}
 

.breadcrumb-box {
	height: 56px;
	background-color: #004a94;
	position: relative;
	margin: 0 -15px;
	margin-top: 40px;
	color: #fff;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding-left: 30px;
}

.breadcrumb-box .breadcrumb-text {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
}

.breadcrumb-box .breadcrumb-desc {
	font-size: 15px;
}

.breadcrumb-box:after,
.breadcrumb-box:before {
	content: '';
	display: block;
	position: absolute;
}

.breadcrumb-box:after {
	background-color: rgba(255, 255, 255, 0.23);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	right: 20px;
	top: 12px;
}

.breadcrumb-box:before {
	background-color: rgba(255, 255, 255, 0.5);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	right: 53px;
	top: 30px;
}

.breadcrumb-box .corner-left,
.breadcrumb-box .corner-right {
	width: 0;
	height: 0;
	position: absolute;
	border-top: 15px solid;
	border-color: #075aad;
}

.breadcrumb-box .corner-left {
	left: 0;
	bottom: -15px;
	border-left: 15px solid transparent;
}

.breadcrumb-box .corner-right {
	right: 0;
	bottom: -15px;
	border-right: 15px solid transparent;
}

.content {
	background-color: #fff;
	padding: 30px;
	box-shadow: 0px -2px 4px 4px rgba(0, 0, 0, 0.084);
}

.content .image {
	max-width: 400px;
	display: block;
	margin: 30px auto;
}

.content p {
	font-size: 14px;
	color: #232323;
	margin-bottom: 15px;
	line-height: 25px;
}

.footer {
	background-color: #004a94;
	padding: 0 15px 20px 15px;
	margin-top: 60px;
	position: relative;
	z-index: 11;
}

.footer a,
.footer span {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	transition: 0.3s;
}

.footer .footer-warp {
	position: relative;
	z-index: 11;
}

.footer .footer-bag {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	opacity: 0.025;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAB4AAAAAaCAMAAABhJrFfAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6N0UwOTNCNzQ4NkE0MTFFRTg3MDVERkREMzdENzk5QTEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6N0UwOTNCNzU4NkE0MTFFRTg3MDVERkREMzdENzk5QTEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo3RTA5M0I3Mjg2QTQxMUVFODcwNURGREQzN0Q3OTlBMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo3RTA5M0I3Mzg2QTQxMUVFODcwNURGREQzN0Q3OTlBMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pvne6tEAAAAGUExURf///////1V89WwAAAACdFJOU/8A5bcwSgAAArxJREFUeNrsndt2hCAMReH/f7rtaq03YAgESXDvl047KpCJ5xDUaYjvIci2/iUCAABMNyWvg/z20ZufhgvZd0gSAADAgFsNuIv/g5AvAPAGyVxU86wVVmHlHBrEtYHtZX8/I4U3AFiQzpisQE7y56vUDBaXNsO6CTSUchuq/UQPAMCmdDqo4wvjwoCVgryvmFhCKdlRBQAwW7JcjmFkOI3lzc+Oc+YITtLk9DIYJxdzfTMHAJBr6YTKQ9W+tuYSFwfFvT5eC3xw5uNujmbeeEsp6SGxAYCC17hQJRr2NohyqbZPBKaLf/CO2iiQDwDoKhqfkryh4rXCNCLbXmpOMe229AD4sWY2Rb5oBdzUqmtJqceRnNocaG2xrpC/qxn+iwe7Xn8jKmA9UWVieyyZKh7cmChbNaO67rWM4Lb3IQjTI/mNUx9nfrgrLvxEuhMaeLig3TRUnKxrVSyx6rbVZeT2uvtTPctcHoiHX6h4sWBNk5WdxcQNJk4AQ5PrrLtWaH9EltdxWUTGg00onCgD3xsxV4VjXWHhzH6bH5U4DB31syu30z4fssKyBW/bL2BDxYgwh3FtwKLlSa/mi2ouKbdEiJxou8TkyIpYR+iMmrG5QOfqpMF5C6K0uNzKL3nB+yy4uig8XEZVkLNw+tEobtfSYHiGKyyLGi5dpeM92Z5ir0Pio1UoEtO3lkjTdj9V4v3/E5wTEf99s9zezyGCQlboykCnzMf8URJzydu21lYS5hfO+UbzHZLoSaalroHOWmRteHxHK1vQoTcKL0GAIcmgdElWok2+VGzKqvuxIM/1aGT2lJcCXHxcyqcK3gsAc1yGAA1140KRZ2c+ThoAADzsLURmrBUTSgAAuN0fhT/UevD2J/kzYwAAANBowel38vUykQMAAOi14OpN/3YgaAAAAAAAAAAA4J0vAQYAqRRdtEWX4x0AAAAASUVORK5CYII=);
	background-position: bottom;
	background-size: 80% 60%;
	background-attachment: fixed;
	background-repeat: repeat-x;
	z-index: 1;
}

.footer .tit {
	font-size: 17px;
	color: #fff;
	font-weight: 600;
	border-bottom: 1px solid rgba(255, 255, 255, 0.13);
	text-align: left;
	margin: 0 -15px 20px -15px;
	padding: 15px;
}

.footer .friendly-warp {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	text-align: left;
	margin-bottom: 50px;
	line-height: 2.4;
}

.footer .friendly-warp a {
	position: relative;
	padding-left: 15px;
	font-size: 13px;
	transition: 0.43s;
	text-decoration: none !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.footer .friendly-warp a span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.footer .friendly-warp a::after {
	content: '➥';
	display: block;
	position: absolute;
	top: 1px;
	left: 0;
	width: 10px;
	height: 10px;
	opacity: 0.7;
	background-size: cover;
	font-size: 13px;
}

.footer .friendly-warp span {
	display: block;
	transition: 0.43s;
}

.footer .friendly-warp a:hover span {
	transition: 0.43s;
	transform: translateX(4px);
}

.footer .footer-row {
	display: block;
	text-align: center;
}

.footer a:hover {
	text-decoration: underline;
}

.forms {
	width: 60%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.forms .item {
	width: 47%;
	margin-bottom: 10px;
	position: relative;
	box-sizing: border-box;
	padding-bottom: 2px;
}

.forms .item::after {
	width: 4px;
	height: 100%;
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #004a94;
}

.forms .item::before {
	width: 0;
	height: 2px;
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	transition: 0.63s;
	background-color: #004a94;
}

.forms .item:hover:before {
	background-color: #004a94;
}

.forms .input-style {
	background-color: #f8f8f8;
	color: #000;
	width: 100%;
	height: 38px;
	border: 0;
	padding: 10px 15px;
	outline: none;
	position: relative;
	box-sizing: border-box;
}

.forms .input-style:focus::after {
	width: 100%;
}

.forms .input-style::placeholder {
	color: #999;
}

.submit {
	margin: 40px auto;
	width: 60%;
	height: 42px;
	background-color: #004a94;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 1300px) {
	.header .logo {
		font-size: 20px;
		transition: 0.3s;
	}

	.header .feedback-btn {
		width: 70px;
		transition: 0.3s;
	}

	.header .navigation a {
		font-size: 14px;
	}

	.container {
		width: auto;
		margin-left: 20px;
		margin-right: 20px;
	}
}

@media (max-width: 1180px) {

	.header .logo,
	.header .feedback-btn,
	.header .container-full {
		height: 60px;
		transition: 0.3s;
	}

	.header .banner-image {
		height: 300px;
	}

	.header .logo {
		font-size: 15px;
	}

	.header .navigation {
		margin: 0 10px 0 50px;
	}

	.header .navigation a {
		font-size: 12px;
	}

	.header .feedback-btn {
		width: 60px;
	}

	.header .feedback-btn span {
		font-size: 14px;
		width: 32px;
	}

	.footer .friendly-warp {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media (max-width: 950px) {

	.header .logo,
	.header .feedback-btn,
	.header .container-full {
		height: 46px;
	}

	.header .navigation {
		position: absolute;
		top: 46px;
		height: 40px;
		margin: 0;
		z-index: 2;
		width: 100%;
		margin: 0 -15px;
		background-color: #075aad;
	}

	.header .navigation a {
		color: #fff !important;
	}

	.header .logo {
		font-size: 20px;
	}

	.header .feedback-btn {
		width: 90px;
	}
}

@media (max-width: 768px) {

	.header .logo,
	.header .feedback-btn,
	.header .container-full {
		height: 46px;
	}

	.header .logo {
		font-size: 15px;
	}

	.header .feedback-btn {
		width: 70px;
	}

	.header .banner-image {
		height: 230px;
	}

	.footer .friendly-warp {
		grid-template-columns: 1fr 1fr;
		margin-bottom: 25px;
	}

	.forms {
		width: 90%;
	}
}

@media (max-width: 640px) {


	.header .logo {
		position: relative;
		z-index: 6;
	}

	.header .container-full {
		position: fixed;
		z-index: 999;
		width: 100%;
		background-color: #fff;
		padding-left: 10px;
	}

	#icon-menu {
		position: fixed;
		right: 0px;
		top: 0px;
		width: 46px;
		height: 46px;
		background: #004a94;
		display: flex;
		z-index: 1000;
		align-items: center;
		justify-content: center;
	}

	#icon-menu::before {
		content: 'Ⅲ';
		font-size: 26px;
		color: #fff;
		transition: 0.3s;
		transform: rotate(90deg);
	}

	#icon-menu.active::before {
		transition: 0.3s;
		content: 'Ⅹ';
		transform: rotate(0deg);
	}

	.header .navigation {
		display: block;
		position: fixed;
		top: 46px;
		left: 0;
		transition: 0.3s;
		width: 0;
		height: 0;
		transform: translateX(150vw);
		overflow: scroll;
		z-index: 1113;
		background: none;
	}

	.header .navigation a {
		height: 40px;
		line-height: 45px;
		font-size: 16px;
		display: none;
	}

	.header .navigation a span::before {
		content: "";
	}

	.header .navigation a:after {
		content: '➟';
		color: #605858;
		margin-left: 6px;
	}

	.header .navigation.active {
		width: 100vw;
		height: calc(100vh - 46px);
		transition: 0.3s;
		background-color: #fff;
		transform: translateX(30vw);
		box-sizing: content-box;
		padding: 20px 0 20px 40px;
		box-shadow: 3px 20px 10px 10px rgba(0, 0, 0, 0.084);
	}

	.header .navigation.active a {
		display: block;
		color: #121212 !important;
	}

	.content .image {
		max-width: 100%;
		margin-top: 0px;
	}

	.header .feedback-btn {
		display: none;
	}
}

@media (max-width: 480px) {
	.header .logo {
		font-size: 12px;
	}

	.footer .friendly-warp {
		grid-template-columns: 1fr;
	}

	.forms .item {
		width: 100%;
	}
}

/*# sourceMappingURL=style.css.map */