@charset "UTF-8";
/*
	CSS Triangle
	used for creating CSS only triangles
	example:
*/
/*
p {
  @include multi-line-ellipsis(2); // 2줄을 초과하면 말줄임표 처리
  width: 200px;
}
 */
/*
	Hide text
*/
/*
	Typography
	Text image replacement, with responsive ratio
*/
@font-face {
  font-family: "pretendard";
  text-transform: normal;
  font-weight: normal;
  src: url("../fonts/Pretendard-Regular.woff") format("woff"), url("../fonts/Pretendard-Regular.ttf") format("truetype"), url("../fonts/Pretendard-Regular.otf") format("opentype");
}
@font-face {
  font-family: "pretendardSB";
  text-transform: normal;
  font-weight: normal;
  src: url("../fonts/Pretendard-SemiBold.woff") format("woff"), url("../fonts/Pretendard-SemiBold.ttf") format("truetype"), url("../fonts/Pretendard-SemiBold.otf") format("opentype");
}
@font-face {
  font-family: "pretendardB";
  text-transform: normal;
  font-weight: normal;
  src: url("../fonts/Pretendard-Bold.woff") format("woff"), url("../fonts/Pretendard-Bold.ttf") format("truetype"), url("../fonts/Pretendard-Bold.otf") format("opentype");
}
@font-face {
  font-family: "pretendardEB";
  text-transform: normal;
  font-weight: normal;
  src: url("../fonts/Pretendard-ExtraBold.woff") format("woff"), url("../fonts/Pretendard-ExtraBold.ttf") format("truetype"), url("../fonts/Pretendard-ExtraBold.otf") format("opentype");
}
@font-face {
  font-family: "pretendardL";
  text-transform: normal;
  font-weight: normal;
  src: url("../fonts/Pretendard-Light.woff") format("woff"), url("../fonts/Pretendard-Light.ttf") format("truetype"), url("../fonts/Pretendard-Light.otf") format("opentype");
}
@font-face {
  font-family: "pretendardM";
  text-transform: normal;
  font-weight: normal;
  src: url("../fonts/Pretendard-Medium.woff") format("woff"), url("../fonts/Pretendard-Medium.ttf") format("truetype"), url("../fonts/Pretendard-Medium.otf") format("opentype");
}
h1 {
  font-family: "pretendarEB", Arial, sans-serif;
  font-size: 4.4rem;
}

h2 {
  font-family: "pretendardB", Arial, sans-serif;
  font-size: 3rem;
}

h3 {
  font-family: "pretendardB", Arial, sans-serif;
  font-size: 2.2rem;
}
h3.title {
  line-height: 2.5rem;
  margin-bottom: 20px;
}

h4 {
  font-family: "pretendardM", Arial, sans-serif;
  font-size: 1.4rem;
}
h4.sub__title {
  color: #9a9a9a;
  text-decoration: underline;
  margin-bottom: 12px;
}

h5 {
  font-family: "pretendardB", Arial, sans-serif;
  font-size: 1.3rem;
}
h5.sub__title {
  line-height: 2.2rem;
}

div,
p,
span,
input,
a,
li {
  color: #333;
  font-family: "pretendard", Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 2.2rem;
  word-break: keep-all;
}

b {
  font-family: "pretendardB", Arial, sans-serif;
}

.alert {
  color: #ff6e00;
  font-size: 1.4rem;
}

.txt-aCenter {
  text-align: center !important;
}
.txt-aLeft {
  text-align: left !important;
}
.txt-white {
  color: #ffffff !important;
}
.txt-black {
  color: #000 !important;
}
.txt-gray {
  color: #333 !important;
}
.txt-big {
  font-size: 2.2rem;
}
.txt-mid {
  font-size: 1.8rem;
}
.txt-small {
  font-size: 1.2rem;
}
.txt-bold {
  font-family: "pretendardB", Arial, sans-serif;
}
.txt-sBold {
  font-family: "pretendardSB", Arial, sans-serif;
}
.txt-light {
  font-family: "pretendardL", Arial, sans-serif;
}

