/* 공통 */
main {
  width: 100%;
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: keep-all;
}

:root {
  --color-primary: #ca3434;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  box-sizing: border-box;
  overflow: hidden;
}

figure {
  margin: 0;
}

ul,
li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

button {
  background: none;
  border: none;
  outline: 0;
}

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

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.mo-ver {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-ver {
    display: none;
  }

  .mo-ver {
    display: block;
  }
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-40 {
  gap: 40px;
}

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

.absolute {
  position: absolute;
}

.flex {
  display: flex;
}

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

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

.flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bg_item {
  position: absolute;
}

.main-sec {
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.block_img {
  display: block;
  margin: 0 auto;
}

.video_wrap {
  aspect-ratio: 16/9;
}

.title {
  text-align: center;
}

.title span {
  display: block;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 24px;
  word-break: keep-all;
}

.title h2 {
  font-size: 3.875rem;
  word-break: keep-all;
}

.title h2 b {
  color: var(--color-primary);
  font-weight: inherit;
}

.title p {
  word-break: keep-all;
  font-size: 1.5rem;
  margin-top: 40px;
  line-height: 1.5em;
}

@media screen and (max-width: 1460px) {
  .title h2 {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .title h2 {
    font-size: 3rem;
  }

  .main-sec {
    padding: 120px 0;
  }
}

@media screen and (max-width: 768px) {
  .title p {
    font-size: 1.125rem;
    margin-top: 20px;
  }

  .title span {
    font-size: 1.75rem;
  }

  .title h2 {
    font-size: 2.25rem;
  }

  .main_section {
    padding: 100px 0;
  }

  .main-sec {
    padding: 100px 0;
  }
}

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

  .title h2 {
    font-size: 1.875rem;
  }

  .main_section {
    padding: 80px 0;
  }

  .main-sec {
    padding: 80px 0;
  }
}

/* 헤더 */
.si_header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: 0.3s all;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  padding: 0 100px;
  transition: 0.3s all;
}

.si_header.active {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
}

.si_header.active {
  height: 80px;
}

.si_header nav ul {
  display: flex;
  color: #fff;
}

.si_header nav ul a {
  font-size: 1.125rem;
  padding: 0 25px;
}

.si_header .hd_call a {
  gap: 10px;
}

/* header */
.b_toggle_btn {
  width: 27px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  display: none;
}
.b_toggle_btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

@media screen and (max-width: 1400px) {
  .si_header {
    padding: 0 20px;
  }

  .si_header .pc_gnb ul a {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1200px) {
  .pc_gnb {
    display: none;
  }

  .b_toggle_btn,
  .header_utils {
    display: flex;
  }
}
@media screen and (max-width: 720px) {
  .si_header .header_utils {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .b_toggle_btn {
    height: 16px;
  }
  .b_call_box a {
    flex-direction: column;
    align-items: flex-end;
  }
  .b_call_box p {
    font-size: 14px !important;
  }

  .si_header .logo {
    width: 40%;
  }
}

/* site map */
#b_site_map {
  position: fixed;
  right: -105%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  z-index: 99999;
  padding-top: 200px;
  opacity: 0.2;
  transition: right 0.4s, opacity 0.3s;
  color: #fff;
  text-algin: center;
}
#b_site_map.open {
  right: 0;
  opacity: 1;
  transition: right 0.6s, opacity 0.5s;
}
#b_site_map .b_close_btn {
  width: 28px;
  height: 28px;
  position: absolute;
  right: 20px;
  top: 20px;
  transform: rotate(45deg);
}
#b_site_map .b_close_btn span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}
#b_site_map .b_close_btn span:first-child {
  width: 100%;
  height: 2px;
}
#b_site_map .b_close_btn span:last-child {
  width: 2px;
  height: 100%;
}
#b_site_map .b_logo_img {
  display: block;
  margin: 0 auto;
}
#b_site_map nav {
  margin-top: 20px;
}
#b_site_map ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
}
#b_site_map ul li a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
}

