@charset "UTF-8";
/*
 * lib/css/reset.css
 *
*/
html {
	overflow-y: scroll;
}

fieldset, img {
	border: none;
	vertical-align: top;
}

ul, ol {
	list-style-type: none;
}

address, caption, cite, code, dfn, em, var {
	font-style: normal;
}

caption, th {
	text-align: left;
}

a {
	outline: none;
}

/*-----------------------------------------------------------
		余白初期設定
-----------------------------------------------------------*/
h1, h2, h3, h4, h5, h6,
html, body, div,
p, ul, ol, li, dl, dt, dd,
pre, blockquote,
form, fieldset, input, textarea,
table, th, td, figure {
	margin: 0;
	padding: 0;
}

/*-----------------------------------------------------------
		その他初期設定
-----------------------------------------------------------*/
q:before, q:after {
	content: '';
}

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

:root {
	color: #000;
}
@media (max-width: 1000px) {
	:root {
		-webkit-text-size-adjust: 100%;
		-moz-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
		text-size-adjust: 100%;
	}
}

body {
	color: #000;
	line-height: 1.5;
	font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-size: 14px;
}
@media (max-width: 1000px) {
	body {
		-webkit-text-size-adjust: 100%;
		-moz-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
		text-size-adjust: 100%;
		min-width: 640px;
		font-size: 24px;
	}
}

@media (max-width: 1000px) {
	#colorbox, #colorbox * {
		max-height: none;
	}

	#gnavi, #gnavi * {
		max-height: none;
	}

	img {
		max-height: none;
		max-width: 100%;
	}
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}

button, fieldset, form, input, label, legend, select, textarea {
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
}

a {
	text-decoration: none;
	-webkit-transition: opacity 0.8s;
	-o-transition: opacity 0.8s;
	transition: opacity 0.8s;
	color: #000;
}
@media (min-width: 1001px) {
	a:hover {
		color: #000;
		opacity: 0.5;
	}
	a:visited {
		color: #000;
	}
	a:active {
		text-decoration: none;
	}
}

[type=text], [type=email], [type=password], [type=number], textarea, select {
	padding: 5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #ddd;
	border-radius: 0px;
}

select {
	max-width: 100%;
	height: 2.5em;
	padding-right: 8%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0px;
	border: 1px solid #ddd;
	background: #fff url(../img/arrow.svg) 96% center no-repeat;
	background-size: 12px;
}

select::-ms-expand {
	display: none;
}

[type=text], [type=email], [type=password], [type=number], textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

[type=text]:focus, [type=email]:focus, [type=password]:focus, [type=number]:focus, textarea:focus {
	background: #fff;
	border: 1px solid #aaa;
}

input[type=checkbox] {
	display: none;
}

[type=checkbox] + label:before {
	content: "";
	display: inline-block;
	margin-right: 5px;
	height: 14px;
	width: 14px;
	background: #f9f9f9;
	border: 1px solid #3589B7;
	vertical-align: middle;
}

[type=checkbox]:checked + label:before {
	content: "\2713";
	font-size: 18px;
	font-weight: bold;
	line-height: 14px;
	text-indent: -3px;
	color: #000;
}

input[type=radio] {
	vertical-align: middle;
}

input[type=radio] + label {
	margin-left: 5px;
}

:placeholder-shown {
	color: #BABABA;
}

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
	color: #BABABA;
}

/* Firefox 18- */
:-moz-placeholder {
	color: #BABABA;
	opacity: 1;
}

/* Firefox 19+ */
::-moz-placeholder {
	color: #BABABA;
	opacity: 1;
}

/* IE 10+ */
:-ms-input-placeholder {
	color: #BABABA;
}

/*-----------------------------------------------------------
		基本レイアウト
-----------------------------------------------------------*/
body {
	background: #fff;
	overflow-x: hidden;
	padding-top: 120px;
}

.wrap {
	position: relative;
	width: 1100px;
	margin: 0px auto;
}
@media (max-width: 1000px) {
	.wrap {
		width: auto;
		margin: 0px 30px;
	}
}

.linkbox {
	cursor: pointer;
}
@media (min-width: 1001px) {
	.linkbox {
		-webkit-transition: opacity 0.8s;
		-o-transition: opacity 0.8s;
		transition: opacity 0.8s;
	}
	.linkbox:hover {
		opacity: 0.5;
	}
}

.sp {
	display: none;
}
@media (max-width: 1000px) {
	.sp {
		display: inherit;
	}
}

@media (max-width: 1000px) {
	.pc {
		display: none;
	}
}
/*----------------------- header --------------------------*/
header {
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	z-index: 1000;
	background: #739AD1;
}
header .logo {
	padding: 35px 35px 20px;
}
@media (max-width: 1000px) {
	header .logo {
		padding: 30px 0px 20px;
	}
	header .logo img {
		width: 190px;
	}
}
header .mail {
	position: absolute;
	right: 0px;
	top: 50px;
}
header #gnavi {
	position: absolute;
	right: 0px;
	top: 40px;
}
@media (max-width: 1000px) {
	header #gnavi {
		display: none;
	}
}
header #gnavi ul li {
	display: inline-block;
	margin-left: 1em;
}
header #gnavi ul li a {
	color: #fff;
}

/*----------------------- content --------------------------*/
#top {
	padding: 35px 0px 55px;
	background: #739AD1;
	text-align: center;
}
@media (max-width: 1000px) {
	#top {
		padding: 0px;
	}
}