.placeholder-gray::-moz-placeholder {
  color: #333 !important;
}

.placeholder-gray::placeholder {
  color: #333 !important;
}

/**
reset
**/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "pretendard", Arial, sans-serif;
}

html,
body {
  width: 100%;
  font-size: 10px;
  font-weight: 400;
  color: #000;
}

header,
footer,
section,
article,
aside,
nav,
hgroup,
details,
menu,
figure,
figcaption {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  margin-bottom: 0;
}

ol,
ul,
li {
  list-style: none;
}

input,
textarea {
  border: 0;
  border-radius: 0px; /* iOS 둥근모서리 제거 */
}

input,
select,
textarea,
button {
  outline: none;
}

button {
  background-color: transparent;
}

textarea {
  resize: none;
}

select {
  cursor: pointer;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
  border-style: hidden;
  width: 100%;
  text-align: center;
  table-layout: fixed;
}

th,
td {
  border-collapse: collapse;
}

caption,
legend {
  overflow: hidden;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}

form,
fieldset,
iframe,
button,
hr {
  border: 0;
}

i,
em,
address {
  font-style: normal;
}

button {
  cursor: pointer;
}

blockquote,
q {
  quotes: none;
}

img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}

a {
  outline: 0;
  text-decoration: none;
  color: inherit;
}

strong {
  font-weight: 700;
}