@media screen and (max-width: 1200px) {
  .si_header .si_inner nav ul a {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1200px) {
  .si_header .si_inner nav ul {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .si_header .si_inner {
    height: 80px;
  }

  .si_header .si_inner h1 img {
    width: 80%;
  }

  .si_header .hd_call a {
    gap: 0;
  }

  .si_header .hd_call img {
    width: 80%;
  }
}

/* 개인정보처리방침, 이용약관 팝업 */
.add_pop_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
}
.add_pop_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 94%;
  max-width: 800px;
  height: 600px;
  border-radius: 15px;
  overflow: hidden;
  transform: translate(-50%, -50%) scale(0.9);
  transition: transform 0.3s ease;
}

.add_pop_wrap.active .add_pop_inner {
  transform: translate(-50%, -50%) scale(1);
}
.add_pop_tit {
  background: #77171c;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
}
.add_pop_close {
  width: 20px;
  height: 60px;
  position: relative;
}
.add_pop_close span {
  position: absolute;
  top: 29px;
  left: 0;
  width: 20px;
  height: 2px;
  background: #fff;
  z-index: 1;
  transition: transform 0.3s ease;
}
.add_pop_close span:nth-child(1) {
  transform: rotate(45deg);
}
.add_pop_close span:nth-child(2) {
  transform: rotate(-45deg);
}
.add_pop_close:hover span {
  transform: rotate(0);
}
.add_pop_con {
  background: #fff;
  padding: 22px 25px;
  overflow-y: scroll;
  height: calc(100% - 60px);
}
.add_pop_con h5 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.add_pop_con p {
  font-size: 14px;
  line-height: 160%;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .add_pop_con p {
    font-size: 12px;
  }

  .si_footer {
    padding-bottom: 200px;
  }
}

.b_sv_box {
  color: #fff;
  background: #333;
  margin-bottom: 80px;
}

/* 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;
  }
}

.fix_roll {
  position: fixed;
  left: 0;
  bottom: 80px;
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  flex-wrap: nowrap;
  height: 60px;
  z-index: 10;
  white-space: pre;
  align-items: center;
  font-size: 1.375rem;
  overflow: hidden;
}

.fix_roll > * {
  display: inline-block;
  animation: scrollLeft 30s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

#b_quick_banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: url(/img/main/quick_bg.jpg) no-repeat center/cover;
  height: 80px;
  z-index: 10;
}
#b_quick_banner .si_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
#b_quick_banner .b_left_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
#b_quick_banner .b_right_box {
  width: 80%;
}
#b_quick_banner .b_img_box {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-right: 20px;
  position: relative;
  height: 100%;
}
#b_quick_banner .b_img_box img {
  display: block;
  max-width: 100%;
}

#b_quick_banner .b_num_box {
  display: flex;
  align-items: center;
  padding-right: 20px;
}
#b_quick_banner .b_num_box a {
  color: #fff;
  display: block;
  margin-top: 10px;
}
#b_quick_banner .b_num_box img {
  margin-right: 20px;
  display: block;
  max-width: 100%;
  margin-bottom: 10px;
}
#b_quick_banner .b_form_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#b_quick_banner .b_form_box ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60%;
}
#b_quick_banner .b_form_box li {
  width: 32%;
}
#b_quick_banner .b_form_box .b_input,
#b_quick_banner .b_form_box select {
  width: 100%;
  height: 55px;
  padding: 0 15px;
  outline: 0;
  border: 0;
  background-color: #fff;
}
#b_quick_banner .b_form_box .b_chk_box {
  display: flex;
  align-items: flex-start;
  margin: 0 10px;
}
#b_quick_banner .b_form_box .b_chk_box input {
  width: 20px;
  height: 20px;
  border-radius: 0;
  margin-right: 10px;
}
#b_quick_banner .b_form_box .b_chk_box span {
  color: #fff;
  word-break: keep-all;
}
#b_quick_banner .b_form_box .b_submit_btn {
  width: 20%;
  background-color: var(--color-primary);
  color: #fff;
  height: 55px;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  justify-content: center;
}

@media (max-width: 1840px) {
  #b_quick_banner .b_num_box img {
    width: 35px;
    margin-right: 10px;
  }
  #b_quick_banner .b_img_box {
    column-gap: 6px;
  }
}

@media (max-width: 1480px) {
  #b_quick_banner .b_img_box .b_food {
    width: 150px;
  }
}

@media (max-width: 1200px) {
  #b_quick_banner .b_img_box {
    display: block;
    width: fit-content;
  }
  #b_quick_banner .b_img_box img:first-child {
    display: none;
  }

  #b_quick_banner .b_left_box {
    display: none;
  }

  #b_quick_banner .b_right_box {
    width: 100%;
  }
}

@media (max-width: 780px) {
  .fix_roll {
    bottom: 137px;
    font-size: 1rem;
    height: 40px;
  }

  #b_quick_banner {
    height: unset;
    padding: 8px 0;
  }
  #b_quick_banner .b_left_box {
    display: none;
  }
  #b_quick_banner .b_right_box {
    width: 100%;
  }
  #b_quick_banner .b_form_box {
    flex-wrap: wrap;
    justify-content: center;
  }
  #b_quick_banner .b_form_box ul {
    width: 100%;
    margin-bottom: 10px;
  }
  #b_quick_banner .b_form_box li {
    width: 32.5%;
  }
  #b_quick_banner .b_form_box .b_chk_box {
    margin: 0;
    width: 100%;
    margin: 6px 0;
  }
  #b_quick_banner .b_form_box .b_chk_box input {
    width: 15px;
    height: 15px;
  }
  #b_quick_banner .b_form_box .b_submit_btn {
    width: 100%;
    height: 40px;
  }
  #b_quick_banner .b_form_box .b_input {
    height: 40px;
    padding: 0 10px;
    font-size: 15px;
  }
}

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

/* 메인 비주얼 */
.main_visual {
  background: url(/img/main/main_bg.jpg) no-repeat center/cover;
  width: 100%;
  height: calc(100svh - 140px);
  position: relative;
  display: flex;
  justify-content: center;
  max-height: 850px;
  overflow: hidden;
}

