/*---- All Scss Mixin ----*/
/*---- Global Use Style ----*/
/*---- Extend ----*/
.box .verify-block .input-wrapper [type=text]::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #d1cdcc;
  opacity: 1;
  /* Firefox */
}
.box .verify-block .input-wrapper [type=text]:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #d1cdcc;
}
.box .verify-block .input-wrapper [type=text]::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #d1cdcc;
}

input[type=text]::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #d1cdcc;
  opacity: 1;
  /* Firefox */
  padding-left: 5px;
  font-size: 85%;
}
input[type=text]:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #d1cdcc;
  padding-left: 5px;
  font-size: 85%;
}
input[type=text]::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #d1cdcc;
  padding-left: 5px;
  font-size: 85%;
}
@media screen and (max-width:767px) {
  input[type=text]::placeholder {
    line-height: 30px;
  }
}

img {
  width: 100%;
}

ul.liststyle-none {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.inline li {
  display: inline-block;
}
ul.number li {
  list-style: decimal;
}

.float-right {
  float: right;
}
@media screen and (max-width:767px) {
  .float-right {
    float: none;
  }
}

.underline {
  text-decoration: underline;
}

.align-center {
  text-align: center;
}

.text-red {
  color: red;
}

.warning {
  font-size: 20px;
  margin: 60px 0 20px;
}

input[type=text] {
  border-radius: 3px;
  border: 1px solid #ddd;
  box-shadow: -4px 4px 0 #ddd;
  height: 30px;
  padding: 0 10px;
}

button {
  cursor: pointer;
}

.file-input-wrapper {
  display: flex;
  position: relative;
  cursor: pointer;
}
.file-input-wrapper button {
  white-space: nowrap;
  height: 30px;
  padding-left: 40px;
  position: relative;
  border: 1px solid #fff;
  background: #eee;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.file-input-wrapper button:before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  left: 0;
  width: 22px;
  height: 22px;
  background: url(../images/frontend/icon-upload.svg) center no-repeat;
  background-size: contain;
  z-index: 1;
  margin-left: 8px;
  opacity: 0.8;
}
.file-input-wrapper input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.file-input-wrapper .uploaded_file_name {
  position: relative;
  width: 70px;
  max-width: none;
  box-shadow: none;
  border: 0;
  background: transparent;
  z-index: 100;
  display: none;
}
.file-input-wrapper .progress-wrp {
  position: absolute;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  left: 32px;
  white-space: nowrap;
  margin-left: 15px;
  opacity: 0;
  transition: all 0.3s ease-in;
}
.file-input-wrapper.upload-success button {
  padding-left: 32px;
  text-indent: -9999px;
}
.file-input-wrapper.upload-success .uploaded_file_name {
  display: block;
  padding-right: 25px;
  background: url(../images/frontend/icon-cross.svg) right center no-repeat;
  background-size: 15px 15px;
  cursor: pointer;
  font-size: 80%;
}
.file-input-wrapper.upload-success .progress-wrp {
  opacity: 1;
  display: none;
}

.select-wrapper {
  border-radius: 3px;
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #ddd;
  box-shadow: -4px 4px 0 #ddd;
  padding-right: 20px;
  position: relative;
}
.select-wrapper:before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  right: 0;
  height: 100%;
  width: 20px;
  background: #ddd url(../images/frontend/icon-down-arrow.svg) center no-repeat;
  background-size: 70% 70%;
  pointer-events: none;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .select-wrapper:before {
    width: 30px;
  }
}
.select-wrapper select {
  padding: 5px 8px;
  border: none;
  box-shadow: none;
  background-color: transparent;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: calc(100% + 20px);
}
.select-wrapper select:focus {
  outline: none;
}

input[type=submit] {
  cursor: pointer;
  border: 0;
}
input[type=submit][disabled] {
  opacity: 0.5;
}

textarea {
  border-radius: 3px;
  border: 1px solid #ddd;
  box-shadow: -4px 4px 0 #ddd;
  padding: 10px;
  resize: none;
  box-sizing: border-box;
}
textarea.full-width {
  width: 100%;
}

.checkbox input[disabled] + span {
  color: #ccc;
}

table.bordered {
  border-collapse: collapse;
  border-spacing: 0;
}
table.bordered th, table.bordered td {
  border: 1px solid #000;
  padding: 5px 10px;
}

