@charset "utf-8";

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Thin.woff2') format('woff2');
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Light.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Black.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}

:root {
  --color-wt: #FFFFFF;
  --color-main: #0C4DA2;
  --color-foot: #ADB5BD;
  --container-max: 1648px;
  --gutter: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
input,
textarea,
select,
button,
table {
  font-family: 'Pretendard', sans-serif;
  font-size: 24px;
  word-break: keep-all;
  color: #222;
  line-height: 1.5;
  word-break: break-all;
  letter-spacing: 0.01em;
  ;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: inherit;
}

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

img {
  vertical-align: top;
}

em {
  color: var(--color-accent);
  font-style: normal;
}

.pc-b {
  display: block;
}

.mo-b {
  display: none;
}

.mmo-b {
  display: none;
}

.mo-br {
  display: none;
}

.mmo-br {
  display: none;
}


footer .top-btn {
  display: none;
}

/* Helper Classes */
.no_style {
  margin: 0;
  padding: 0;
  border: 0;
  background: none
}

/* Button */
.btn-right-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.btn-center-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn {
  height: 55px;
  line-height: 51px;
  border: 2px solid var(--color-main);
  font-size: 26px;
  font-weight: 400;
  text-align: center;
  background-color: var(--color-main);
  color: var(--color-wt);
  cursor: pointer;
  border-radius: 99px;
}

section {
  width: 100%;
  max-width: 1920px;
  box-sizing: border-box;
  margin: 0 auto;
}

/* 1608px */
.container {
  width: 100%;
  max-width: 1648px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* header */
.main-header {
  position: absolute;
  width: 100%;
}

.main-header .container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header .container a {
  display: flex;
  align-items: center;
  justify-content: center;
}


/*ddddddddddddddddddddddddddddddddddd*/
/* ===== 전체 메뉴(PC: 우측 패널 + dim, MO: full) ===== */
.allmenu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.allmenu.is-open {
  display: block;
}

.allmenu-dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  /* PC 왼쪽 회색 */
}

/* 우측 패널 */
.allmenu-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  width: 820px;
  /* ✅ PC에서 오른쪽 흰 영역 폭 (원하면 조절) */
  max-width: 80vw;
  background: #fff;
  transform: translateX(100%);
  transition: transform .25s ease;
  overflow-y: auto;
}

.allmenu.is-open .allmenu-panel {
  transform: translateX(0);
}

.allmenu-close {
  position: absolute;
  top: 22px;
  right: 8%;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 34px;
  line-height: 44px;
  cursor: pointer;
  color: #222;
  
}

.allmenu-inner {
  padding: 90px 100px 100px;
}

.allmenu-home {
  display: block;
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 40px;
  color: #222;
}


/* 그룹 */
.allmenu-group {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid #CED4DA;
}

.allmenu-left {
  font-size: 30px;
  font-weight: 600;
  color: #222;
}

.allmenu-right a:first-child {
  padding-top: 0;
}
.allmenu-right {
  display: block;
}
.allmenu-right a {
  display: inline-block;
  width: 100%;
  font-size: 30px;
  font-weight: 600;
  color: #222;
  padding: 12px 0;
  text-decoration: none;
}

.allmenu-right a:hover {
  color: #0C4DA2;
  text-decoration: underline;
  text-underline-offset: 6px;
  font-weight: 700;
}

i.xi-angle-down-min {
  display: none;
}

/* ✅ 모바일: 패널이 전체 화면 */
@media (max-width: 1648px) {
  .allmenu-close {
  right: 20px;;
}
}
@media (max-width: 830px) {
  .allmenu-inner {
    padding: 140px 60px 60px;
  }
}

