@charset "UTF-8";
:root {
  --color-primary: #017DC3;
}

/* Button */
.btn {
  display: inline-block;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.btn-mini {
  height: 32px;
  line-height: 32px;
}

.btn-sm {
  height: 40px;
  line-height: 40px;
}

.btn-md {
  height: 48px;
  line-height: 48px;
}

.btn-lg {
  height: 52px;
  line-height: 52px;
}

.btn-big {
  height: 56px;
  line-height: 56px;
}

.btn-w100p {
  width: 100%;
}

.btn-textType {
  text-decoration: underline;
  font-size: 14px;
  font-weight: 400;
}

.btn_p16 {
  padding: 0 16px;
}

.btn_p20 {
  padding: 0 20px;
}

.btn_round {
  border-radius: 800px;
}

.btn_primary {
  background-color: var(--color-primary);
  color: #fff;
}

.btn_outlined_primary {
  background-color: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn_green {
  background-color: #58B93D;
  color: #fff;
}

.btn_drak_gray {
  color: #fff;
  background-color: #333333;
}

.btn_area {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn_list {
  width: 160px;
}

.btn_download {
  padding: 0 16px;
}

.btn_download span {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  padding-left: 26px;
  position: relative;
}

.btn_download span::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(/eng/_img/icon/icon_download.svg) no-repeat center / contain;
}

/* #### Modal #### */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
  opacity: 0;
}

.modal.open {
  z-index: 1000;
  opacity: 1;
}

.modal__inner {
  position: absolute;
  top: 47.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  border-radius: 8px;
  background-color: #fff;
  transition: 0.45s;
  opacity: 0;
}

.modal.open .modal__inner {
  top: 50%;
  opacity: 1;
}

.modal__content::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.modal__content::-webkit-scrollbar-thumb {
  height: 30%;
  background: #dddddd;
  border-radius: 10px;
}

.modal__content::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 20px;
}

/* TEXT */
.h2_tit {
  font-size: 40px;
  font-weight: 600;
  color: #111;
}

.h3_tit {
  font-size: 28px;
  font-weight: 600;
  color: #111;
}

/* Form */
.form-control {
  border: 1px solid #E5E5EC;
  background-color: #fff;
  padding: 0 24px;
  font-size: 16px;
  height: 56px;
  font-size: 18px;
}

.form-control::placeholder {
  font-size: 18px;
  font-weight: 400;
  color: #999999;
}

select.select--typeA::-ms-expand {
  display: none;
}

.select--typeA {
  -o-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.select--typeA {
  height: 56px;
  background: url(/eng/_img/icon/icon_select_arrow.svg) no-repeat center right 24px / 14px 8px;
  padding: 0px 24px;
  border: 1px solid #E5E5EC;
}

.select--typeA option {
  background: #fff;
  color: #111;
}

.textarea--typeA {
  min-height: 320px;
  border: 1px solid #E5E5EC;
  width: 100%;
  font-size: 18px;
  padding: 16px 24px;
}

.textarea--typeA::placeholder {
  font-size: 18px;
  color: #999;
}

/* Checkbox */
.checkbox label {
  display: flex;
  align-items: flex-start;
  color: #111111;
}

.checkbox input[type=checkbox] {
  display: none;
}

.checkbox input[type=checkbox]+em {
  display: inline-block;
  width: 22px;
  height: 22px;
  font-style: normal;
  margin-right: 8px;
  flex-shrink: 0;
  margin-top: 2px;
  background: url(/eng/_img/icon/icon_checkbox.svg) no-repeat center center / contain;
}

.checkbox input[type=checkbox]:checked+em {
  background: url(/eng/_img/icon/icon_checkbox_on.svg) no-repeat center center / contain;
}

.font_libre {
  font-family: "Libre Bodoni", serif;
}

/* Mobile */
@media screen and (max-width:767px) {
  .btn_list {
    width: 120px;
  }
  .h2_tit {
    font-size: 20px;
  }
  .h3_tit {
    font-size: 20px;
  }
  .form-control {
    height: 48px;
    font-size: 14px;
  }
  .form-control::placeholder {
    font-size: 14px;
  }
  .select--typeA {
    height: 48px;
    padding: 0 16px;
  }
  .textarea--typeA {
    min-height: 120px;
    padding: 16px;
    font-size: 14px;
  }
  .textarea--typeA::placeholder {
    font-size: 14px;
  }
  .checkbox label {
    font-size: 14px;
  }
}