/* reset */
@import url("https://use.fontawesome.com/d00b556be3.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/pretendard/1.3.9/static/pretendard.css");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
*::after {
  box-sizing: border-box;
}
*::before {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
address {
  border: 0;
  font-size: inherit;
  font-style: normal;
  vertical-align: top;
}

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

html,
body {
  height: 100%;
}

body {
  line-height: 1;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: 0;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
}

a,
button {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

ul,
ol {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

/* global */
:root {
  --defaultFont: AppleSDGothicNeo-Regular, Malgun Gothic, dotum, sans-serif;
  --webFont: Pretendard, AppleSDGothicNeo-Regular, Malgun Gothic, dotum,
      sans-serif;
  --primaryColor: #2c7be9;
  --black: #000;
  --red: #ee2a24;
  --orange: #f77409;
  --brown: #e78d05;
  --green: #4ae61a;
  --blue: #0123b4;
  --textColor: #222;
  --primaryColorL: #4991f5;
  --primaryColor: #2c7be9;
  --primaryColorB: #1a65cf;
  --secondaryColorL: #fa5a94;
  --secondaryColor: #e23575;
  --secondaryColorB: #ca205e;
  --tertiaryColorL: #444b55;
  --tertiaryColor: #2e333a;
  --tertiaryColorB: #1a1d22;
  --gray100: #f3f3f3;
  --gray200: #e0e0e0;
  --gray300: #dfdfdf;
  --gray400: #b7b7b7;
  --tBasic: 14px;
  --spaceS: 10px;
  --spaceM: 25px;
  --spaceL: 65px;
  --spaceXL: 120px;
  --btnHeight: 44px;
  --btnRadius: 8px;
  --btnPadding: 15px;
  --scrollWidth: 9px;
}

.col_scrollbar {
  width: var(--scrollWidth) !important;
  padding: 0 !important;
  border-left: 0 !important;
}

body {
  font-family: var(--webFont);
  line-height: 1.5;
  color: var(--textColor);
  font-weight: 400;
  font-size: var(--tBasic);
  background: #fff;
}

input:not([type=checkbox], [type=radio], [type=submit]),
textarea,
select {
  height: var(--btnHeight);
  line-height: var(--btnHeight);
  background: #fff;
  text-indent: 0;
  padding: 0 var(--btnPadding);
  border-radius: var(--btnRadius);
  border: 1px solid var(--gray400);
  width: 100%;
  font-size: 14px;
}

input:not([type=checkbox], [type=radio], [type=submit], :-moz-read-only):focus {
  border-color: var(--primaryColor);
}

input:not([type=checkbox], [type=radio], [type=submit], :read-only):focus,
textarea:focus {
  border-color: var(--primaryColor);
}

input:not([type=checkbox], [type=radio], [type=submit])::-moz-placeholder, textarea::-moz-placeholder {
  color: #b6b6b6;
}

input:not([type=checkbox], [type=radio], [type=submit])::placeholder,
textarea::placeholder {
  color: #b6b6b6;
}

select {
  background: #fff url(../img/arrow01.png) no-repeat right 12px center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}

textarea {
  height: 80px;
  padding: var(--btnPadding);
  line-height: 1.4;
}

input.line {
  border-left: 0;
  border-right: 0;
  border-top: 0;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
}
input.half {
  width: 50%;
}
input.short {
  width: 110px;
}
input#captcha {
  width: 120px;
}

label.check {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}
label.check input {
  position: absolute;
  opacity: 0;
}
label.check input + i {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 1px solid var(--gray400);
  background: #fff;
}
label.check input:checked + i {
  border-color: var(--primaryColor);
  background: var(--primaryColor);
  position: relative;
}
label.check input:checked + i::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg) translate(-50%, -50%);
  transform-origin: -2px -1px;
}
label.check span {
  white-space: nowrap;
}

img {
  max-width: 100%;
}

strong,
b,
th,
dt {
  font-weight: 600;
}

.ibtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  line-height: 1;
  height: var(--btnHeight);
  border: 1px solid transparent;
  border-radius: var(--btnRadius);
  padding: 0 20px;
  font-size: var(--tBasic);
  font-weight: 500;
}
.ibtn.primary {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: #fff;
}
.ibtn.primaryL {
  background-color: var(--primaryColorL);
  border-color: var(--primaryColorL);
  color: #fff;
}
.ibtn.primary-line {
  border-color: var(--primaryColor);
  color: var(--primaryColor);
}
.ibtn.secondary {
  background-color: var(--secondaryColor);
  border-color: var(--secondaryColor);
  color: #fff;
}
.ibtn.secondary-line {
  border-color: var(--secondaryColor);
  color: var(--secondaryColor);
}
.ibtn.tertiary {
  background-color: var(--tertiaryColor);
  border-color: var(--tertiaryColor);
  color: #fff;
}
.ibtn.tertiaryB {
  background-color: var(--tertiaryColorB);
  border-color: var(--tertiaryColorB);
  color: #fff;
}
.ibtn.tertiary-line {
  border-color: var(--tertiaryColor);
  color: var(--tertiaryColor);
}
.ibtn.default {
  background-color: #fff;
  border-color: #000;
  color: #000;
}
.ibtn.red {
  background-color: var(--red);
  border-color: var(--red);
  color: #fff;
}
.ibtn.redL {
  background-color: var(--redL);
  border-color: var(--redL);
  color: #fff;
}
.ibtn.red-line {
  border-color: var(--red);
  color: var(--red);
}
.ibtn.blue {
  background-color: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.ibtn.blue-line {
  border-color: var(--blue);
  color: var(--blue);
}
.ibtn.blueL {
  background-color: var(--blueL);
  border-color: var(--blueL);
  color: #fff;
}
.ibtn.gray {
  background-color: #ccc;
  border-color: #ccc;
  color: #fff;
}
.ibtn.lg {
  font-size: 1.1em;
  height: calc(var(--btnHeight) + 12px);
  border-radius: 8px;
  padding: 0 40px;
}
.ibtn.sm {
  font-size: 0.9em;
  padding: 0 7px;
  height: calc(var(--btnHeight) - 10px);
  border-radius: 4px;
  font-weight: 400;
}
.ibtn.xs {
  font-size: 0.85em;
  padding: 0 5px;
  height: calc(var(--btnHeight) - 12px);
  border-radius: 4px;
  font-weight: 400;
}
.ibtn.full {
  width: 100% !important;
}

span.space {
  display: inline-block;
  width: 10px;
}

.succession {
  margin-top: var(--spaceM);
}

.successionS {
  margin-top: var(--spaceS);
}

.successionL {
  margin-top: var(--spaceL);
}

.successionXL {
  margin-top: var(--spaceXL);
}

.paragraph {
  margin-bottom: var(--spaceXL);
}

.txt_black {
  color: var(--textColor);
}

.txt_red {
  color: var(--red);
}

.txt_blue {
  color: var(--primaryColor);
}

.txt_gray {
  color: var(--gray400);
}

.txt_primary {
  color: var(--primaryColor);
}

.txt_l {
  font-size: 1.15em;
}

.txt_s {
  font-size: 0.95em;
  letter-spacing: -0.5px;
}

.btn_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: var(--spaceL);
}
.btn_area p {
  width: 100%;
  text-align: center;
  margin-bottom: var(--spaceS);
}

