@font-face {
  font-family: "Pretendard-Regular";
  src: url("/static/css/fonts/Pretendard-Regular.woff2") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Pretendard-Bold";
  src: url("/static/css/fonts/Pretendard-Bold.woff2") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Pretendard-ExtraBold";
  src: url("/static/css/fonts/Pretendard-ExtraBold.woff2") format("woff");
  font-weight: 900;
  font-style: normal;
}
* {
  box-sizing: border-box;
}

body {
  color: #fff;
  font-family: "Pretendard-Regular";
  display: flex;
  justify-content: center;
  background-color: #012672;
  min-height: 100vh;
}
body a {
  color: inherit;
  text-decoration: none;
}
body .inner {
  position: relative;
  padding: 65px 0;
  width: 100%;
  max-width: 800px;
  height: 100%;
  min-height: 100vh;
  background: url("/static/images/introduce/background.png") 0 0 no-repeat;
  background-size: cover;
}
body .inner .language-area {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
body .inner .language-area .language-select {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 3px 5px;
  border: 1px solid #fff;
  border-radius: 30px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  font-size: 14px;
}
body .inner .language-area .language-select:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
body .inner .language-area .language-select .language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 5px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 120px;
}
body .inner .language-area .language-select .language-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
body .inner .language-area .language-select .language-dropdown .language-option {
  padding: 12px 20px;
  cursor: pointer;
  color: #012672;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}
body .inner .language-area .language-select .language-dropdown .language-option:last-child {
  border-bottom: none;
}
body .inner .language-area .language-select .language-dropdown .language-option:hover {
  background-color: #f8f9fa;
}
body .inner .language-area .language-select .language-dropdown .language-option span {
  display: block;
}
body .inner .section {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
body .inner .section .top_section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
body .inner .section .top_section .logo {
  width: 200px;
}
body .inner .section .top_section .logo img {
  width: 100%;
}
body .inner .section .top_section .top_content {
  text-align: center;
  line-height: 1.5;
  font-size: 18px;
}
body .inner .section .top_section .top_content p {
  font-family: "Pretendard-Bold";
}
body .inner .section .top_section .top_content span {
  opacity: 0.6;
}
body .inner .section .item_box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}
body .inner .section .item_box .item {
  position: relative;
  width: 100%;
  height: 66px;
  border-radius: 8px;
  padding: 0 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  color: #000;
}
body .inner .section .item_box .item .item_logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
body .inner .section .item_box .item .item_logo img {
  width: 100%;
}
body .inner .section .item_box .item .item_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
body .inner .section .item_box .item .item_content .item_title {
  font-size: 16px;
  font-family: "Pretendard-Bold";
  color: #012065;
}
body .inner .section .item_box .item .item_content P {
  font-size: 14px;
  letter-spacing: -0.4;
  display: flex;
  align-items: center;
  gap: 5px;
}
body .inner .section .item_box .item .item_content P img {
  width: 16px;
}
body .inner .section .item_box .item i {
  font-size: 28px;
  color: #272727;
}
body .inner .site_link {
  display: block;
  width: 200px;
  height: 36px;
  margin: 50px auto 0;
  border: 1px solid #fff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
}
body .inner .site_link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
body .inner footer {
  margin-top: 37px;
  text-align: center;
}
body .inner footer .sns_group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
body .inner footer .sns_group a {
  color: #fff;
  font-size: 22px;
}
body .inner footer .copy {
  margin-top: 35px;
  opacity: 0.5;
  font-size: 12px;
}
@media screen and (max-width: 700px) {
  body .section .item_box {
    padding: 0;
    grid-template-columns: repeat(1, 1fr);
  }
}/*# sourceMappingURL=introsuce.css.map */