@charset "UTF-8";

/*-----------------------------------

	headline

-----------------------------------*/
#headline {
    background: url(../img/contact/headline_bg.jpg) no-repeat center bottom;
    background-size: cover;
}
#headline h1::after {
    content: "CONTACT";
}


/*-----------------------------------

	common

-----------------------------------*/
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}
/*-----------------------------------

	block01

-----------------------------------*/
#block01 {
    padding-bottom: 80px;
}
#block01 .flow {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
    margin-bottom: 50px;
}
#block01 .flow li {
    width: 200px;
    text-align: center;
    position: relative;
}
#block01 .flow li span {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #707070;
    color: #fff;
    text-align: center;
    line-height: 30px;
    margin: 0 auto;
}
#block01 .flow li.here span {
    background: #000;
}
#block01 .flow li::after {
    content: "";
    width: 185px;
    height: 1px;
    background: #707070;
    position: absolute;
    top: 15px;
    right: -100px;
}
#block01 .flow li:last-child::after {
    content: "";
    width: 0;
    height: 0;
}
#block01 table {
    width: 100%;
    border-top: 1px solid #707070;
}
#block01 table tr {
    border-bottom: 1px solid #707070;
}
#block01 table th {
    padding: 20px 70px 20px 20px;
    background: #E7EBE9;
    text-align: center;
    vertical-align: middle;
    width: 260px;
    position: relative;
}
#block01 table th span {
    font-weight: 400;
    color: #E50000;
    line-height: 1;
    height: 15px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
}
#block01 table td {
    padding: 20px;
    width: calc(100% - 260px);
    vertical-align: middle;
}
#block01 table td span {
    display: block;
    color: #707070;
}
input,
select,
textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
}
input, select {
    line-height: 1;
}
textarea {
    height: 200px;
}
.buttonArea {
    padding-top: 50px;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.buttonArea button {
    display: block;
    max-width: 250px;
    width: 100%;
    border: 1px solid #8BA499;
    border-radius: 30px;
    font-size: 18px;
    text-align: center;
    line-height: 1;
    padding: 20px 0;
}
.buttonArea button.back {
    margin-right: 30px;
}
.w350 {
    max-width: 350px;
    width: 100%;
}
.p-region_wrap {
    position: relative;
}
.p-region_wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    z-index: 10;
    height: 6px;
    width: 6px;
    border-color: #333;
    border-style: solid;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}
.complete {
    text-align: center;
}
.complete h2 {
    margin-bottom: 20px;
}
@media screen and (max-width: 840px) {
    #block01 table th {
        padding: 10px;
        width: 100%;
        display: block;
    }
    #block01 table td {
        padding: 20px 10px;
        width: 100%;
        display: block;
    }
}
@media screen and (max-width: 640px) {
    #block01 {
        padding-bottom: 40px;
    }
    #block01 .flow {
        margin-bottom: 30px;
    }
    #block01 .flow li {
        width: 30%;
        text-align: center;
        position: relative;
    }
    #block01 .flow li::after {
        width: calc(100% - 15px);
        right: -50%;
    }
    .buttonArea {
        padding-top: 30px;
        -webkit-box-orient: vertical;
      	-webkit-box-direction: normal;
      	-ms-flex-direction: column;
      	flex-direction: column;
        -webkit-box-align: center;
    	-ms-flex-align: center;
    	align-items: center;
    }
    .buttonArea button {
        font-size: 16px;
        padding: 15px 0;
    }
    .buttonArea button.back {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/*-----------------------------------

	error&alert

-----------------------------------*/
.error {
	color: crimson;
}
.alert {
	display: block;
	color: crimson;
	padding: 1em;
	background: rgba(255, 0, 0, 0.1);
	border: 1px solid crimson;
	text-align: center;
	margin-bottom: 30px;
}