@charset "UTF-8";
html {
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 62.5%;
}

body {
	-webkit-text-size-adjust: 100%;
	font-size: 1.6rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6, li, p, span, small, select, label, input, textarea {
	color: #333;
}

a {
	text-decoration: none;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

@media screen and (max-width: 768px) {
	.spNewLine {
		display: block;
	}
}

/* 中央寄せ */
.contentsCenter,
.contentCenter {
	min-width: 1000px;
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 60px;
}

.contentCenter {
	max-width: 1100px;
}

@media screen and (max-width: 768px) {
	.contentsCenter,
	.contentCenter {
		min-width: 100%;
		padding: 0 25px;
	}
}

/* button */
.button {
	display: inline-block;
	width: 100%;
	padding: 15px 10px;
	background-color: #003365;
	color: #fff;
	font-size: 1.6rem;
	text-align: center;
}

.button.commonBtn {
	max-width: 350px;
}

.button.headerBtn {
	max-width: 230px;
	padding: 12px 10px;
	font-size: 1.5rem;
}

.button.smallBtn {
	 max-width: 260px;
}

.button.footBtn {
	max-width: 460px;
}

.button__icon {
	display: inline-block;
	position: relative;
	color: #fff;
}

.button__icon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(-135deg);
	width: 10px;
	height: 10px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}

.button__icon.nextIcon {
	/* padding-right: 20px; */
	padding-right: 0px;
}

.button__icon.nextIcon::before {
	left: auto;
	right: 3px;
	transform: translateY(-50%) rotate(45deg);
}

div.button.footBtn .button__icon::before {
	content: none;
}

/* div.button {
	background-color: #3e3e3e;
} */

.buttonWrap {
	display: flex;
	justify-content: center;
}

@media screen and (max-width: 768px) {
	.button.commonBtn {
		max-width: 300px;
	}

	.button.headerBtn {
		display: none;
	}

	.buttonWrap {
		margin: 0 10px;
		text-align: center;
	}
}

/* header */
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
	min-width: 1000px;
	padding: 0 50px;
}

.header__logo {
	line-height: 1;
}

.header__logoImg {
	width: 100%;
}

@media screen and (max-width: 768px) {
	.header {
		justify-content: center;
		min-width: 100%;
		height: 60px;
	}

	.header__logoImg {
		max-width: 275px;
	}
}

/* footer */
.footer {
	position: relative;
	min-width: 1000px;
	margin-top: 150px;
	padding: 40px 0 35px;
	background-color: #f0f0f0;
}

.footer__inner {
	min-width: 1000px;
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 50px;
}

.footer__top {
	position: relative;
}

.footer__topImg {
	position: absolute;
	top: 0;
	left: 0;
}

.footer__topText {
	padding: 0 120px;
	font-size: 1.4rem;
	text-align: center;
}

.footer__btmImg {
	display: block;
	max-width: 100%;
	margin: 30px auto 15px;
}

.copyright {
	display: block;
	font-size: 1.4rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.footer {
		min-width: 100%;
		margin-top: 75px;
		padding: 35px 0 30px;
	}

	.footer__inner {
		min-width: 100%;
		padding: 0 25px;
	}

	.footer__top {
		display: flex;
		align-items: center;
    justify-content: center;
	}

	.footer__topImg {
		position: static;
		width: 52.5px;
	}

	.footer__topText {
		margin-left: 20px;
		padding: 0;
		font-size: 1.2rem;
		text-align: left;
	}

	.footer__btmImg {
		margin: 40px auto 10px;
	}
	
	.copyright {
		font-size: 1rem;
	}
}

/* pagetop */
.pagetop {
	position: fixed;
	right: 50px;
	bottom: 30px;
	height: 60px;
	z-index: 500;
}

.pagetop__button {
	width: 60px;
	height: 60px;
	background-color: #fff;
	border: 1px solid #003365;
}

.pagetop::before {
	content: '';
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	width: 21px;
	height: 21px;
	border-top: 1px solid #003365;
	border-right: 1px solid #003365;
	cursor: pointer;
}

@media screen and (max-width: 768px) {
	.pagetop {
		position: fixed;
		right: 15px;
		bottom: 10px;
		height: 50px;
	}
	
	.pagetop__button {
		width: 50px;
		height: 50px;
	}
	
	.pagetop::before {
		width: 15px;
		height: 15px;
	}
}

/* main */
.main__formTitle {
	min-width: 1000px;
	margin-bottom: 60px;
	padding: 45px 60px;
	background-color: #003365;
	color: #fff;
	font-size: 2.6rem;
	font-weight: bold;
	text-align: center;
}

.main__text {
	margin-bottom: 100px;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.main__formTitle {
		min-width: 100%;
		margin-bottom: 40px;
		padding: 25px;
		font-size: 2rem;
	}

	.main__text {
		font-size: 1.2rem;
	}
}
.btn-end{
	background-color: #3e3e3e;
}