@media screen and (max-width:767px) {
  * {
    box-sizing: border-box;
  }
}
.page-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width:767px) {
  .page-wrapper {
    overflow: hidden;
    padding: 0 20px;
  }
}
.page-wrapper:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  background: #5a697d;
}
.page-wrapper:after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  background: #5a697d;
}
@media all and (max-width: 1224px) {
  body:not(.front-page) .page-wrapper:before, body:not(.front-page) .page-wrapper:after {
    display: none;
  }
}
@media all and (max-width: 1124px) {
  .front-page .page-wrapper:before, .front-page .page-wrapper:after {
    display: none;
  }
}

.box {
  width: 1024px;
}
@media screen and (max-width:767px) {
  .box {
    width: 100%;
  }
}
.box .inner-wrap.main {
  position: relative;
}
.box .inner-wrap.second {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.box .color-top-line {
  display: flex;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.box .color-top-line div {
  flex: 1;
  height: 10px;
}
.box .color-top-line .color-1 {
  background: #b5ea76;
}
.box .color-top-line .color-2 {
  background: #f2ffc6;
}
.box .color-top-line .color-3 {
  background: #ffd25d;
}
.box .color-top-line .color-4 {
  background: #ff685d;
}
.box .color-top-line .color-5 {
  background: #e993bc;
}
.box .color-top-line .color-6 {
  background: #d18fe0;
}
.box .color-top-line .color-7 {
  background: #9899ce;
}
@media screen and (max-width:767px) {
  .box .box-heading h1 {
    font-size: 1.15rem;
    text-align: center;
  }
}
.box .box-content {
  display: flex;
  padding: 0 40px;
}
.box .box-content .one-column-wrapper {
  width: 100%;
}
.box .box-content .one-column-wrapper .heading-text {
  font-size: 24px;
  padding: 0 60px;
}
@media screen and (max-width:767px) {
  .box .box-content .one-column-wrapper .heading-text {
    padding: 0;
  }
}
.box .box-content .left-container, .box .box-content .right-container {
  width: 50%;
}
@media screen and (max-width:767px) {
  .box .box-content {
    flex-wrap: wrap;
  }
  .box .box-content .left-container, .box .box-content .right-container {
    width: 100%;
  }
}
.box .verify-block h2 {
  color: #7a7a7a;
  font-size: 32px;
  font-weight: normal;
}
@media screen and (max-width:767px) {
  .box .verify-block h2 {
    margin-top: 0;
    font-size: 1.5rem;
  }
}
.box .verify-block .input-wrapper .input {
  position: relative;
}
.box .verify-block .input-wrapper .input:before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
  background: url(../images/frontend/icon-lock.svg) center no-repeat;
  background-size: contain;
  z-index: 1;
  margin: 2px;
  margin-left: 8px;
  opacity: 0.3;
}
.box .verify-block .input-wrapper input {
  width: 100%;
  box-sizing: border-box;
}
.box .verify-block .input-wrapper [type=text] {
  height: 45px;
  padding-left: 35px;
  position: relative;
  border-radius: 5px;
  font-size: 21px;
}
.box .verify-block .input-wrapper [type=submit] {
  padding: 15px;
  text-align: center;
  background: #ff685d;
  color: #fff;
  margin-top: 15px;
  border-radius: 5px;
  font-size: 32px;
  border: 0;
  box-shadow: 0 4px 0px #ff5044;
}
@media screen and (max-width:767px) {
  .box .verify-block .input-wrapper [type=submit] {
    font-size: 1.25rem;
    padding: 10px 15px;
  }
}
.box .verify-block .tips {
  color: #7a7a7a;
  display: block;
  font-size: 20px;
  margin-top: 40px;
}
@media screen and (max-width:767px) {
  .box .verify-block .tips {
    font-size: 0.85rem;
  }
}
.box .box-footer {
  text-align: center;
}
.box .box-footer p {
  margin-top: 5px;
  margin-bottom: 0;
  font-weight: bold;
}
.box .supporter {
  padding: 20px 0;
}
.box .supporter li {
  font-size: 21px;
  font-weight: bold;
  margin: 0 10px;
}
.box .supporter li:first-child {
  color: #006e3b;
}
.box .supporter li:first-child + li {
  color: #fd0074;
}
.box .supporter li:first-child + li + li {
  color: #342c91;
}
@media screen and (max-width:767px) {
  .box .supporter {
    padding-top: 0;
  }
  .box .supporter li {
    font-size: 1rem;
  }
}
.box .logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.box .logo-item .label {
  white-space: nowrap;
}
.box .logo-item img {
  width: 100%;
}
.box .logo-item li {
  width: 150px;
}
@media screen and (max-width:767px) {
  .box .logo-item {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .box .logo-item ul {
    width: 100%;
  }
}
.box .box-steps-row {
  padding: 20px 0;
  padding-top: 60px;
}
@media screen and (max-width:767px) {
  .box .box-steps-row {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background: #eee;
    z-index: 999;
  }
}
.box .box-steps-row ul {
  margin: 0;
  padding: 0;
  display: flex;
  width: 965px;
  margin-left: auto;
}
@media screen and (max-width:767px) {
  .box .box-steps-row ul {
    width: 100%;
    padding-left: 10px;
  }
}
.box .box-steps-row ul li {
  flex: 1;
  width: 25%;
  height: 50px;
  list-style: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #cccccc;
  color: #fff;
  font-size: 24px;
  position: relative;
  margin-right: 50px;
}
@media screen and (max-width:767px) {
  .box .box-steps-row ul li {
    font-size: 0;
    height: 40px;
    margin-right: 40px;
    flex: none;
    width: auto;
  }
}
.box .box-steps-row ul li:not(:first-child):before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  right: calc(100% - 1px);
  height: 50px;
  width: 50px;
  background-image: url(../images/frontend/step-arrow-backgrey.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50px 50px;
}
.box .box-steps-row ul li:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  left: calc(100% - 1px);
  height: 50px;
  width: 50px;
  background-image: url(../images/frontend/step-arrow-frontgrey.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50px 50px;
}
.box .box-steps-row ul li:first-child {
  padding-left: 50px;
  border-radius: 10px 0 0 10px;
}
.box .box-steps-row ul li:last-child {
  margin-right: 40px;
}
@media screen and (max-width:767px) {
  .box .box-steps-row ul li:not(:first-child):before {
    height: 40px;
    width: 40px;
    background-size: 40px 40px;
  }
  .box .box-steps-row ul li:after {
    height: 40px;
    width: 40px;
    background-size: 40px 40px;
  }
}
@media screen and (max-width:767px) and (max-width:767px) {
  .box .box-steps-row ul li span:before {
    font-size: 15px;
    position: relative;
    left: 50%;
  }
}
.box .box-steps-row ul li.active {
  background: #598dbd;
}
.box .box-steps-row ul li.active:before {
  background-image: url(../images/frontend/step-arrow-backblue.svg);
}
.box .box-steps-row ul li.active:after {
  background-image: url(../images/frontend/step-arrow-frontblue.svg);
}
@media screen and (max-width:767px) {
  .box .box-steps-row ul li.active {
    font-size: 15px;
    padding-left: 10px;
    flex: 1;
  }
  .box .box-steps-row ul li.active span {
    display: flex;
    align-items: center;
  }
  .box .box-steps-row ul li.active span:before {
    position: static;
  }
  .box .box-steps-row ul li.active.passed {
    font-size: 0;
    flex: 0;
  }
}
.box .box-steps-row ul li:nth-child(1) span:before {
  content: "1";
  margin-right: 10px;
}
.box .box-steps-row ul li:nth-child(2) span:before {
  content: "2";
  margin-right: 10px;
}
.box .box-steps-row ul li:nth-child(3) span:before {
  content: "3";
  margin-right: 10px;
}
.box .box-steps-row ul li:nth-child(4) span:before {
  content: "4";
  margin-right: 10px;
}
.box .text-content ul {
  padding-left: 15px;
  line-height: 1.5;
}
.box .text-content ul.liststyle-none {
  padding: 0;
}
.box .text-content ul.liststyle-none > span {
  padding-left: 15px;
}
.box .text-content ul > span {
  margin-top: 40px;
  display: block;
  margin-left: -20px;
  font-weight: bold;
  text-decoration: underline;
}
.box .text-content ul li {
  margin: 5px 0;
}
.box .text-content ul ul > span {
  margin-top: 0;
  padding-left: 0;
  font-weight: normal;
  text-decoration: none;
}
.box .agreement .actions {
  text-align: center;
}
.box .agreement .actions .back, .box .agreement .actions [type=submit] {
  padding: 5px 15px;
  text-align: center;
  background: #ccc;
  color: #fff;
  border-radius: 5px;
  margin: 0 5px;
  margin-bottom: 30px;
}
.box .agreement .actions [type=submit] {
  background: #342c91;
}
.box .checkbox {
  padding: 30px 0 15px;
  text-align: center;
  width: 100%;
}
.box .form-block {
  background: #c9e9ef;
  width: 100%;
  border-radius: 20px;
  padding: 60px 30px 10px;
  margin-top: 80px;
  box-sizing: border-box;
  position: relative;
}
.box .form-block h2 {
  position: absolute;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  top: 0;
  margin-top: -30px;
  color: #fff;
  font-size: 20px;
  background: url(../images/frontend/floating-heading-center.png) center;
  background-size: contain;
  padding: 10px;
  z-index: 1;
}
.box .form-block h2:before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  right: 100%;
  height: calc(100% + 5px);
  width: 30px;
  background: url(../images/frontend/floating-heading-back.png) right center no-repeat;
  background-size: 41px;
  margin-top: 0px;
  margin-right: -1px;
  z-index: 2;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .box .form-block h2:before {
    margin-top: 0;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  .box .form-block h2:before {
    margin-top: -1px;
  }
}
.box .form-block h2:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  left: 100%;
  height: calc(100% + 5px);
  width: 40px;
  background: url(../images/frontend/floating-heading-front.png) left center no-repeat;
  background-size: 41px;
  margin-top: 0px;
  margin-left: -1px;
  z-index: 2;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  .box .form-block h2:after {
    margin-top: -1px;
  }
}
@media screen and (max-width:767px) {
  .box .form-block h2 {
    margin-top: -20px;
  }
}
@media screen and (max-width:767px) {
  .box .form-block.cert-upload h2 {
    width: 75%;
    font-size: 16px;
    padding: 3.5px 5px;
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .box .form-block.cert-upload h2 + .form-container {
    margin-top: 20px;
  }
  .box .form-block.self-desc h2 {
    width: 65%;
  }
}
.box .form-block .form-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
@media screen and (max-width:767px) {
  .box .form-block .form-item.multiple {
    flex-wrap: wrap;
  }
  .box .form-block .form-item.multiple .left, .box .form-block .form-item.multiple .right {
    width: 100%;
  }
  .box .form-block .form-item.multiple .left input, .box .form-block .form-item.multiple .right input {
    flex: 1;
    width: 100%;
  }
}
.box .form-block .form-item.email input {
  width: 200px;
}
.box .form-block .form-item.address {
  align-items: flex-start;
}
@media screen and (max-width:767px) {
  .box .form-block .form-item.address {
    flex-wrap: wrap;
  }
  .box .form-block .form-item.address > * {
    width: 100%;
  }
}
@media screen and (max-width:767px) {
  .box .form-block .form-item.sex .label {
    width: calc(100% - 80px);
  }
}
.box .form-block .form-item .label {
  width: 117px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .box .form-block .form-item .label {
    display: inline-block;
  }
}
@media screen and (max-width:767px) {
  .box .form-block .form-item .label {
    width: 100%;
    font-size: 14px;
    display: block;
    margin: 5px 0;
    padding-right: 10px;
  }
  .box .form-block .form-item .label .sub-label {
    float: right;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .box .form-block .form-item .left.left input, .box .form-block .form-item .right.left input {
    margin-left: -4px;
  }
}
.box .form-block .form-item .left.right .label, .box .form-block .form-item .right.right .label {
  width: 75px;
  text-align: right;
}
@media screen and (max-width:767px) {
  .box .form-block .form-item .left.right .label, .box .form-block .form-item .right.right .label {
    width: 100%;
  }
}
.box .form-block.table-format {
  padding-top: 30px;
}
.box .form-block.table-format table {
  margin-bottom: -35px;
  width: 100%;
}
.box .form-block.table-format th {
  font-size: 85%;
}
.box .form-block.table-format tr td {
  padding-bottom: 10px;
}
.box .form-block.table-format tr td:first-child {
  width: 95px;
}
.box .form-block.table-format tr td .mobile-label {
  display: none;
}
.box .form-block.table-format tr td input[type=text] {
  width: calc(100% - 30px);
}
.box .form-block.table-format tr td .file-input-wrapper {
  display: flex;
  width: 110px;
}
.box .form-block.table-format tr td input[type=text].uploaded_file_name {
  position: relative;
  top: auto;
  left: auto;
  z-index: 100;
  width: 37px;
  float: left;
  font-size: 12px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .box .form-block.table-format tr td input[type=text][id*=date] {
    width: 60px;
    padding: 0 5px;
  }
}
@media screen and (max-width:767px) {
  .box .form-block.table-format tr td .file-input-wrapper {
    width: 100%;
  }
  .box .form-block.table-format tr td .file-input-wrapper input[type=text].uploaded_file_name {
    width: 100%;
  }
}
@media screen and (max-width:767px) {
  .box .form-block.table-format thead {
    display: none;
  }
  .box .form-block.table-format tr td {
    display: block;
  }
  .box .form-block.table-format tr td .mobile-label {
    display: block;
    font-size: 13px;
  }
  .box .form-block.table-format tr td input[type=text][id*=date] {
    width: 150px;
  }
}
.box .form-block.table-format .add-row {
  display: inline-block;
  color: #fff;
  font-size: 85%;
  padding: 5px;
  border: 0;
  border-radius: 3px;
  padding-left: 30px;
  cursor: pointer;
  background-color: #342c91;
  background-image: url(../images/frontend/icon-plus.svg);
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 12px;
}
.box .form-block.table-format .add-row + .small-below {
  display: block;
  font-size: 80%;
  margin-top: 2px;
}
@media screen and (max-width:767px) {
  .box .form-block.table-format .add-row {
    font-size: 18px;
  }
  .box .form-block.table-format .add-row + .small-below {
    margin-bottom: 30px;
  }
}
.box .form-block.agreement {
  padding-top: 30px;
}
.box .form-block.agreement ul {
  padding-left: 20px;
}
.box .form-block.agreement li {
  margin-bottom: 15px;
}
.box .form-block.agreement .text-agree {
  display: flex;
  justify-content: center;
  font-size: 80%;
  margin-top: 50px;
}
.box .form-block.agreement .text-agree .file-input-wrapper {
  top: -10px;
}
.box .form-block.agreement .checkbox {
  padding-top: 10px;
}
.box .form-block .tips {
  position: relative;
  padding-left: 30px;
  line-height: 1.3;
  margin-bottom: 0;
  font-size: 80%;
  max-width: 75%;
}
.box .form-block .tips span {
  position: absolute;
  left: 0;
}
@media screen and (max-width:767px) {
  .box .form-block .tips {
    max-width: none;
  }
}
.box .confirm-block h2 {
  text-decoration: underline;
  font-size: 20px;
  margin-top: 50px;
}
.box .confirm-block .info-container {
  display: flex;
  flex-wrap: wrap;
  padding: 15px 20px;
  border: 1px solid #000;
}
.box .confirm-block .info-container .info-item {
  width: 50%;
  margin-bottom: 5px;
}
@media screen and (max-width:767px) {
  .box .confirm-block .info-container .info-item {
    width: 100%;
    margin-bottom: 15px;
    line-height: 1.3;
  }
}
.box .confirm-block.one-column .info-item {
  width: 100%;
}
.box .confirm-block:first-child h2 {
  margin-top: 20px;
}
.box .confirm-block.table-format .info-container {
  border: 0;
  padding: 0;
}
@media screen and (max-width:767px) {
  .box .confirm-block.table-format .info-container {
    padding: 0;
    overflow: scroll;
    border: 1px solid #eee;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3) inset;
    padding: 10px;
    background: #f8f8f8;
  }
}
.box .confirm-block.table-format table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}
.box .confirm-block.table-format tbody {
  margin-top: 5px;
}
.box .confirm-block.table-format th {
  white-space: nowrap;
  padding-bottom: 10px;
}
.box .confirm-block.table-format td {
  border: 1px solid #000;
  padding: 5px;
}
.box.front {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  width: 900px;
  margin-top: 100px;
}
@media screen and (max-width:767px) {
  .box.front {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
    transform: none;
    position: static;
    margin-top: 15px;
  }
}
.box.front .inner-wrap.main {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 11px -6px rgba(0, 0, 0, 0.5);
}
.box.front .box-heading {
  background: #f7f7f7;
  padding: 20px 20px 20px 40px;
}
.box.front .box-heading h1 {
  margin: 0;
  font-weight: normal;
}
@media screen and (max-width:767px) {
  .box.front .box-heading {
    padding: 10px 15px;
  }
  .box.front .box-heading h1 span {
    display: block;
  }
}
.box.front .box-content .left-container .banner {
  padding-top: 40px;
  padding-bottom: 100px;
}
@media screen and (max-width:767px) {
  .box.front .box-content .left-container .banner {
    padding: 20px 0;
  }
}
.box.front .box-content .right-container {
  display: flex;
  justify-content: center;
}
.box.front .box-footer:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 75%);
  width: 15%;
  height: 20px;
  border-radius: 100%;
  z-index: -1;
  margin-left: -30px;
  margin-bottom: -5px;
}
.box.front .box-footer:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 75%);
  width: 15%;
  height: 20px;
  border-radius: 100%;
  z-index: -1;
  margin-right: -30px;
  margin-bottom: -7px;
}
.box.type-2 {
  margin-top: 50px;
}
@media screen and (max-width:767px) {
  .box.type-2 {
    margin-top: 80px;
  }
}
.box.type-2 .inner-wrap.main {
  padding: 30px;
}
@media screen and (max-width:767px) {
  .box.type-2 .inner-wrap.main {
    padding: 15px;
  }
}
.box.type-2 .box-heading {
  border: 3px solid #5a697d;
  border-radius: 10px;
  padding: 20px;
}
.box.type-2 .box-heading h1 {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: normal;
}
.box.type-2 .box-heading h1 span {
  padding: 5px 25px;
  background: #fff;
  border-radius: 10px;
  max-width: 335px;
}
@media screen and (max-width:767px) {
  .box.type-2 .box-heading h1 {
    flex-wrap: wrap;
    justify-content: center;
  }
  .box.type-2 .box-heading h1 span {
    display: block;
    margin: 20px auto;
  }
}
.box.type-2 .box-content {
  padding: 0;
}
.box.type-2 .box-content h2 {
  text-align: center;
}
.box.type-2 .box-content h2 .small {
  font-size: 18px;
}
.box.type-2.info-confirm .inner-wrap.main {
  padding: 0;
}
.box.type-2.complete .inner-wrap.main {
  padding: 0;
}
.box.tc .inner-wrap.main {
  background: #c9e9ef;
  border-radius: 40px;
  overflow: hidden;
}
.box.tc .box-heading {
  border: 0;
  padding: 20px 0;
  padding-bottom: 0;
}
.box.tc .box-steps-row {
  padding-bottom: 20px;
  padding-top: 20px;
}
.box.tc .box-content {
  background: #fff;
  border-radius: 40px;
  padding: 0 40px;
}
.box.tc .agreement .content {
  padding: 0 15px;
  border: 1px solid #000;
  max-height: 250px;
  overflow-y: scroll;
}
@media screen and (max-width:767px) {
  .box.tc .box-heading {
    padding: 0;
  }
  .box.tc .agreement {
    overflow: hidden;
  }
  .box.tc .agreement .content {
    width: 100%;
  }
}
@media screen and (max-width:767px) {
  .box.apply-info.type-2 .inner-wrap.main {
    padding: 0;
  }
}
.box.info-confirm .blocks-wrapper {
  background: #c9e9ef;
  border-radius: 20px;
  padding: 0 30px;
  padding-bottom: 30px;
}
.box.info-confirm .blocks-wrapper > .inner-wrap {
  background: #fff;
  padding: 20px 15px;
  border-radius: 20px;
}
.box.info-confirm .blocks-wrapper .blocks-heading {
  text-align: center;
  font-size: 20px;
  text-decoration: underline;
  padding: 15px 0;
}
.box.info-confirm .actions {
  text-align: center;
}
.box.info-confirm .actions .back, .box.info-confirm .actions [type=submit] {
  padding: 5px 15px;
  text-align: center;
  background: #ccc;
  color: #fff;
  border-radius: 5px;
  margin: 0 5px;
  margin-top: 30px;
}
.box.info-confirm .actions [type=submit] {
  background: #342c91;
}
@media screen and (max-width:767px) {
  .box.info-confirm .blocks-wrapper {
    padding: 0 15px 25px;
  }
}
.box.complete .box-content {
  background: #c9e9ef;
  border-radius: 40px;
  padding: 0 40px;
}
@media screen and (max-width:767px) {
  .box.complete .box-content {
    padding: 0 20px;
    margin-top: 30px;
    border-radius: 20px;
  }
}
.box.complete .text-content {
  background: #fff;
  border-radius: 40px;
  padding: 0 40px;
}
.box.complete .text-content p.text-big {
  font-size: 20px;
  text-align: center;
  padding: 50px 0;
  line-height: 1.5;
}
@media screen and (max-width:767px) {
  .box.complete .text-content {
    border-radius: 20px;
  }
}
.box.complete .actions {
  text-align: center;
  margin-bottom: 20px;
}
.box.complete .actions .back, .box.complete .actions [type=submit] {
  padding: 5px 15px;
  text-align: center;
  background: #342c91;
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
  margin: 0 5px;
  margin-bottom: 30px;
}
.box.complete .actions [type=submit] {
  background: #342c91;
}

/*# sourceMappingURL=main.css.map */
