/* 공통 */

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  box-sizing: border-box;
  letter-spacing: -0.04em;
}

figure {
  margin: 0;
}

img {
  margin: 0 auto;
}

figure img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

ul,
li {
  list-style: none;
}

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

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

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

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

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

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

.flex-direction-column {
  display: flex;
  flex-direction: column;
}

.bg_item {
  position: absolute;
}

.main_section {
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

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

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

@media screen and (max-width: 512px) {
  .main_section {
    padding: 80px 0;
  }
}

/* 헤더 */
.si_header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: 0.3s all;
}

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

.si_header .si_inner {
  display: flex;
  justify-content: space-between;
  height: 80px;
  align-items: center;
}

.si_header .si_inner nav ul {
  display: flex;
  gap: 80px;
  color: #fff;
}

.si_header .si_inner nav ul a {
  font-size: 1.25rem;
}

@media screen and (max-width: 1400px) {
  .si_header .si_inner,
  .si_header .si_inner nav ul {
    gap: 40px;
  }
}

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

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

/* 메인 */
.main_visual {
  background: #121212;
  width: 100%;
  min-height: 850px;
  height: calc(100vh - 100px);
  background: url(/img/main/main_bg.png) no-repeat center/cover;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.main_visual .title {
  width: 100%;
  gap: 40px;
}

.main_visual .title ul {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
}

.main_visual .title ul li {
  margin-left: -40px;
  position: relative;
}

.main_visual .bg01 {
  left: -150px;
  bottom: -150px;
  z-index: 1;
}

.main_visual .bg02 {
  right: -150px;
  bottom: -150px;
  z-index: 1;
}

.main_visual .main_bg_slider {
  width: 80%;
  left: 50%;
  bottom: 0;
  padding: 20px 0;
  transform: translateX(-50%);
  background: #121212;
}

.flow_slider {
  width: max-content;
  display: flex;
  animation: marquee 20s linear infinite;
}

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

@media screen and (max-width: 1880px) {
  .main_visual .bg01,
  .main_visual .bg02 {
    width: 500px;
    bottom: -120px;
  }
}

@media screen and (max-width: 1024px) {
  .main_visual .bg01,
  .main_visual .bg02 {
    bottom: -120px;
  }

  .main_visual .txt01 {
    width: 90%;
  }

  .main_visual .title ul li {
    margin-left: -10px;
  }

  .main_visual .title ul li img {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .main_visual .bg01,
  .main_visual .bg02 {
    width: 300px;
	bottom: -35px;
  }

  .main_visual .bg01 {
    left: -70px;
  }

  .main_visual .bg02 {
    right: -70px;
  }

  .main_visual .txt02 {
    width: 75%;
  }

  .flow_slider img {
    height: 70%;
  }
}

@media screen and (max-width: 570px) {
  .main_visual {
    min-height: 700px;
	height: unset;
  }

  .main_visual .bg01,
  .main_visual .bg02 {
    width: 240px;
  }

  .main_visual .txt02 {
    width: 90%;
  }
  .main_visual .title ul {
    flex-wrap: wrap;
  }
  .main_visual .title ul li {
    width: 50%;
  }

  .main_visual .title ul li:last-child {
    margin-top: -20px;
  }

  .main_visual .title {
    gap: 20px;
  }
}

@media screen and (max-width: 450px) {
  .main_visual {
    min-height: 650px;
  }

  .main_visual .bg01,
  .main_visual .bg02 {
    width:180px;
  }

}

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

.sec01 .title {
  position: relative;
  gap: 30px;
  align-items: center;
}

.sec01 .left {
  left: 300px;
  top: 20px;
}

.sec01 .right {
  right: 300px;
  top: 20px;
}

.sec01 .receipt {
  margin-top: 100px;
  gap: 20px;
  flex-wrap: wrap;
}

.sec01 .receipt li {
  width: calc(25% - 15px);
}

.sec01 .receipt li img {
  width: 100%;
}

@media screen and (max-width: 1400px) {
  .sec01 .left {
    left: 120px;
  }

  .sec01 .right {
    right: 120px;
  }
}

@media screen and (max-width: 1024px) {
  .sec01 .left {
    left: 50px;
  }

  .sec01 .right {
    right: 50px;
  }

  .sec01 .receipt li {
    width: calc(33.3% - 10px);
  }
}

@media screen and (max-width: 768px) {
  .sec01 .title {
    width: 100%;
    padding: 0 10%;
  }
  .sec01 .left {
    width: 10%;
    left: 20px;
  }

  .sec01 .right {
    width: 10%;
    right: 20px;
  }

  .sec01 .receipt {
    margin-top: 80px;
    gap: 10px;
  }

  .sec01 .receipt li {
    width: calc(50% - 5px);
  }

  .sec01 .receipt li img {
    width: 100%;
  }
}

@media screen and (max-width: 512px) {
  .sec01 .receipt {
    margin-top: 60px;
    gap: 10px;
  }

  .sec01 .crown {
    width: 12%;
    margin-top: 18px;
  }

  .sec01 .title {
    padding: 0;
  }

  .sec01 .left {
    width: 10%;
    left: 100px;
    top: 10px;
  }

  .sec01 .right {
    width: 10%;
    right: 100px;
    top: 10px;
  }
}

.sec02 {
  background-color: #f7f7f7;
}

.sec02 .food01 {
  right: 200px;
  top: 0px;
  z-index: 1;
}

.sec02 .food02 {
  right: 0;
  top: 20px;
}

.sec02 .title {
  align-items: flex-start;
  gap: 40px;
  padding-top: 80px;
}

.sec02 .title img {
  margin: 0;
}

.sec02 .content {
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.sec02 .video {
  background: var(--color-primary);
  padding: 20px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  width: 58%;
}
.sec02 .video iframe {
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 500px;
}

.paper {
  margin-top: 300px;
}

.review_slider_wrap {
  position: absolute;
  left: 0;
  width: 100%;
  top: 500px;
}

.review_slider_wrap .review_slider {
  padding: 20px 0;
}

.review_slider_wrap .swiper-slide {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  border-radius: 20px;
  background: #fff;
}

.paper_m {
  display: none;
}

@media screen and (max-width: 1460px) {
  .sec02 .content {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }

  .sec02 .food01,
  .sec02 .food02 {
    width: 25%;
  }

  .sec02 .title {
    padding-top: 0;
    width: 100%;
  }

  .sec02 .review_slider_wrap {
    top: 750px;
  }

  .sec02 .video {
    width: 100%;
    max-width: 860px;
    padding: 8px;
    border-radius: 10px;
  }

  .sec02 .video iframe {
    width: 100%;
    min-height: unset;
  }

  .review_slider_wrap .swiper-slide img {
    width: 100%;
  }

  .paper img {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .sec02 .title .title_img {
    width: 95%;
    position: relative;
    z-index: 10;
  }

  .papaer_pc {
    display: none;
  }

  .paper_m {
    display: block;
  }

  .sec02 .food01 {
    right: 120px;
  }

  .sec02 .review_slider_wrap {
    top: 580px;
  }

  .sec02 .food02 {
    top: 0;
  }
}

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

.paper{
 margin-top: 20px;
}

.review_slider_wrap{
 position: static;
}

  .sec02 .food01,
  .sec02 .food02{
  width: 40%
}

	.sec02{
	padding-top: 150px;
	}

  .sec02 .review_slider_wrap {
    top: 520px;
  }

  .sec02 .des_img {
    width: 80%;
  }
  .sec02 .food01 {
    left: -20px;
	margin: 0;
  }

.sec02 .food02{
 right: -20px;
 top: -20px;
 	margin: 0;
}

}

#section02 {
  padding-bottom: 0;
}



.sec03 .title {
  gap: 40px;
  margin-bottom: 80px;
}

.sec03 .flex-center {
  justify-content: flex-start;
  gap: 100px;
  margin-bottom: 40px;
}

.sec03 .flex-center img {
  margin: 0;
}

.sec03 .flex-center img:first-child {
  border-radius: 20px;
}

.sec03 .sec03_txt {
  margin-top: 80px;
}

.sec03 .bg_item {
  left: 50%;
  bottom: -150px;
  transform: translateX(-50%);
}

@media screen and (max-width: 1460px) {
  .sec03 .bg_item {
    width: 80%;
  }
}

@media screen and (max-width: 1240px) {
  .sec03 .flex-center {
    gap: 40px;
  }
  .sec03 .flex-center > img {
    width: calc(50% - 20px);
  }

  .sec03 {
    padding-bottom: 300px;
  }
}

@media screen and (max-width: 1024px) {
  .sec03 .title_img {
    width: 90%;
  }

  .sec03 .des_img {
    width: 70%;
  }

  .sec03 .bg_item {
    bottom: -50px;
  }
}

@media screen and (max-width: 512px) {
  .sec03 .title {
    margin-bottom: 60px;
  }

  .sec03 .title_img {
    width: 90%;
  }

  .sec03 .des_img {
    width: 100%;
  }

  .sec03 .flex-center {
    gap: 40px;
    flex-direction: column;
  }

  .sec03 .flex-center > img {
    width: 100%;
  }

  .sec03 .title {
    gap: 20px;
  }
  .sec03 {
    padding-bottom: 150px;
  }

  .sec03 .bg_item {
    bottom: -30px;
  }
}

.sec04 {
  background: url(/img/main/sec05_bg.png) no-repeat center / cover;
  overflow: hidden;
}

.sec04 .title {
  margin-bottom: 80px;
}

.sec04 .content {
  gap: 80px;
  justify-content: space-between;
}

.sec04 .right {
  max-width: 60vw;
  overflow: hidden;
}

.sec04 .line {
  flex: 1;
}

.sec04 img {
  margin: 0;
}

.sec04 .badge_line > img {
  margin-right: -170px;
  position: relative;
  z-index: 1;
}

.sec04 .line {
  background: var(--color-primary);
  padding: 38px 0 38px 200px;
}

.sec04 .si_inner {
  position: relative;
  margin-top: 100px;
}

.sec04 .cta {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
}

.sec04 .block_img {
  width: 100%;
}

.badge_line {
  position: relative;
}

@media screen and (max-width: 1800px) {
  .sec04 .content {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .sec04 .right {
    max-width: 90vw;
  }

  .sec04 .left {
    margin: 0 auto;
  }
}

@media screen and (max-width: 1024px) {
  .sec04 .right {
    max-width: 100vw;
  }

  .sec04 .badge_line > img {
    width: 25%;
    position: absolute;
    left: 20px;
  }

  .sec04 .line img {
    width: 90%;
  }

  .adv_slider_wrap {
    overflow: hidden;
  }

  .adv_slider_wrap img {
    width: 100%;
  }

  .sec04 .line {
    padding: 38px 0 38px 280px;
  }
}

@media screen and (max-width: 768px) {
  .sec04 .title img {
    width: 100%;
    display: block;
    padding: 0 20px;
  }

  .sec04 .left {
    padding: 0 20px;
  }

  .sec04 .left img {
    display: block;
    width: 100%;
  }

  .sec04 .cta {
    width: 60%;
  }

  .sec04 .title {
    margin-bottom: 40px;
  }

  .sec04 .line {
    padding: 38px 0 38px 200px;
  }
}

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

  .sec04 .line {
    padding: 60px 20px 30px;
  }
  .sec04 .right {
    overflow: visible;
  }

  .sec04 .badge_line > img {
    top: -30px;
    z-index: 10;
  }

  .sec04 .line img {
    width: 100%;
  }

  .sec04 .badge_line > img {
    width: 35%;
  }


}

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

.sec05 .title {
  margin-bottom: 80px;
}

@media screen and (max-width: 1300px) {
  .sec05 .content > img {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .sec05 .title img {
    width: 80%;
  }
}

@media screen and (max-width: 512px) {
  .sec05 .content {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .sec05 .content > img {
    width: 100%;
  }
}

.sec06 {
  background: url(/img/main/sec07_bg.png) no-repeat center / cover;
  overflow: hidden;
}

.sec06 .si_inner {
  justify-content: space-between;
}

.sec06 .right {
  position: relative;
}

.sec06 .badge {
  position: absolute;
  right: -100px;
  top: 120px;
}

.sec06 .form_wrap {
  width: 740px;
  margin-top: 60px;
  background: #121212;
  border-radius: 20px;
  height: 740px;
}

.sec06 .line_slider_01 {
  position: absolute;
  left: 0;
  top: 130px;
  width: 700px;
  height: 370px;
  overflow: hidden;
  transform: rotate(-30deg);
  z-index: 1;
}

.sec06 .line_slider_02 {
  position: absolute;
  left: 0;
  top: 0;
  width: 640px;
  height: 370px;
  overflow: hidden;
}

.sec06 .line_slider_03 {
  position: absolute;
  right: -150px;
  bottom: -220px;
  width: 880px;
  height: 320px;
  overflow: hidden;
  transform: rotate(-30deg);
  z-index: 1;
}

.sec06 .line_slider_04 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 560px;
  height: 320px;
  overflow: hidden;
}

.sec06 .line_slider_01 .txt,
.sec06 .line_slider_03 .txt {
  animation: marquee 20s linear infinite;
  gap: 20px;
  width: max-content;
  position: absolute;
}

.form_wrap {
  padding: 80px 40px;
  color: #fff;
}

.form_wrap h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.form_wrap h3 span {
  font-size: 1rem;
  font-weight: 400;
}

.form_wrap h3 strong,
.form_wrap .s_form_list li b {
  color: #b80a14;
}

.form_wrap .s_form_list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.form_wrap .s_form_list li > div {
  width: 100%;
  flex: 1;
}

.form_wrap .s_form_list label {
  min-width: 120px;
}

.form_wrap .s_form_list input[type="text"] {
  width: 100%;
  background: #292929;
  border: 1px solid #414141;
  color: #fff;
  height: 38px;
  padding: 5px;
  border-radius: 5px;
  display: block;
}

.form_wrap .s_form_list textarea {
  width: 100%;
  background: #292929;
  border: 1px solid #414141;
  height: 200px;
  padding: 5px;
  border-radius: 5px;
  display: block;
  color: #fff;
}

.form_wrap .s_form_list input::placeholder {
  color: #666;
}

/* 라디오 버튼 숨기기 */
.radio_btn_wrap input[type="radio"] {
  display: none;
}

/* 기본 버튼 스타일 */
.radio_btn_wrap {
  display: flex;
  gap: 10px;
}

.radio_btn_wrap label {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  border: 1px solid #fff;
  border-radius: 5px;
  background: #000;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* 선택 시 활성화 스타일 */
.radio_btn_wrap input[type="radio"]:checked + label {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}

/* 호버 효과 */
.radio_btn_wrap label:hover {
  background: #333;
}

.form_wrap .submit_btn {
  width: 100%;
  display: block;
  height: 50px;
  color: #fff;
  background: var(--color-primary);
  margin-top: 10px;
  font-weight: 700;
  border-radius: 10px;
}

@media screen and (max-width: 1600px) {
  .sec06 .line_slider_01,
  .sec06 .line_slider_02,
  .sec06 .line_slider_03,
  .sec06 .line_slider_04 {
    display: none;
  }

  .sec06 .si_inner .left {
    width: 50%;
  }
  .sec06 .si_inner .right {
    width: 50%;
  }

  .sec06 .title {
    width: 60%;
  }

  .sec06 .badge {
    display: none;
  }

  .sec06 .form_wrap {
    width: 100%;
  }
}

@media screen and (max-width: 1140px) {
  .sec06 .si_inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    flex-direction: column-reverse;
  }
  .sec06 .si_inner .left {
    text-align: center;
    width: 100%;
  }
  .sec06 .si_inner .right {
    width: 100%;
  }

    .sec06 .title {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .sec06 .si_inner .left img {
    width: 100%;
  }
}

@media screen and (max-width: 512px) {
  .logo img {
    width: 60%;
  }

  .sec06 .form_wrap {
    padding: 40px 20px;
  }

  .form_wrap .s_form_list label {
    min-width: 100px;
  }

  .form_wrap h3 span {
    display: block;
  }

  .sec06 .form_wrap {
    height: unset;
  }

  .form_wrap .s_form_list li {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

.si_footer {
  padding: 80px 0 120px;
  background: #121212;
  color: #fff;
}

.si_footer img {
  margin-bottom: 10px;
}

.si_footer p {
  margin: 5px 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 개인정보처리방침, 이용약관 팝업 */
.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_wrap_02 .add_pop_inner {
  height: 250px;
}
.add_pop_wrap.active .add_pop_inner {
  transform: translate(-50%, -50%) scale(1);
}
.add_pop_tit {
  background: #b50012;
  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;
  }
}

#b_quick_banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--color-primary);
  height: 100px;
  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; /*width:34%; padding-right:35px; */
  justify-content: space-between;
  height: 100%;
}
#b_quick_banner .b_right_box {
  width: 65.5%;
}
#b_quick_banner .b_img_box {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-right: 20px;
  width: 46.5%;
  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; /* width:46.5%;*/
}
#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 {
  width: 100%;
  height: 55px;
  padding: 0 15px;
  outline: 0;
  border: 0;
}
#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 {
  /*max-width:240px; */
  width: 20%;
  background-color: #111;
  color: #fff;
  height: 55px;
  display: flex;
  align-items: center;
  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 {
    height: 90px;
  }
  #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) {
  #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%;
  }
  #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: 412px) {
  .br_m {
    display: none;
  }
}

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

.b_toggle_btn.open {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  .b_toggle_btn {
    display: flex;
  }
}
@media screen and (max-width: 720px) {
  .b_toggle_btn {
    height: 16px;
  }
  .b_call_box a {
    flex-direction: column;
    align-items: flex-end;
  }
  .b_call_box p {
    font-size: 14px !important;
  }
}

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

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

.video_slider .swiper-button-prev,
.video_slider .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50px;
}


.video_slider .swiper-pagination-bullet{
 background: #fff;
}

.video_slider .swiper-pagination-bullet-active{
 background: var(--color-primary);
}


.video_slider .swiper-button-prev {
  background: url("/img/main/video_prev.png") no-repeat center/cover;
}

.video_slider .swiper-button-next {
  background: url("/img/main/video_next.png") no-repeat center/cover;
}

@media screen and (max-width: 512px) {
  .video_slider .swiper-button-prev,
  .video_slider .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .form_wrap h3{
   text-align: center;
  }

  .form_wrap h3 span{
   margin-top: 10px;
  }
}


.food_bg{
margin-top: 40px;
 width: 100%;
}