body{
    overflow-x: hidden !important;
}
header, .gnb_pc, .gnb_box {
  max-width: 100%;
}
.gnb_btn a {
    color: white;
    transition: color .3s;
}
.gnb_btn a {
    color: white;
    transition: color .3s;
}
.gnb_btn a:hover {
  color: var(--primary-brown);
}
.order_btn:hover,
.login_btn:hover {
  background-color: white;
  color: var(--primary-orange);
}
header.scrolled .login_btn:hover {
  border: 1px solid white;
}
/* /////// PC /////// */

/* 스크롤 유도 화살표 기본 스타일 */
.scroll-down {
    position: fixed;
    bottom: 40px;
    left: 50%;
    cursor: pointer;
    z-index: 10;
    animation: arrowBounce 1.6s infinite;
    opacity: 0.9;
    transition: all 0.3s;
    text-align: center;
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
.scroll-down img {
    width: 32px;
    height: 32px;
}
#scrollArrow {
  opacity: 1;
  transition: opacity 0.6s ease; /* 서서히 페이드 인/아웃 */
}
#scrollArrow.hidden {
  opacity: 0;
  pointer-events: none;
}
@keyframes arrowBounce {
  0%   { transform: translateY(0) translateX(-50%); }
  50%  { transform: translateY(12px) translateX(-50%); }
  100% { transform: translateY(0) translateX(-50%); }
}
.scroll-down img {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}
/* 스크롤 유도 css */

/* section01 */
.main_section01{
    background-color: #FF5117;
    width: 100%;
    padding-bottom: 50rem;
    overflow-x: hidden;
}
.main_section01 h1{
    text-align: center;
    font-family: 'HakgyoansimB';
    color: #FFF1DE;
    letter-spacing: 5px;
    font-size: clamp(60px, 12vw, 210px);
    line-height: clamp(80px, 14vw, 250px);
    padding-top: clamp(80px, 10vw, 107px);
    -webkit-text-stroke: clamp(1px, 0.5vw, 5px) #FFF1DE;
}
.main_section01_container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -8%;
    padding-left: 0;
}
.main_section01_container .main_section01_group {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;

    width: min(1500px, 100vw);
}
.main_section01_container img {
    display: block;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    flex-shrink: 1;
}
.main_section01_container .main_section01_group img:first-child {
    max-width: 55%;
    margin-right: -4%;
}
.main_section01_container .main_section01_group img:last-child {
    max-width: 60%;
    margin-left: -4%;
    margin-top: 3%;
}
/* section01 e*/

/* section02 */
.main_section02{
    position: relative;
    width: 100%;
    background-color: #FFF1DE;
    height: auto;
    margin-top: -500px;
    border-radius: 40px;
    text-align: center;
    padding-bottom: 200px;
}
.main_section02 h1{
    color: #30231B;
    font-size: 90px;
    font-family: 'HakgyoansimB';
    -webkit-text-stroke: 3px #30231B;
    padding-top: 90px;
}
.main_section02 h2{
    color: #30231B;
    font-size: 40px;
    font-family: 'MalangmalangR';
    -webkit-text-stroke: 0.2px #30231B;
    padding: 10px 0 10px 0;
    letter-spacing: 2px;
}
.bg_fade01{
    position: absolute;
    top: 5%;
    left: 0;
}
.bg_fade02{
    position: absolute;
    top: 50%;
    right: 0;
}
.lunch_group{
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding-top: 30px;
}
.lunch_group{
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 150px;
}
.lunch > a div:first-child,
.lunch_salad > a div:first-child {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  height: 360px;
}
.lunch, .lunch_salad {
  position: relative;
}
.lunch_img {
  position: relative;
  padding: 20px;
  border-radius: 20px;
  transition: all .2s ease-in;
  align-items: center;
  overflow: hidden;
}
.lunch_img img {
  z-index: 2;
}
/* 공통 오버레이 기본 상태 (숨김) */
.lunch_img::after {
  content: "";
  position: absolute;
  top: 30px;
  color: #fff;
  font-family: 'HakgyoansimB';
  font-size: 80px;
  letter-spacing: 0.12em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 1;
  -webkit-text-stroke: 4px rgba(255, 255, 255);
}

/* 발열 도시락에 나올 텍스트 */
.lunch .lunch_img::after {
  content: "HEAT";
  font-family: 'MalangmalangR';
  font-weight: 900;
}
/* 샐러드 도시락에 나올 텍스트 */
.lunch_salad .lunch_img::after {
  content: "SALAD";
  font-family: 'MalangmalangR';
  font-weight: 900;
}

