/* common */
html {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, form, fieldset, p, button, pre {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #333;
  font-family: "Pretendard";
  line-height: 150%;
  font-weight: 300;
}

td, th {
  padding: 0;
  font-family: "Pretendard";
  font-size: 14px;
  color: #333;
  font-weight: 300;
}

a, span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
}

body {
  height: 100%;
  position: relative;
  overflow-y: scroll;
  word-break: keep-all;
  *word-break: keep-all;
  -ms-word-break: keep-all;
}

img, fieldset, iframe {
  border: 0 none;
}

li {
  list-style: none;
}

input, select, button, textarea {
  padding: 0;
  border: 1px solid #ddd;
  font-family: "Pretendard";
  font-size: 14px;
  font-weight: 300;
}

input {
  padding: 0 10px;
}

input[type=text], input[type=password] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
}

input[type=file] {
  padding: 0;
  -webkit-border-radius: 0;
}

input[type=file]::-webkit-file-upload-button {
  vertical-align: middle;
  height: 100%;
}

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

select {
  padding: 0 25px 0 20px;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) 50%;
  background-color: #fff;
  background-image: url(/src/img/init/sel_init_ico.png);
  -webkit-background-size: 10px 6px;
  background-size: 10px 6px;
}

select option {
  background: #fff;
  color: #333;
}

textarea {
  padding: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
}

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

em, address {
  font-style: normal;
}

label, button {
  cursor: pointer;
}

button {
  background: none;
  border: none;
  vertical-align: top;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

legend {
  *width: 0;
}

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

pre {
  white-space: pre-line;
  font-family: "Pretendard";
}

sup {
  font-size: 0.5%;
}

figure {
  margin: 0;
}

.skip_nav li a {
  position: absolute;
  left: -3000%;
}
.skip_nav li a:focus {
  display: block;
  left: 0;
  top: 0;
  z-index: 2000;
  width: 100%;
  height: 30px;
  line-height: 30px;
  background-color: #039;
  color: #fff;
  text-align: center;
}


/* intro */
.intro_wrap {
  display: flex;
  min-height: 610px;
  height: 100vh;
  background-image: url(/src/img/intro_bg.jpg);
  background-size: cover;
  background-position: center;
}
@media (max-width: 1240px) {
  .intro_wrap {
    flex-direction: column;
    min-height: auto;
    height: auto;
  }
}
.intro_wrap .in_box {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 50%;
  height: 100%;
  padding: 150px 110px;
}
@media (max-width: 1640px) {
  .intro_wrap .in_box {
    padding: 100px 80px;
  }
}
@media (max-width: 1240px) {
  .intro_wrap .in_box {
    width: 100%;
    padding: 130px 5%;
  }
}
@media (max-width: 620px) {
  .intro_wrap .in_box {
    padding: 70px 5%;
  }
}
.intro_wrap .in_box + .in_box {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}
@media (max-width: 1240px) {
  .intro_wrap .in_box + .in_box {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-left: 0;
  }
}
.intro_wrap .in_box::before {
  content: "";
  transition: opacity 1s, transform 1s;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.intro_wrap .in_box .txt {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 1240px) {
  .intro_wrap .in_box .txt {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.intro_wrap .in_box .txt .t1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 45px;
  font-weight: bold;
  color: #151515;
}
@media (max-width: 1240px) {
  .intro_wrap .in_box .txt .t1 {
    flex-direction: column;
  }
}
@media (max-width: 620px) {
  .intro_wrap .in_box .txt .t1 {
    font-size: 34px;
  }
}
.intro_wrap .in_box .txt .t1 .bar {
  display: block;
  width: 14px;
  height: 4px;
  background-color: #151515;
}
.intro_wrap .in_box .txt .t2 {
  margin-top: 40px;
  font-size: 18px;
}
@media (max-width: 620px) {
  .intro_wrap .in_box .txt .t2 {
    margin-top: 20px;
    font-size: 16px;
  }
}
.intro_wrap .in_box .txt .more_btn {
  position: relative;
  display: block;
  width: 165px;
  height: 62px;
  padding-top: 6px;
  margin-top: 65px;
  font-size: 20px;
  text-align: left;
}
@media (max-width: 620px) {
  .intro_wrap .in_box .txt .more_btn {
    width: 129px;
    height: 45px;
    margin-top: 30px;
    padding-top: 0;
    font-size: 18px;
  }
}
.intro_wrap .in_box .txt .more_btn::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  width: 135px;
  height: 9px;
  background-image: url(/src/img/intro_more_arrow.png);
  background-size: cover;
}
@media (max-width: 620px) {
  .intro_wrap .in_box .txt .more_btn::before {
    top: 21px;
    width: 110px;
    background-size: contain;
    background-position: right center;
  }
}
.intro_wrap .in_box .txt .more_btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(51, 51, 51, 0.4);
  border-radius: 50%;
}
@media (max-width: 620px) {
  .intro_wrap .in_box .txt .more_btn::after {
    top: 5px;
    width: 40px;
    height: 40px;
  }
}
.intro_wrap .in_box.box1::before {
  background-image: url(/src/img/intro_box1_bg.jpg);
}
.intro_wrap .in_box.box2::before {
  background-image: url(/src/img/intro_box2_bg.jpg);
}

@media (hover: hover) {
  .intro_wrap .in_box:hover::before {
    opacity: 1;
    transform: scale(1.1);
  }
  .intro_wrap .in_box:hover .txt .t1 {
    color: #fff;
  }
  .intro_wrap .in_box:hover .txt .t1 .bar {
    background-color: #fff;
  }
  .intro_wrap .in_box:hover .txt .t2 {
    color: #fff;
  }
  .intro_wrap .in_box:hover .txt .more_btn {
    color: rgba(255, 255, 255, 0.8);
  }
  .intro_wrap .in_box:hover .txt .more_btn::before {
    background-image: url(/src/img/intro_more_arrow_w.png);
  }
  .intro_wrap .in_box:hover .txt .more_btn::after {
    border: 0;
    background-color: rgba(255, 255, 255, 0.4);
  }
}