@charset "utf-8";

.sub_visual {
  width: 100%;
  height: 260px;
  background-color: #C71D27;
  position: relative;
  overflow: hidden;
}

.sub_visual .sub_badge {
  background-color: #fff;
  border-radius: 100px;
  /* oval/pill shape */
  padding: 34px 50px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 450px;
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* Centered using position */
}

.sub_visual .sub_badge h2 {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #111;
  margin: 0 0 14px 0;
  letter-spacing: -0.03em;
  line-height: 1;
}

.sub_visual .sub_badge h2 .red {
  color: #C71D27;
  font-weight: 800;
  margin-right: 6px;
}

.sub_visual .sub_badge .sub_desc {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
}





/* -------sub01 */
.sub01 .content .sub_visual .sub_badge img {
  width: 30px;
  height: auto;
  margin-bottom: 10px;
}

/* -------sub01_01 소개말 */
.sub01_01 .inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 140px 35px;
  box-sizing: border-box;

}

.sub01_01 .intro_wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.sub01_01 .intro_img {
  flex: 0 0 450px;
}

.sub01_01 .intro_img img {
  width: 90%;
  height: auto;
  border-radius: 0 80px 0 80px;
  display: block;
}

.sub01_01 .intro_txt {
  flex: 1;
  font-family: 'Pretendard', sans-serif;
  color: #111111;
  font-size: 16px;
  line-height: 1.85;
}

.sub01_01 .intro_txt p {
  margin: 0 0 24px 0;
  word-break: keep-all;
}

