@charset "utf-8";

@media only screen and (max-width:991px) {}
@media only screen and (max-width:767px) {}
@media only screen and (max-width:374px) {}

/*************************************************

 index

*************************************************/

.mw_wp_form_input .conf_view,
.mw_wp_form_confirm .input_view,
.mw_wp_form_confirm #contactForm .formBody dl dt.required label::after,
.mw_wp_form_confirm #contactForm .formBody dl dd.name label {
	display: none !important;
}
.mw_wp_form_confirm .conf_view,
.mw_wp_form_input .input_view {
	display: block;
}



.partsBtn01 {
	width: 70%;
	max-width: 300px;
	margin: 0 auto;
	background-color: #F15A24;
	box-shadow: 0px 2px #ccc;
}

.lineListStyle1,
.lineListStyle2,
.lineListStyle3,
.lineListStyle4{
	display: table;
	table-layout: fixed;
	border-collapse:collapse;
	width: 100% !important;
}
.lineListStyle1 > li,
.lineListStyle2 > li,
.lineListStyle3 > li,
.lineListStyle4 > li,
.lineListStyle1 > dt,
.lineListStyle2 > dt,
.lineListStyle3 > dt,
.lineListStyle4 > dt,
.lineListStyle1 > dd,
.lineListStyle2 > dd,
.lineListStyle3 > dd,
.lineListStyle4 > dd{
	display: table-cell;
	vertical-align: top;
}

.lineListStyle1{
	border-bottom: 1px #ccc solid;
}
.lineListStyle1 > dt,
.lineListStyle1 > dd,
.lineListStyle1 > li{
	padding-top: 1em;
	padding-bottom: 1em;
	padding-left: 1em;
	padding-right: 1em;
}
@media only screen and (max-width:767px) {
	.lineListStyle1,
	.lineListStyle2,
	.lineListStyle3,
	.lineListStyle4{
		display: block;
	}
	.lineListStyle1 > li,
	.lineListStyle2 > li,
	.lineListStyle3 > li,
	.lineListStyle4 > li,
	.lineListStyle1 > dt,
	.lineListStyle2 > dt,
	.lineListStyle3 > dt,
	.lineListStyle4 > dt,
	.lineListStyle1 > dd,
	.lineListStyle2 > dd,
	.lineListStyle3 > dd,
	.lineListStyle4 > dd{
		display: block;
	}
	.lineListStyle1 > dt{ padding-top: 0.8em;padding-bottom: 0.2em;}
	.lineListStyle1 > li{ padding-top: 0.5em;padding-bottom: 0.5em;}
	.lineListStyle1 > dd{ padding-top: 0.2em;padding-bottom: 0.8em;}
}


#contactForm .flexBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 auto;
}
#contactForm .flexBox > * button {
	margin-left: 25px;
	margin-right: 25px;
}
#contactForm .flexBox.spaceBetween{
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
#contactForm .flexBox.spaceAround{
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
#contactForm .flexBox.flexStart{
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
#contactForm .flexBox.flexEnd{
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

#contactForm .flex-container {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

#contactForm .flexBox.wrap {
	flex-wrap: wrap;
	justify-content: center;
}
#contactForm .flexNoItem{
	visibility: hidden;
	height: 0 !important;
	border: 0 !important;
	margin: 0 !important;
}
@media only screen and (max-width:767px) {
	#contactForm .flexBox > * button {
		margin-left: 0;
		margin-right: 0;
	}
}