.main_visual .main_txt {
  color: #fff;
  margin-bottom: 110px;
}

.main_visual .main_txt h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.main_visual .main_txt figure {
  margin-bottom: 24px;
}

.main_visual .main_txt h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.main_visual .main_txt p {
  font-size: 1.25rem;
  line-height: 1.75em;
  margin-bottom: 120px;
}

.main_visual .silde_center {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.main_visual .main_slider {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 50px;
}

@media screen and (max-width: 768px) {
  .main_visual .main_txt p {
    margin-bottom: 50px;
    font-size: 1rem;
  }

  .main_visual .main_txt img {
    width: 80%;
  }

  .main_visual .main_txt h2 {
    font-size: 1.5rem;
  }

  .main_visual {
    max-height: 800px;
  }

  .main_visual .main_txt {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 512px) {
  .main_visual .main_txt p {
    margin-bottom: 0;
  }

  .main_visual {
    max-height: 680px;
  }

  .main_visual .main_slider {
    bottom: 25px;
  }
}

/* sec01 */
.sec_01 {
  height: 920px;
  position: relative;
  overflow: hidden;
}

.sec_01 .left_slide {
  position: absolute;
  left: 80px;
  top: 0;
  display: flex;
  flex-direction: column;
  animation: slideUpLeft 30s linear infinite;
}

@keyframes slideUpLeft {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
.sec_01 .right_slide {
  position: absolute;
  right: 80px;
  top: 0;
  display: flex;
  flex-direction: column;
  animation: slideDownRight 30s linear infinite;
}

@keyframes slideDownRight {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.sec_01 .sec01_content {
  height: 100%;
}

.sec_01 .sec01_content h2 {
  font-size: 3.875rem;
  margin-bottom: 80px;
}

.sec_01 .sec01_content b {
  color: var(--color-primary);
  font-weight: inherit;
}

.sec_01 .sec01_content ul.flex-center {
  align-items: flex-start;
  position: relative;
  margin-bottom: 80px;
}

.sec_01 .sec01_content ul::before {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #121212;
  display: block;
  position: absolute;
  top: 14px;
  z-index: -1;
}

.sec_01 .sec01_content ul li::before {
  content: url(/img/main/history_circle.png);
  display: block;
  text-align: center;
}

.sec_01 .sec01_content li {
  margin: 0 20px;
  position: relative;
}

.sec_01 .sec01_content li h3 {
  color: var(--color-primary);
  font-size: 2.25rem;
  margin: 30px 0 20px;
}

.sec_01 .sec01_content li p {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5em;
}

.sec_01 .sec01_content > p {
  font-size: 1.5rem;
  line-height: 1.5em;
}

.sec_01 .sec01_content ul li.active::after {
  content: '';
  background: var(--color-primary);
  opacity: 0.2;
  display: block;
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: -1;
  animation: blink 3s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.05;
  }
}

.sec_01 .left_slide figure,
.sec_01 .right_slide figure {
  margin-bottom: 20px;
}

@media screen and (max-width: 1800px) {
  .sec_01 {
    height: unset;
    padding: 0;
    overflow: hidden;
  }

  .sec_01 .left_slide,
  .sec_01 .right_slide {
    position: relative;
    flex-direction: row;
    gap: 20px;
    width: max-content;
  }

  .sec_01 .left_slide {
    animation: slideLeftToRight 40s linear infinite;
    padding: 40px 0 100px;
  }

  .sec_01 .right_slide {
    animation: slideRightToLeft 40s linear infinite;
    padding: 100px 0 40px;
  }

  @keyframes slideLeftToRight {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes slideRightToLeft {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }

  .sec_01 .left_slide figure,
  .sec_01 .right_slide figure {
    margin-bottom: 0px;
    min-width: 200px;
    flex-shrink: 0;
  }
}

@media screen and (max-width: 1024px) {
  .sec_01 .left_slide figure,
  .sec_01 .right_slide figure {
    min-width: 150px;
    width: 200px;
  }

  .sec_01 .sec01_content h2 {
    font-size: 3rem;
  }

  .sec_01 .sec01_content li h3 {
    font-size: 1.75rem;
  }

  .sec_01 .sec01_content li p {
    font-size: 1rem;
  }

  .sec_01 .sec01_content > p {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 768px) {
  .sec_01 .sec01_content h2 {
    font-size: 2.25rem;
  }

  .sec_01 .sec01_content ul::before {
    width: 2px;
    height: 100%;
  }

  .sec_01 .sec01_content ul.flex-center {
    display: grid;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .sec_01 .sec01_content h2 {
    margin-bottom: 40px;
  }

  .sec_01 .sec01_content li {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 0;
    text-align: left;
    margin-left: -14px;
  }

  .sec_01 .sec01_content li h3 {
    font-size: 1.125rem;
    margin: 0;
  }

  .sec_01 .sec01_content ul li.active::after {
    left: 14px;
    top: -32%;
    width: 50px;
    height: 50px;
  }

  .sec_01 .sec01_content ul li br {
    display: none;
  }

  .sec_01 .left_slide {
    padding-bottom: 80px;
  }

  .sec_01 .right_slide {
    padding-top: 80px;
  }

  @keyframes blink {
    0%,
    100% {
      opacity: 0.1;
      transform: 0;
    }
    50% {
      opacity: 0.05;
      transform: 0;
    }
  }
}

@media screen and (max-width: 512px) {
  .sec_01 .sec01_content li {
    gap: 10px;
  }
  .sec_01 .sec01_content h2 {
    font-size: 2rem;
  }

  .sec_01 .sec01_content ul.flex-center {
    margin-bottom: 40px;
  }

  .sec_01 .left_slide {
    animation: slideLeftToRight 30s linear infinite;
  }

  .sec_01 .right_slide {
    animation: slideRightToLeft 30s linear infinite;
  }
}

/* sec02 */
.sec_02 {
  background: url(/img/main/sec02_bg.jpg) no-repeat center/cover;
  color: #fff;
}

.sec_02 .caption {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  width: 400px;
  height: 400px;
  justify-content: center;
  text-align: center;
  padding-top: 15px;
  z-index: 10;
}

.sec_02 .caption figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 400px;
  animation: rotate360 10s linear infinite;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.sec_02 .title {
  margin-bottom: 60px;
}

.sec_02 ul {
  color: #121212;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}

.sec_02 ul li {
  background: #fff;
  border-radius: 20px;
  padding: 80px;
  padding-right: 0;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sec_02 .caption span,
.sec_02 .caption strong {
  position: relative;
  z-index: 1;
}

.sec_02 .caption span {
  font-size: 1.75rem;
  font-weight: 700;
}

.sec_02 .caption strong {
  font-size: 6.25rem;
  font-weight: 900;
}

.sec_02 ul li:nth-child(even) {
  padding-left: 160px;
}

.sec_02 ul li h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.sec_02 ul li p {
  font-size: 1.5rem;
  line-height: 1.5em;
}

@media screen and (max-width: 1400px) {
  .sec_02 ul li h3 {
    font-size: 1.75rem;
  }

  .sec_02 ul li p {
    font-size: 1.125rem;
    word-break: keep-all;
  }

  .sec_02 ul li:nth-child(even) {
    padding-left: 140px;
  }
}

@media screen and (max-width: 1200px) {
  .sec_02 ul li h3 {
    font-size: 1.5rem;
  }

  .sec_02 ul li {
    padding: 40px;
    height: 260px;
  }

  .sec_02 .caption figure {
    width: 300px;
    left: 50px;
    top: 50px;
  }

  .sec_02 .caption strong {
    font-size: 4rem;
  }

  .sec_02 .caption span {
    font-size: 1.25rem;
  }

  .sec_02 ul li:nth-child(even) {
    padding-left: 100px;
  }
}

@media screen and (max-width: 768px) {
  .sec_02 .title {
    margin-bottom: 20px;
  }

  .sec_02 ul {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sec_02 ul li:nth-child(even) {
    padding-left: 40px;
  }

  .sec_02 ul li {
    padding: 30px;
    height: auto;
  }

  .sec_02 .caption {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
  }

  .sec_02 .caption figure {
    top: 0;
    left: calc(50% - 150px);
  }

  .sec_02 ul li h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }

  .sec_02 ul li p {
    font-size: 1rem;
  }
}

/* sec03 */
.sec_03 {
  background: #f7f7f7 url(/img/main/sec03_bg.png) no-repeat center
    bottom/contain;
  padding-bottom: 200px;
}

.sec_03 ul {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.sec_03 ul li {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
}

.sec_03 ul li .image_line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sec_03 ul li .image_line span {
  font-size: 3.75rem;
  color: #f7f7f7;
  font-weight: 700;
}

.sec_03 ul li h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 20px 0;
}

.sec_03 ul li p {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.75em;
  word-break: keep-all;
}

@media screen and (max-width: 1460px) {
  .sec_03 {
    background-size: 150%;
  }

  .sec_03 ul li {
    padding: 30px;
  }

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

  .sec_03 ul li p {
    font-size: 1.125rem;
  }
}

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

@media screen and (max-width: 1024px) {
  .sec_03 {
    padding-bottom: 120px;
  }

  .sec_03 ul {
    margin-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  .sec_03 {
    padding-bottom: 100px;
  }

  .sec_03 ul {
    margin-top: 40px;
  }

  .sec_03 ul li .image_line span {
    font-size: 2.75rem;
  }

  .sec_03 {
    background-size: 200%;
  }
}

@media screen and (max-width: 512px) {
  .sec_03 {
    background-size: 300%;
  }
}

/* sec04 */
.sec_04 {
  padding-left: 520px;
  background: url(/img/main/sec04_bg.png) no-repeat left top/contain;
}

.sec_04 .si_inner {
  max-width: 1154px;
}

.sec_04 .title {
  text-align: left;
}

.sec_04 .title a {
  background: var(--color-primary);
  color: #fff;
  padding: 16px 40px;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 700;
  border-radius: 100px;
  border: 1px solid var(--color-primary);
  transition: 0.3s all;
}

.sec_04 .title a:hover {
  color: var(--color-primary);
  background: #fff;
}

.sec_04 .title p {
  margin-bottom: 50px;
}

.sec_04 .message {
  display: flex;
  padding: 38px;
  border-left: 5px solid var(--color-primary);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  gap: 24px;
}

.sec_04 .message h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.sec_04 .message p {
  font-size: 1.25rem;
  line-height: 1.5em;
}

.sec_04 .menu_silder {
  margin-top: 80px;
}

.sec_04 .menu_silder .swiper-slide {
  width: 340px;
  min-height: 336px;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 20px;
  padding: 50px;
}

.sec_04 .menu_silder .swiper-slide figure {
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.sec_04 .menu_silder .swiper-slide span {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.sec_04 .menu_silder .swiper-slide h2 {
  font-size: 2rem;
  font-weight: 700;
}

@media screen and (max-width: 1880px) {
  .sec_04 {
    background: none;
    padding-left: 0;
  }
}

@media screen and (max-width: 1400px) {
  .sec_04 .menu_silder .swiper-slide {
    min-height: 300px;
  }

  .sec_04 .menu_silder .swiper-slide span {
    font-size: 1.25rem;
  }

  .sec_04 .menu_silder .swiper-slide h2 {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 1024px) {
  .sec_04 .menu_silder .swiper-slide {
    min-height: 338px;
  }
}

@media screen and (max-width: 768px) {
  .sec_04 .title a {
    padding: 10px 30px;
    font-size: 1.25rem;
  }

  .sec_04 .message h3 {
    font-size: 1.25rem;
  }

  .sec_04 .message p {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 512px) {
  .sec_04 .menu_silder .swiper-slide {
    min-height: 250px;
  }

  .sec_04 .menu_silder .swiper-slide span {
    font-size: 1rem;
  }

  .sec_04 .title a {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .sec_04 .message {
    flex-direction: column;
  }

  .sec_04 .message p {
    font-size: 1rem;
  }
}

/* sec05 */
.sec_05 {
  background: url(/img/main/sec_05.jpg) no-repeat center/cover;
  color: #fff;
}

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

.sec_05 .caption {
  display: block;
  text-align: center;
  margin: 40px auto 0;
}

.sec_05 .subtitle {
  margin: 60px auto 30px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .sec_05 ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .sec_05 ul li {
    width: calc(50% - 10px);
    text-align: center;
  }
}

@media screen and (max-width: 512px) {
  .sec_05 .flex-between {
    justify-content: center;
    width: 100%;
  }

  .sec_05 .left {
    position: absolute;
    left: 0;
    top: 20px;
    width: 30%;
  }

  .sec_05 .right {
    position: absolute;
    right: 0;
    top: 20px;
    width: 30%;
  }

  .sec_05 .subtitle {
    margin-top: 40px;
  }
}

/* sec06 */
.sec_06 {
  background: url(/img/main/sec06_bg.png) no-repeat center/cover;
}

.sec_06 ul {
  display: flex;
  margin-top: 60px;
}

.sec_06 ul li {
  margin-left: -60px;
}

.sec_06 ul li:first-child {
  margin-left: 0;
}

.sec_06 .subtitle {
  padding: 0 40px;
  margin-top: 50px;
  margin-bottom: 20px;
}

.faq_list {
  padding: 0 40px;
  margin: 0 auto;
}

.faq_item:first-child {
  border-top: 5px solid #121212;
}

.faq_item {
  border-bottom: 1px solid #ddd;
  background: #fff;
}

.faq_question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 400;
  transition: color 0.3s;
}

.faq_question .txt {
  display: flex;
  align-items: center;
  gap: 20px;
}

.faq_question:hover {
  color: var(--color-primary);
}

.toggle_icon {
  transition: transform 0.3s;
  padding: 0 10px;
}

.faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 40px;
}

.faq_answer p {
  padding: 0 0 20px 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.faq_item.active .faq_answer {
  max-height: 500px;
}

@media screen and (max-width: 768px) {
  .faq_question {
    font-size: 1rem;
    padding: 15px 0;
  }

  .faq_answer p {
    font-size: 0.9rem;
  }

  .faq_list {
    padding: 0;
  }

  .sec_06 .subtitle {
    padding: 0;
  }

  .faq_question .txt img {
    margin: 0 0 0 10px;
  }

  .sec_06 ul {
    flex-wrap: wrap;
  }

  .sec_06 ul li {
    margin-left: -20px;
    width: 33.3%;
    margin-top: -20px;
  }

  .sec_06 ul li:first-child,
  .sec_06 ul li:nth-child(4) {
    margin-left: 0;
  }
}

@media screen and (max-width: 512px) {
  .faq_question .txt img {
    width: 12%;
  }

  .sec_06 .subtitle img {
    width: 15%;
  }
}

/* sec07 */
.sec_07 {
  background: url(/img/main/sec07_bg.jpg) no-repeat center top/cover;
  padding-top: 250px;
  padding-bottom: 0;
}

.sec_07 ul {
  margin-top: 80px;
  display: grid;
  gap: 20px;
  padding: 0 60px;
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 1024px) {
  .sec_07 {
    padding-top: 200px;
  }
}

@media screen and (max-width: 768px) {
  .sec_07 {
    background: url(/img/main/sec07_bg_m.jpg) no-repeat center top/cover;
    padding-top: 120px;
  }

  .sec_07 ul {
    padding: 0;
    margin-top: 40px;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
}

/* sec08 - 비디오 섹션 */

.sec_08 {
  padding-right: 20px;
  padding-left: 20px;
}

.video_section {
  position: relative;
  max-width: 1600px;
  width: 100%;
  height: auto;
  max-height: 700px;
  aspect-ratio: 16/9;
  margin: 0 auto;
  overflow: hidden;
}

.video_section .title {
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  text-align: left;
  background: rgba(0, 0, 0, 0.2);
}

.video_section .title h3 {
  font-size: 1.75rem;
  margin: 40px 0;
  line-height: 1.75em;
}

.video_section .title p {
  font-size: 1.25rem;
  margin: 0;
  line-height: 1.75em;
}

.iframe_wrap {
  left: 0;
  top: 0;
  position: absolute;
  max-width: 1600px;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 비율 */
  overflow: hidden;
  z-index: -1;
}

.iframe_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* 클릭 방지로 컨트롤 숨김 */
}

/* 유튜브 컨트롤 완전 숨기기 */
.iframe_wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: transparent;
  pointer-events: none;
  z-index: 1;
}

@media screen and (max-width: 1200px) {
  .video_section .title h2 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  .video_section .title h2 {
    font-size: 2.25rem;
  }

  .video_section .title h3 {
    margin: 20px 0;
    font-size: 1.5rem;
  }

  .video_section .title p {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 768px) {
  .video_section {
    min-height: 440px;
  }

  .video_section .title {
    padding: 40px;
  }

  .iframe_wrap {
    width: 200%;
    padding-bottom: 112%;
  }
}

@media screen and (max-width: 512px) {
  .video_section {
    min-height: 480px;
  }

  .video_section .title {
    padding: 20px;
  }

  .video_section .title h3 {
    font-size: 1.25rem;
  }

  .video_section .title p {
    font-size: 1rem;
  }

  .iframe_wrap {
    width: 280%;
    padding-bottom: 158%;
  }
}

/* sec09 */
.sec_09 {
  background: url(/img/main/sec09_bg.png) no-repeat center/cover;
  color: #fff;
}

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

.sec_09 .title {
  text-align: left;
}

.sec_09 .title p {
  margin-bottom: 80px;
  font-size: 1.75rem;
}

.sec_09 ul {
  display: flex;
  gap: 20px;
}

.sec_09 ul li {
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  padding: 50px 40px;
}

.sec_09 ul li span {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.125rem;
  margin: 20px 0;
}

.sec_09 ul li h3 {
  font-size: 1.75rem;
}

@media screen and (max-width: 768px) {
.sec_09 .title p {
  font-size: 1rem;
}

}

@media screen and (max-width: 1400px) {
  .sec_09 ul li {
    padding: 40px 20px;
  }

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

@media screen and (max-width: 1120px) {
  .sec_09 .title h2 {
    font-size: 3.125rem;
  }

  .privacy_check span {
    font-size: 1rem;
  }
}

/* 상담 신청 폼 */
#consultForm {
  background: #fff;
  border-radius: 50px;
  padding: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 640px;
  margin: 0 auto;
}

#consultForm h3 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  color: #333;
}

.form_group {
  margin-bottom: 25px;
}

.form_group label {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.form_group input[type='text'],
.form_group input[type='tel'] {
  width: 100%;
  padding: 15px 20px;
  font-size: 1.25rem;
  border: none;
  background: #f5f5f5;
  border-radius: 8px;
  outline: none;
  transition: background 0.3s;
}

.form_group input[type='text']::placeholder,
.form_group input[type='tel']::placeholder {
  color: #aaa;
}

.form_group input[type='text']:focus,
.form_group input[type='tel']:focus {
  background: #ebebeb;
}

.privacy_check {
  margin-top: 25px;
  margin-bottom: 25px;
}

.privacy_check label {
  display: flex;
  align-items: center;
  font-weight: normal;
  cursor: pointer;
}

.privacy_check input[type='checkbox'] {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  cursor: pointer;
}

.privacy_check span {
  font-size: 1.125rem;
  color: #555;
}

.privacy_check a {
  color: var(--color-primary);
  text-decoration: none;
  margin-left: 5px;
  font-weight: 600;
  font-size: 1.125rem;
}

.privacy_check a:hover {
  text-decoration: underline;
}

.submit_btn {
  width: 100%;
  padding: 18px;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.submit_btn:hover {
  background: #b02d2d;
}

.submit_btn:active {
  transform: translateY(0);
}

@media screen and (max-width: 1120px) {
  #consultForm {
    padding: 40px;
  }
}

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

  .sec_09 .title h2 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .sec_09 .title p {
    margin-bottom: 40px;
  }

  .sec_09 .title h2 {
    font-size: 2.25rem;
  }

  #consultForm {
    padding: 30px 20px;
    border-radius: 15px;
  }

  #consultForm h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .form_group input[type='text'],
  .form_group input[type='tel'] {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .submit_btn {
    padding: 15px;
    font-size: 1rem;
  }

  .sec_09 ul {
    gap: 10px;
  }
}

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

  .sec_09 ul {
    flex-direction: column;
  }
}

/* footer */
.si_footer {
  padding: 80px 0 200px;
  background: #121212;
  color: #fff;
}

.si_footer .si_inner {
  display: flex;
  justify-content: space-between;
}

.si_footer .left {
  color: rgba(255, 255, 255, 0.6);
}

.si_footer .left p {
  margin-top: 24px;
  font-size: 1.125rem;
  line-height: 1.8em;
}

.si_footer .right {
  display: flex;
  gap: 80px;
}

.si_footer .right .item {
  display: flex;
  flex-direction: column;
  font-size: 1.125rem;
}

.si_footer .right ul li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  align-items: center;
  margin-bottom: 20px;
}

.si_footer .right ul li::before {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-primary);
}

.si_footer .right b {
  margin-bottom: 20px;
}

.si_footer .right .item > a {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 20px;
  display: block;
}

.si_footer .right .item span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 1024px) {
  .si_footer .right .item:first-child {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .si_footer .si_inner {
    flex-direction: column;
    gap: 40px;
  }

  .privacy_check span, .privacy_check a{
    font-size: 0.875rem;
  }

  .si_footer .left p{
    font-size: 1rem;
  }
}

