main {
  min-width: 950px;
  color: #fff;
  background: #02489E;
}

.wrap-form {
  width: 920px;
  margin: 0 auto;
}

.page-header {
  background: #fff;
  -webkit-box-shadow: 0 3px 7px rgba(0,0,0,.15);
          box-shadow: 0 3px 7px rgba(0,0,0,.15);
}

.page-header__inner {
  padding: 20px 0 13px;
}

.site-name {
	margin-bottom: 0;
	font-size: 40px;
	color:#02489e;
	font-weight:bold;
}

.form-title {
  padding: 30px 0;
  font-family: 'Barlow', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 42px;
  text-align: center;
  color: #fff;
}
.form-title span {
  display: block;
  margin-top: 0px;
  font-size: 18px;
  font-weight:normal;
}

.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: #02489E;
  background: #fff;
}
.form-flow-list > li:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 100%;
  border: 10px solid transparent;
  border-left-color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-flow-list > li.is-current {
  background: #FFDD33;
}
.form-flow-list > li.is-current:not(:last-child)::after {
  border-left-color: #FFDD33;
}
.form-flow-list > li.is-passed {
  background: #CACACA;
}
.form-flow-list > li.is-passed:not(:last-child)::after {
  border-left-color: #CACACA;
}
.form-flow-list span {
  margin-left: 20px;
  font-weight: bold;
}

.form-table {
  width: 100%;
  color: #333;
}
.form-table th {
  width: 280px;
  padding: 20px;
  text-align: left;
  vertical-align: top;
  color: #02489E;
  background: #E0F2FC;
}
.form-table th small {
  color: #666;
}
.required {
  margin-left: 5px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  background: #02489E;
  border-radius: 10px;
}

.form-table td {
  padding: 20px;
  background: #fff;
}

.form-options {
  margin-bottom: 0;
}
.form-options > li {
  font-weight: 600;
  color: #02489E;
}
.form-options > li + li {
  margin-top: 5px;
}

input,
textarea {
  font-family: 'Barlow', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "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 #02489E;
  background: #fff;
  border-radius: 50%;
}
input[type="radio"]:checked::before {
  background: #02489E;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 5px;
  border: 0;
}

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: 280px;
  padding: 15px;
  border: 0;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  color: #02489E;
  background: #fff;
  border-radius: 50px;
  -webkit-transition: .4s;
  transition: .4s;
}
.btn:hover {
  -webkit-filter: brightness(87%);
          filter: brightness(87%);
}
.btn--execute {
  color: #fff;
  background: #01B4EE;
}
.btn--execute:hover {
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
}

.biz {
  display: none;
}

.attention-box {
  margin: 20px 0 10px;
  padding: 10px;
  font-weight: 500;
  text-align: center;
  color: #333;
  background: #FFDD33;
}

.message-box {
  margin: 100px 0 30px;
  text-align: center;
}
.message-box__heading {
  margin-bottom: 30px;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  main {
    min-width: auto;
    font-size: 12px;
  }
  .wrap-form {
    width: 100%;
    padding: 0 25px;
  }
}

@media screen and (max-width: 480px) {
  main {
    min-width: auto;
    font-size: 12px;
  }
  .wrap-form {
    width: 100%;
    padding: 0 25px;
  }

  .site-name {
    line-height: 1;
  	font-size: 20px;
	color:#02489e;
	font-weight:bold;
  }

  .page-header__inner {
    padding: 10px 25px;
  }

  .form-title {
    margin-bottom: 0;
    font-size: 26px;
  }
  .form-title span {
    margin-top: 0;
    font-size: 12px;
  }
  .btn-container {
    flex-direction: column;
    padding: 20px 0px 50px 0px;
  }

  .btn {
    min-width: 100%;
    margin: 0 0 20px;
    font-size: 14px;
  }

  .btn--execute {
    order: -1;
  }

  .form-flow-list {
    margin-bottom: 40px;
  }
  .form-flow-list > li {
    width: calc(33.33333% - 5px);
    padding: 10px;
    font-size: 12px;
  }
  .form-flow-list > li:not(:last-child)::after {
    border-width: 6px;
  }
  .form-flow-list span {
    display: block;
    margin-left: 0;
    line-height: 1.4;
  }

  table,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }
  .form-table th,
  .form-table td {
    width: 100%;
    padding: 10px;
  }

  tr {
    margin-bottom: 10px;
  }
  th {
    margin-bottom: 2px;
  }

  .message-box {
    margin: 70px 0 10px;
  }
  .message-box__heading {
    margin-bottom: 20px;
    font-size: 20px;
    letter-spacing: -.03em;
  }
}