/*--------------------------------------------------*/
/* 全ページフォームリセット */
/*--------------------------------------------------*/

input[type='text'],
input[type='email'],
input[type='textarea'],
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
	font-size: 16px;
}
/*
input[type="radio"],
input[type="checkbox"] {
	position: relative;
	border: solid 1px #666666;
	background: #ffffff;
	width: 16px;
	height: 16px;
	overflow: hidden;
	margin-bottom: -2px;
}
input[type="radio"]:checked::after{
	position: absolute;
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background-color: #666666;
	top: 2px;
	left: 2px;
	border-radius: 8px;
}
input[type="checkbox"]:checked::after {
	position: absolute;
	content: "";
	display: block;
	width: 20px;
	height: 2px;
	background-color: #666666;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(-45deg);
}
input[type="radio"] {
	border-radius: 16px;
}
input[type="file"] {
	color: #333333;
}
*/
select {
	cursor: pointer;
	color: #333333;
}
select::-ms-expand {
	display: none;
}
input[type='submit'] {
	cursor: pointer;
}

/* 入力フォーム */
input[type='text'],
input[type='email'],
select,
textarea {
	background-color: #ffffff;
	border: 1px solid #cccccc;
	padding: 15px;
	max-width: 100%;
	line-height: 1.75;
}
input[type='text']:focus,
input[type='email']:focus,
select:focus,
textarea:focus {
	border-color: #cccccc;
}
input[type='text'],
input[type='email'],
textarea {
	width: 100%;
}
::placeholder {
	color: #cccccc;
}
.address select {
	background-image: url("../img/common/select.png");
	background-position: right 15px top 50%;
	background-repeat: no-repeat;
	width: 240px;
}
.error {
	color: #ff0000;
	font-size: 14px;
}
.mw_wp_form .horizontal-item {
	margin-right: 10px;
}
.mw_wp_form .horizontal-item + .horizontal-item {
	margin-left: 0 !important;
}
@media (max-width: 767px) {
	input[type='text'],
	input[type='email'],
	select,
	textarea {
		padding: 10px;
	}
	.address select {
		width: 100%;
	}
}


/*--------------------------------------------------*/
/* ページ別css */
/*--------------------------------------------------*/
/*CONTACT*/
/*お問合せ*/
/*試作・テスト・お見積りのご依頼・ご相談*/
/*--------------------------------------------------*/

/*ページヘッダー*/
.contact-page .page-header-type2 .page-title-wrap {
	padding-bottom: 50px;
}
.contact-page .page-header-type2 .page-title-wrap .page-title {
	padding-top: 10px;
}
.contact-page .page-header-type2 .page-title-wrap .supple {
    font-size: 24px;
    font-weight: bold;
    margin-top: 25px;
}
@media (max-width: 575px) {
	.contact-page .page-header-type2 .page-title-wrap {
		padding-bottom: 50px;
	}
	.contact-page .page-header-type2 .page-title-wrap .supple {
		font-size: 16px;
	}
}

