<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

main {
  position: relative;
  padding: 0;
  margin: auto;
  z-index: 0;
}

.wrapper {
  max-width: 1000px;
  display: flex;
  margin: auto;
  opacity: 1;
  padding: 45px 10px 50px;
  justify-content: space-between;
  gap: 0 40px;
}

@media screen and (max-width: 768.9px) {
  .wrapper {
    padding: 0;
    display: block;
  }
}

.explain_area {
  width: 58%;
}

.h1_sub {
  font-size: 18px;
  color: var(--main-blue);
  font-weight: bold;
  background-color: rgb(1 87 160 / 10%);
  margin-left: 0;
  width: fit-content;
  padding: 6px 10px;
}

h1 {
  color: var(--main-blue);
  margin: 15px 0 50px;
  font-size: 28px;
  font-weight: bold;
}

@media screen and (max-width: 768.9px) {
  .explain_area {
    width: 100%;
    padding: 35px 20px 50px;
  }
  .h1_sub {
    font-size: 14px;
    padding: 6px 8px;
    margin: auto;
  }
  h1 {
    margin-bottom: 35px;
    font-size: 23px;
    text-align: center;
  }
}

.about_text {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  margin-bottom: 20px;
}

.about_text strong {
  font-size: 16px;
  color: var(--main-orange);
}

.about_text.diagonal::before,
.about_text.diagonal::after {
  content: "";
  position: absolute;
  display: block;
  background-color: var(--main-font-color);
  height: 100%;
  width: 1.5px;
  top: 0;
}

.about_text.diagonal::before {
  transform: rotate(-30deg);
  left: 20%;
}
.about_text.diagonal::after {
  transform: rotate(30deg);
  right: 20%;
}

.documents_img img {
  width: 100%;
  height: auto;
}

.documents_img_attention {
  font-size: 8px;
  color: var(--main-font-color);
  text-align: right;
}

@media screen and (max-width: 768.9px) {
  .about_text {
    font-size: 13px;
  }

  .about_text strong {
    font-size: 15px;
  }
  .about_text.diagonal::before {
    left: 2%;
  }
  .about_text.diagonal::after {
    right: 2%;
  }
}

h2 {
  color: var(--main-blue);
  font-size: 17px;
  margin: 30px 0 15px;
}

.about_documents ul {
  background-color: rgb(1 87 160 / 10%);
  padding: 25px;
  font-size: 13px;
  font-weight: bold;
}

.about_documents ul li:not(:first-of-type) {
  margin-top: 15px;
}

.about_documents ul li::before {
  content: "";
  height: 20px;
  width: 20px;
  background-size: contain;
  background-image: url(/img/icon/check_blue.png);
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

@media screen and (max-width: 768.9px) {
  h2 {
    font-size: 15px;
  }

  .about_documents ul {
    padding: 20px 15px;
    font-size: 12px;
  }

  .about_documents ul li::before {
    height: 17px;
    width: 17px;
    margin-right: 5px;
  }
}

/* ===== .form_area START =====*/

.form-area {
  width: 42%;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 5px 0;
  padding: 35px;
  background-color: #efefef;
  box-shadow: 0px 0px 20px #00000019;
  border-radius: 8px;
}

.form-area__item {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 5px 0;
}

.form-area__item:not(:nth-child(2)) {
  margin-top: 12px;
}

form input,
form select {
  width: 100%;
  height: 50px;
  border: 1px solid var(--main-light-gray);
  border-radius: 7px;
  padding: 0 20px 0 27px;
  color: var(--main-font-color);
}

form textarea {
  width: 100%;
  height: 100px;
  line-height: 25px;
  border: 1px solid var(--main-light-gray);
  border-radius: 7px;
  padding: 10px 20px;
  resize: none;
  font-family: auto;
}

form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 40px;
}

.form-area__label {
  width: 30%;
}

.form-area span {
  font-size: 11px;
  color: #fff;
  padding: 2px 3px;
  margin-left: 5px;
}

.form-area .form-required {
  background-color: #e65757;
}

.form-area .form-ninni {
  background-color: #c3c3c3;
}

.is-select {
  position: relative;
}

.is-select:after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 0;
  height: 0;
  border: 5.5px solid transparent;
  border-top: 9px solid var(--main-font-color);
  margin-top: -4px;
}

.error,
.error select {
  background-color: #fff1f1;
}

.form-alert {
  color: var(--main-red);
  font-size: 11px;
}

.form-privacy {
  color: var(--main-font-color);
  font-size: 10px;
  margin: 17px auto 7px;
  text-align: center;
}

.form-privacy a {
  text-decoration: underline;
}

.btn_submit {
  background-color: var(--main-orange);
  border-radius: 4px;
  padding: 15px 0;
  color: #fff;
  font-size: 19px;
  border: none;
  width: 100%;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .form-area {
    width: 100%;
    border-radius: 0;
  }

  .form-area__item {
    gap: 0;
  }

  .form-area__item:not(:nth-child(2)) {
    margin-top: 15px;
  }

  .form_area section {
    padding: 25px 22px;
  }

  form input,
  form select {
    width: 100%;
    height: 38px;
    border: 1px solid var(--main-light-gray);
    border-radius: 4px;
    padding: 0 15px;
    color: var(--main-font-color);
  }

  form textarea {
    width: 100%;
    height: 85px;
    line-height: 15px;
    border: 1px solid var(--main-light-gray);
    border-radius: 4px;
    padding: 10px 15px;
    resize: none;
    font-family: auto;
  }

  form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .form-area .form-required {
    background-color: #e65757;
  }

  .form-area .form-ninni {
    background-color: #c3c3c3;
  }

  .form-area .form-area__body {
    margin-top: 5px;
  }

  .is-select {
    position: relative;
  }

  .is-select:after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 0;
    height: 0;
    border: 5.5px solid transparent;
    border-top: 9px solid var(--main-font-color);
    margin-top: -4px;
  }

  .error,
  .error select {
    background-color: #fff1f1;
  }

  .form-alert {
    color: var(--main-red);
    font-size: 11px;
  }

  .entry_foot {
    text-align: center;
    margin-top: 25px;
  }

  .form-privacy {
    color: var(--main-font-color);
    font-size: 12px;
    margin-bottom: 15px;
  }

  .form-privacy a {
    color: var(--main-font-color);
    text-decoration: underline;
  }

  .entry_submit {
    background-color: #ff7600;
    border-radius: 4px;
    padding: 17px 0;
    color: #fff;
    font-size: 17px;
    border: none;
    width: 80%;
  }
}

/* ===== .form_area END =====*/

/* ===== #overlay START =====*/
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.6);
}

.save_message {
  position: absolute;
  width: 100%;
  margin-top: 35vh;
  text-align: center;
  transform: scale(1.5);
}

.save_message p {
  color: #fff;
}

.save-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spinner {
  width: 80px;
  height: 80px;
  border: 4px #ddd solid;
  border-top: 4px #999 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

@media screen and (max-width: 768px) {
  .save_message {
    position: absolute;
    width: 100%;
    margin-top: 35vh;
    text-align: center;
    transform: scale(1.5);
  }

  .save-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
  }
  .spinner {
    width: 80px;
    height: 80px;
    border: 4px #ddd solid;
    border-top: 4px #999 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
  }
  @keyframes sp-anime {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(359deg);
    }
  }
}

/* ===== #overlay END=====*/
</pre></body></html>