#read, #feature, #point, #flow, #manual {
	text-align: center;
}

#manual .text {
	margin-bottom: 75px;
	padding: 1em 0px;
	color: #fff;
	background: #739AD1;
	font-size: 30px;
	font-weight: bold;
}

#contact {
	padding-top: 75px;
	padding-bottom: 60px;
}
#contact h2 {
	padding: 0px 0px 40px;
	text-align: center;
}
#contact .box {
	margin-bottom: 40px;
}
#contact .box .read {
	margin-bottom: 1em;
	font-size: 16px;
	line-height: 2;
}
@media (max-width: 1000px) {
	#contact .box .read {
		margin-bottom: 0.3em;
		font-size: 24px;
	}
}
#contact .box table {
	width: 100%;
}
#contact .box table th, #contact .box table td {
	padding: 10px 0px;
	font-size: 14px;
}
@media (max-width: 1000px) {
	#contact .box table th, #contact .box table td {
		display: block;
		font-size: 24px;
		padding-bottom: 20px;
	}
}
#contact .box table th {
	width: 12em;
	vertical-align: top;
	font-weight: normal;
}
@media (max-width: 1000px) {
	#contact .box table th {
		width: auto;
		border: none;
		padding-bottom: 0px;
		padding-top: 20px;
	}
}
#contact .box table .required {
	color: #739AD1;
}
#contact .box table tr:last-child th, #contact .box table tr:last-child td {
	border: none;
	padding-bottom: 0px;
}
#contact .box table .title {
	font-weight: bold;
}
@media (max-width: 1000px) {
	#contact .box table .title {
		margin-bottom: 0px;
		padding-top: 20px;
	}
}
#contact .box table th span, #contact .box table .title span {
	font-weight: normal;
	margin-left: 1em;
}
#contact .box table [type=text] {
	width: 80%;
	background: #f2f2f2;
}
@media (max-width: 1000px) {
	#contact .box table [type=text] {
		width: 100%;
	}
}
#contact .box table #zip {
	width: 8em;
	margin-left: 0.5em;
}
#contact .box table .zipbtn {
	margin-left: 10px;
	display: inline-block;
	padding: 0.4em 1em;
	background: #739AD1;
	color: #fff;
}
#contact .box table dl dt, #contact .box table dl dd {
	float: left;
	margin-top: 10px;
}
@media (max-width: 1000px) {
	#contact .box table dl dt, #contact .box table dl dd {
		float: none;
	}
}
#contact .box table dl dt {
	clear: both;
	width: 90px;
	padding-top: 0.3em;
}
@media (max-width: 1000px) {
	#contact .box table dl dt {
		width: auto;
	}
}
#contact .box table dl dd {
	width: 520px;
}
@media (max-width: 1000px) {
	#contact .box table dl dd {
		width: auto;
	}
}
#contact .box table dl dd [type=text] {
	width: 100%;
}
#contact .box table p {
	margin-bottom: 0.5em;
}
#contact .box table ul li {
	margin-top: 10px;
}
@media (max-width: 1000px) {
	#contact .box table ul li {
		width: 100%;
		margin-top: 20px;
	}
	#contact .box table ul li input {
		width: 100%;
	}
}
#contact .box table textarea {
	width: 100%;
	min-height: 14em;
	margin-top: 0.5em;
}
#contact .send {
	text-align: center;
}
#contact .send button, #contact .send a {
	display: inline-block;
	width: 570px;
	border: none;
	padding: 1em 0px;
	line-height: 1;
	color: #fff;
	background: #739AD1;
	font-weight: bold;
	font-size: 24px;
	letter-spacing: 0.1em;
}
@media (max-width: 1000px) {
	#contact .send button, #contact .send a {
		display: block;
		width: auto;
	}
}

.error {
	margin-bottom: 20px;
	border: 4px double #c00;
	padding: 20px;
	color: #c00;
}

#complete {
	padding: 0px 40px;
	text-align: center;
}
#complete h2 {
	padding-top: 120px;
	margin-bottom: 1em;
	font-size: 28px;
	color: #739AD1;
}
#complete p {
	margin-bottom: 2em;
	font-size: 16px;
	line-height: 1.8;
}
@media (max-width: 1000px) {
	#complete p {
		font-size: 24px;
	}
}
#complete .send {
	text-align: center;
}
#complete .send button, #complete .send a {
	display: inline-block;
	width: 570px;
	border: none;
	padding: 1em 0px;
	line-height: 1;
	color: #fff;
	background: #739AD1;
	font-weight: bold;
	font-size: 24px;
	letter-spacing: 0.1em;
}
@media (max-width: 1000px) {
	#complete .send button, #complete .send a {
		display: block;
		width: auto;
	}
}

/*----------------------- footer --------------------------*/
footer {
	background: #f2f2f2;
}
footer .copy {
	padding: 2em 0px;
	line-height: 1;
	text-align: center;
}
@media (max-width: 1000px) {
	footer .copy {
		font-size: 18px;
	}
}

/*-----------------------------------------------------------
	クリアフィックス
-----------------------------------------------------------*/
.clearfix:after {
	content: "";
	display: block;
	clear: both;
	height: 0px;
	visibility: hidden;
}

* html .clearfix {
	zoom: 1;
}

*:first-child + html .clearfix {
	zoom: 1;
}



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