/* index
--------------------------------------*/
#contactForm * {
	box-sizing: border-box;
}
#contactForm input:not([type="checkbox"]),
#contactForm button,
/* #contactForm select, */
#contactForm textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}
#contactForm .contactNav ul{
	display: flex;
	overflow: hidden;
}
#contactForm .contactNav ul li{
	width: 50%;
	background-color: #e6e6e6;
	text-align: center;
	padding: 1em;
	position: relative;
	color: #666;
}
#contactForm .contactNav ul li::before,
#contactForm .contactNav ul li::after{
	content: "";
	display: block;
	border-top: 50px solid transparent;
	border-bottom: 50px solid transparent;
	border-left: 25px solid #e6e6e6;
	position: absolute;
	right: -10px;
	top:50%;
	transform: translateY(-50%);
	z-index: 2;
}
#contactForm .contactNav ul li::after{
	right: -15px;
	border-left: 25px solid #ccc;
	z-index: 1;
}
#contactForm .contactNav ul li:last-child::before,
#contactForm .contactNav ul li:last-child::after{
	display: none;
}
#contactForm .contactNav ul li.current{
	background-color: #E60008;
	color: #fff;
}
#contactForm .contactNav ul li.current::before{
	border-left: 25px solid #E60008;
}
#contactForm .formBody{
	border-top: 1px #ccc solid;
}
#contactForm .formBody dl dt,
#contactForm .formBody dl dd{
	vertical-align: middle;
}
#contactForm .formBody dl dt{
	width: 30%;
	background-color: #f2f2f2;
}
/* #contactForm .formBody dl dd{
	white-space: nowrap;
} */
#contactForm .formBody dl dt label{
	display: block;
	width: 100%;
	position: relative;
	padding-right: 3em;
}
#contactForm .formBody dl dt.required label::after{
	content: "必須";
	display: block;
	background-color: #E70008;
	color: #fff;
	padding: 0.1em 0.5em 0.3em 0.5em;
	white-space: nowrap;
	font-size: 14px;
	line-height: 1.2;
	position: absolute;
	top:50%;
	right: 0;
	transform: translateY(-50%);
}
#contactForm .formBody textarea{
	height: 300px;;
	line-height: 1.6;
}
#contactForm input[type="text"],
#contactForm textarea{
	border-radius: 0.4em;
	-webkit-border-radius: 0.4em;
	-moz-border-radius: 0.4em;
	border: 1px #ccc solid;
	font-size: 15px;
	padding-left: 0.5em;
	padding-right: 0.5em;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	line-height: 1.3;
	width: 80%;
	max-width: 30em;
}
#contactForm .formBody dl dd.name input[type="text"]{
	width: 10em;
}
#contactForm .formBody dl dd.name span{
	display: inline-block;
}
#contactForm .formBody dl dd.name span:nth-child(2){
	padding-left: 1.5em;
}
#contactForm .formBody dl dd.name label{
	display: inline-block;
	width: 2.5em;
}
#contactForm button{
	display: block;
	position: relative;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	background-color: #F15A24;
	font-size: 14px;
	color: #fff;
	padding-left: 1.8em;
	padding-right: 1.8em;
	padding-top: 1em;
	padding-bottom: 1em;
	min-width: 180px;
	max-width: 300px;
	width: 60%;
	margin: 0 auto;
	transition: all 0.5s;
	box-shadow: 0px 2px #ccc;
	border-radius: 30px;
	cursor: pointer;
}
#contactForm button:hover{
	background-color: #ccc;
	color: #fff;
}

#contactForm .err{
	display: block;
	color: #E70008;
	font-size: 1.4rem;
}
#contactForm .formBody #formConfirm dl dd{
	white-space: normal;
}
#contactForm .formBody #formConfirm .submit{
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

#contactForm input[name="conf[data][]"] + span {
	display: none !important;
}

@media only screen and (max-width:767px) {
	#contactForm select{
		max-width: 90%;
		overflow: hidden;
	}
	#contactForm .contactNav ul li{
		font-size: 11.5px;
		line-height: 1.2;
	}
	#contactForm .formBody dl dt{
		width: 100%;
		margin-bottom: 1em;
		padding-bottom: 0.5em;
	}
	#contactForm .formBody dl dd.name span{
		display: block;
		padding-left: 0 !important;
		margin-bottom: 0.5em;
	}
	#contactForm .formBody textarea{
		width: 95%;
		height: 5em;
	}
}