:root {
  --color-primary: #5592ff;
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 14px;
  }
}

@media screen and (max-width: 512px) {
  body {
    font-size: 12px;
  }
}

/* Nanum Square Neo Regular */
@font-face {
  font-family: "Nanum Square Neo";
  font-weight: 400;
  font-style: normal;
  src: url("/font/NanumSquareNeoTTF-bRg.woff2") format("woff2"),
    url("/font/NanumSquareNeoTTF-bRg.woff") format("woff");
  font-display: swap;
}

/* Nanum Square Neo Light */
@font-face {
  font-family: "Nanum Square Neo";
  font-weight: 300;
  font-style: normal;
  src: url("/font/NanumSquareNeoTTF-aLt.woff2") format("woff2"),
    url("/font/NanumSquareNeoTTF-aLt.woff") format("woff");
  font-display: swap;
}

/* Nanum Square Neo Extra Bold */
@font-face {
  font-family: "Nanum Square Neo";
  font-weight: 800;
  font-style: normal;
  src: url("/font/NanumSquareNeoTTF-eHv.woff2") format("woff2"),
    url("/font/NanumSquareNeoTTF-eHv.woff") format("woff");
  font-display: swap;
}

/* Nanum Square Neo Bold */
@font-face {
  font-family: "Nanum Square Neo";
  font-weight: 700;
  font-style: normal;
  src: url("/font/NanumSquareNeoTTF-dEb.woff2") format("woff2"),
    url("/font/NanumSquareNeoTTF-dEb.woff") format("woff");
  font-display: swap;
}

/* Nanum Square Neo Extra Light */
@font-face {
  font-family: "Nanum Square Neo";
  font-weight: 200;
  font-style: normal;
  src: url("/font/NanumSquareNeoTTF-cBd.woff2") format("woff2"),
    url("/font/NanumSquareNeoTTF-cBd.woff") format("woff");
  font-display: swap;
}

.NanumSquareNeo {
  font-family: "Nanum Square Neo";
}

/* admin menu */
.b_adm_list {
  position: fixed;
  right: 20px;
  bottom: 150px;
  z-index: 15;
}
.b_adm_list li {
  margin-bottom: 7px;
}
.b_adm_list li:last-child {
  margin-bottom: 0px;
}
.b_adm_list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 100px;
  height: 40px;
  border-radius: 6px;
  text-align: center;
  background-color: #111;
  border: 1px solid #666;
}

@media screen and (max-width: 1080px) {
  .b_adm_list {
    right: 10px;
    bottom: 160px;
  }
}
@media screen and (max-width: 720px) {
  .b_adm_list {
    bottom: 140px;
  }
  .b_adm_list li {
    margin-bottom: 5px;
  }
  .b_adm_list li a {
    width: 80px;
  }
}

/* inner */
.si_inner {
  max-width: 1460px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}

/* header */
.s_header {
  display: flex;
  align-items: center;
  width: 100%;
  background: #fff;
  height: 80px;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 99999;
}
.s_header .si_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.s_header .s_gnb > ul {
  display: flex;
  justify-content: center;
}
.s_header .s_gnb > ul::after {
  transition: 0.3s all;
  position: fixed;
  left: 0;
  width: 100%;
  top: 80px;
  background: #fff;
  height: 0px;
  content: "";
  display: block;
  opacity: 0;
}
.s_header .s_gnb > ul:hover::after {
  height: 180px;
  opacity: 1;
}
.s_header .s_gnb > ul:hover ul {
  height: auto;
  opacity: 1;
}
.s_header .s_gnb > ul > li {
  position: relative;
}
.s_header .s_gnb > ul > li > a {
  font-size: 1.125rem;
  font-weight: 500;
  display: block;
  padding: 30px 40px;
}
.s_header .s_gnb ul ul {
  height: 0;
  opacity: 0;
  position: absolute;
  top: 80px;
  text-align: center;
  width: 100%;
  left: 0;
  transition: 0.3s all;
  z-index: 2;
}
.s_header .s_gnb ul ul a {
  display: block;
  padding: 10px;
  transition: 0.3s all;
}
.s_header .s_gnb ul ul a:hover {
  opacity: 0.5;
}

