.back-btn {
  min-width: 230px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .back-btn {
    min-width: 240px;
  }
}
.back-btn a {
  display: flex;
  position: relative;
  padding: 8px 20px;
  border: solid 1px #353387;
  border-radius: 5px;
  box-sizing: border-box;
  color: #353387;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  justify-content: center;
  transition: opacity 0.3s ease;
}
@media only screen and (min-width: 769px) {
  .back-btn a:hover {
    opacity: 0.75;
  }
}
@media only screen and (max-width: 768px) {
  .back-btn a {
    padding: 10px 20px;
    line-height: 23px;
  }
}
.back-btn a:after {
  position: absolute;
  top: calc(50% - 2.7px);
  right: 10px;
  transform: rotate(45deg);
  width: 5.8px;
  height: 5.8px;
  border-top: solid 2px #f24c3d;
  border-right: solid 2px #f24c3d;
  box-sizing: border-box;
  content: "";
}
.back-btn-block {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  border-top: solid 1px #e6e6e6;
}
@media only screen and (max-width: 768px) {
  .back-btn-block {
    padding-top: 30px;
  }
}

.request-contents {
  display: flex;
  gap: 40px 0;
  width: var(--inner-width);
  margin: 50px auto 80px;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .request-contents {
    flex-direction: column;
    gap: 30px 0;
    margin: 20px auto 60px;
  }
}
@media only screen and (max-width: 768px) {
  .request-contents._complete {
    flex-direction: column-reverse;
    gap: 20px 0;
    margin-bottom: 40px;
  }
}
.request-thumb {
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .request-thumb {
    position: static;
    width: 100%;
    height: auto;
  }
}
.request-thumb-name {
  font-size: 2.7rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .request-thumb-name {
    font-size: 2.1rem;
  }
}
.request-thumb-inner {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .request-thumb-inner {
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
.request-thumb-pic {
  display: block;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .request-thumb-pic {
    margin-bottom: 10px;
  }
}
.request-thumb-pic img {
  display: block;
  width: 200px;
  height: auto;
  margin: 0 auto;
}
.request-thumb-outline {
  padding: 10px 0;
  box-sizing: border-box;
  line-height: calc(1em + 12px);
}
@media only screen and (max-width: 768px) {
  .request-thumb-outline {
    padding: 0;
  }
}
.request-thumb-outline li {
  position: relative;
  padding-left: 17px;
}
.request-thumb-outline li:before {
  position: absolute;
  top: calc(0.5em + 7px);
  left: 4px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #353387;
  content: "";
}
.request-thumb-caption {
  line-height: calc(1em + 9px);
  text-align: justify;
  overflow-wrap: anywhere;
  word-break: break-all;
  line-break: anywhere;
}
.request-form {
  flex: 1 1 auto;
}
.request-complete {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  background: #F7F7F7;
}
@media only screen and (max-width: 768px) {
  .request-complete {
    padding: 20px;
  }
}
.request-complete-msg {
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .request-complete-msg {
    font-size: 1.6rem;
  }
}
.request-complete-backbtn {
  width: 240px;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .request-complete-backbtn {
    width: 100%;
    margin-top: 30px;
  }
}
.request-complete-backbtn a {
  display: flex;
  position: relative;
  height: 50px;
  border: solid 1px #353387;
  border-radius: 5px;
  background: #fff;
  font-family: "Poppins", "Arial";
  color: #353387;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .request-complete-backbtn a {
    font-size: 1.4rem;
  }
}
.request-complete-backbtn a:after {
  position: absolute;
  top: calc(50% - 4px);
  right: 15px;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: solid 2px #f24c3d;
  border-right: solid 2px #f24c3d;
  box-sizing: border-box;
  content: "";
  transition: transform 0.3s ease;
}
@media (any-hover: hover) {
  .request-complete-backbtn a:hover::after {
    transform: translateX(4px) rotate(45deg);
  }
}
/*# sourceMappingURL=request.css.map */