@charset "utf-8";
/* CSS Document */


#inquiry_col {
	width: 100%;
	margin: 0 auto;
}


/* for TABLET */
@media screen and (max-width: 800px) {
	#inquiry_col {
		width: 100%;
		margin: 0 auto;
	}
}
.link-btn a {
	display: block;
	background: #3399CC;
	text-decoration: none;
	vertical-align: middle;
	border-radius: 5px;
	box-shadow: 0 5px #3672A3;
	text-align: center;
	color: #FFF;
	padding: 2rem;
	font-size: 110%;
	margin: 20px 0;
}
.link-btn a:link {
	text-decoration: none !important;
}
/* --------------------------------------------------

step

-------------------------------------------------- */
.step {
	list-style-type: none;
	display: flex;
	width: 100%;
	padding: 0;
	margin: 30px 0;
	overflow: hidden;
}
.step li {
	display: flex;
	position: relative;
	background: #D8D8D8;
	padding: 1.3em 0.5em 1.3em 1em;
	width: 33.3%;
}
.step li:last-child {
	padding-right: 1em;
}
.step li:last-child:before, .step li:last-child:after {
	display: none;
}
.step li:before, .step li:after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	margin: auto;
}
.step li:before {
	top: -9px;
	right: -1em;
	border-style: solid;
	border-color: transparent transparent transparent #fff;
	border-width: 46px 0 46px 1em;
	z-index: 10;
}
.step li:after {
	top: -9px;
	right: -.8em;
	border-style: solid;
	border-color: transparent transparent transparent #D8D8D8;
	border-width: 46px 0 46px 1em;
	z-index: 10;
}
.step li.is-current {
	background: #FFA260;
	font-weight: bold;
}
.step li.is-current02 {
	background: #FE8F3F;
	font-weight: bold;
}
.step li:nth-child(2) p,
.step li:nth-child(3) p{
	padding-left: 0.5em;
}
.step li.is-current03 {
	background: #FF7410;
	font-weight: bold;
}
.step li.is-current:after {
	border-color: transparent transparent transparent #FFA260;
}
.step li.is-current02:after {
	border-color: transparent transparent transparent #FE8F3F;
}
@media screen and (max-width: 800px) {
	.step {
		font-size: 1.7rem;
		line-height: 1.1;
	}
}
@media screen and (max-width: 420px) {
	.step {
		font-size: 1.4rem;
		line-height: 1.6;
	}
}
/* --------------------------------------------------

form-msg01

-------------------------------------------------- */
.form-msg01 {
	border: 1px solid #E5670D;
	padding: 3rem 2rem;
	margin-bottom: 30px;
	text-align: center;
}
.form-msg01 h3 {
	font-size: 3.2rem;
	font-weight: bold;
	position: relative;
	display: inline-block;
	margin: 0 auto .5em;
}

.form-msg01 h3::after{
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 10px;
  margin: auto;
  top: auto;
  bottom: 5px;
  right: 0;
  left: 0;
  z-index: -1;
  background: #E5670D;
}
.form-msg01 p{
	text-align: center;
}
/* for TABLET */
@media screen and (max-width: 800px) {
	.form-msg01 {
		text-align: center;
		border: 1px solid #E5670D;
		padding: 2rem;
		margin-bottom: 30px;
	}
	.form-msg01 h3 {
		font-size: 2.6rem;
	}
	.form-msg01 p{
		text-align: left;
	}
}

/* --------------------------------------------------

checkbox_item

-------------------------------------------------- */
.checkbox_item{
	display: block;
}
