.logo-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  padding: 20px 0;
  z-index: 10;
}

.logo-wrap .main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-wrap .main,
.logo-wrap .main>div,
.logo-wrap img {
  height: 100%;
}

.section-io-7 {
  position: relative;
  background-color: #f4f4f4;
}

.section-io-7::after {
  content: '';
  width: 33%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(142deg, rgb(170, 0, 5) 14.05%, rgba(170, 0, 5, 0) 77.26%), rgb(255, 0, 0);
  position: absolute;
  bottom: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 100%, 0% 100%);
}

.section-io-7::before {
  content: '';
  width: 77%;
  aspect-ratio: 4 / 3;
  background: rgba(102, 102, 102, .2);
  position: absolute;
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

.section-io-7 .container {
  width: 100%;
}

.section-io-7 .table-wrap {
  backdrop-filter: blur(30px);
}

.section-io-7 table {
  width: 100%;
  border-top: 2px solid var(--io-theme-color);
  box-shadow: var(--theme-box-shadow);
  border-collapse: collapse;
}

.section-io-7 td {
  padding: 15px 10px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .1);
}

.section-io-7 thead td {
  background-color: #f4f4f4;
}

.section-io-7 thead td:first-child {
  text-align: left;
}

.section-io-7 tbody {
  position: relative;
}

.section-io-7 tbody::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  transform: translateY(-100%);
  background: linear-gradient(to top, rgba(0, 0, 0, .1), transparent);
}

.section-io-7 tbody td:first-child {
  text-align: left;
  background: url(../images/vector.png) no-repeat;
  background-position: 10px center;
  padding-left: 25px;
}

.section-io-7 tbody td:last-child .handle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10%;
  flex: 0 0 auto;
}

.section-io-7 tbody td:last-child .handle-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  flex: 0 0 auto;
}

.section-io-7 tbody td:last-child .history-version {
  color: #0000ee;
  cursor: pointer;
}

.section-io-7 tbody tr:nth-child(odd) td {
  background-color: rgba(255, 255, 255, .9);
}

.section-io-7 tbody tr:nth-child(even) td {
  background-color: #f7f7f7;
}

.section-io-7 table .handle-item:hover {
  color: var(--io-theme-color);
}

.copyright.page-copyright {
  width: 100%;
  padding: max(20px, 50 * var(--custom-size)) 0;
  border-top: 1px solid rgba(0, 0, 0, .1);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: right;
  gap: 30px;
  flex-direction: column;
}

.copyright.page-copyright .info {
  color: #544747;
}

.copyright.page-copyright .contact-wrap {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: flex-end;
}

.copyright.page-copyright .contact-wrap .contact {
  font-size: 16px;
}

.copyright-wrap br.mo {
  display: none;
}

.copyright.page-copyright .copyright-wrap {
  text-align: right;
  color: #544747;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.copyright.page-copyright .copyright-wrap a {
  color: #544747;
  margin-left: 10px;
  text-decoration: underline;
}

.slimScrollBar {
  opacity: 0 !important;
}

.backtop {
  position: fixed;
  bottom: max(50px, 130 * var(--custom-size));
  right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: .3s;
  cursor: pointer;
  z-index: 99;
}

.backtop:hover {
  background-color: #f00;
}

.dialog-wrap {
  padding: var(--custom-size-20-40, var(--px-20-40));
  background-color: #fff;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate3d(-50%, -100%, 0);
  flex-direction: column;
  gap: 10px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(71, 52, 26, 0.1);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

.dialog-wrap svg {
  display: none;
}

.dialog-wrap.dialog-wrap-active {
  transform: translate3d(-50%, -50%, 0);
  opacity: 1;
  visibility: visible;
  transition: .3s;
}

.dialog-wrap.success .success-svg {
  display: block;
}

.dialog-wrap.error .error-svg {
  display: block;
}

.page-dialog-wrap {
  position: fixed;
  top: 10%;
}

.video-cont {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
}

.video-cont .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .7);
}

.video-cont .video-wrap {
  width: 50%;
  position: relative;
  z-index: 1;
}

.video-cont .video-wrap video {
  width: 100%;
}

.close-video {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: clamp(30px, 50* var(--custom-size), 50px);
  aspect-ratio: 1;
  background-color: #fff;
  cursor: pointer;
}

.close-video img {
  width: 30%;
}

.page-video-cont .video-wrap {
  background-color: #f1f1f1;
  padding: 30px;
}

.page-video-cont .close-video {
  transform: translateX(200%);
}

.page-video-cont .form {
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 20px;
  display: none;
}


.form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #666;
  position: relative;
  z-index: 1;
}

.form .item {
  width: 48%;
  margin-bottom: 18px;
  position: relative;
}

.form .item::after {
  content: '';
  position: absolute;
  bottom: clamp(0px, 18 * var(--custom-size), 18px);
  left: 5px;
  width: 20px;
  height: 20px;
  background: url() no-repeat center;
}

.form .item:nth-child(1)::after {
  background-image: url(../images/icon3.png);
}

.form .item:nth-child(2)::after {
  background-image: url(../images/icon6.png);
}

.form .item:nth-child(3)::after {
  background-image: url(../images/icon4.png);
}

.form .item:nth-child(5)::after {
  background-image: url(../images/area.png);
  bottom: clamp(0px, 17 * var(--custom-size), 17px);
}

.form .item:nth-child(4)::after {
  background-image: url(../images/icon5.png);
}