/*導入文*/
.contact-page .introduce-sec .sec-title {
	position: relative;
	margin-bottom: 0;
}
.contact-page .introduce-sec .sec-title::after {
    content: "";
    display: block;
    border-top: solid 10px #216ebc;
    border-right: solid 15px transparent;
    border-left: solid 15px transparent;
    width: 30px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

/*コンテンツ基本*/
.contact-page .contact-body {
    padding: 100px 0 130px;
}
.contact-page .contact-body > .container {
	max-width: 880px;
}
@media (max-width: 991px) {
	.contact-page .contact-body {
		padding: 70px 0 100px;
	}
}

/*コンテンツタイトル*/
.contact-page .contact-body .simple-title01 {
    margin: 90px 0 15px;
}
.contact-page .contact-body .simple-title01:first-child {
    margin-top: 0;
}
@media(max-width:575px){
	.contact-page .contact-body .simple-title01 {
	    margin: 60px 0 10px;
	}
}

/*コンテンツイメージ*/
.contact-page .contact-body .img-area {
    margin: 70px 0 90px;
}
@media(max-width:575px){
	.contact-page .contact-body .img-area {
		margin: 40px 0 60px;
	}
}

/*コンテンツフロー*/
.contact-page .contact-body .flow {}
.contact-page .contact-body .flow dl {
	display: flex;
	align-items: center;
	background-color: #ECEEEF;
	padding: 20px 30px;
	margin: 0;
}
.contact-page .contact-body .flow dl + dl {
	position: relative;
	margin-top: 40px;
}
.contact-page .contact-body .flow dl + dl::before {
    content: "";
    display: block;
    border-top: solid 10px #216ebc;
    border-right: solid 15px transparent;
    border-left: solid 15px transparent;
    width: 30px;
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
}
.contact-page .contact-body .flow dl dt {
	flex-basis: 230px;
	flex-shrink: 0;
	flex-grow: 0;
	font-size: 20px;
	font-weight: bold;
}
.contact-page .contact-body .flow dl dd {
	flex-grow: 1;
	font-size: 15px;
	
}
.contact-page .contact-body .flow dl.dt-center {
	justify-content: center;
	text-align: center;
	
}
@media(max-width:575px){
	.contact-page .contact-body .flow dl {
		display: block;
		padding: 20px;
	}
	.contact-page .contact-body .flow dl dt {
		font-size: 16px;
		text-align: center;
	}
	.contact-page .contact-body .flow dl dd {
		font-size: 13px;
		margin-top: 10px;
	}
}

/*フォームセクション*/
.contact-page .contact-form-sec {
	background-color: #ECEEEF;
	padding: 90px 0 150px 0;
}
@media (max-width: 991px) {
	.contact-page .contact-form-sec {
		padding-top: 60px;
	}
}

/*フォームセクションタイトル*/
.contact-page .contact-form-sec .sec-title {
	position: relative;
	margin-bottom: 100px;
}
.contact-page .contact-form-sec .sec-title::after {
    content: "";
    display: block;
    border-top: solid 10px #216ebc;
    border-right: solid 15px transparent;
    border-left: solid 15px transparent;
    width: 30px;
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 991px) {
	.contact-page .contact-form-sec .sec-title {
		margin-bottom: 70px;
	}
}

.contact-page .contact-form-sec > .container {
	max-width: 1080px;
}
.contact-page .contact-form-sec .hassquare-title02 {
	margin: 2.5em 0 2em 0;
}

/*フォーム基本*/
.contact-page .contact-form-sec .mw_wp_form {}
.contact-page .contact-form-sec .mw_wp_form form {}
.contact-page .contact-form-sec .mw_wp_form form > dl {
	display: flex;
	margin-bottom: 30px;
}
.contact-page .contact-form-sec .mw_wp_form form > dl > dt {
	flex-basis: 200px;
	max-width: 200px;
	flex-shrink: 0;
	flex-grow: 0;
	padding: 15px 1em 15px 0;
}
.contact-page .contact-form-sec .mw_wp_form form > dl > dd {
	flex-basis: calc(100% - 200px);
	max-width: calc(100% - 200px);
}
.contact-page .contact-form-sec .mw_wp_form .hascircle-title02 {
	margin-bottom: 40px;
}
.contact-page .contact-form-sec .mw_wp_form p.small {
	font-size: 87.5%;
	margin-bottom: 40px;
}
.contact-page .contact-form-sec .mw_wp_form form > dl > dd p {
	margin: 0;
}
.contact-page .contact-form-sec .mw_wp_form form > dl > dd p.small {
	margin: 0.5em 0 0 0;
}
.contact-page .contact-form-sec .mw_wp_form .overview {
    width: 430px;
    background-image: url("../img/common/select.png");
    background-repeat: no-repeat;
    background-position: top 50% right 10px;
    padding-right: 30px;
}
.contact-page .contact-form-sec .mw_wp_form .error {
	color: #ff0000;
}
.contact-page .contact-form-sec .mw_wp_form .policy-wrap {
    text-align: center;
	margin: 50px 0 40px;
}
.contact-page .contact-form-sec .mw_wp_form .btn-wrap {
	text-align: center;
}
.contact-page .contact-form-sec .mw_wp_form .btn-wrap input {
	display: inline-block;
	margin: 5px;
    padding: 6px 20px;
    border-radius: 80px;
    width: 360px;
    height: 80px;
	max-width: 100%;
    text-align: center;
    cursor: pointer;
    color: #ffffff;
    background-color: #216EBC;
    border: solid 1px #216EBC;
}
.contact-page .contact-form-sec .mw_wp_form .btn-wrap input.btn-prev {
    color: #ffffff;
    background-color: #000000;
    border: #000000;
}
@media(max-width:767px){
	.contact-page .contact-form-sec .mw_wp_form .content-dl {
		display: block;
	}
	.contact-page .contact-form-sec .mw_wp_form .content-dl > dt {
		max-width: 100%;
	}
	.contact-page .contact-form-sec .mw_wp_form .content-dl > dd {
		max-width: 100%;
	}
}
@media(max-width:575px){
	.contact-page .contact-form-sec .mw_wp_form form {
		font-size: 14px;
	}
	.contact-page .contact-form-sec .mw_wp_form form > dl {
		display: block;
		margin-bottom: 0;
		padding: 15px 0;
		border-top: solid 1px #cccccc;
		border-bottom: solid 1px #cccccc;
	}
	.contact-page .contact-form-sec .mw_wp_form form > dl + dl {
		border-top: 0;
	}
	.contact-page .contact-form-sec .mw_wp_form form > dl > dt {
	    max-width: 100%;
		padding: 0;
		margin-bottom: 10px;
	}
	.contact-page .contact-form-sec .mw_wp_form form > dl > dd {
		max-width: 100%;
	}
	.contact-page .contact-form-sec .mw_wp_form .hascircle-title02 {
		margin: 40px 0 20px;
	}
	.contact-page .contact-form-sec .mw_wp_form p.small {
		margin-bottom: 20px;
	}
	.contact-page .contact-form-sec .mw_wp_form .btn-wrap input {
		height: 60px;
	}
}
/*確認画面*/
.contact-page .contact-form-sec .mw_wp_form_preview form > dl > dd {
	padding: 15px 0;
}
.contact-page .contact-form-sec .mw_wp_form_preview .upload-dd .capacity {
	 display: none;
}
@media(max-width:575px){
	.contact-page .contact-form-sec .mw_wp_form_preview form > dl > dt {
		font-weight: bold;
	}
	.contact-page .contact-form-sec .mw_wp_form_preview form > dl > dd {
		padding: 0;
	}
}

/*ファイルアップロードボタンカスタマイズ*/
.contact-page .contact-form-sec .mw_wp_form .upload-dd {
	display: flex;
	align-items: center;
	padding: 15px 0;
}


/*ファイルアップロードボタンカスタマイズ
.contact-page .contact-form-sec .mw_wp_form .upload-dd .capacity {
    display: inline-block;
}
.contact-page .contact-form-sec .mw_wp_form input#upload {
    display: none;
}
.contact-page .contact-form-sec .mw_wp_form .upload-label .uplord-btn {
	display: inline-block;
    padding: 6px 20px;
    color: #333333;
    background-color: #FFFFFF;
	border: solid 1px #CCCCCC;
	border-radius: 40px;
	width: 200px;
	text-align: center;
    cursor: pointer;
}

.contact-page .contact-form-sec .mw_wp_form .upload-label .file-name {
    margin: 10px 0 0 0;    
}
@media(max-width:575px){
	.contact-page .contact-form-sec .mw_wp_form .upload-label {
		margin-top: 0;
	}
}*/

.contact-page .contact-form-sec .mw_wp_form .confirm-only {
	display: none;
}

/*確認画面*/
.contact-page .contact-form-sec .mw_wp_form_preview .upload-label {
	 display: none;
}
.contact-page .contact-form-sec .mw_wp_form_preview .mw-wp-form_file > a {
	text-decoration: underline;
	color: #216ebc;
}
.contact-page .contact-form-sec .mw_wp_form_preview .confirm-none {
	display: none;
}
.contact-page .contact-form-sec .mw_wp_form.mw_wp_form_preview .confirm-only {
	display: block;
}

/*送信完了画面*/
.contact-page .contact-form-sec.bg-white {
	background-color: #ffffff;
}

/*--------------------------------------------------*/
/* ページ別css */
/*--------------------------------------------------*/

.contact-page + .foot-contact {
	display: none;
}