.sub01_01 .intro_txt p.greeting {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.sub01_01 .intro_txt p.greeting strong {
  font-size: 22px;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.sub01_01 .sign_area {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sub01_01 .sign_area .date {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.sub01_01 .sign_area .ceo_name {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
}

.sub01_01 .sign_area .sign_img {
  height: 55px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}



/* ------- 연혁 (History) 영역 스타일 ------- */
.history_section {
  margin-top: 100px;
  padding-top: 50px;
  font-family: 'Pretendard', sans-serif;
}

.history_title {
  text-align: center;
  margin-bottom: 70px;
}

.history_title img {
  width: 48px;
  height: auto;
  margin-bottom: 12px;
}

.history_title h2 {
  font-size: 40px;
  font-weight: 800;
  color: #c71d27;
  letter-spacing: 0.05em;
  margin: 0 0 25px 0;
  line-height: 1;
}

.history_title .title_line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 250px;
  margin: 0 auto;
}

.history_title .title_line::before,
.history_title .title_line::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: #c71d27;
}

.history_title .title_line span {
  display: block;
  width: 7px;
  height: 7px;
  background-color: #c71d27;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.history_timeline_wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline_line {
  position: absolute;
  left: 180px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background-color: #c71d27;
  transform: translateX(-50%);
  z-index: 1;
}

.history_list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.history_item {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.history_year {
  width: 180px;
  text-align: right;
  padding-right: 40px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.history_year span {
  display: inline-block;
  background-color: #c71d27;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(199, 29, 39, 0.15);
  letter-spacing: -0.02em;
}

.history_badge {
  position: absolute;
  left: 180px;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  z-index: 3;
}

.history_badge img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.history_card {
  flex: 1;
  background-color: #fff;
  border: 1px solid #EAECEF;
  border-radius: 16px;
  padding: 25px 40px;
  margin-left: 40px;
  display: flex;
  align-items: center;
  gap: 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.card_icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card_icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card_txt {
  flex: 1;
}

.card_txt h4 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.card_txt h4+p {
  margin-top: 8px;
}

.card_txt p {
  font-size: 18px;
  color: #444;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.card_txt p strong {
  font-weight: 700;
  color: #111;
}

/* 스크롤 애니메이션 클래스 */
.reveal_on_scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.610, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.reveal_on_scroll.active {
  opacity: 1;
  transform: translateY(0);
}


.sub01_02 .inner {
  width: 100%;
  max-width: 100%;
  background-color: #FCF3EE;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 100px;
  margin: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.sub01_02 .store_map_img {
  width: 1200px;
  height: auto;
  flex-shrink: 0;
  margin: 0 auto;
}

.sub01_02 .store_map_img img {
  width: 100%;
  height: auto;
  display: block;
}

/* 하단 콘텐츠 영역 */
.sub01_02 .state_bottom {
  width: 1200px;
  margin: 80px auto 0 auto;
  box-sizing: border-box;
}

/* 상단 정보 및 170+ 카드 (Yellow 구역) */
.sub01_02 .state_top_info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.sub01_02 .info_left {
  width: 700px;
  text-align: left;
}

.sub01_02 .info_left .deco_line {
  width: 25px;
  height: 3px;
  background-color: #C71D27;
  margin-bottom: 12px;
}

.sub01_02 .info_left .sub_tit {
  font-size: 16px;
  font-weight: 700;
  color: #C71D27;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.sub01_02 .info_left .main_tit {
  font-size: 52px;
  font-weight: 800;
  color: #1c1c1c;
  margin-bottom: 25px;
  line-height: 1.1;
}

.sub01_02 .info_left .desc_summary {
  font-size: 22px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 20px;
}

.sub01_02 .info_left .desc_detail {
  font-size: 16px;
  line-height: 1.75;
  color: #1c1c1c;
  font-weight: 500;
}

.sub01_02 .info_left .desc_detail .point_color {
  color: #C71D27;
  font-weight: 700;
}

.sub01_02 .info_right {
  width: 320px;
}

.sub01_02 .stat_card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sub01_02 .stat_card .icon_box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sub01_02 .stat_card .icon_box img {
  width: 56px;
  height: auto;
}

.sub01_02 .stat_card .stat_num {
  font-size: 58px;
  font-weight: 800;
  color: #C71D27;
  line-height: 1;
  margin-bottom: 10px;
}

.sub01_02 .stat_card .stat_label {
  font-size: 18px;
  font-weight: 700;
  color: #1c1c1c;
}

/* 카테고리별 4개 카드 (Orange 구역) */
.sub01_02 .state_cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 60px;
}

.sub01_02 .category_card {
  flex: 1;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 280px;
  box-sizing: border-box;
}

.sub01_02 .category_card .icon_box {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sub01_02 .category_card .icon_box img {
  width: 56px;
  height: auto;
}

.sub01_02 .category_card .card_title {
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 15px;
}

.sub01_02 .category_card .card_line {
  width: 20px;
  height: 1px;
  background-color: #cccccc;
  margin-bottom: 15px;
}

.sub01_02 .category_card .card_desc {
  font-size: 15px;
  line-height: 1.6;
  color: #1c1c1c;
  word-break: keep-all;
  font-weight: 500;
}

/* 하단 버튼 구역 */
.sub01_02 .state_btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.sub01_02 .state_btns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 45px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-sizing: border-box;
}

.sub01_02 .state_btns .btn_red {
  background-color: #C71D27;
  color: #ffffff;
  border: 1px solid #C71D27;
}

.sub01_02 .state_btns .btn_white {
  background-color: #ffffff;
  color: #1c1c1c;
  border: 1px solid #dcdcdc;
}

.sub01_02 .state_btns a .arrow_icon {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
}

.sub01_02 .state_btns a .arrow_icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}









/* -------sub02 */

/* breadcrumb */
.sub02 .breadcrumb-bar {
  padding: 40px 0 20px 0;
}

.sub02 .breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  color: #888;
}

.sub02 .breadcrumb-inner a.bc-home {
  color: #888;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}

.sub02 .breadcrumb-inner a.bc-home svg {
  width: 20px;
  height: 20px;
}

.sub02 .breadcrumb-inner a.bc-home:hover {
  color: #C71D27;
}

.sub02 .breadcrumb-inner .bc-sep {
  color: #ccc;
  font-size: 11px;
}

.sub02 .breadcrumb-inner .bc-item {
  font-weight: 400;
}

.sub02 .breadcrumb-inner .bc-item:last-child {
  color: #555;
  font-weight: 500;
}

/* board photo_bbs */
.sub02 .board .photo_bbs .date {
  display: none;
}

.sub02 .board .photo_bbs .tit {
  margin-top: 18px;
}

.sub02 .board .photo_bbs .tit a {
  display: block;
  text-decoration: none;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s;
}

.sub02 .board .photo_bbs .tit a:hover {
  color: #C71D27;
}

/* 타이틀 위에 동일한 길이의 빨간색 선 추가 */
.sub02 .board .photo_bbs .tit a::before {
  content: '';
  display: block;
  width: 45px;
  height: 3px;
  background-color: #C71D27;
  margin-bottom: 12px;
}

.sub02 .board .photo_bbs .thumb {
  padding-top: 95.8% !important;
}

.sub02 .board .photo_bbs .img_box {
  box-shadow: 6px -6px 15px rgba(0, 0, 0, 0.1);
}


.sub02 .board .bbs_paging tr td b {
  background-color: #C71D27;
}





/* -------sub03 */

/* section명 sub04 * , 위치 sub03*/
.sub04 .content .sub_visual .sub_badge img {
  width: 30px;
  height: auto;
  margin-bottom: 10px;
}





.sub03 .content .sub_visual .sub_badge img {
  width: 30px;
  height: auto;
  margin-bottom: 10px;
}


/* breadcrumb */
.sub03 .breadcrumb-bar {
  padding: 40px 0 20px 0;
}

.sub03 .breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  color: #888;
}

.sub03 .breadcrumb-inner a.bc-home {
  color: #888;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}

.sub03 .breadcrumb-inner a.bc-home svg {
  width: 20px;
  height: 20px;
}

.sub03 .breadcrumb-inner a.bc-home:hover {
  color: #C71D27;
}

.sub03 .breadcrumb-inner .bc-sep {
  color: #ccc;
  font-size: 11px;
}

.sub03 .breadcrumb-inner .bc-item {
  font-weight: 400;
}

.sub03 .breadcrumb-inner .bc-item:last-child {
  color: #555;
  font-weight: 500;
}

/* board photo_bbs */
.sub03 .board .photo_bbs .date {
  display: none;
}

.sub03 .board .photo_bbs .tit {
  margin-top: 18px;
}

.sub03 .board .photo_bbs .tit a {
  display: block;
  text-decoration: none;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s;
}

.sub03 .board .photo_bbs .tit a:hover {
  color: #C71D27;
}

/* 타이틀 위에 동일한 길이의 빨간색 선 추가 */
.sub03 .board .photo_bbs .tit a::before {
  content: '';
  display: block;
  width: 45px;
  height: 3px;
  background-color: #C71D27;
  margin-bottom: 12px;
}

.sub03 .board .photo_bbs .thumb {
  padding-top: 95.8% !important;
}

.sub03 .board .photo_bbs .img_box {
  box-shadow: 6px -6px 15px rgba(0, 0, 0, 0.1);
}


.sub03 .board .bbs_paging tr td b {
  background-color: #C71D27;
}



/* sub03_02 구이기 , sub03_03 팝퍼기 공통  Intro 영역*/
.sub03 .intro_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 50px 0;
  margin-bottom: 40px;
  /* border-bottom: 1px solid #eee; */
}

.sub03 .intro_wrap .intro_img {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 1px solid #E2E8F0; */
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
}

.sub03 .intro_wrap .intro_img img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.sub03 .intro_wrap .intro_txt {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10px;
}

.sub03 .intro_wrap .intro_txt h3 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin: 0 0 25px 0;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.sub03 .intro_wrap .intro_txt .desc_box {
  margin-bottom: 35px;
}

.sub03 .intro_wrap .intro_txt .desc_box p {
  font-size: 27px;
  color: #444;
  line-height: 1.8;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.sub03 .intro_wrap .intro_txt .desc_box p.highlight {
  font-size: 14px;
  color: #666;
  margin-top: 15px;
  font-weight: 500;
  margin-bottom: 0;
}

.sub03 .intro_wrap .intro_txt .btn_inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background-color: #C71D27;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sub03 .intro_wrap .intro_txt .btn_inquiry::after {
  content: '>';
  margin-left: 8px;
  font-size: 12px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.sub03 .intro_wrap .intro_txt .btn_inquiry:hover {
  background-color: #a8151c;
  box-shadow: 0 4px 12px rgba(199, 29, 39, 0.3);
}

.sub03 .intro_wrap .grill_intro_txt .btn_inquiry:hover::after {
  transform: translateX(3px);
}



/* sub04 문의 */

/* breadcrumb */
.sub04 .breadcrumb-bar {
  padding: 40px 0 20px 0;
}

.sub04 .breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  color: #888;
}

.sub04 .breadcrumb-inner a.bc-home {
  color: #888;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}

.sub04 .breadcrumb-inner a.bc-home svg {
  width: 20px;
  height: 20px;
}

.sub04 .breadcrumb-inner a.bc-home:hover {
  color: #C71D27;
}

.sub04 .breadcrumb-inner .bc-sep {
  color: #ccc;
  font-size: 11px;
}

.sub04 .breadcrumb-inner .bc-item {
  font-weight: 400;
}

.sub04 .breadcrumb-inner .bc-item:last-child {
  color: #555;
  font-weight: 500;
}

/* breadcrumb 끝 */


.sub04 .intro_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 50px 0;
  margin-bottom: 40px;
  /* border-bottom: 1px solid #eee; */
}

.sub04 .intro_wrap .intro_img {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 1px solid #E2E8F0; */
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
}

.sub04 .intro_wrap .intro_img img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.sub04 .intro_wrap .intro_txt {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10px;
}

.sub04 .intro_wrap .intro_txt h3 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin: 0 0 25px 0;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.sub04 .intro_wrap .intro_txt .desc_box {
  margin-bottom: 35px;
}

.sub04 .intro_wrap .intro_txt .desc_box p {
  font-size: 27px;
  color: #444;
  line-height: 1.8;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.sub04 .intro_wrap .intro_txt .desc_box p.highlight {
  font-size: 14px;
  color: #666;
  margin-top: 15px;
  font-weight: 500;
  margin-bottom: 0;
}

.sub04 .intro_wrap .intro_txt .btn_inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background-color: #C71D27;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sub04 .intro_wrap .intro_txt .btn_inquiry::after {
  content: '>';
  margin-left: 8px;
  font-size: 12px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.sub04 .intro_wrap .intro_txt .btn_inquiry:hover {
  background-color: #a8151c;
  box-shadow: 0 4px 12px rgba(199, 29, 39, 0.3);
}

.sub04 .intro_wrap .grill_intro_txt .btn_inquiry:hover::after {
  transform: translateX(3px);
}


/* sub04_01_02 문의하기 상세 */
.sub04.sub04_01_02 .inner_wrap {
  background-color: #E4DFDF;
}




/* sub05 회사소식 */


/* breadcrumb */
.sub05 .breadcrumb-bar {
  padding: 40px 0 20px 0;
}

.sub05 .breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  color: #888;
}

.sub05 .breadcrumb-inner a.bc-home {
  color: #888;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}

.sub05 .breadcrumb-inner a.bc-home svg {
  width: 20px;
  height: 20px;
}

.sub05 .breadcrumb-inner a.bc-home:hover {
  color: #C71D27;
}

.sub05 .breadcrumb-inner .bc-sep {
  color: #ccc;
  font-size: 11px;
}

.sub05 .breadcrumb-inner .bc-item {
  font-weight: 400;
}

.sub05 .breadcrumb-inner .bc-item:last-child {
  color: #555;
  font-weight: 500;
}

/* breadcrumb 끝 */

.sub05 .board .photo_bbs .thumb {
  padding-top: 95.8% !important;
}

.sub05 .board .bbs_btn {
  margin-bottom: 10px;
}

.sub05 .board .faqBasic .tit {
  padding: 4px 10px !important;
  display: inline-block;
}

.sub05 .board .bbs_paging tr td b {
  background-color: #C71D27;
}