@charset "UTF-8";
/*--------------------------------------------
ENTRY FORM
--------------------------------------------*/
.h-etform {
  margin: 100px auto 0 auto;
  max-width: 1200px;
  width: 70%;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .h-etform {
    margin: 13.333vw auto 0 auto;
    width: 84%;
  }
}
.h-etform__content {
  margin-top: 80px;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .h-etform__content {
    margin-top: 10.666vw;
    display: block;
   }
}
/*--------------------------------------------
FORM STEP
--------------------------------------------*/

.h-etform__content__step {
  display: flex;
  flex-wrap: wrap;
}
.h-etform__content__step .item {
  position: relative;
  width: 33%;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 13px 0;
  line-height: 1.5;
  background: #F5F5F5;
  color: #999999;
}
.h-etform__content__step .item:not(:last-child)::before,
.h-etform__content__step .item:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 100%;
  content: '';
  border: 37px solid transparent;
  border-left: 20px solid #F5F5F5;
  margin: auto;
}
.h-etform__content__step .item:not(:last-child)::before {
    margin-left: 1px;
    border-left-color: #FFF;
}

/********* sp *********/
@media screen and (max-width: 750px) {
  .h-etform__content__step .item {
    font-size: 2.666vw;
    line-height: 1.4;
    padding: 10px 0;
  }
  .h-etform__content__step .item:not(:last-child)::before,
  .h-etform__content__step .item:not(:last-child)::after {
    border-width: 25px;
    border-left-width: 12px;
  }
}

/* active */
.h-etform__content__step .item.active {
  z-index: 1;
  background: #6fc2e9;
  color: #FFF;
}
.h-etform__content__step .item.active:not(:last-child)::after {
  border-left-color: #6fc2e9;
}
.h-etform__content__step .item.active:not(:last-child)::before {
  border-left: none;
}