.form .item:nth-child(6)::after {
  background-image: url(../images/icon7.png);
  bottom: clamp(0px, 16 * var(--custom-size), 16px);
}

.form .item:nth-child(9)::after {
  background-image: url(../images/icon8.png);
  bottom: clamp(0px, 16 * var(--custom-size), 16px);
}

.form .item .label {
  font-size: clamp(14px, 16 * var(--custom-size), 16px);
  margin-bottom: 10px;
}

.form .item.necessary .label::before {
  content: '*';
  color: var(--theme-color);
}

.form .item input,
.form .item select,
.form .item textarea {
  width: 100%;
  padding: clamp(10px, 15* var(--custom-size), 15px);
  padding-left: 28px;
  box-sizing: border-box;
  outline: unset;
  resize: unset;
  background-color: #fff;
  border: unset;
  border-bottom: 2px solid var(--theme-color);
}

.form .item textarea {
  height: clamp(100px, 140* var(--custom-size), 180px);
}

.form .item .radio {
  position: relative;
  z-index: 1;
}

.w100 {
  width: 100% !important;
}

.form .tips {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 14px;
  color: var(--theme-color);
  transform: translateY(100%);
  display: none;
}

select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.select-wrap {
  position: relative;
  box-sizing: border-box;
  user-select: none;
  background-color: #fff;
  border-bottom: 2px solid var(--theme-color);
}

.select-checked {
  box-sizing: border-box;
  padding: clamp(10px, 15* var(--custom-size), 15px);
  padding-left: 28px;
  margin-right: clamp(35px, 20* var(--custom-size) + 25px, 45px);
  height: 54px;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
}

.select-option {
  width: calc(100% + 2px);
  box-sizing: border-box;
  position: absolute;
  top: calc(100% + 1px);
  left: -1px;
  border: 1px solid #ccc;
  border-top: 0;
  background-color: #fff;
  z-index: 1;
  display: none;
  padding: 10px 0;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .3);
}

.select-option-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.select-option .option-item {
  margin-bottom: 10px;
  position: relative;
  padding: 5px clamp(10px, 20* var(--custom-size), 20px) 5px clamp(30px, 45* var(--custom-size), 45px);
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 14px;
}

.select-option .option-item:hover {
  color: var(--theme-color);
}

.select-option .option-item::after {
  content: '';
  width: clamp(10px, 15* var(--custom-size), 15px);
  height: clamp(10px, 15* var(--custom-size), 15px);
  position: absolute;
  top: 0.6em;
  left: clamp(10px, 20* var(--custom-size), 20px);
  /* transform: translateY(-50%); */
  border-radius: 50%;
  border: 1px solid #ccc;
}

.select-option .option-item.active {
  color: var(--theme-color);
}

.select-option .option-item.active::after {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
}

.select-option .option-item.custom {
  display: flex;
  align-items: center;
}

.select-option .option-item.custom span {
  flex-shrink: 0;
}

.select-option .option-item.custom:hover input {
  border-color: var(--theme-color);
}

.select-option .option-item input.custom-input {
  border: 0;
  border-bottom: 1px solid #ccc;
  padding: 0;
  margin-left: 5px;
  flex: 1;
}

.form .item[data-field-type="profession"] .select-option {
  flex-wrap: wrap;
}

.form .item[data-field-type="profession"] .option-item {
  width: 50%;
  flex: 0 0 auto;
}

.form .item .option-item.custom {
  width: 100%;
}

.select-wrap::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../images/bottom.png) no-repeat;
}

select option {
  padding: 10px 0;
}

.radio {
  display: flex;
}

.radio label {
  width: clamp(30px, 40 * var(--custom-size), 40px);
  height: clamp(30px, 40 * var(--custom-size), 40px);
  background-color: #fff;
  margin-right: 10px;
  cursor: pointer;
}

.radio label:hover {
  box-shadow: 0px 0px 10px 0px rgba(71, 52, 26, 0.1);
}

.radio input[type=radio]:checked+label {
  background: var(--theme-color);
  color: #fff;
}

.privacy_radio .radio-wrap {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
}

.privacy_radio label {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-color: unset;
  border: 1px solid #666;
}

.privacy_radio input[type=radio]:checked+label {
  background: url(../images/agree.png) no-repeat center / contain;
  border-color: var(--theme-color);
}

.submit .back-wrap {
  width: clamp(200px, 400 * var(--custom-size), 400px);
  padding: clamp(10px, 15 * var(--custom-size), 15px) clamp(20px, 30 * var(--custom-size), 30px);
  font-size: clamp(16px, 24 * var(--custom-size), 24px);
  background-color: var(--theme-color);
  color: #fff;
  cursor: pointer;
  text-align: center;
  transition: .3s;
  margin-top: 30px;
}

.submit .back-wrap.submitting {
  background-color: #ccc;
  cursor: not-allowed;
}

.submit .back-wrap:not(.submitting):hover {
  transform: scale(1.1);
}

.page-video-cont .form .item,
.page-video-cont .submit {
  visibility: visible !important;
  animation: none !important;
}

.page-video-cont .sliceIO-none {
  display: none;
}

.page-video-cont .form a {
  color: #f00;
}

@media (max-width: 780px) {
  .video-cont .video-wrap {
    width: 85%;
  }

  .video-cont .video-wrap .close-video {
    transform: translateX(0%);
    background-color: transparent;
  }

  .form .item::after {
    bottom: 14px !important;
  }

  .form .item {
    width: 100%;
  }

}

@media (max-width: 580px) {
  .copyright-wrap br.mo {
    display: block;
  }
}