/* hover 시 오버레이 보이기 + 배경색 그대로 유지 */
.lunch_img:hover {
  background-color: var(--primary-orange);
}
.lunch_salad .lunch_img:hover {
  background-color: var(--primary-green);
}
.lunch_img:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* 발열 */
.lunch {
  position: relative;
  display: inline-block;
}
.lunch > img:first-child {
  display: block;
  width: 100%;
  height: auto;
}
.lunch_icon01{
  width: 70px;
  position: absolute;
  z-index: 3;
  right: -8%;
  bottom: -8%;
  height: auto;

  pointer-events: none;
}
.lunch_text{
    margin: 30px 0 10px 0;
    color: #30231B;
}
.lunch_text h3{
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}
.lunch_text h4 {
    font-size: 30px;
    font-weight: 800;
    font-family: 'HakgyoansimR';
}
.lunch_text h4 span {
  font-size: 20px;
}
.lunch_text ul{
    display: flex;
    justify-content: center;
    padding: 16px 0 10px 0;
    align-items: center;
}
.lunch_text ul li{
    width: 60px;
    font-size: 16px;
    font-weight: 1000;
    box-sizing: border-box;
    margin: 0 4px;
}
.lunch_text ul li:nth-child(1){
    background-color: #FF5117;
    color: #fff;
    border-radius: 7px;
    padding: 5px 3px;
}
.lunch_text ul li:nth-child(2){
    border: #FF5117 1px solid;
    color: #FF5117;
    border-radius: 7px;
    padding: 5px 3px;
    box-sizing: border-box;
}
/* 발열 e */
/* 샐러드 */
.lunch_salad {
  position: relative;
  display: inline-block;
}
.lunch_salad > img:first-child {
  display: block;
  width: 100%;
  height: auto;
}
.lunch_icon02{
  position: absolute;
  z-index: 3;
  right: -8%;
  bottom: -8%;
  height: auto;

  pointer-events: none;
}
.salad_text{
    margin: 30px 0 10px 0;
    color: #30231B;
}
.salad_text h3{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}
.salad_text h4 {
    font-size: 28px;
    font-weight: 800;
    font-family: 'HakgyoansimR';
}
.salad_text h4 span {
  font-size: 20px;
}
.salad_text ul{
    display: flex;
    justify-content: center;
    padding: 16px 0 10px 0;
    align-items: center;
}
.salad_text ul li{
    width: 60px;
    font-size: 16px;
    font-weight: 1000;
    box-sizing: border-box;
    margin: 0 4px;
}
.salad_text ul li:nth-child(1){
    background-color: #189C38;
    color: #fff;
    border-radius: 7px;
    padding: 5px 3px;
}
.salad_text ul li:nth-child(2){
    border: #189C38 1px solid;
    color: #189C38;
    border-radius: 7px;
    padding: 5px 3px;
}
.lunch_text p,
.salad_text p{
    color: #767676;
    font-weight: 500;
    font-size: 14px;
    padding-top: 6px;
}
/* 샐러드 e */
/* section02 e*/

/* section03 */
.section03{
    position: relative;
    width: 100%;
    background-image: url(../public/images/main/bg.png);
    background-size: cover;
    height: auto;
    margin: 0 auto;
    align-items: center;
    padding-bottom: 250px;
}
.paper1{
    position: absolute;
    top: -120px;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.paper2{
    position: absolute;
    bottom: -200px;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.section03_title{
  color: #FF5117;
  font-family: 'MalangmalangR';
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1.5em;
  text-align: center;
  margin: 0 auto;
  padding: 320px 0 60px 0;
}
.section03 h1{
    font-family: 'MalangmalangR';
     font-size: 56px;
}
.section03 h2{
    font-family: 'MalangmalangR';
     -webkit-text-stroke: 1px #FF5117;
    font-size: 56px;
}
.logo_kr{
    display: block;
    margin: 0 auto;
    z-index: 3;
}

/* 배경음식 */
.bg_food01{
  position: absolute;
  top: -130px;
  left: 0;
  z-index: 2;
  animation: floatY 2s ease-in-out infinite;
}
.bg_food02{
  position: absolute;
  bottom: -40px;
  left: 80px;
  z-index: 2;
  animation: floatY 3s ease-in-out infinite;
}
.bg_food03{
  position: absolute;
  top: -30px;
  right: 0;
  z-index: 2;
  animation: floatY 3.2s ease-in-out infinite;
}
.bg_food04{
  position: absolute;
  bottom: -320px;
  right: 0;
  z-index: 2;
  animation: floatY 2.5s ease-in-out infinite;
}
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0);
  }
}

/* 카드배치 */
.promotion_container{
  display: flex;
  justify-content: center;
  gap: 24px;
  
  width: 100%;
  margin: 120px auto;
  color: #fff;
  text-align: center;
}
.promotion_group{
  width: 326px;
  height: 445px;
  box-sizing: border-box;
  border-radius: 20px;
  padding: 80px 0 ;
}
.promotion_group h3{
    font-family: 'HakgyoansimB';
    font-size: 40px;
    margin: 8px 0 40px 0;
}
.promotion_group p{
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  opacity: 1;
}
.promotion_group span {
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
  opacity: 0.8;
}
.promotion_container .promotion_group:nth-child(1){
  background-color: #FF4000;
}
.promotion_container .promotion_group:nth-child(2){
  background-color: #10AE36;
}
.promotion_container .promotion_group:nth-child(3){
  background-color: #FFB007;
}
.promotion_container .promotion_group:nth-child(4){
  background-color: #4A3427;
}
.promotion_container .promotion_group:nth-child(5){
  background-color: #AF8E77;
}
/* section03 e */

/* section04 */
.section04{
  position: relative;
  width: 100%;
  height: auto;
  background-color: #FFF1DE;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.section04_container{
  margin: 0 auto;
  width: 1400px;
  padding-bottom: 380px;
}
.section04 h1{
  font-family: 'HakgyoansimB';
  color: #FF5117;
  font-size: 84px;
  padding: 354px 0 70px 0;
  text-align: left;
}

/* 질문 */
.question{
  display: flex;
  align-items: center;
  height: 98px;
  box-sizing: border-box;
  border-top: 1px solid #FF5117;
  padding: 27px 50px;
  transition: background-color 0.2s ease;
}
.section04_group .question:hover{
  background-color: #ff51173b;
}
.question span{
  font-family: 'HakgyoansimB';
  color: #FF5117;
  font-size: 43px;
  margin-right: 40px;
}
.question p{
  font-family: 'MalangmalangR';
  color: #30231B;
  font-size: 26px;
  -webkit-text-stroke: 1px #30231B;
}
.question .q_button{
  margin-left: auto;
  display: block;
}
.section04_group:last-child .question {
  border-bottom: 1px solid #FF5117;
}

