@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
@charset "UTF-8";

/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
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;
}
/* HTML5 display-role reset for older browsers */
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;
}



/**
 * Main
 */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	background-color: #FFFFFF;
	color: #000;
	line-height: 1.8;
	font-size: 16px;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden;
}

img {
	display: block;
	width: 100%;
	vertical-align: bottom;
}

a {
	color: #444444;
	text-decoration: none;
	transition-duration: 0.5s;
  	-moz-transition-duration:0.5s;
	-webkit-transition-duration:0.5s;
	-o-transition-duration:0.5s;
	-ms-transition-duration:0.5s;
}
a:hover,
#breadcrumb .home:hover {
	color: #AAAAAA;
  	transition-duration: 0.5s;
  	-moz-transition-duration:0.5s;
	-webkit-transition-duration:0.5s;
	-o-transition-duration:0.5s;
	-ms-transition-duration:0.5s;
}
a img:hover {
	opacity: 0.4;
  	transition-duration: 0.5s;
  	-moz-transition-duration:0.5s;
	-webkit-transition-duration:0.5s;
	-o-transition-duration:0.5s;
	-ms-transition-duration:0.5s;
}

a img {
	position:relative;
	-webkit-transition:opacity 0.5s; /*Safari,Chrome*/
	-o-transition       :opacity 0.5s; /*Opera*/
	-moz-transition   :opacity 0.5s; /*Firefox*/
	transition           :opacity 0.5s; /*CSS3 Real Property*/
}

.cf:after {
    content: " ";
    display: block;
    clear: both;
}
/*--------------------------------------------------------
↑RESET CSS
--------------------------------------------------------*/

.contact {
	max-width: 940px;
	width: 100%;
	margin: 0 auto;
}
h1 {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 0;
	font-weight: bold;
}
h1 img {
	display: block;
	width: 360px;
}
h1 span {
	font-size: 36px;
}
.require:after {
	display: inline-block;
	content: "必須";
	padding: 0 6px;
	color: #fff;
	font-size: 12px;
	background: #ff5a5a;
	border-radius: 4px;
}
.form-area {
	width: 760px;
	margin: 0 auto;
}
.formTbl {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.formTbl .info {
	color: #2e75a0;
	font-size: 14px;
}
.formTbl dl {
	display: flex;
	margin-bottom: 10px;
	padding: 16px 5%;
}
.formTbl dt {
	width: 22%;
	margin-right: 10px;
}
.formTbl dd {
    width: 78%;
}
.formTbl .rowOne input, .formTbl .rowOne textarea {
	width: 100%;
	padding-left: 4px;
	border: solid 1px #ddd;
	border-radius: 4px;
}
.formTbl .rowOne input {
    height: 32px;
}
.formTbl .radio_checkbox input {
	display: none;
}
.formTbl .radio_checkbox label {
	position: relative;
	margin-left: 16px;
	padding-left: 20px;
}
.formTbl .radio_checkbox input:first-child + label {
    margin-left: 0;
}
.formTbl input[type="radio"] + label:before,
.formTbl input[type="radio"] + label:after,
.formTbl input[type="checkbox"] + label:before,
.formTbl input[type="checkbox"] + label:after {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
}
.formTbl input[type="radio"] + label:before {
	left: 4px;
    margin-top: -6px;
    width: 10px;
    height: 10px;
    background: #2e75a0;
    border-radius: 50%;
    opacity: 0;
    z-index: 2;
}
.formTbl input[type="radio"] + label:after {
	left: 0px;
    margin-top: -10px;
    width: 16px;
    height: 16px;
    border: 1px solid #c1c1c1;
    border-radius: 50%;
    background: #fff;
}
.formTbl input[type="checkbox"] + label:before {
	left: 0px;
    margin-top: -10px;
    width: 15px;
    height: 15px;
	border: 1px solid #2e75a0;
    background: #2e75a0;
    border-radius: 4px;
    opacity: 0;
    z-index: 2;
}
.formTbl input[type="checkbox"] + label:after {
	left: 0px;
    margin-top: -10px;
    width: 16px;
    height: 16px;
    border: 1px solid #c1c1c1;
    border-radius: 4px;
    background: #fff;
}
.formTbl input[type="radio"]:checked + label:before,
.formTbl input[type="checkbox"]:checked + label:before {
	opacity: 1;
}
.formTbl input[type="radio"]:checked + label,
.formTbl input[type="checkbox"]:checked + label {
	color: #2e75a0;
}
.confirm_area {
	margin-bottom: 60px;
	text-align: center;
}
.submit-btn {
	padding: 10px 40px;
	color: #fff;
	font-size: 24px;
	background: #2e75a0;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: 0.5s;
}
.return-btn {
	padding: 10px 40px;
	color: #fff;
	font-size: 24px;
	background: #b06b6b;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: 0.5s;
}
.agree .submit-btn {
	background: #ccc;
	pointer-events: none;
}

.agree {
	position: relative;
}
h2 {
	padding: 20px 0;
	text-align: center;
	font-size: 20px;
}
.cboxs {
	margin-bottom: 26px;
	padding: 20px;
	background: #f1f1f1;
}
.cboxs .link {
	text-align: right;
}
.cboxs .link a {
	text-decoration-line: underline;
}
.agree label {
	display: block;
	margin-bottom: 20px;
	font-size: 20px;
	text-align: center;
}
.agree label:after, .agree label:before {
	position: absolute;
	display: block;
}
.agree label:after {
	content: "";
	bottom: 76px;
	left: calc(50% - 244px);
	width: 34px;
	height: 34px;
	border: 2px solid #c8cbcc;
	border-radius: 6px;
	background: #fff;
}
.agree label:before {
	font-family: FontAwesome;
	content: '\f00c';
	bottom: 68px;
	left: calc(50% - 240px);
	color: #2e75a0;
	font-size: 31px;
	opacity: 0;
	z-index: 100;
}
#ccon1[type="checkbox"] {
    display: none;
}
#ccon1[type="checkbox"]:checked + label:before {
	opacity: 1;
}
.agree label:hover:after {
	border-color: #2e75a0;
}
#ccon1[type="checkbox"]:checked ~ div .submit-btn {
	color: #fff;
	background: #2e75a0;
	pointer-events: auto;
}