/* 모바일 사이드바 */
.s_header .sidebar {
  position: fixed;
  padding: 60px 40px;
  background: #fff;
  right: -100%;
  top: 0;
  height: 100vh;
  width: 70%;
  transition: right 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
}
.s_header .sidebar.active {
  right: 0;
}
.s_header .sidebar > .m_gnb > ul > li {
  padding: 0;
  border-bottom: 1px solid #eee;
}
.s_header .sidebar > .m_gnb > ul > li > a {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.s_header .sidebar > .m_gnb > ul > li > a::after {
  font-family: "Material Icons";
  content: "expand_more";
  font-size: 24px;
  transition: transform 0.3s ease;
  display: inline-block;
}
.s_header .sidebar > .m_gnb > ul > li.active > a::after {
  transform: rotate(180deg);
}

/* 서브메뉴 아코디언 */
.s_header .sidebar > .m_gnb ul ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 20px;
}
.s_header .sidebar > .m_gnb > ul > li.active > ul {
  max-height: 1000px;
}
.s_header .sidebar > .m_gnb ul ul li {
  padding: 0;
}
.s_header .sidebar > .m_gnb ul ul li a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 400;
  color: #666;
}

/* 오버레이 배경 */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.sidebar-overlay.active {
  display: block;
}

@media screen and (max-width: 1024px) {
  .s_header .s_gnb > ul > li > a {
    padding: 30px 25px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .s_header {
    height: 60px;
  }
  .s_header img {
    width: 80%;
  }
  footer img {
    width: 30%;
  }
  .s_header .pc_gnb.s_gnb {
    display: none;
  }

  /* 햄버거 메뉴 */
  .s_header .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    position: fixed;
    right: 20px;
  }
  .s_header .hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
  }
  .s_header .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  .s_header .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .s_header .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* main slide */

.main_swip {
  width: 100%;
  height: 680px;
  position: relative;
}

.main_visual .slide01 {
  background: url(/img/main/main_slide_01.png) no-repeat center/cover;
}

.main_visual .slide02 {
  background: url(/img/main/main_slide_02.png) no-repeat center/cover;
}

.main_visual .si_inner {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 80px;
}

.main_visual .slide_txt {
  color: #fff;
  font-family: "Nanum Square Neo";
}

.main_visual .slide_txt span {
  display: block;
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.main_visual .slide_txt h2 {
  font-size: 3.125rem;
  font-weight: 400;
  margin-bottom: 40px;
}

.main_visual .slide_txt h2 strong {
  font-weight: 900;
  display: block;
}

.main_visual .slide_txt p {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 80px;
}

.main_visual .pagination_inner {
  height: unset;
  position: absolute;
  left: 50%;
  bottom: 160px;
  transform: translateX(-50%);
  z-index: 1;
}

.main_visual .pagination_inner .swiper-pagination {
  position: static;
  display: flex;
}

.main_visual .pagination_inner .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 1;
  border-radius: 40px;
}

.main_visual
  .pagination_inner
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 40px;
  background: #6edbff;
}

