@charset "EUC-JP";
@import url(https://use.fontawesome.com/releases/v5.10.1/css/all.css);

body{
	font-family:"M PLUS 1p", sans-serif;
	font-size: 16px;
	font-weight:400;
    color: #000;/*ベース文字色*/
    background-color: #efefef;/*ベース背景色*/
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
form{ margin:0; }
h1,h2,h3,h4,h5,h6,th { font-weight:700; }
strong,.bold{ font-weight:700; }
.tbig{font-size:120%;}
img { line-height:0; }
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
.inputCancel * {
	border:none;
	background:none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}/*フォームクリア*/
select::-ms-expand {
    display: none;
}/*IE用フォームクリア*/
.word {
	display: inline-block;
}
/*content*/
#container {
	padding: 0 2.5% 1px;
    background: #fff;/*コンテンツ背景色*/
}
.mainTtl {
	font-size: 2em;
    background: #202d3b;/*コンテンツ背景色*/
    text-align: center;
    padding: 12px 10px;
    color: #fff;
    font-weight: 900;
	margin-bottom: 20px;
}
.subTtl {
    position: relative;
    padding: 10px 5px 10px 2em;
    line-height: 1.5em;
    font-size: 1.14em;
    font-weight: bold;
    margin: 15px auto;
    background: #ffcd00;/*タイトル背景色*/
    color: #22395c;/*タイトル文字色*/
    border-radius: 7px;
}
.subTtl:before {
    position: absolute;
    top: 50%;
    left: 9px;
    content: '';
    width: 12px;
    height: 12px;
	 background: #fff;
    border-radius: 10px;
    box-shadow: 1px 1px 1px rgba(0,0,0,.25) inset;
inset;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 1;
}
.pt-t-com {
    line-height: 1.75em;
    margin-top: 8px;
    letter-spacing: .075em;
    color: #000;
	word-break : break-all;
	word-wrap: break-word;
}
/*sub*/
#tflow {
	display: flex;
	display: -webkit-flex;
    margin: 20px 0;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    font-size: 1.14em;
    color: #18719e;/*文字の色*/
}
.sFlow {
    width: 30%;
    height: 71px;
    font-size: .92em;
    padding: 5px;
    border-radius: 10px;
    border: 2px solid #18719e;/*枠の色*/
    margin: 10px 0;
    line-height: 1.25em;
    font-weight: bold;
}
.sF-icon {
    font-size: .75em;
    display: block;
}
.sFlow.active {
	background-color: #18719e;/*選択時の色-枠と同じ色*/
	color: #fff;
}
.sFlow.active .sF-icon {
	color: #FFEB3B;/*stepの選択時文字色*/
}
.triangle-right {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9.5px 0 9.5px 10px;
    margin: 5px;
    border-color: transparent transparent transparent #bbb;/*矢印の色*/
}
/*form*/
.contactbox {
    margin: 20px auto 60px;
}
.reqTtl {
    position: relative;
    font-size: 1.33em;
    font-weight: bold;
    margin: 30px 0 15px;
    padding: 10px;
	background-color: #22395c;/*フォームタイトル背景色変更可能*/
    color: #fff;/*文字色変更可能*/
}
.reqTtl:before {
    content: "";
    position: absolute;
    left: 5px;
    bottom: -10px;
    width: 0;
    height: 0;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: 10px solid #22395c;/*吹き出しの色*/
}
.t-contact {
	display: flex;
	display: -webkit-flex;
	flex-flow: column wrap;
	-webkit-flex-flow: column wrap;
	padding: 20px 5%;
    line-height: 1em;
    margin: 10px 0.5%;
	border-radius: 5px;
	background: #f2f2f2;/*フォーム背景*/
}
.subttl {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	align-items: center;
	-webkit-align-items:center;
    width: 100%;
    font-size: 1.08em;
    font-weight: bold;
    margin-bottom: 10px;
}
.required,
.arbitrary {
	display: inline-block;
    background: #D04E2E;
    color: #fff;
    padding: 4px .5em;
    font-size: .79em;
}
.arbitrary {
    background-color: #888;
}
.t-contact td {
	display: inline-block;
    padding: 5px 6px 5px 0;
	min-width: 50%;
}
.t-cbox {
	width:45%;
}
.t-box,
.tbox {
    width: 100%;
}
textarea {
    width: 100%;
}
.tbox {
	font-size:1.07em;
}
.tBox {
    line-height: 1.5em;
}
.miTxt {
    letter-spacing: .1em;
    margin: 10px 0;
    font-weight: bold;
	color: #2d415a;/*フォーム見出し文字色*/
}
.btnSearch {
    display: inline-block;
    width: 80%;
	font-size: 1.33em;
	text-align: center;
    border-radius: 5px;
    padding: 8px 0 6px;
	margin: 20px auto;
    background-color: #233a5b;/*送信ボタン色*/
	color: #fff;
	font-size: 1.28em;
    line-height: normal;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
}
.btnSearch:hover {
	background-color: #ffcd00;
}
.btnReset {
    display: block;
	color: #fff;
    vertical-align: top;
    font-weight: bold;
    cursor: pointer;
    background: #aaa;
    width: 45%;
    padding: 5px 10px;
    margin: 10px auto;
    border-radius: 5px;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
}
.btnReset:hover {
    background-color: #777;
}
.a02 {
    color: #33a0a7;
}
.a02:hover {
    color: #666;
    text-decoration: none;
}
.sentBox {
    padding: 20px 4%;
    width: 100%;
    margin: auto;
    line-height: 1.7em;
    font-size: 1.07em;
    border-radius: 5px;
    background: #e9f7e6;
    border: 1px solid #e0efdd;
    margin-bottom: 60px;
}
.thankImg img {
	max-width:100%;
}
.error_msg {
    color: #b94a48;
    background: #ffeaea;
    font-size: 1.13em;
    line-height: 1.6em;
    padding: 20px 0;
}
/*input*/
label {
    vertical-align: middle;
	padding: 3px 3px 3px 5px;
}
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="number"],
input[type="email"],
input[type="password"],
.contactbox textarea {
	width:100%;
	min-height: 39px;
	box-sizing: border-box;
	padding: 10px 5px;
	border-radius:3px;
	font-size: 14px;
    border: 1px solid #d2d2d2;
    vertical-align: middle;
	background-color: #fff;
	color: #333;
}
textarea {
	resize: vertical;
}
/*チェック系*/
input[type="checkbox"]:focus,
input[type="radio"]:focus {
	outline: 0;
	border: none;	
}
input[type="checkbox"]:checked:focus,
input[type="radio"]:checked:focus {
    border: none;
	outline: 0;
}
input[type="checkbox"]:checked, 
input[type="radio"]:checked {
    background: #005b88;/*選択時の色*/
    border: 2px solid #005b88;/*選択時の色*/
}
input[type="checkbox"]:focus,
input[type="radio"]:focus {
	outline: 0;
	border: 2px solid #ccc;	
}
input[type="checkbox"]:checked:focus,
input[type="radio"]:checked:focus {
    border: 2px solid #005b88;/*選択時の色*/
}
/*input[type="radio"] */
input[type="radio"] {
    position: relative;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    border: 2px solid #ccc;
    box-sizing: border-box;
    width: 22px;
    height: 22px;
    background-color: #fff;
    cursor: pointer;
}
input[type="radio"]:checked:before {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    margin: -5px 0 0 -5px;
    content: "";
    border-radius: 100%;
    -webkit-border-radius: 100%;
    width: 10px;
    height: 10px;
    background: #fff;
}
/*input[type="checkbox"]*/
input[type="checkbox"] {
    position: relative;
    width: 22px;
    height: 22px;
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
}
input[type="checkbox"]:checked:after {
    position: absolute;
    content: '';
	top: 4px;
    left: 3px;
    width: 12px;
    height: 7px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/*----------smp only------------*/
@media screen and (max-width: 768px) {
	.selectWrapper,
	.selectWrapper2 {
		position: relative;
		display: block;
	}
}
/*PC表示*/
@media screen and (min-width: 781px){
.sp_view {
	display: none !important;
}
#container {
    width: 1100px;
    margin: auto;
	padding: 0 0 1px;
}
.aboutTxt {
	width: 88%;
	margin: auto;
}
.subTtl {
    padding: 15px 2em;
    font-size: 1.40em;
    line-height: 1.25em;
    margin: 30px auto 15px;
}
#tflow {
    margin: 20px;
    font-size: 1.29em;
}
.sFlow {
	font-size:0.9em;
    min-width: 180px;
	width: 10%;
    padding: 10px;
    margin: 0 10px;
}
.triangle-right {
	border-width: 12.5px 0 12.5px 21.7px;
}
/*form*/
.contactbox {
    padding: 1px 30px 20px;
    margin: 10px auto 20px;
	width: 80%;
}
.t-contact {
	flex-flow: row nowrap;
	-webkit-flex-flow: row nowrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	padding: 20px;
    font-size: 1.08em;
}
.subttl {
    width: 28%;
    font-size: 1em;
    margin-bottom: 0;
}
.miTxt {
    margin: 0 0 10px;
}
.t-contact td {
    width: 25%;
    min-width: initial;
}
.t-c-table td {
	min-width: 40%;
}
.t-cbox {
	width:20%;
}
.t-box,
.tbox {
    width: 68%;
}
.required, .arbitrary {
    padding: 3px 4px;
}
.btnSearch {
	font-weight: bold;
	cursor: pointer;
    width: 45%;
    margin: 20px auto;
}
.btnReset {
    width: 15%;
    margin: 0px auto 10px;
}
.sentBox {
    padding: 20px 30px;
}
.error_msg {
    padding: 20px 0;
}
.m2m3 {
	margin: 20px auto 40px;
}
/*input*/
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="password"],
input[type="number"],
.contactbox textarea {
	width: 85%;
}
input[type="date"] {
	width: auto;
}
input[type="checkbox"]:focus,
input[type="radio"]:focus,
label {
	cursor: pointer;
}
input[type="date"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="email"],
select,
textarea {
	outline: none;
	-webkit-transition: all .2s;
	transition: all .2s;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 5px #79c3ce;
    border: 1px solid #c1e9ef;
}/*input選択時のフォームの枠色*/
}
/*IE*/
@media all and (-ms-high-contrast:none){
	body{
		font-size: 13px;
	}
}
/*pc-smp-allclass*/
.small {
    font-size: .86em;
}
.page_c { text-align:center; }
.m10 { margin: 10px auto 15px;}
.m20 { margin: 20px auto;}
.m2m3 {
	margin: 15px auto 25px;
}
.pt10 {
	padding-top: 10px;
	line-height:140%;
}
.red { color:#f70a14; }
.msg {
    font-size: 1.08em;
    line-height: 1.5em;
    padding: 8px 13px;
    color: #d35028;
    font-weight: bold;
    border: 3px solid;
    border-radius: 10px;
    margin: 20px 0;
}
.select02{
	min-width:110px;
	padding: 6px 30px 6px 10px;
	font-size:1.0em;
	border: solid 1px #C1C1C1;
	background-color: #fff;
}
.select02:after{
	display:inline-block;
    font-family: "Font Awesome 5 Free";
    content: '\f560';
	font-weight:900;
    color:#027ECF;
    margin:0px 7px 0px 0px;
}
.sw30 {
	width: 30%;
}
.tw30-r {
    display: inline-block;
	width: 60%;
    padding-left: 10px;
}
@media screen and (max-width:800px){
	#container {
		width:100%;
	}
	.contactbox {
		width: 100%;
	}
	.sFlow {
		font-size:1.1em;
	}
	input[type="text"],
	input[type="tel"],
	input[type="url"],
	input[type="date"],
	input[type="number"],
	input[type="email"],
	input[type="password"],
	.contactbox textarea {
		width:94%;
	}
	.tw30-r {
		width: 100%;
	}
}
@media screen and (max-width:600px){
	.sFlow {
		font-size:1.0em;
	}
	.mainTtl{
		font-size:1.8em;
	}
}
@media screen and (max-width:480px){
	.sw30 {
		width:100%;
	}
	.sFlow {
		font-size: 0.9em;
	}
}
@media screen and (max-width:420px){
	input[type="text"],
	input[type="tel"],
	input[type="url"],
	input[type="date"],
	input[type="number"],
	input[type="email"],
	input[type="password"],
	.contactbox textarea {
		width:90%;
	}
}