.confirm .submit-box {
	padding: 20px;
}
.confirm dl {
	margin-bottom: 10px;
	padding: 0;
}
.confirm dt, .confirm dd {
	padding: 10px;
}
.confirm dt {
	background: #f6f6f6;
}
.confirm dd {
	background: #f2f2f2;
}
.no-confilm {
	text-align: center;
}
.no-confilm a {
	display: block;
	margin: 60px auto;
	width: 60%;
	max-width: 240px;
}
#footer {
	text-align: center;
}

@media (max-width: 760px) {
	.form-area {
		width: 100%;
		margin: 0;
		padding: 0 5%;
	}
	h1 {
		font-size: 28px;
		line-height: 1.4;
	}
	.formTbl dl {
		flex-direction: column;
	}
	.formTbl dt {
		width: auto;
		margin-bottom: 20px;
		padding-right: 0;
		font-size: 18px;
	}
	.formTbl dd {
		width: auto;
	}
	.agree label {
		padding-left: 60px;
    font-size: 16px;
		text-align: left;
	}
	.agree label:after {
		bottom: 94px;
		left: 12px;
	}
	.agree label:before {
		bottom: 85px;
		left: 16px;
	}
	.confirm .formTbl dl {
		display: block;
		border: solid 1px #ccc;
		border-radius: 4px;
		margin-bottom: 10px;
	}
	.confirm .formTbl dl dt {
    margin: 0;
    font-size: 14px;
	}
	.confirm .formTbl dd {
		background: #e7e7e7;
	}
	.confirm .submit-box {
		display: flex;
    flex-direction: column;
    align-items: center;
	}
	.confirm input {
		margin-bottom: 20px;
    width: 60%;
	}
	.no-confilm .submit-box p {
		margin-bottom: 40px;
	}
	.no-confilm .submit-btn {
		display: block;
		margin: 0 auto 40px;
		width: 60%;
	}
}