/* 답변 */
.answer{
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  background-color: #FF5117;
  max-height: 0;
  overflow: hidden;
  padding: 0 50px;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease,
    opacity 0.3s ease;
}
.answer span{
  font-family: 'HakgyoansimB';
  color: #FFF;
  font-size: 43px;
  margin-right: 40px;
}
.answer p{
  font-family: 'Pretendard-Regular';
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  padding-right: 10px;
}
.answer .a_button{
  margin-left: auto;
  display: block;
}
.answer button a {
    font-size: 20px;
    border-bottom: 1px solid white;
    color: white;
    opacity: .7;
    transition: all .3s;
}
.section04_group.active .answer{
  max-height: 800px;
  padding: 27px 50px;
  opacity: 1;
}
.fury {
  position: absolute;
  bottom: 0;
  left: 5%;
  width: auto;
  height: auto;
  z-index: 5;  
}
.more {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0 0 0;
}
.more a {
  padding: 10px 40px;
  border: 1px solid var(--primary-brown);
  border-radius: 100px;
  font-size: 20px;
  color: var(--primary-brown);
  transition: all .3s;
  box-sizing: border-box;
}
.more a:hover {
  border: 1px solid var(--primary-orange);
  background-color: var(--primary-orange);
  color: white;
  font-weight: 600;
}
/* section04 e */

/* section05 */
.section05{
  position: relative;
  padding: 140px 0;
  background-color: #30231B;
  width: 100%;
  height: auto;
  z-index: 5;
  text-align: center;
}
.character_hand{
  position: absolute;
  top: -100px;
  left: 9%;
}
.section05 h1{
    color: #FFF1DE;
    font-size: 90px;
    font-family: 'HakgyoansimB';
    -webkit-text-stroke: 3px #FFF1DE;
    padding-top: 90px;
}
.section05 h2{
    color: #FFF1DE;
    font-size: 40px;
    font-family: 'MalangmalangR';
    -webkit-text-stroke: 0.2px #FFF1DE;
    padding: 10px 0 60px 0;
    letter-spacing: 2px;
}
/****** 고객후기 슬라이드 ******/
:root {
    --card-w: 50vw;
    --gap: 16px;
}
.slider {
  text-align: left;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}
