@charset "UTF-8";
:root {
  /* color */
  --color-green: #004F1A;
  --color-navy: #151F30;

  /* text-color */
  --main-font-color: #111111;
}

/* Button */
.btn {
  display: inline-block;
  border-radius: 8px;
  text-align: center;
}

.btn-md {
  height: 48px;
  line-height: 48px;
  font-size: 18px;
}

.btn-lg {
  height: 52px;
  line-height: 52px;
  font-size: 18px;
}

.btn-w100p {
  width: 100%;
}

.btn_p16 {
  padding: 0 16px;
}

.btn_navy {
  background-color: var(--color-navy);
  color: #fff;
}

.btn_link {
  border-radius: 500px;
  background-color: var(--color-navy);
  padding: 0 24px;
}

.btn_link span {
  color: #fff;
  font-weight: 600;
  position: relative;
  padding-right: 32px;
  transition: 0.35s;
}

.btn_link span:after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../_img/icon/icon_link_arrow.svg) no-repeat center center / contain;
}

.btn_link:hover span {
  padding-right: 40px;
}

/* #### Modal #### */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: -webkit-fill-available;
  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;
  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;
}

/* Form */
input[type=text],
input[type=password],
input[type=number],
input[type=email],
input[type=tel] {
  border: 1px solid #E2E2E2;
  border-radius: 4px;
  background-color: #fff;
  padding: 0 16px;
  font-size: 16px;
}

input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: #999999;
}

/* Select */
.select-primary {
  height: 46px;
  line-height: 46px;
  float: none;
  width: 200px;
  display: inline-block;
}

.select-primary .list {
  width: inherit;
  max-height: 190px;
  overflow-y: auto;
  z-index: 1000;
}

.select-primary:active,
.select-primary.open,
.select-primary:focus {
  border-color: #ddd;
}

.select-primary .option {
  border-bottom: 1px solid #ddd;
  height: 40px;
  line-height: 40px;
}

.select-primary .option:last-child {
  border-bottom: none;
}

.select-primary .option.selected {
  font-weight: normal;
}

.select-primary:after {
  border-bottom: none;
  border-right: none;
  display: inline-block;
  width: 14px;
  height: 8px;
  background: url(/_img/common/icon_arrow_bottom.svg) no-repeat center center / contain;
  transform: translateY(-50%) rotate(0deg);
  margin-top: 0;
  right: 15px;
}

.select-primary.open:after {
  transform: translateY(-50%) rotate(-180deg);
  transform-origin: center !important;
}