@charset "UTF-8";
.header-section {
  position: relative;
  width: 100%;
}
.header-section > img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-section h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000000;
  font-size: 5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header-section h1 {
    font-size: 3rem;
  }
}

#main div:after {
  display: none;
}

.post.request .flex {
  display: flex;
  flex-wrap: wrap;
}
.post.request .flex-column {
  display: flex;
  flex-direction: column;
}
.post.request .align-center {
  align-items: center;
}
.post.request .txt-align-center {
  text-align: center;
}
.post.request .inline-block {
  display: inline-block;
}
.post.request .gap-1 {
  gap: 1rem;
}
.post.request .gap-5 {
  gap: 5rem;
}
.post.request .w-100 {
  width: 100px;
}
.post.request .w-120 {
  width: 120px;
}
.post.request .w-150 {
  width: 150px;
}
.post.request .w-83per {
  width: 83%;
}
.post.request .btn-wrap {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .post.request .sp-w-100 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .post.request .sp-flex-wrap {
    display: flex;
    flex-wrap: wrap;
  }
}
.post.request .br-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .post.request .br-sp {
    display: block;
  }
}
.post.request .btn {
  border-radius: 3rem;
  background-color: #0062AC;
  color: #FFFFFF;
  padding: 2rem 6rem;
  text-decoration: none;
  font-size: 2.5rem;
  position: relative;
  text-align: center;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .post.request .btn {
    padding: 1.5rem 4rem;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.post.request .btn::after {
  content: "＞";
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .post.request .btn::after {
    font-size: 1.5rem;
    right: 1rem;
  }
}
.post.request .btn:hover {
  opacity: 0.7;
}
.post.request .info {
  display: block;
  max-width: 500px;
  margin: 0 auto;
}
.post.request .info p {
  font-weight: bold;
}
.post.request .steps {
  max-width: 700px;
  margin: 5rem auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.post.request .steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 10px;
  background-color: #0062AC;
  z-index: -1;
}
.post.request .steps::after {
  display: none;
}
.post.request .steps .step-item {
  background-color: #e0f2fe;
  color: #000000;
  border: 1px solid #0062AC;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.post.request .steps .step-item p {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.5rem;
}
.post.request .steps .step-item .step-number {
  font-size: 3rem;
  line-height: 2.5rem;
  font-weight: bold;
}
.post.request .steps .step-item.active {
  background-color: #0062AC;
}
.post.request .steps .step-item.active p {
  color: #FFFFFF;
}
.post.request .form-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post.request .form-section h2 {
  position: relative;
  text-align: center;
  display: inline-block;
  margin: 0 auto 4rem auto;
  font-size: 3rem;
}
.post.request .form-section h2::after {
  position: absolute;
  content: "";
  background-image: url("../img/request/h2-bottom.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  bottom: -50%;
  left: 50%;
  height: 100%;
  width: 200%;
  transform: translateX(-50%);
  z-index: -1;
}
.post.request .form-section span.required {
  color: red;
  background-color: #FFFFFF;
  padding: 0.2rem 1rem;
  font-size: 1.3rem;
  border: 1px solid red;
  margin-right: 1rem;
}
.post.request .form-section table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 5rem auto;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #000000;
}
.post.request .form-section table tbody {
  white-space: nowrap;
}
.post.request .form-section table tbody tr td {
  padding: 1.5rem;
  font-weight: bold;
  vertical-align: middle;
  border: 1px solid #000000;
  border-top-width: 0;
  border-left-width: 0;
  border-right-width: 1;
}
.post.request .form-section table tbody tr td:last-child {
  border-right-width: 0;
}
.post.request .form-section table tbody tr td.gray-bg {
  width: 250px;
  background-color: #E9E9E9;
}
.post.request .form-section table tbody tr td select {
  max-width: 150px;
}
.post.request .form-section table tbody tr:last-child td:last-child {
  border-bottom-width: 0;
}
@media screen and (max-width: 768px) {
  .post.request .form-section table tbody {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .post.request .form-section table tbody tr {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .post.request .form-section table tbody tr td.gray-bg {
    width: 100%;
    border-right-width: 0;
  }
}
.post.request .form-section .agree-section {
  text-align: center;
  margin: 2rem 0 5rem 0;
}
.post.request .form-section .agree-section label {
  font-weight: bold;
}
.post.request .form-section .btn-wrap .btn {
  width: auto;
  height: auto;
}
.post.request .form-section .btn-wrap .btn.back-btn {
  background-color: #CCCCCC;
  color: #000000;
}/*# sourceMappingURL=request-add.css.map */