.overflow_y {
  overflow-y: scroll;
}

.overflow_x {
  overflow-x: auto;
}
.overflow_x > * {
  width: -moz-max-content;
  width: max-content;
}

table.fixed {
  table-layout: fixed;
}

th,
td {
  vertical-align: middle;
}

.td50 {
  width: 50px;
}

.td60 {
  width: 60px;
}

.td70 {
  width: 70px;
}

.td80 {
  width: 80px;
}

.td90 {
  width: 90px;
}

.td100 {
  width: 100px;
}

.td110 {
  width: 110px;
}

.td120 {
  width: 120px;
}

.td130 {
  width: 130px;
}

.td150 {
  width: 150px;
}

.td170 {
  width: 170px;
}

.td180 {
  width: 180px;
}

.td200 {
  width: 200px;
}

.td250 {
  width: 250px;
}

.td280 {
  width: 280px;
}

.td300 {
  width: 300px;
}

.align_left {
  text-align: left !important;
}

.align_center {
  text-align: center !important;
}

.align_right {
  text-align: right !important;
}

.pc_no,
.mobile_only {
  display: none;
}

#header,
#contents,
#footer {
  min-width: 1280px;
  padding: 0 10%;
}

/***** Header *****/
:root {
  --headerHeight: 260px;
  --footerHeight: 100px;
}

#header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--headerHeight);
}
#header .logo img {
  height: 120px;
}
#header p {
  font-size: 1.2em;
  font-weight: 400;
  text-transform: uppercase;
}

/***** Footer *****/
#footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--footerHeight);
}

/***** Contents *****/
#contents {
  min-height: calc(100% - (var(--headerHeight) + var(--footerHeight)));
}

/***** Modal *****/
.pop_bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 90;
  background: rgba(0, 0, 0, 0.1);
}
.pop_bg .pop_layer {
  width: 400px;
  background: #fff;
  border-radius: 20px;
  padding: 37px;
  padding-bottom: 40px;
  border: 1px solid var(--gray300);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.pop_bg .pop_layer .pop_header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.pop_bg .pop_layer .pop_header h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: -5px;
}
.pop_bg .pop_layer .pop_header .btn_close {
  width: 18px;
  height: 18px;
  display: block;
  background: url(../img/btn_close.png);
  background-size: contain;
  font-size: 0;
  position: absolute;
  right: -10px;
  top: -10px;
}
.pop_bg .pop_layer .pop_header.btn_only {
  margin: 0;
}