@media (max-width: 768px) {
  .allmenu-close {
    width: 30px;
    height: 30px;
  }
  .allmenu-close img{
    width: 30px;
    height: 30px;
  }
  .allmenu-panel {
    width: 100%;
    max-width: 100%;
  }


  .allmenu-group {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .allmenu-right a {
    font-size: 22px;
    padding: 10px 0;
  }

  i.xi-angle-down-min {
    display: block;
  }

  .allmenu-left {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .allmenu-right {
    display: none;
  }

  .allmenu-group.bottom {
    border-bottom: 1px solid #CED4DA;
  }
  .allmenu-inner{
    padding: 160px 16px 60px;
  }

}
@media (max-width: 412px) {
  .allmenu-close {
    width: 24px;
    height: 24px;
  }
  .allmenu-close img{
    width: 24px;
    height: 24px;
  }
}

/*ddddddddddddddddddddddddddddddddddd*/



/* section01  */
.section01 {
  height: 40vw;
  min-height: 640px;
  max-height: 980px;
  background-image: url(../img/main-section01-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: var(--color-wt);
}

.section01 .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.section01 h2 {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 600;
}

.section01 .swiper {
  width: 100%;
}

.section01 .swiper-slide {
  text-align: left;
  font-size: clamp(24px, 4vw, 60px);
  line-height: 1.5;
}

/* section02 */
.section02 {
  padding: 160px 0;
}

.section02 .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section02 .section02-img img {
  width: 100%;
  max-width: 656px;
}

.section02 .section02-text {
  width: 100%;
  max-width: 780px;
}

.section02 .section02-text h3 {
  font-weight: 500;
  font-size: clamp(24px, 4vw, 60px);
  margin-bottom: 36px;
}

.section02 .section02-text p {
  font-size: clamp(19px, 2vw, 36px);
}

/* section03 */
.section03 .mySwiper2 .section03-swiper-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.section03 .mySwiper2 .section03-swiper-wrap .section03-img {
  width: 100%;
  max-width: 948px;
}

.section03 .mySwiper2 .section03-swiper-wrap .section03-img img {
  width: 100%;
  max-width: 948px;
}

.section03 .section03-text {
  width: 100%;
  max-width: 868px;
}

.section03 span {
  font-size: 24px;
  font-weight: 500;
}

.section03 h3 {
  font-size: clamp(48px, 4vw, 80px);
  letter-spacing: 0.1em;
}

.section03 p.section03-title {
  font-size: clamp(18px, 2vw, 36px);
  margin-bottom: 48px;
  margin-top: 24px;
  letter-spacing: 0.01em;
}

.section03 p.section03-txt {
  font-size: clamp(16px, 2vw, 30px);
}

.section03 .swiper-button-next svg,
.section03 .swiper-button-prev svg {
  display: none;
}

.section03 .swiper-button-prev:after,
.section03 .swiper-button-next:after {
  display: none;
}

.section03 .swiper-button-next,
.section03 .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-size: contain;
}

.section03 .swiper-button-next {
  background-image: url(../img/next-g.png);
  background-repeat: no-repeat;
  background-position: center;
  right: 116px;
}

.section03 .swiper-button-prev {
  background-image: url(../img/prev-g.png);
  background-repeat: no-repeat;
  background-position: center;
  left: 116px;
}

.swiper-pagination {
  text-align: left;
  margin-left: 156px;
  margin-bottom: 48px;
  color: #fff;
}

.section03 .swiper-pagination-bullet {
  position: relative;
  width: 60px;
  background: none;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.01em;
  font-weight: 500;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 1px
}

.section03 .swiper-pagination-bullet::after {
  content: '';
  width: 60px;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -25px;
  left: 0;
}

.main-last-section {
  background-image: url(../img/main-last-section-pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  font-size: clamp(22px, 2vw, 40px);
  height: 300px;
  margin-top: 160px;
}

.main-last-section .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.main-last-section .container>p {
  display: inline-block;
  width: 100%;
  font-size: clamp(22px, 3vw, 40px);
}

.main-last-section .container .right-link {
  display: flex;
  gap: 24px;
  align-items: center;
}

.main-last-section .container .right-link a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  aspect-ratio: 1 / 1;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #F8F8F8;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.main-last-section .container .right-link a img {
  width: 100%;
  max-width: 64px;
}

/* footer */
footer {
  background: #333;
}

footer .container {
  display: flex;
  justify-content: flex-end;
}

footer .container .footer-wrap {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 24px;
  padding: 24px 0 22px;
  text-align: right;
  color: var(--color-foot);
}

footer .container .footer-wrap img {
  width: 100%;
  max-width: 161px;
}

footer .container .footer-wrap p {
  font-size: 12px;
  line-height: 20px;
}

.pc-n-1024 {
  display: none;
}

.mmo-br-none {
  display: block;
}

@media (max-width:1470px) {
  .section02 .container {
    justify-content: flex-start;
    gap: 20px;
  }

  .section03 .swiper-button-next {
    right: 20px;
  }

  .section03 .swiper-button-prev {
    left: 20px;
  }

  .swiper-pagination {
    margin-left: 20px;
  }
}

@media (max-width:1024px) {
  .pc-b-1024 {
    display: none;
  }

  .pc-n-1024 {
    display: block;
  }
}

@media (max-width:834px) {
  .pc-b {
    display: none;
  }

  .mo-b {
    display: block;
  }

  .mmo-b {
    display: none;
  }

  .mo-br {
    display: block;
  }

  .mmo-br {
    display: none;
  }

  .mmo-br-none {
    display: none;
  }

  .main-header .container {
    height: 60px;
  }

  .main-header .container .logo img {
    width: 128px;
  }

  .main-header .container .menu img {
    width: 30px;
  }

  .section01 {
    background-image: url(../img/main-section01-t-bg.png);
  }

  .section01 h2 {
    text-align: center;
    font-size: clamp(32px, 5.15vw, 43px);
  }

  .section01 .swiper-slide {
    text-align: center;
  }

  .section02 {
    padding: 100px 0;
  }

  .section02 .container {
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
  }

  .section02 .section02-text {
    padding: 0 20px;
  }

  .section02 .section02-text p {
    font-size: clamp(20px, 3.35vw, 28px);
  }

  .section02 .section02-text h3 {
    font-size: clamp(32px, 5.15vw, 42px);
  }

  .section02 .section02-img {
    width: 100%;
    max-width: 786px;
  }

  .section02 .section02-img img {
    max-width: 786px;
  }

  .section03 .mySwiper2 .section03-swiper-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column-reverse;
    gap: 20px;
    padding: 0 20px;
  }

  .section03 .section03-text {
    padding: 0 20px;
  }

  .section03 p.section03-title {
    font-size: clamp(19px, 4.3vw, 36px);
  }

  .section03 p.section03-txt {
    font-size: clamp(19px, 3.6vw, 30px);
  }

  .main-last-section .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .section03 .swiper-button-next,
  .section03 .swiper-button-prev {
    top: 30px;
    width: 36px;
    height: 36px;

  }

  .section03 .swiper-button-prev {
    left: auto;
    right: 70px;
  }

  .section03 .swiper-pagination {
    display: none;
  }

  .main-last-section {
    background-image: url(../img/main-last-section-m.png);
    font-size: clamp(22px, 2vw, 40px);
    height: 520px;
    margin-top: 50px;
    padding: 50px 0px 40px;
  }

  .main-last-section .container .right-link {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .main-last-section .container>p {
    font-size: 32px;
  }
}

@media (max-width:412px) {
  .pc-n-1024 {
    display: none;
  }

  .pc-b-1024 {
    display: block;
  }

  .mmo-none {
    display: none;
  }

  .pc-b {
    display: none;
  }

  .mo-b {
    display: none;
  }

  .mmo-b {
    display: block;
  }

  .pc-br {
    display: none;
  }

  .mmo-br {
    display: block;
  }

  .main-header .container .logo img {
    width: 107px;
  }

  .main-header .container .menu img {
    width: 24px;
  }

  .section01 {
    background-image: url(../img/main-section01-m-bg.png);
  }

  .section02 {
    padding: 80px 0;
  }

  .section02 .section02-text {
    padding: 0;
  }

  .section02 .section02-text h3 {
    font-size: 24px;
    margin-bottom: 33px;
  }

  .section03 span {
    font-size: 19px;
  }

  .section03 .section03-text {
    padding: 0;
  }

  .section03 p.section03-txt {
    display: none;
  }

  .section03 p.section03-title {
    margin-bottom: 0;
  }

  .section03 .mySwiper2 .section03-swiper-wrap {
    gap: 36px;
  }

  .section03 .swiper-button-next,
  .section03 .swiper-button-prev {
    width: 26px;
    height: 26px;
  }

  .main-last-section .container>p {
    font-size: 24px;
  }

  .main-last-section {
    height: 500px;
  }

  .main-last-section .container .right-link a img {
    max-width: 40px;
  }

  .main-last-section .container .right-link>div {
    width: 100%;
    max-width: 180px;
  }

  .main-last-section .container .right-link a {
    aspect-ratio: 1 / 1;
    width: auto;
    height: auto;
  }
}