.slide-track {
  display: flex;
  gap: 50px;
  padding: 10px 4px;
  width: max-content;
  animation: scroll-x 70s linear infinite;
}
.slide {
    flex: 0 0 auto;
    display: flex;
}
.slider:hover .slide-track {
    animation-play-state: paused;
}
@keyframes scroll-x {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* 리뷰카드 */
.card_top1 {
    height: 240px;
    background-image: url(../public/images/review/review_img01.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    margin-bottom: 30px;
}
.card_top2 {
    height: 240px;
    background-image: url(../public/images/review/review_img02.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    margin-bottom: 30px;
}
.card_top3 {
    height: 240px;
    background-image: url(../public/images/review/review_img03.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    margin-bottom: 30px;
}
.card_top4 {
    height: 240px;
    background-image: url(../public/images/review/review_img04.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    margin-bottom: 30px;
}
.card_top5 {
    height: 240px;
    background-image: url(../public/images/review/review_img05.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    margin-bottom: 30px;
}
.card_top6 {
    height: 240px;
    background-image: url(../public/images/review/review_img06.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    margin-bottom: 30px;
}
.card_top7 {
    height: 240px;
    background-image: url(../public/images/review/review_img07.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    margin-bottom: 30px;
}
.card_top8 {
    height: 240px;
    background-image: url(../public/images/review/review_img08.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    margin-bottom: 30px;
}
.card_top9 {
    height: 240px;
    background-image: url(../public/images/review/review_img9.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    margin-bottom: 30px;
}
.card_top10 {
    height: 240px;
    background-image: url(../public/images/review/review_img10.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    margin-bottom: 30px;
}
.train-card {
    --s: 1;
    /* 기준 치수 */
    --card-w: 400px;
    --pad-x: 30px;
    --pad-y: 40px;
    --radius: 20px;
    --gap: 5px;

    --img-h: 240px;
    --fs-body: 18px;
    --fs-chip: 14px;
    --chip-r: 5px;

    width: calc(var(--card-w) * var(--s));
    padding: calc(var(--pad-y)*var(--s)) calc(var(--pad-x)*var(--s));
    border-radius: calc(var(--radius)*var(--s));
    box-shadow: rgba(31, 20, 14, 0.6) 0 2px 10px;

    background: #fff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin: 0 20px;
}
[class^="card_top"] {
    height: calc(var(--img-h)*var(--s));
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: calc(var(--radius)*var(--s));
    margin-bottom: calc(30px*var(--s));
}
.card_mid {
    margin-bottom: calc(30px*var(--s));
}
.card_mid p {
    font-size: calc(var(--fs-body)*var(--s));
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: calc(1.5em * 3);
}
.card_bottom {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--gap)*var(--s));
}
.card_btn {
    display: inline-flex;
    align-items: center;
    background: #f2f3f5;
    padding: calc(5px*var(--s)) calc(10px*var(--s)) calc(3px*var(--s)) calc(15px*var(--s));
    border-radius: calc(var(--chip-r)*var(--s));
    font-size: calc(var(--fs-chip)*var(--s));
    line-height: 1.25;
}
/* 리뷰카드 e*/
/* section05 e*/

/* section06 */
.section06{
  background-color: #30231B;
  width: 100%;
  padding-bottom: 150px;
}
.insta_group{
  width: 1400px;
  margin: 0 auto;
  padding-top: 150px;
  height: auto;
}
.insta_global_overlay {
  position: absolute;
  inset: 0;  /* 전체 insta_group 덮기 */
  z-index: 20;
  background: transparent;
  display: block;
  pointer-events: auto;
}
.insta_header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
.insta_profile_wrap{
  display: flex;
  align-items: center;
}
.insta_profile_img{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  padding: 0;
  box-sizing: border-box;
  margin-right: -20px;
  transition: 0.2s ease;
}
.insta_profile_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.insta_profile_info {
  transition: 0.2s ease;
    color: #fff;
}
.insta_header:hover .insta_profile_info {
  color: #FF5117;
}
.insta_id{
  font-size: 20px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}
.insta_desc{
  font-size: 16px;
  line-height: 30px;
}
.insta_bt:link,
.insta_bt:visited,
.insta_bt:hover,
.insta_bt:active {
  color: inherit !important;
}
.insta_follow_btn{
  height: 48px;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  background: #FFF1DE;
  color: #30231B;
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  flex-shrink: 0;
  transition: 0.2s ease;
  box-sizing: border-box;
  text-decoration: none !important;
}
.insta_follow_btn:hover{
  background: #FF5117;
  color: #fff;
}
.insta_box{
  position: relative;
  width: 1020px;
  margin: 0 auto;
  padding: 8px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.insta_box iframe {
  width: 100%;
  border: 0;
  overflow: hidden;
  z-index: 1;
}
.insta_overlay{
  position: absolute;
  inset: 0;
  background: transparent;
  display: block;
  pointer-events: auto;
  z-index: 10;
}
.insta_box_mo{
  display: none;
  position: relative;
  width: 100%;
  justify-content: center;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10px;
  height: auto;
}

.insta_overlay2 {
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: calc(100% + 10px);
  z-index: 5;
  background: transparent;
  pointer-events: auto;
}
.insta_profile_wrap a:link,
.insta_profile_wrap a:visited,
.insta_profile_wrap a:hover,
.insta_profile_wrap a:active {
  text-decoration: none !important;
  color: inherit !important;
}
/* section06 e*/

/* /////// PC e /////// */


/* /////// MO /////// */

/* section01 */
@media (max-width: 1200px){
  .main_section01 {
    padding-bottom: 50rem !important;
  }
  .main_section01 h1 {
    font-size: 120px !important;
    line-height: 120%;
    padding-top: 80px;
    letter-spacing: 3px;
    -webkit-text-stroke-width: 3px;
  }
  .main_section01_container {
    margin-top: -60px;
    justify-content: center;
    width: 100%;
  }
  .main_section01_group img:first-child {
    width: 68%;
    margin-left: 6%;
  }
  .main_section01_group img:last-child {
    width: 52%;
    margin-right: 4%;
    margin-top: 4%;
  }
}
@media (max-width: 930px){
  .main_section01 {
    padding-top: 40px;
  }
  .main_section01 h1 {
    font-size: 100px !important;
  }
}
@media (max-width: 768px) {
    .main_section01 {
    padding-bottom: 35rem !important;
  }
  .main_section01 h1 {
    font-size: 70px !important;
    line-height: 90px;
    padding-top: 100px;
    letter-spacing: 1px;
    -webkit-text-stroke: 2px #FFF1DE;
  }
  .main_section01_container {
   margin-top: -60px;
    display: flex;
    justify-content: center;
    padding: 0;
    width: 100%;
  }
  .main_section01_group {
    width: 100%;
    max-width: 768px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
  }
  .main_section01_group img:first-child {
    width: 60%;
    margin-left: 6%;
  }
  .main_section01_group img:last-child {
    width: 50%;
    margin-right: 4%;
    margin-top: 4%;
  }
}
@media (max-width: 550px) {
  .main_section01 h1 {
    font-size: 55px !important;
    line-height: 75px;
  }
}
@media (max-width: 450px) {
  .main_section01 h1 {
    font-size: 45px !important;
    line-height: 55px;
  }
  .main_section01 {
    padding-top: 50px;
  }
}
@media (max-width: 390px) {
    .main_section01{
    padding-bottom: 25rem !important;
    }
  .main_section01 h1 {
    font-size: clamp(30px, 11vw, 45px) !important;
    line-height: 1.15;
    padding-top: 80px;
    letter-spacing: 3px;
    -webkit-text-stroke-width: 2px;
  }
 .main_section01_container {
    margin-top: -40px;
    display: flex;
    justify-content: center;
    padding: 0;
    width: 100%;
  }
  .main_section01_container .main_section01_group {
    width: 100%;
    max-width: 390px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    position: relative;
  }
  .main_section01_container .main_section01_group img:first-child {
    width: 52%;
    margin-left: 4%;
  }
  .main_section01_container .main_section01_group img:last-child {
    width: 48%;
    margin: 0;
    margin-right: 6%;
  }
}
/* section01 e */

/* section02 */
@media (max-width: 1200px) and (min-width: 769px) {
  .main_section02 {
    padding: 0 24px 140px;
    border-radius: 30px;
  }
  .main_section02 h1 {
    font-size: 60px;
    -webkit-text-stroke-width: 2px;
    padding-top: 70px;
  }
  .main_section02 h2 {
    font-size: 28px;
    padding: 6px 0 16px 0;
  }
  .bg_fade01 {
    width: 140px;
    top: 8%;
  }
  .bg_fade02 {
    width: 140px;
    top: 5%;
  }
  .lunch_group{
    width: 100%;
    max-width: 680px;
    margin: 40px auto 0;
    padding: 0 8px;
    gap: 40px;
    justify-content: center;
  }
  .lunch > div:first-child, .lunch_salad > div:first-child {
    height: 200px;
  }
  .lunch img:first-child, .lunch_salad img:first-child {
    width: 80%;
  }
  .lunch_icon01, .lunch_icon02 {
    width: 60px;
    right: -1%;
    bottom: -10%;
  }
  .lunch_text h3, .lunch_text h4,
  .salad_text h3, .salad_text h4 {
    font-size: 22px;
  }
  .lunch_text ul li,
  .salad_text ul li {
    width: 60px;
    font-size: 16px;
  }

  .lunch > a div:first-child, .lunch_salad > a div:first-child {
    height: 240px;
  }
  /* 공통 오버레이 기본 상태 (숨김) */
  .lunch_img::after {
    font-size: 60px;
    letter-spacing: 0.12em;
  }
}
@media (max-width: 768px) {
.main_section02 {
    margin-top: -350px;
    padding: 0 24px 140px;
    border-radius: 30px;
  }
  .main_section02 h1 {
    font-size: 60px;
    -webkit-text-stroke-width: 2px;
    padding-top: 70px;
  }
  .main_section02 h2 {
    font-size: 28px;
    padding: 6px 0 16px 0;
  }
  .bg_fade01 {
    width: 140px;
    top: 8%;
  }
  .bg_fade02 {
    width: 140px;
    top: 75%;
  }
  .lunch_group{
    width: 100%;
    max-width: 680px;
    margin: 40px auto 0;
    padding: 0 8px;
    gap: 40px;
    justify-content: center;
  }
  .lunch > div:first-child, .lunch_salad > div:first-child {
    height: 200px;
  }
  .lunch img:first-child, .lunch_salad img:first-child {
    width: 80%;
  }
  .lunch_icon01, .lunch_icon02 {
    width: 60px;
    right: -1%;
    bottom: -10%;
  }
  .lunch_text h3, .lunch_text h4,
  .salad_text h3, .salad_text h4 {
    font-size: 22px;
  }
  .lunch_text ul li,
  .salad_text ul li {
    width: 60px;
    font-size: 16px;
  }
  .lunch > a div:first-child, .lunch_salad > a div:first-child {
    height: 240px;
  }
  /* 공통 오버레이 기본 상태 (숨김) */
  .lunch_img::after {
    content: "";
    position: absolute;
    top: 5px;
    color: #fff;
    font-family: 'HakgyoansimB';
    font-size: 60px;
    letter-spacing: 0.12em;
  }
}
@media (max-width: 600px) {
  .bg_fade01 {
    width: 120px;
    top: 5%;
  }
  .bg_fade02 {
    width: 120px;
    top: 75%;
  }
  
  .lunch_group {
      width: 100%;
      max-width: 680px;
      margin: 20px auto 40px;
      padding: 0 8px;
      gap: 40px;
      justify-content: center;
  }
  .lunch > div:first-child, .lunch_salad > div:first-child {
    height: 140px;
  }
  .lunch img:first-child, .lunch_salad img:first-child {
    width: 90%;
  }
  .lunch_icon01, .lunch_icon02 {
    width: 50px;
  }
  .lunch > a div:first-child, .lunch_salad > a div:first-child {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
    height: 120px;
  }
  .lunch_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .lunch_text ul,
  .salad_text ul {
    display: flex;
    justify-content: center;
    padding: 0 0 10px 0;
    align-items: center;
  }
  .lunch_img:hover::after,
  .lunch_salad .lunch_img:hover::after {
    display: none;
  }
  .lunch_img:hover {
    background-color: initial;
  }

  .lunch > a div:first-child, .lunch_salad > a div:first-child {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
    height: 200px;
  }
  /* 공통 오버레이 기본 상태 (숨김) */
  .lunch_img::after {
    top: -20px;
    font-size: 60px;
    letter-spacing: 0.12em;
  }
  .salad_text,
  .lunch_text {
    margin: 0 0 10px 0;
    color: #30231B;
  }
}
@media (max-width: 425px) {
  .main_section02 h1 {
    font-size: 52px;
    -webkit-text-stroke-width: 1px;
    padding-top: 60px;
  }
  .main_section02 {
    margin-top: -350px;
    padding: 0 24px 40px;
    border-radius: 30px;
  }
  .main_section02 h2 {
    font-size: 24px;
    padding: 6px 0 16px 0;
    transform: translateY(-20px);
  }
  .lunch_group {
    width: 100%;
    max-width: 680px;
    margin: 20px auto 40px;
    padding: 0 8px;
    gap: 20px;
    justify-content: center;
    transform: translateY(-50px);
  }
  .bg_fade01 {
    width: 120px;
    top: 2%;
  }
  .lunch > a div:first-child, .lunch_salad > a div:first-child {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
    height: 160px;
    width: 100%;
  }
  .lunch img:first-child, .lunch_salad img:first-child {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  /* 공통 오버레이 기본 상태 (숨김) */
  .lunch_img::after {
    content: "";
    position: absolute;
    top: -20px;
    color: #fff;
    font-family: 'HakgyoansimB';
    font-size: 60px;
    letter-spacing: 0.12em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease;
    z-index: 1;
    -webkit-text-stroke: 4px rgba(255, 255, 255);
  }
  .salad_text,
  .lunch_text {
    margin: 0 0 2px 0;
    color: #30231B;
  }
  .lunch_text ul, .salad_text ul {
    display: flex;
    justify-content: center;
    padding: 0 0 4px 0;
    align-items: center;
  }
  .salad_text ul li:nth-child(2),
  .salad_text ul li:nth-child(1),
  .lunch_text ul li:nth-child(2),
  .lunch_text ul li:nth-child(1) {
    border-radius: 7px;
    padding: 2px 3px;
    font-size: 12px;
    width: 50px;
  }
  .lunch_text h3, 
  .lunch_text h4, 
  .salad_text h3, 
  .salad_text h4 {
    font-size: 16px;
  }
  .lunch_text h3,
  .salad_text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .lunch_text p, 
  .salad_text p {
    color: #767676;
    font-weight: 500;
    font-size: 11px;
    padding-top: 2px;
  }
  .salad_text h4 span,
  .lunch_text h4 span {
    font-size: 14px;
  }
  .bg_fade02 {
    width: 100px;
    top: 75%;
  }
}
@media (max-width: 390px) {
  .main_section02 {
    margin-top: -250px;
    padding-bottom: 40px;
    border-radius: 25px;
  }
  .main_section02 h1 {
    font-size: 42px;
    -webkit-text-stroke-width: 1px;
    padding-top: 40px;
  }
  .main_section02 h2 {
    font-size: 22px;
    padding-bottom: 10px;
  }
  .bg_fade01 {
    width: 80px;
  }
  .bg_fade02 {
    top: 85%;
    width: 80px;
  }
  .lunch_group {
    flex-direction: column;
    gap: 60px;
    transform: translateY(-10px);
  }
  .lunch > div:first-child,
  .lunch_salad > div:first-child {
    height: 160px;
  }
  .lunch_img img 
  .lunch img:first-child,
  .lunch_salad img:first-child {
    width: 85%;
  }
  .lunch_icon01, .lunch_icon02 {
    width: 40px;
    right: -1%;
    bottom: -8%;
  }
  .lunch_text h3, .lunch_text h4,
  .salad_text h3, .salad_text h4 {
    font-size: 20px;
  }
  .lunch_text ul li,
  .salad_text ul li {
    width: 54px;
    font-size: 14px;
    padding: 2px 0;
  }
  .lunch_text p,
  .salad_text p {
    font-size: 11px;
  }
  .lunch_group .lunch_img:hover,
  .lunch_salad .lunch_img:hover {
    background-color: initial;
  }
}
/* section02 e */

/* section03 */
@media (max-width: 1500px) {
  .section03_title{
    padding-top: 260px;
  }
  /* 배경 음식 이미지 */
  .bg_food01 { width: 300px; top: -160px; }
  .bg_food02 { width: 260px; left: 40px; bottom: -40px; }
  .bg_food03 { width: 270px; top: -100px; }
  .bg_food04 { width: 290px; bottom: -60px; }
  /* 프로모션 카드 */
  .promotion_container {
    gap: 10px;
    width: 90%;
    margin: 80px auto 120px;
  }
  .promotion_group {
    width: 326px;
    height: auto;
    box-sizing: border-box;
    border-radius: 20px;
    padding: 80px 10px;
  }
}
@media (max-width: 1200px) and (min-width: 951px) {
  .section03 {
    padding-bottom: 50px;
  }
  .paper1 {
    top: -90px;
    width: 100%;
  }
  .paper2 {
    bottom: -100px;
    width: 100%;
  }
  .section03_title {
    padding: 180px 0 40px 0;
    gap: 1rem;
  }
  .section03 h1, .section03 h2 {
    font-size: 48px;
  }
  .logo_kr {
    width: 280px;
  }
  /* 배경 음식 이미지 */
  .bg_food01 { width: 220px; top: -90px; }
  .bg_food02 { width: 180px; left: 40px; bottom: -40px; }
  .bg_food03 { width: 230px; top: -80px; }
  .bg_food04 { width: 240px; bottom: -60px; }

  /* 프로모션 카드 */
  .promotion_container {
    gap: 10px;
    width: 90%;
    margin: 80px auto 120px;
  }
  .promotion_group {
    width: 260px;
    padding: 60px 0;
  }
  .promotion_group img {
    width: 55px;
  }
  .promotion_group h3 {
    font-size: 26px;
    margin: 12px 0 40px 0;
  }
  .promotion_group p {
    font-size: 17px;
    line-height: 27px;
  }
  .promotion_group span {
    font-size: 16px;
    letter-spacing: -0.02em;
  }
}
@media (max-width: 950px) {
  .section03 {
    position: relative;
    width: 100%;
    background-image: url(../public/images/main/bg.png);
    background-size: auto;
    height: auto;
    margin: 0 auto;
    align-items: center;
    padding-bottom: 80px;
  }
  .section03_title {
    text-align: center;
    gap: 8px;
    margin: 0 auto;
    padding: 160px 0 40px 0;
  }
  .section03 h1, .section03 h2 {
    font-size: 38px;
  }
  .logo_kr {
    width: 240px;
  }
  .paper1 {
    top: -50px;
    width: 100%;
  }
 .paper2 {
    bottom: -60px;
    width: 100%;
  }
  .bg_food01 { width: 190px; }
  .bg_food02 { width: 190px; left: 20px; }
  .bg_food03 { width: 190px; top: -70px; }
  .bg_food04 { width: 230px; bottom: -40px;}
  .promotion_container {
    flex-wrap: wrap;
    gap: 10px;
    width: 90%;
  }
  .promotion_group {
    width: calc(50% - 12px);
    height: auto;
    padding: 60px 10px;
  }
  .promotion_box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .promotion_box img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
    margin-bottom: 1px;
  }

  .promotion_group img {
    width: 50px;
  }
  .promotion_group h3 {
    font-size: 28px;
  }
  .promotion_group p {
    font-size: 22px;
  }
  .promotion_group span {
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    opacity: 0.8;
  }
}
@media (max-width: 600px) {
   .section03_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
  }
  .section03 h1, .section03 h2 {
    font-size: 42px;
  }
  .paper1 {
    top: -40px;
    width: 100%;
  }
 .paper2 {
    bottom: -40px;
    width: 100%;
  }
  .logo_kr {
    width: 240px;
  }
  .bg_food01 { width: 160px; top: -45px;}
  .bg_food02 { width: 160px; left: 0px; }
  .bg_food03 { width: 150px; top: 10px;}
  .bg_food04 { width: 180px; }

  .promotion_container {
    flex-wrap: wrap;
    gap: 20px;
    width: 90%;
  }
  .promotion_group {
    width: calc(50% - 12px);
    height: auto;
    padding: 60px 0;
  }
  .promotion_box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .promotion_box img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    margin-bottom: 20px;
  }
  .promotion_group h3 {
    font-size: 28px;
    margin-top: 0;
  }
  .promotion_group p {
    font-size: 18px;
  }
  .promotion_group span {
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
    opacity: 0.8;
  }
}
@media (max-width: 490px) {
  .section03_title {
    padding: 180px 0 40px 0;
    gap: 4px;
  }
  .section03 h1, .section03 h2 {
    font-size: 28px;
  }
  .logo_kr {
    width: 180px;
  }
  .bg_food01 { width: 120px; }
  .bg_food02 { width: 100px; left: 10px; }
  .bg_food03 { width: 120px; right: 0; }
  .bg_food04 { width: 140px; bottom: -80px; }

  .promotion_container {
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
    gap: 16px;
    width: 100%;
  }
  .promotion_group {
    width: 88%;
    height: auto;
    padding: 50px 0;
  }
  .promotion_group img {
    width: 80px;
  }
  .promotion_group h3 {
    font-size: 28px;
  }
  .promotion_group p {
    font-size: 22px;
  }
  .promotion_group span {
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    opacity: 0.8;
  }
}
@media (max-width: 390px) {
  .section03{
    padding-bottom: 70px;
    width: 100%;
  }
  .section03_title {
    padding: 110px 0 20px 0;
    gap: 4px;
  }
  .section03 h1 {
      margin-bottom: -5px;
    }
  .section03 h1, .section03 h2 {
    font-size: 24px;
  }
  .logo_kr {
    width: 180px;
  }
  .paper1 {
    top: -30px;
    width: 100%;
  }
 .paper2 {
    bottom: -30px;
    width: 100%;
  }
  /* 배경 음식 이미지 축소 */
  .bg_food01 { width: 110px; }
  .bg_food02 { width: 120px; left: 0px;}
  .bg_food03 { width: 100px; right: 0px; top: -20px;}
  .bg_food04 { width: 140px; bottom: 0px; }

  /* 프로모션 1열 정렬 */
  .promotion_container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    gap: 16px;
    width: 100%;
  }

  .promotion_group {
    width: 88%;
    height: auto;
    padding: 50px 0;
  }

  .promotion_group img {
    width: 80px;
  }

  .promotion_group h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .promotion_group p {
    font-size: 20px;
    line-height: 25px;
  }
  .promotion_group span {
    padding-top: 5px;
    font-weight: 300;
    opacity: 0.8;
  }
}
/* section03 e */

/* section04  */
@media (max-width: 1800px) {
  section {
    width: 100%;
    margin: 0 auto;
    overflow: initial;
  }
}
@media (max-width: 1400px) {
  section {
    width: 100%;
    margin: 0 auto;
    overflow: initial;
  }
  .character_hand {
    position: absolute;
    top: -70px;
    left: 10%;
    width: 300px;
  }
  .section04_container {
    width: 90%;
    padding-bottom: 180px;
  }
  .fury {
    width: 400px !important;
    position: absolute;
    bottom: 0;
    left: 5%;
    width: auto;
    height: auto;
    z-index: 5;
  }
  .section04 h1 {
    font-family: 'HakgyoansimB';
    color: #FF5117;
    font-size: 84px;
    padding: 200px 0 40px 0;
    text-align: left;
  }
}
@media (max-width: 1024px) {
  .section04_container {
    width: 90%;
    padding-bottom: 180px;
  }
  .section04 h1 {
    font-family: 'HakgyoansimB';
    color: #FF5117;
    font-size: 48px;
    padding: 100px 0 20px 0;
    text-align: center;
  }
  .fury {
    width: 300px;
  }
  .character_hand {
    width: 300px;
    position: absolute;
    top: -70px;
    left: 11%;
  }
  .question {
    display: flex;
    align-items: center;
    height: 98px;
    box-sizing: border-box;
    border-top: 1px solid #FF5117;
    padding: 10px 20px;
    transition: background-color 0.2s ease;
  }
  .question span {
    margin-right: 20px;
  }
  .question p {
    font-size: 2rem;
  }
  .q_button,
  .a_button {
    width: 20px;
  }
  .section04_group.active .answer {
    padding: 30px 20px;
    opacity: 1;
  }
  .answer p {
    font-family: 'Pretendard-Regular';
    color: #fff;
    font-size: 1.6rem;
    line-height: 30px;
    padding-right: 10px;
    font-weight: 500;
  }
  .answer span {
    margin-right: 20px;
  }
  @media (max-width: 800px) {
    .fury {
      width: 300px;
    }
    .character_hand {
      width: 320px !important;
      position: absolute;
      top: -70px !important;
      left: 11% !important;
    }
  }
}
@media (max-width: 440px) {
  
  .fury {
    width: 300px !important;
  }
  .character_hand {
    width: 250px !important;
    position: absolute;
    top: -60px !important;
    left: 11%;
  }
}
/* section04 e */

/* section05 */
@media (max-width: 1500px) {
  .section05 {
    position: relative;
    padding: 40px 0;
    background-color: #30231B;
    width: 100%;
    height: auto;
    z-index: 5;
    text-align: center;
  } 
}
@media (max-width: 800px) {
  .section05 {
    padding: 40px 0;
    width: 100%;
    height: 100%;
  }
  .section05 h1 {
    font-size: 60px;
    -webkit-text-stroke-width: 2px;
    padding-top: 70px;
  }
  .section05 h2 {
    font-size: 28px;
    padding: 6px 0 16px 0;
  }
  .section05 .sub_title {
    text-align: left;
    padding: 0 60px;
  }
  .review_contents {
    width: 1420px;
    height: 400px;
    margin: 0 auto;
   }
  #review_slide_wrap {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 20px 0;
  }
  .review_slide_wrap {
    display: flex;
    width: max-content;
  }
  .review_slide {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    min-height: 300px;
    padding-top: 0;
  }
  .review_slide .swiper-slide {
    text-align: left;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .review-card {
    display: block;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  .review-header {
    display: flex;
    align-items: center;
    padding: 12px;
  }
  .profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e7e7e7;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .profile-pic img {
    width: 60%;
  }
  .user-info {
    display: flex;
    flex-direction: column;
  }
  .user-id {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 4px;
  }
  .review-date {
    font-size: 12px;
    color: #888;
  }
  .review-image {
    background-color: #ddd;
    height: 140px;
    overflow: hidden;
  }
  .review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .review-text {
    padding: 25px 12px;
    font-size: 14px;
    line-height: 1.5em;
    height: 6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .review_slide:hover {
    animation-play-state: unset;
  }
}
@media (hover: none) and (pointer: coarse) {
  .review_slide:hover {
    animation-play-state: running;
    /* 또는 기본값으로 재지정 */
  }
}
@media (max-width: 768px) {
  .section05 h1 {
    font-size: 60px;
    -webkit-text-stroke-width: 2px;
    padding-top: 70px;
  }
  .section05 h2 {
    font-size: 28px;
    padding: 6px 0 40px 0;
  }
}
@media (max-width: 600px) {
  .section06 .contact_box {
      width: 100%;
      margin: 0 auto;
      padding: 0;
  }
  .title_last {
      font-size: 30px;
  }
    .section06 .contact_box p {
        font-size: 25px;
    }
    .section06 .contact_box .title_explain {
        font-size: 20px;
        margin-top: 10px;
    }
}
@media (max-width: 470px) {
    .train-card {
        font-size: 16px;
    }
    .train-card * {
        font-size: 16px !important;
        line-height: 1.4;
        overflow: hidden;
    }
    .card_mid p {
        font-size: 16px !important;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .card_bottom {
        display: flex;
        flex-wrap: nowrap;
        overflow: hidden;
        position: relative;
        gap: 5px;
    }
    .card_bottom::after {
        content: "…";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        padding-left: 6px;
        background: linear-gradient(to right, transparent, #fff 60%);
    }
    .card_btn {
        flex: 0 0 auto;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    /****** 슬라이드 section05 end******/

    /****** section06  ******/
    .title_last {
        font-size: 29px;
        margin-bottom: 10PX;
    }

    .section06 .contact_box p {
        font-size: 22px;
    }

    .section06 .contact_box .title_explain {
        font-size: 18px;
        margin-top: 7px;
    }

    .section06 .last_img img {
        width: 60%;
    }

    /****** 고객후기 section06 end ******/

}
@media (max-width: 800px) {
  .character_hand {
    width: 250px;
    top: -50px;
    left: 60px;
    z-index: 1000;
  }
  section {
    width: 100%;
    margin: 0 auto;
    overflow: initial;
  }
}
@media (max-width: 370px) {
  .character_hand {
    width: 120px;
    top: -10px;
    right: -10px;
  }
  .section05 {
    padding: 20px 0 40px 0;
  }
  .section05 h1 {
    font-size: 42px;
    -webkit-text-stroke-width: 1.5px;
    padding-top: 40px;
  }
  .section05 h2 {
    font-size: 20px;
    margin-top: 4px;
    padding-bottom: 10px;
  }
  .slider {
    width: 100%;
    overflow: hidden;
  }
  .slide-track {
    gap: -10px;
  }
  .slide {
    display: flex;
    gap: 1px;
  }
  .train-card {
    padding: 15px 10px;
    width: 240px;  
    min-width: 240px;
    height: 340px;
    border-radius: 10px;
  }
  .train-card .card_top1, .train-card .card_top2, .train-card .card_top3,
  .train-card .card_top4, .train-card .card_top5, .train-card .card_top6,
  .train-card .card_top7, .train-card .card_top8, .train-card .card_top9,
  .train-card .card_top10 {
    height: 120px;
    background-size: cover;
    border-radius: 10px;
    margin: 10px 0 30px 0;
  }
  .train-card .card_mid p {
    font-size: 12px;
    line-height: 1.4em;
    margin-bottom: -3px;
  }
  .card_btn {
    font-size: 11px;
    padding: 4px 6px;
    border-radius: 8px;
  }

}
/* section05 e */

/* section06 */
@media (max-width: 1400px) and (min-width: 1201px){
 .insta_group{
  width: 1100px;
  margin: 0 auto;
  padding-top: 150px;
}
}
@media (max-width: 1200px) {
 .insta_group{
  width: 90%;
  margin: 0 auto;
  padding-top: 150px;
 }
 .insta_profile_wrap{
  padding-top: 30px;
 }
 .insta_box{
  width: 90%;
 }
}
@media (max-width: 930px){
  .section06{
    padding-bottom: 80px;
  }
    .insta_overlay{
  height: 400px;
}
}
@media (max-width: 768px) {
   .insta_group{
  width: 90%;
  margin: 0 auto;
  padding-top: 150px;
 }
 .insta_box{
  width: 100%;
 }
  .section06 {
    padding: 10px 0;
  }
  .insta_overlay{
  height: 350px;
  }
}
@media (max-width: 500px) {
   .insta_group{
  width: 90%;
  margin: 0 auto;
  padding-top: 0px;
 }
  .section06 {
    height: auto;
  }
  .insta_overlay{
  height: 240px;
  }
}
@media (max-width: 482px) {
  .insta_box{
    display: none;
  }
 .insta_box_mo{
    display: block;
    display: flex;
    justify-content: center;
    padding: 0 10px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
  .insta_group {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 60px;
    box-sizing: border-box;
  }
.section06 {
    height: 600px;
    overflow-y: hidden;
}
.insta_profile_wrap{
  box-sizing: border-box;
  padding-top: 30px;
}
.insta_header{
  height: 80px;
  gap: 20px;
  margin-bottom: 20px;
}
.insta_profile_img{
  width: 60px;
  height: 60px;
  margin: 0 auto;
}
.insta_profile_img img{
  width: 100%;
}
.insta_id{
  font-size: 18px;
}
.insta_desc{
  font-size: 15px;
  line-height: 20px;
}
.insta_follow_btn{
  height: 34px;
  padding: 10px 30px;
  font-size: 20px;
}
}

@media (max-width: 420px) {
  .insta_overlay2{
    height: 50%;
  }
}

@media (max-width: 390px) {
  .section06{
    height: 570px;
  }
    .insta_group {
    width: 90%;
  }
  .insta_header{
    width: 100%;
    height: auto;
    gap: 15px;
    margin-bottom: 15px;
  }
  .insta_profile_wrap{
    padding-top: 15px;
  }
  .insta_profile_img{
    margin: 0;
    display: flex;
    justify-content: left;
  }
  .insta_id{
    font-size: 15px;
  }
  .insta_desc{
    font-size: 13px;
    line-height: 17px;
  }
  .insta_follow_btn{
    height: 34px;
    padding: 10px 20px;
    font-size: 18px;
  }
  .insta_box_mo{
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    height: 350px;
  }
  .insta_box_mo iframe{
    width: 100% !important;
    max-width: 360px;
    margin: 0 auto;
    display: block;
  }
  .insta_overlay2{
    height: 350px;
  }
}
@media (max-width: 330px) {
  .insta_overlay2{
    height: 285px;
  }
}
/* section06 e */