/*--------------------------------------------
FORM
--------------------------------------------*/
.h-etform__content__form {
	width: 100%;
	border-collapse: collapse;
  margin: 80px 0 40px;
	table-layout: fixed;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .h-etform__content__form {
    marginp: 10.666vw 0 5vw;
   }
}
.h-etform__content__form th, .h-etform__content__form td {
	line-height: 1.6;
	font-size: 16px;
	text-align: left;
	border: rgba(0,0,0,0.05) 1px solid;
  border-left: 0;
  border-right: 0;
	padding: 30px 25px;
	vertical-align: middle;
}
.h-etform__content__form th.is-center, .h-etform__content__form td.is-center {
	text-align: center;
}
.h-etform__content__form th {
    font-weight: 700;
    transform: rotate(0.05deg);
    width: 320px;
    position: relative;
}
.h-etform__content__form th.is-imp:after,
.h-etform__content__form th.is-any:after {
    position: absolute;
    background: #ff0e0e;
    color: #FFF;
    text-align: center;
    content: "必須";
    font-size: 14px;
    line-height: 1.8;
    margin-left: 10px;
    border-radius: 4px;
    width: 55px;
    height: 25px;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.h-etform__content__form th.is-any:after {
    background: #ccc;
    content: "任意";
}
.h-etform__content__form td {
    transform: rotate(0.05deg);
    letter-spacing: -.4em;
}
.h-etform__content__form td.is-mk {
	background: rgba(0,0,0,0.03);
}
.h-etform__content__form td > * {
    letter-spacing: normal;
}
.h-etform__content__form input[type="text"],
.h-etform__content__form textarea {
	background: rgba(0,0,0,0.03);
	border-radius: 8px;
	padding: 1.5em;
	transition: 0.2s;
  border: 2px solid transparent;
  border: rgba(0,0,0,0.06) 1px solid;
  width: 100%;
}
.h-etform__content__form select:focus,
.h-etform__content__form input[type="text"]:focus,
.h-etform__content__form textarea:focus {
	outline:0;
	border-color: #6fc2e9;
	background: #FBF7F1;
}
.h-etform__content__form__txt {
  text-indent: -1.5em;
  margin-left: 1.5em;
  line-height: 1.6;
}
.h-etform__content__form__txt > label {
    cursor: pointer;
}
.h-etform__content__form__txt a{
  text-decoration: underline;
}
.h-etform__content__form input[type="checkbox"] {
	transform: scale(1.2);
  margin-right: 5px;
  cursor: pointer;
}
.h-etform__content__form textarea {
	height: 10em;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .h-etform__content__form,
  .h-etform__content__form tr,
  .h-etform__content__form th,
  .h-etform__content__form td {
    display: block;
  }
  .h-etform__content__form th,
  .h-etform__content__form td {
    font-size: 4vw;
    width: 100%;
    padding: 0;
    border: 0;
  }
  .h-etform__content__form td {
    padding-top: 0;
  }
  .h-etform__content__form th.is-imp:after,
  .h-etform__content__form th.is-any:after {
    height: 25px;
    right: inherit;
    top: inherit;
    bottom: inherit;
    position: relative;
    display: inline-block;
    margin-left: 15px;
  }
  .h-etform__content__form tr + tr {
    margin-top: 25px;
  }
  .h-etform__content__form th, .h-etform__content__form td {
    font-size: 4vw;
    line-height: 1.8;
  }
  .h-etform__content__form th + td {
    margin-top: 10px;
  }
  .h-etform__content__form select,
  .h-etform__content__form input[type="text"],
  .h-etform__content__form textarea {
    padding: 1em;
  }
  .h-etform__content__form th.is-imp:after,
  .h-etform__content__form th.is-any:after {
    height: 22px;
    margin-left: 15px;
    font-size: 0.8rem;
    width: 45px;
  }
}

.h-etform__content__btn {
  max-width: 320px;
  text-align: center;
  margin: 40px auto 0;
}
.h-etform__content__btn > a {
  display: block;
  background: #ff0e0e;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  padding: 1em;
}
.h-etform__content__btn > a:hover {
    opacity: 0.7;
}
.h-etform__content__btn input[type="submit"],
.h-etform__content__btn input[type="button"] {
  display: block;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
  line-height: 1.6;
  padding: 1em;
  width: 100%;
	cursor: pointer;
  border: none;
}

.h-etform__content__btn input[type="submit"]{
	background: #ff0e0e;
	color: #fff;
}
.h-etform__content__btn input[type="submit"]:hover,
.h-etform__content__btn input[type="button"]:hover{
	opacity: 0.7;
}
.h-etform__content__btn input[type="button"]{
	background: #999;
	color: #fff;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .h-etform__content__btn {
    margin-top: 11vw;
  }
  .h-etform__content__btn > a {
    font-size: 3.733vw;
  }
	.h-etform__content__btn input[type="submit"], 
  .h-etform__content__btn input[type="button"] {
    font-size: 3.733vw;
	}
}
/* confirm Thanks*/
.h-etform__wrap{
  margin-top: 140px;
}
.h-etform__content__confirm,
.h-etform__content__thanks{
  margin-bottom: 80px;
}
.h-etform__content__confirm__ttl,
.h-etform__content__thanks__ttl{
  font-size: 32px;
  margin-top: 80px;
  text-align: center;
}
.h-etform__content__confirm__txt,
.h-etform__content__thanks__txt p{
  font-size: 18px;
  margin: 40px 0;
  text-align: center;
  line-height: 1.6;
}
.h-etform__content__btnwrap{
  display: flex;
  justify-content: center;
}
.h-etform__content__btnwrap p{
  margin: 0 3em;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .h-etform__wrap{
  margin-top: 18vw;
}
  .h-etform__content__confirm__ttl,
  .h-etform__content__thanks__ttl{
    font-size: 5.866vw;
    margin-top: 8.266vw;
  }
  .h-etform__content__confirm__txt,
  .h-etform__content__thanks__txt p{
    font-size: 3.2vw;
  }
  .h-etform__content__thanks__txt p{
    text-align: left;
  }
  .h-etform__content__btnwrap{
    display: block;
  }
  .h-etform__content__btnwrap p{
    margin: 0 auto;
    margin-top: 2em
  }
}

.h-etform__content__confirm .h-etform__content__form td{
  letter-spacing: normal;
}
.h-etform__content__confirm .h-etform__content__form th {
  width: 280px;
}
.error_messe{
  color: #ff0e0e;
  font-size: 18px;
  line-height: 1.6;
  margin: 0.5em;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .h-etform__content__confirm .h-etform__content__form th {
    width: 100%;
  }
  .error_messe{
    font-size: 3.2vw;
  }
}
