html {
  min-width: 950px;
  /*background: #F7F8FB;*/
}

body {
  padding: 0 0 100px;
}
#less1, #less2, #less3, #less4, #less5, #less6 {
  display: none;
}
div.less {
  color:#ff0000;
  font-size:12px;
}
a.link {
  position: relative;
  color: #00489D;
}
a.link:hover {
  opacity: 0.7;
}

a.link::after {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    right: -20px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #009FE8;
    border-right: 1px solid #009FE8;
    -webkit-transform: rotate(
45deg
);
    transform: rotate(
45deg
);
}


.wrap {
  width: 920px;
  margin: 0 auto;
}

header {
    width: 100%;
    margin: 0 auto;
    position: fixed;
    background: #fff;
    z-index: 1;
    top: 0;
    padding-top: 20px;
    height: 80px;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 16%);
}

header .logo {
    text-align: center;
    margin-bottom: 25px;
}

header .logo img {
    width: 250px;
}

.site-name {
  margin-bottom: 0;
  font-size: 40px;
}

.form-title {
  font-weight: bold;
    font-size: 3rem;
    text-align: center;
    position: relative;
    margin: 160px auto 80px;
    color: #009FE8;
}
.form-title::after {
    border-bottom: 5px solid #009FE8;
    width: 300px;
    position: absolute;
    content: "";
    bottom: -70%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
}
.form-title span {
  display: block;
  margin-top: 12px;
  font-size: 20px;
}

.form-flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
.form-flow-list > li {
  position: relative;
  width: 280px;
  padding: 15px;
  font-size: 16px;
  color: #575554;
  background: #fff;
  border: 1px solid #009FE8;
}
.form-flow-list > li:not(:last-child)::after {
  position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    right: -9%;
    width: 15px;
    height: 15px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    -webkit-transform: rotate(
45deg
);
    transform: rotate(
45deg
);
}
.form-flow-list > li.is-current {
  background: #009FE8;
  color: #fff;
}
.form-flow-list > li.is-current:not(:last-child)::after {
  color: #fff;
}

.form-flow-list > li.is-current:not(:last-child)::after {
  color: #fff;
}

.form-flow-list > li.is-passed {
  background: #F4F4F4;
  border: #C2C2C2 1px solid;
  color: #C2C2C2;
}
.form-flow-list > li.is-passed:not(:last-child)::after {
  border-left-color: #F4F4F4;
}
.form-flow-list span {
  margin-left: 20px;
  font-weight: bold;
}

.form-table {
  width: 100%;
  color: #575554;
  background: #575554;
  border-spacing: 1px;
  margin-bottom: 10px;
}
.form-table th {
  width: 280px;
  padding: 20px;
  text-align: left;
  vertical-align: top;
  color: #575554;
  background: #ECF9FF;
}
.form-table th small {
  color: #666;
  font-weight:normal;
}
.required {
  margin-left: 5px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  background: #009FE8;
}

.form-table td {
  padding: 20px;
  background: #fff;
}

.form-options {
  margin-bottom: 0;
}
.form-options > li {
  font-weight: 600;
  color: #575554;
}
.form-options > li + li {
  margin-top: 5px;
}

.form-options > li:last-child {
  margin-top: 20px;
}

input,
textarea {font-family: "Roboto", "Noto Sans JP", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

input[type="radio"] {
  margin-right: 10px;
}
input[type="radio"]::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid #009FE8;
  background: #fff;
  border-radius: 50%;
}
input[type="radio"]:checked::before {
  background: #009FE8;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 10px;
  border: 0;
  background: #ecf9ff;
}

textarea {
  resize: vertical;
  width: 100%;
  height: 150px;
}

.btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px;
}

.btn {
  cursor: pointer;
  display: inline-block;
  margin: 0 20px;
  min-width: 200px;
  padding: 15px;
  border: 0;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  color: #575554;
  background: #fff;
  -webkit-transition: .4s;
  transition: .4s;
  border: 1px #575554 solid;
}
.btn:hover {
  /*-webkit-filter: brightness(95%);
          filter: brightness(95%);*/
  background: #ecf9ff;
}
.btn--execute {
  color: #fff;
  background: #009FE8;
  border: none;
  min-width: 350px;
}
.btn--execute:hover {
  background: #009FE8;
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
}

a.btn--link {
  width: 400px;
  position: relative;
    display: inline-block;
    vertical-align: middle;
    padding: 15px 0;
    font-size: 1.6rem;
}
a.btn--link::before {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    left: 20px;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #009FE8;
    border-left: 1px solid #009FE8;
    -webkit-transform: rotate(
45deg
);
    transform: rotate(
45deg
);
}

.biz {
  display: none;
}

.attention-box {
  margin: 20px 0 10px;
  padding: 10px;
  font-weight: 500;
  text-align: center;
  color: #009fe8;
  background: #ecf9ff;
}

.message-box {
  margin: 100px 0 30px;
  text-align: center;
}
.message-box__heading {
  margin-bottom: 30px;
  font-size: 30px;
}

ul.moushikomi {
	padding-left:20px;
}
ul.moushikomi li {
	list-style-type:disc;
	line-height:18px;
}


@media screen and (max-width: 480px) {
  html {
    min-width: auto;
    font-size: 12px;
  }
  body {
    padding-bottom: 50px;
  }
  .wrap {
    width: 100%;
    padding: 0 25px;
  }

  .site-name {
    line-height: 1;
  }

 header {
    padding: 20px;
    height: 70px;
    position: fixed;
}
    
header .logo img{
    vertical-align: inherit;
}
    
  .form-title {
    margin-bottom: 0;
    font-size: 26px;
    margin: 110px auto 80px;
  }
  .form-title span {
    margin-top: 0;
    font-size: 12px;
  }
  .btn-container {
    flex-direction: column;
    padding: 20px 0;
  }

  .btn {
    min-width: 100%;
    margin: 0 0 20px;
    font-size: 1.6rem;
  }

  .btn--execute {
    order: -1;
  }

  .form-flow-list {
    margin: 60px 0 40px;
  }
  .form-flow-list > li {
    width: calc(33.33333% - 15px);
    padding: 10px;
    font-size: 12px;
  }
  .form-flow-list span {
    display: block;
    margin-left: 0;
    line-height: 1.4;
  }
    
.form-flow-list > li:not(:last-child)::after {
    right: -15%;
}

.message-box > p {
    font-size: 1.3rem;
}   

a.btn--link {
    width: 100%;
    padding: 15px 5px 15px 30px;
    font-size: 1.3rem;
}

  table,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }
  .form-table th,
  .form-table td {
    width: 100%;
    padding: 10px;
  }

  tr {
    margin-bottom: 2px;
  }

  .message-box {
    margin: 70px 0 10px;
  }
  .message-box__heading {
    margin-bottom: 20px;
    font-size: 20px;
    letter-spacing: -.03em;
  }
}