.p-10 {
  padding: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.p-20 {
  padding: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.p-30 {
  padding: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.p-40 {
  padding: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.p-50 {
  padding: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.p-60 {
  padding: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.p-70 {
  padding: 70px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.m-auto {
  margin: 0 auto;
}

.d-flex {
  display: flex;
  align-items: center;
}
.d-flexBtw {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.d-flexCenter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}
.d-block {
  display: block !important;
}

.w-auto {
  width: auto !important;
}

.hide {
  display: none;
}

.txt-disc {
  color: #9a9a9a;
  font-size: 1.1rem;
  margin-left: 8px;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

img {
  display: flex;
  width: 100%;
  height: auto;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #060a3d;
  min-height: 100vh;
}
body.bg--white {
  background-color: #ffffff;
}

.outer__wrap {
  width: 100%;
  max-width: 700px;
  flex-grow: 1;
  margin: 0 auto;
  padding-top: 76px;
}

section {
  padding: 20px;
}
section.sec__borderBtm {
  position: relative;
}
section.sec__borderBtm::after {
  content: "";
  width: calc(100% - 40px);
  height: 1px;
  background-color: #e8e8e8;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 20px;
}

.p-dot {
  margin-left: 10px;
  position: relative;
}
.p-dot::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #9a9a9a;
  border-radius: 3px;
  position: absolute;
  left: -8px;
  top: 10px;
}

header {
  width: 100%;
  max-width: 700px;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 1.4rem;
  position: fixed;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 10;
}
header .menu-icon {
  width: 2rem;
  box-sizing: initial;
  padding: 16px;
  padding-left: 2px;
}
header .logo {
  max-width: 68px;
  width: 20%;
}

footer {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  background-color: transparent;
  padding: 14px 20px;
}
footer > img {
  width: 50%;
  margin: 0 auto 18px;
}
footer p {
  font-size: 1rem;
  color: #c6c6c6;
}

button,
div,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus,
div:focus,
a:focus {
  outline: none;
  box-shadow: none;
}

.btn {
  min-width: 100px;
  width: 100%;
  background-color: #ff6e00;
  border-radius: 14px;
  color: #ffffff;
  font-family: "pretendardB", Arial, sans-serif;
  font-size: 1.8rem;
  padding: 16px;
  text-align: center;
}
.btn--100 {
  width: calc(100% - 40px);
  margin-bottom: 20px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.btn:disabled {
  background-color: #dcdcdc !important;
  color: #ffffff;
}
.btn-black {
  background-color: #333;
  font-weight: 500;
  padding: 16px 35px;
}
.btn-orangeLine {
  background-color: #ffffff;
  border: 1px solid #ff6e00;
  color: #ff6e00;
}

.form__item {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.form__item:not(:first-of-type) {
  margin-top: 20px;
}
.form__label {
  width: 100%;
  max-width: 85px;
  font-weight: 600;
  margin-right: 10px;
  padding: 8px 0;
  font-family: "pretendardSB", Arial, sans-serif;
}
.form__label--bullet label:after {
  content: "*";
  margin-left: 2px;
}
.form__label__txt {
  margin-top: 2px;
  font-size: 10px;
}
.form__label--hide {
  display: none;
}
.form__label .alert {
  margin-top: 5px;
}
@media only screen and (min-width: 768px) {
  .form__label .alert {
    margin-top: 0;
  }
}
.form__ipt {
  width: calc(100% - 80px);
}
.form__guide {
  margin-top: 2px;
  font-size: 10px;
}
.form__cnt {
  width: 100%;
}
.form__alert {
  margin-top: 8px;
  font-size: 12px;
  text-align: left;
}
.form__div, .form__p {
  padding: 10px;
}
.form__txt {
  padding: 8px 0;
}

input {
  width: 100%;
  border-bottom: 1px solid #e8e8e8;
  color: #000;
  font-size: 1.6rem;
  margin-bottom: 5px;
  padding: 9px 8px;
  /* Checkbox Base Styling - Hide the default checkbox */
  /* Add the custom checkmark using a pseudo-element */
}
input::-moz-placeholder {
  color: #d9d9d9;
  font-size: 1.3rem;
}
input::placeholder {
  color: #d9d9d9;
  font-size: 1.3rem;
}
input:-moz-read-only {
  background-color: #ffffff;
}
input:disabled, input:read-only {
  background-color: #ffffff;
}
input[type=checkbox] {
  /* 기본 브라우저 체크박스 숨기기 */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: none;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 3px;
}
input[type=checkbox]::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../images/icon/check.svg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}
input[type=checkbox] + p {
  padding-left: 25px;
}
input[type=checkbox]:checked::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../images/icon/check_on.svg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}

label {
  position: relative;
}
label.label-required::after {
  content: "*";
  color: #e94929;
  position: absolute;
  right: -10px;
  top: 0;
}

.ipt-txt {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
}
.ipt-txt:focus {
  border-color: #000;
}
.ipt-txt:-moz-read-only {
  border-color: #d9d9d9;
}
.ipt-txt:read-only {
  border-color: #d9d9d9;
}
.ipt-txt::-webkit-inner-spin-button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.ipt-txt--s {
  height: 30px;
  line-height: 28px;
  font-size: 12px;
}
.ipt-count {
  margin-top: 5px;
  text-align: right;
  font-size: 11px;
}
.ipt-wrap__item:not(:first-child) {
  margin-top: 15px;
}
.ipt-wrap__item label {
  width: 120px;
  text-align: left;
}
.ipt-wrap__box {
  display: flex;
  align-items: center;
}
.ipt-wrap__box .ipt-txt {
  width: 100%;
}
.ipt-wrapWbtn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ipt-wrapWbtn input {
  flex-grow: 1;
}
.ipt-wrapWbtn .btn {
  width: auto;
  font-size: 1.2rem;
  flex-shrink: 0;
  padding: 11px 9px;
}
.ipt-confirm {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ipt-confirm:after {
  content: "";
  width: 15px;
  height: 15px;
  background-position: 0 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.ipt-confirm--true:after {
  background-image: url("../images/resources/ico_pw_true.svg");
}
.ipt-confirm--false:after {
  background-image: url("../images/resources/ico_pw_false.svg");
}
.ipt-pw__wrap {
  position: relative;
}
.ipt-pw__wrap .pw-toggle {
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 10px;
  z-index: 5;
}
.ipt--styleHide {
  background-color: #fff !important;
  border: none;
}

.checkbox {
  padding: 8px 0;
}
.checkbox__item {
  margin-right: 15px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.checkbox__item label,
.checkbox__item input {
  cursor: pointer;
  font-size: 13px;
  line-height: 18px;
  color: #d9d9d9;
  white-space: nowrap;
}

/* 라디오 아이템 커스텀 스타일 */
.radio-item {
  width: 30px;
  display: flex;
  align-items: center;
  margin-right: 10px;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.radio-item label {
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 12px;
  border: 2px solid transparent;
}

/* input radio 버튼 숨기기 */
input[type=radio] {
  display: none;
}
input[type=radio] + label .custom-radio {
  border-color: none;
  background-color: #ffffff;
}
input[type=radio] + label .custom-radio::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: #d9d9d9;
  border-radius: 50%;
}
input[type=radio]:checked + label .custom-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: #ff6e00;
  border-radius: 50%;
}

/* 커스텀 라디오 버튼 (외부 원) */
.custom-radio {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s;
}

.select__wrap {
  position: relative;
}
.select__wrap .custom-arrow {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(90deg);
  pointer-events: none;
}
.select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #ffffff;
  border: none;
  border-bottom: 1px solid #e8e8e8;
  color: #333;
  font-size: 1.6rem;
  padding: 15px 16px;
}

.textarea {
  width: 100%;
  background-color: #333;
  border: none;
  border-radius: 4px;
  color: #ffffff;
  font-size: 1.6rem;
  padding: 15px 16px;
}
@media only screen and (min-width: 768px) {
  .textarea {
    min-height: 180px;
  }
}

.file-upload-container {
  display: flex;
  align-items: center;
  border-radius: 4px;
}
.file-upload-label {
  min-width: 100px;
  display: inline-block;
  padding: 12px 22px;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 5px;
  cursor: pointer;
}
.file-upload-input {
  display: none;
}

/* 업로드된 파일 이름 표시 스타일 */
.file-name {
  color: #ffffff;
  margin-left: 10px;
}

.pop {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
}
.pop__inner {
  width: 100%;
  max-width: 286px;
  height: 100%;
  background-color: #ffffff;
  padding: 20px;
  padding-top: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.pop__top {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.pop .logo {
  width: 68px;
}
.pop .pop__close {
  width: 22px;
  box-sizing: initial;
  padding-right: 18px;
}
.pop-menu .pop__cnt > ul > li {
  border-bottom: 1px solid #e8e8e8;
  padding: 15px 14px;
}
.pop-menu .pop__cnt > ul > li:first-of-type {
  border-top: 1px solid #e8e8e8;
}
.pop-menu .pop__cnt > ul > li a {
  display: block;
  width: 100%;
  font-family: "pretendardM", Arial, sans-serif;
  font-size: 1.6rem;
}
.pop-menu .pop__cnt > ul .menu.on {
  color: #044ed7;
  font-family: "pretendardB", Arial, sans-serif;
  text-decoration: underline;
}
.pop-menu .pop__cnt .accordion__box .accordion__title {
  font-family: "pretendardB", Arial, sans-serif;
  font-size: 1.6rem;
}
.pop-menu .pop__cnt .accordion__box.active .accordion__title {
  color: #044ed7;
}
.pop-menu .pop__cnt .accordion__box ul {
  background-color: #f4f5f7;
  padding: 10px 0;
}
.pop-menu .pop__cnt .accordion__box ul li {
  padding: 7px 14px;
}
.pop-menu .pop__cnt .accordion__box ul li a {
  font-family: "pretendardM", Arial, sans-serif;
  font-size: 1.4rem;
}
.pop-type2 .pop__inner {
  max-width: 100%;
  max-height: 526px;
  border-radius: 15px 15px 0 0;
  padding-top: 20px;
}
.pop-type2 h4 {
  font-family: "pretendardB", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 2.2rem;
}
.pop-type2 .pop__close {
  position: absolute;
  top: 30px;
  right: 10px;
}
.pop-type2 .btn--100 {
  width: 100%;
}
.pop-type2 .scroll__wrap {
  max-height: 346px;
  background-color: #f4f5f7;
  border-radius: 10px;
  overflow-y: auto;
  margin-bottom: 20px;
  padding: 20px;
}
.pop-type2 .scroll__wrap p {
  color: #595959;
  font-size: 1.1rem;
  line-height: 1.6rem;
}
.pop-type2 .scroll__wrap .p--dash {
  margin-bottom: 8px;
  padding-left: 10px;
  position: relative;
}
.pop-type2 .scroll__wrap .p--dash::before {
  content: "";
  width: 3px;
  height: 1px;
  display: block;
  background-color: #595959;
  position: absolute;
  left: 4px;
  top: 7px;
}
.pop-type2 .scroll__wrap h5.agree__title {
  font-family: "pretendardSB", Arial, sans-serif;
  font-size: 1.1rem;
  margin-top: 12px;
  padding-left: 10px;
  position: relative;
}
.pop-type2 .scroll__wrap h5.agree__title::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #000;
  border-radius: 3px;
  position: absolute;
  left: 3px;
  top: 7px;
}
.pop-type2 .scroll__wrap .data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px 0;
  margin: 10px 0 5px;
}
.pop-type2 .scroll__wrap .data-table th,
.pop-type2 .scroll__wrap .data-table td {
  color: #595959;
  font-size: 1rem;
  text-align: center;
  line-height: 1.5rem;
}
.pop-type2 .scroll__wrap .data-table th {
  background-color: #e8e8e8;
  font-weight: bold;
  padding: 7px;
}
.pop-type2 .scroll__wrap .data-table td {
  border-bottom: 1px solid #9a9a9a;
  padding: 3px;
}
.pop-type2 .scroll__wrap .data-table:nth-child(2) {
  margin-top: 0px;
}
.pop-type2 .table-container + p {
  margin-top: 10px;
}

.swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 20px !important;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper .swiper-pagination {
  bottom: 5px !important;
}
.swiper .swiper-pagination-bullet {
  width: 14px;
  height: 7px;
  background-color: #d9d9d9;
  border-radius: 10px;
  margin: 0 6px !important;
  opacity: 1;
}
.swiper .swiper-pagination-bullet-active {
  width: 31px;
  background-color: #ff6e00;
}

.mySwiper2 {
  height: 80%;
  width: 100%;
}

.mySwiper__thumb {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}
.mySwiper__thumb .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.5;
}
.mySwiper__thumb .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 2.5rem !important;
}

.breadcrumb ul {
  display: flex;
  gap: 15px;
  background-color: #e8e8e8;
  padding: 10px 20px;
}
.breadcrumb li {
  color: #333;
  font-family: "pretendardM", Arial, sans-serif;
  font-size: 1.2rem;
  position: relative;
}
.breadcrumb li:not(.breadcrumb li:last-child)::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-image: url("../images/icon/arrow.svg");
  background-size: 100% auto;
  position: absolute;
  right: -12px;
  top: 6px;
}

.accordion__wrap {
  padding: 0 !important;
}
.accordion__box {
  cursor: pointer;
  position: relative;
}
.accordion__box.active .arrow-icon {
  transform: translateY(-50%) rotate(-180deg);
}
.accordion__box.active .accordion__cont {
  max-height: 200px;
}
.accordion__box .arrow-icon {
  display: block;
  width: 16px;
  position: absolute;
  top: 26px;
  right: 10px;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .accordion__box .arrow-icon {
    width: 32px;
  }
}
.accordion__title {
  padding: 15px 14px;
}
.accordion__cont {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.main {
  background-color: #060a3d;
  color: #ffffff;
}
.main .container {
  display: flex;
  padding-top: 40px;
}
.main p {
  color: #ffffff;
}
.main .cont__L {
  width: 58%;
}
.main .cont__R {
  width: 42%;
}

.sub__type1 {
  background-color: #f4f5f7;
}
.sub__type1 section:first-of-type {
  background-color: #ffffff;
}
.sub__type1 section:first-of-type p {
  color: #595959;
}
.sub__type1 section h4,
.sub__type1 section h5 {
  margin-top: 4px;
}
.sub__type1 p {
  margin-top: 15px;
}

.importance h3 {
  color: #ffffff;
  font-family: "pretendardL", Arial, sans-serif;
  margin-top: 20px;
  line-height: 3rem;
}
.importance p {
  color: #ffffff;
  font-size: 1.5rem;
}
.importance .grid__container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  margin: 30px 0;
}
.importance .grid__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: white;
}
.importance .grid__item img {
  width: 40px;
}
.importance .grid__item p {
  font-family: "pretendardSB", Arial, sans-serif;
  font-size: 1.4rem;
  margin-left: 20px;
}
.importance .item--1 {
  display: flex;
  flex-direction: row;
  justify-items: center;
  background-color: #ffffff;
  border-radius: 15px 15px 0 15px;
  grid-column: 1/2;
  grid-row: 1/2;
}
.importance .item--1 p {
  color: #000;
}
.importance .item--2 {
  background-color: #044ed7;
  border-radius: 15px 15px 15px 0;
  grid-column: 2/3;
  grid-row: 1/3;
}
.importance .item--2 img {
  margin-bottom: 20px;
}
.importance .item--2 p {
  text-align: center;
  margin-left: 0;
}
.importance .item--3 {
  display: flex;
  flex-direction: row;
  justify-items: center;
  background-color: #9199d8;
  border-radius: 15px 0 0 15px;
  grid-column: 1/2;
  grid-row: 2/3;
}

.application {
  background-color: #ffffff;
}
.application section:first-of-type {
  background-color: #044ed7;
  padding: 30px 20px;
}
.application section:first-of-type h3.title,
.application section:first-of-type p {
  color: #ffffff;
}
.application .info__box {
  margin-top: 28px;
}
.application .info__box .info__title {
  color: #45c5e9;
  font-family: "pretendardB", Arial, sans-serif;
  font-size: 1.2rem;
}
.application .info__box p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.application .info__box p:last-of-type {
  margin-bottom: 0px;
}
.application h4 {
  font-size: 1.8rem;
  margin-top: 10px;
}
.application .form__wrap {
  margin-top: 20px;
}
.application .form__label {
  position: relative;
  top: 3px;
}
.application .view-agree {
  color: #9a9a9a;
  margin-top: 3px;
  text-decoration: underline;
}

.faq {
  background-color: #ffffff;
}
.faq h3 {
  margin: 10px 0 30px;
  text-align: center;
}
.faq .accordion__box {
  background-color: #f4f5f7;
  border-radius: 16px;
}
.faq .accordion__box:not(.faq .accordion__box:last-child) {
  margin-bottom: 10px;
}
.faq .accordion__title {
  font-family: "pretendardM", Arial, sans-serif;
  font-size: 1.5rem;
  padding: 16px 20px;
}
.faq .accordion__cont p {
  padding: 0px 20px 16px;
}

.error .container {
  width: 100%;
  max-width: 300px;
  text-align: center;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.error .icon {
  width: 34px;
  margin: 0 auto 12px;
}
.error h5 {
  font-family: "pretendardB", Arial, sans-serif;
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.error p {
  font-family: "pretendardM", Arial, sans-serif;
  color: #9a9a9a;
}