@media screen and (max-width: 1024px) {
  .main_visual .swiper-slide {
    background-position: 65%;
  }

  .main_visual .si_inner {
    padding-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .main_visual .slide_txt span {
    font-size: 1.5rem;
  }

  .main_visual .slide_txt h2 {
    font-size: 2.75rem;
  }

  .main_visual .slide_txt p {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 512px) {
  .main_visual .swiper-slide {
    background-position: 75%;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.3);
  }
}

.quick_menu {
  margin: -80px 20px 0;
}

.quick_menu .si_inner {
  position: relative;
  z-index: 1;
  padding: 60px 80px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.quick_menu ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  width: 100%;
}

.quick_menu a {
  display: flex;
  gap: 20px;
  transition: 0.3s all;
  justify-content: center;
}

.quick_menu a:hover {
  opacity: 0.7;
}

.quick_menu .txt h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.quick_menu .txt p {
  color: #666;
}

@media screen and (max-width: 1480px) {
  .quick_menu .si_inner {
    padding: 40px;
    border: none;
  }

  .quick_menu ul {
    gap: 20px;
  }

  .quick_menu .si_inner p {
    word-break: keep-all;
  }

  .quick_menu .txt h3 {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 1024px) {
  .quick_menu ul {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media screen and (max-width: 512px) {
  .quick_menu .si_inner {
    padding: 24px;
  }
  .quick_menu a {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .quick_menu ul {
    gap: 10px;
  }

  .quick_menu ul,
  .quick_menu a {
    gap: 16px;
  }

  .quick_menu .txt h3 {
    font-size: 1.125rem;
  }

  .quick_menu a figure {
    width: 32px;
  }
}

/* sec01 */
.main_links {
  padding: 40px 0px;
}

.main_links .si_inner {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 20px;
}

.main_links .left ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.main_links .left ul li {
  border: 1px solid #eaeaea;
  border-radius: 10px;
}

.main_links .left li a {
  display: flex;
  padding: 30px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 1.25rem;
  font-weight: 600;
}

.main_links .right ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.main_links .right a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 36px;
  background: #edf8ff;
  height: 236px;
  border-radius: 20px;
}

.main_links .right figure {
  margin-bottom: 10px;
}

.main_links .right h3 {
  font-size: 1.5rem;
}

@media screen and (max-width: 1480px) {
  .main_links .left li a {
    padding: 30px 10px;
  }

  .main_links .left li a {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 1200px) {
  .main_links .right h3 {
    font-size: 1.25rem;
  }

  .main_links .right p {
    word-break: keep-all;
  }

  .main_links .si_inner {
    grid-template-columns: 1fr 1fr;
  }

  .main_links .right a {
    padding: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .main_links .si_inner {
    grid-template-columns: 1fr;
  }

  .main_links .right a {
    height: 208px;
  }

  .main_links .right a {
    padding: 36px;
  }
}

@media screen and (max-width: 768px) {
  .main_links .right a {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 512px) {
  .main_links .left ul,
  .main_links .right ul {
    grid-template-columns: 1fr;
  }

  .main_links .right a {
    height: unset;
  }

  .main_links .left li a {
    padding: 10px;
    font-size: 1.125rem;
  }

  .main_links .left li a img {
    width: 80%;
  }

  .main_links .right a img {
    width: 70%;
  }
}

/* sec02 */

.main_content {
  padding: 80px 0;
  background: #fafafa;
}

.main_content .si_inner {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 40px;
}

.main_content .event_title {
  display: flex;
  justify-content: space-between;
}

.main_content .title {
  font-size: 1.75rem;
  padding-bottom: 20px;
}

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

.event_swip .swiper-button-prev,
.event_swip .swiper-button-next {
  position: static;
  margin: 0;
  color: #121212;
  display: flex;
}

.event_swip .swiper-button-next::before {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background: #eaeaea;
  margin-right: 10px;
}

.event_swip .swiper-navigation {
  display: flex;
  padding-bottom: 20px;
  gap: 10px;
}

.event_swip figure {
  border-radius: 20px;
  overflow: hidden;
}

.reservation ul li {
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  display: flex;
  padding: 22px 40px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-radius: 10px;
  background: #fff;
  font-size: 1.125rem;
  font-weight: 700;
}

.reservation .label {
  background: var(--color-primary);
  padding: 8px 20px;
  border-radius: 20px;
  color: #fff;
}

.reservation .label.label-waiting {
  background: #f7f7f7;
  color: #121212;
}

.main_content .notice {
  margin-top: 40px;
  font-weight: 700;
}

.main_content .notice ul {
  border-top: 1px solid #121212;
}

.main_content .notice ul li a {
  padding: 20px 10px;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.main_content .notice .category {
  padding: 4px 10px;
  border-radius: 50px;
  color: #fff;
  background: #121212;
}

.main_content .notice ul li .title {
  flex: 1;
  font-size: 1rem;
  padding: 0;
}

.kakao_m {
  display: none;
}

@media screen and (max-width: 1024px) {
  .main_content .si_inner {
    grid-template-columns: 1fr;
  }

  .main_content .si_inner .left {
    width: 100%;
    overflow: hidden;
    display: flex;
    gap: 20px;
  }

  .main_content .event_swip {
    width: 50%;
  }

  .main_content .notice {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .main_content .si_inner .left {
    display: block;
  }

  .main_content .event_swip {
    width: 100%;
  }

  .main_content .notice {
    width: 100%;
  }

  .reservation ul li {
    font-size: 1rem;
    padding: 20px;
  }

  .main_content .notice{
 margin-top: 50px;
 }

}

@media screen and (max-width: 512px) {
  .main_content .title {
    font-size: 1.5rem;
  }



  .main_content .notice ul li a {
    gap: 10px;
  }

  .main_content .notice ul li a .date {
    display: none;
  }

  .reservation ul li {
    font-size: 0.875rem;
  }

  .reservation .label {
    padding: 8px;
  }

  .reservation ul li .date {
    display: none;
  }

  .main_content .notice ul li .title {
    font-size: 0.875rem;
  }

  .kakao_pc {
    display: none;
  }
  .kakao_m {
    display: block;
  }
}

/* sec03 */

.main_review {
  position: relative;
  padding: 80px 0;
}

.main_review .slide_wrap {
  display: flex;
  width: 100%;
  justify-content: center;
  padding-bottom: 60px;
}

.main_review .review_swip {
  padding: 60px 0;
  width: 1340px;
  overflow: hidden;
}

.main_review .swiper-button-prev,
.main_review .swiper-button-next {
  position: static;
  margin: 0;
  color: #fff;
}

.main_review .swiper-button-prev span,
.main_review .swiper-button-next span {
  font-size: 32px;
}

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

.main_review .review_swip .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
  height: 430px;
}

.main_review .review_swip .swiper-slide figure {
  height: 236px;
  display: flex;
justify-content: center;
}

.main_review .review_swip .swiper-slide figure img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 비율 유지하며 영역 채우기 */
}

.main_review .review_swip .txt {
  background: #fff;
  padding: 20px;
  border-radius: 0 0 20px 20px;
  height: 100%;
}

.main_review .review_swip .txt h3 {
  font-size: 1.375rem;
  margin-bottom: 16px;
}

.main_review .review_swip .txt p {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.5rem;
}

.main_review .review_swip .txt span {
  width: 100%;
  text-align: right;
  margin-top: 20px;
  display: block;
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.main_review .review_title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding-top: 80px;
}

.main_review .review_title h2 {
  font-size: 2rem;
  color: #fff;
}

.main_review .review_title h2 strong {
  color: var(--color-primary);
}

.main_review .bg_image {
  position: absolute;
  left: 50%;
  top: 80px;
  transform: translateX(-50%);
  z-index: -1;
}

.main_review .bg_image img {
  width: 100%;
}

.main_review .swiper-pagination {
  position: static;
}

.main_review .pagination_inner {
  padding-top: 20px;
  border-radius: 30px;
}

.main_review .pagination_inner .swiper-pagination-progressbar {
  background: rgba(255, 255, 255, 0.4);
}


@media screen and (max-width: 1680px) {
  .main_review .slide_wrap {
    justify-content: center;
  }

  .main_review .review_swip {
    width: 100%;
    max-width: 1320px;
  }

  .main_review .review_swip .txt p {
    font-size: 16px;
  }

  .main_review .review_swip .swiper-slide {
    height: unset;
  }

  .main_review .pagination_inner {
    max-width: unset;
  }

  .main_review .review_swip .txt {
    border-radius: 0 0 20px 20px;
  }
}

@media screen and (max-width: 1480px) {
  .main_review .review_title {
    padding-top: 0;
  }

  .main_review {
    background: url(/img/main/review_bg.png) no-repeat center/cover;
  }

  .main_review .review_swip {
    padding: 0 0 40px;
    margin: 40px;
  }

  .main_review .bg_image {
    display: none;
  }

  .main_review .slide_wrap {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 512px) {

.main_review .review_swip .swiper-slide figure{
 height: 180px;
}

  .main_review .review_swip {
    margin: 20px;
  }

  .main_review .review_title {
    gap: 20px;
  }
}

footer {
  background: #121212;
  color: #fff;
}

footer .top_bar {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

footer .top_bar .si_inner {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .footer_content {
  padding: 60px 20px;
}

footer .footer_content li {
  margin-bottom: 16px;
  display: flex;
  row-gap: 10px;
  flex-wrap: wrap;
}

footer .footer_content img {
  display: block;
  margin: 0;
  margin-bottom: 24px;
}

footer .footer_content span {
  display: inline-block;
  margin-right: 20px;
}

@media screen and (max-width: 512px) {
  footer .footer_content {
    padding: 40px 20px;
  }
}

/*popup 개인정보처리방침 */
.k_pop_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: none;
  color: #121212;
}
.k_pop_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 800px;
  background: #fff;
  box-shadow: 5px 5px 13px rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 10px;
}
.pop_content {
  position: relative;
}
.pop_content h4 {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: -0.045em;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
.pop_content p {
  max-height: 350px;
  overflow-y: scroll;
  font-size: 14px;
  line-height: 1.3;
}
.pop_content p i {
  display: block;
  font-style: normal;
}
.pop_content p i b {
  font-weight: 500;
}
.pop_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
}
.pop_close span {
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #222;
  transition: transform 0.3s;
}
.pop_close span:nth-child(1) {
  transform: rotate(45deg);
}
.pop_close span:nth-child(2) {
  transform: rotate(-45deg);
}
.pop_close:hover span {
  transform: rotate(0);
}

/* sub */
.breadcrumb {
  padding: 20px 0;
  background: #f7f7f7;
}

.breadcrumb .si_inner {
  display: flex;
  align-items: center;
}

/* .sub_visual_title{
 background: linear-gradient(to right, #d4eaff, #acd7ff);
 text-align: center;
}

.sub_visual_title h2{
 font-size: 1.5rem;
  text-align: center;
  padding: 120px 0;
} */

.sub_section {
  padding: 100px 0;
}

.intro {
  text-align: center;
}

.intro b {
  color: var(--color-primary);
  font-size: 1.25rem;
  padding: 15px 0;
  display: block;
}

.intro h2 {
  font-size: 2.25rem;
  margin-bottom: 80px;
}

.intro figure img {
  width: auto;
  text-align: center;
}

.sub_company figure img {
  width: auto;
  text-align: center;
}

.sub_company .icon_list ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  font-size: 1.125rem;
}

.sub_company .icon_list li {
  padding: 30px 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.sub_company .icon_list li p {
  word-break: keep-all;
}

.sub_company .icon_list figure {
  margin-bottom: 20px;
}
.sub_company .intro_txt {
  text-align: center;
  padding: 80px 0;
  font-size: 1.75rem;
}

.sub_info .info_content p {
  word-break: keep-all;
}
@media screen and (max-width: 1024px) {
  .intro h2 {
    font-size: 2rem;
  }

  .sub_company .spacer_image img {
    width: 100%;
  }

  .sub_company .icon_list li p {
    font-size: 1rem;
  }

  .sub_company .icon_list ul {
    grid-template-columns: repeat(4, 1fr);
  }

  .sub_section {
    padding: 80px 0;
  }
}

@media screen and (min-width: 768px) {
  br.br_m {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .intro h2 {
    font-size: 1.75rem;
    word-break: keep-all;
  }

  .sub_company .intro_txt {
    font-size: 1.25rem;
  }

  .sub_company .icon_list ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 512px) {
  .intro h2 {
    font-size: 1.5rem;
  }
  .sub_company .icon_list ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .sub_company .icon_list li {
    padding: 20px 10px;
  }
}

.sub_process ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sub_process ul li {
  padding: 40px 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.sub_process ul li span {
  padding: 10px 20px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 30px;
}

.sub_process ul li figure {
  padding: 20px 0;
}

.sub_process ul li img {
  width: auto;
  text-align: center;
}

.sub_process ul li h3 {
  font-size: 1.25rem;
}

@media screen and (max-width: 1024px) {
  .sub_process ul li {
    padding: 30px 5px;
  }
  .sub_process ul li h3 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .sub_process ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro figure img {
    max-width: 100%;
  }

  .sub_section{
   padding: 60px 0;
  }
}

@media screen and (max-width: 512px) {
  .sub_process ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

.sub_info .info_content {
  padding: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: #fff;
  text-align: center;
}

.sub_info .info_content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  line-height: 1.5em;
}

.sub_info .info_content p {
  font-size: 1.125rem;
  line-height: 1.8em;
}

.sub_info .intro h2 {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
.breadcrumb{
 padding: 10px 0;
}

.breadcrumb .material-symbols-outlined{
 font-size: 18px;

}

  .sub_info .info_content {
    padding: 20px;
  }

  .sub_info .info_content h3 {
    font-size: 1.25rem;
  }

  .sub_info .info_content p {
    font-size: 1rem;
  }

  .sub_title {
    font-size: 2rem;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 512px) {
  .sub_info .info_content p br {
    display: none;
  }
}

.sub_title {
  text-align: center;
  margin-bottom: 80px;
  font-size: 2.25rem;
}

.s_head_custom ul li {
  display: grid;
  grid-template-columns: 5% 1fr 8% 12% 8% 8% 10%;
  align-items: center;
  gap: 20px;
}

.s_head_custom ul li span {
  width: auto !important;
}

.s_head_custom.qa_list .s-status {
  padding: 4px 8px;
  background: #f7f7f7;
  border-radius: 40px;
}

.s_head_custom.qa_list .s-status.status-complete {
  color: #fff !important ;
  background: var(--color-primary);
}

@media screen and (max-width: 1480px) {
  .bo_list_wrap.bo_news_wrap .bo_list.bo_ul_a figure img {
  }
}

@media screen and (max-width: 1024px) {
  .bo_list_wrap.bo_news_wrap .bo_list.bo_ul_a {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .bo_list_wrap.bo_news_wrap .bo_list.bo_ul_a {
    grid-template-columns: 1fr 1fr;
  }

  .bo_list_wrap.bo_news_wrap .bo_list_txt p,
  .bo_news_wrap .bo_list_txt span {
    font-size: 14px;
  }
}

@media screen and (max-width: 512px) {
  .bo_list_wrap.bo_news_wrap .bo_list.bo_ul_a {
    grid-template-columns: 1fr;
  }

}

@media screen and (max-width: 980px) {
  .s_head_custom ul li .s-user {
    display: none;
  }
  .s_head_custom ul li {
    grid-template-columns: 1fr 15% 8% 15% 10%;
    gap: 0;
  }

  .s_head_custom ul li span {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 768px) {
  .s_head_custom ul li {
    grid-template-columns: 1fr 20% 15% 15%;
  }

  .s_head_custom ul li .s-agency {
    display: none;
  }

  .s_head_custom.qa_list .s-status {
    padding: 0;
  }
}

@media screen and (max-width: 535px) {
  .s_head_custom ul li {
    grid-template-columns: 1fr 1fr;
  }

  .s_head_custom ul li span {
    font-size: 12px;
  }

  .bo_list ul li .bo_tit {
    padding-right: 0;
    font-size: 14px;
  }
}

.bo_news_wrap .bo_list.bo_ul_a figure {
  width: 100%;
  height: 196px;
  overflow: hidden;
  text-align: center;
}

.bo_news_wrap .bo_list.bo_ul_a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.k_content_wrap img{
 max-width: 550px;
 margin: 0 auto;
}


.notice .empty{padding: 40px 0;}