/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap'); */

/* 영어 */
/* @font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/NotoSans-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/NotoSans-Bold.woff2') format('woff2');
} */

/* 한국어 */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/NotoSansKR-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/NotoSansKR-Bold.woff2') format('woff2');
}

/* 잘난체 불러오기 */
@font-face {
  font-family: 'Jalnan';
  /* src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_four@1.2/JalnanOTF00.woff') */
  src: url('../fonts/JalnanOTF00.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&display=swap'); */

@import url('https://cdn.jsdelivr.net/gh/webfont-kr/KoPubBatang@master/KoPubBatang.min.css');

/* BM 도현체 CDN 임베딩 */
@font-face {
  font-family: 'BM DoHyeon';
  /* src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/BMDOHYEON.woff') */
  src: url('../fonts/BMDOHYEON.woff') format('woff');
}

/* === CSS Reset / 초기화 === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: 'Noto Sans', 'Jalnan';

  line-height: 1.5;
  -webkit-font-smoothing: antialiased;

  -webkit-text-size-adjust: 100%; /* iOS Safari 확대 방지 */
  text-size-adjust: 100%;

  font-size: clamp(12px, 0.7rem, 16px);
}

h1 {
  font-size: 46px;
  font-family: 'Jalnan', sans-serif;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/* === Global Style / 전역 스타일 === */

/* 기본 색상은 샘플 이미지 톤 */
:root {
  --bg: #0f0f0f;
  /* 페이지 배경 가정값 */
  --panel: #e6f4ff;
  /* 패널 배경(연한 하늘) */
  --text: #0c1a24;
  /* 본문 텍스트 */
  --line: #cfe4f2;
  /* 구분선 */
  --dot: #2ea6ff;
  /* 파란 점 */
}

/* 햄버거 */
.hamburger {
  width: 42px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.hamburger span {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger span:nth-child(1) {
  top: 8px;
}

.hamburger span:nth-child(2) {
  top: 17px;
}

.hamburger span:nth-child(3) {
  top: 26px;
}

/* 오버레이 */
.side-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: saturate(140%) blur(1px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 998;
}

.side-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* 패널 */
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(640px, 92vw);
  background: var(--panel);
  color: var(--text);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 999;
  /* box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35); */
  display: flex;
  flex-direction: column;
}

.side-menu.open {
  transform: translateX(0);
}

.side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 10px 22px;
}

.badge {
  font: 700 14px/1.2 'Inter', system-ui;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  /* background: #fff; */
}

.close-btn {
  border: 0;
  /* background: #000; */
  color: #1a7cea;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 36px;
}

.side-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px 14px 22px;
  border-bottom: 2px solid #0c1a24;
}

.side-search input {
  flex: 1;
  height: 44px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  font-size: 16px;
  color: var(--text);
}

.side-search .search-btn {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ico-search {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid var(--dot);
  border-radius: 50%;
  position: relative;
}

.ico-search::after {
  content: '';
  position: absolute;
  right: -3px;
  bottom: -5px;
  width: 10px;
  height: 2px;
  background: var(--dot);
  transform: rotate(45deg);
  border-radius: 2px;
}

/* 섹션 */
.side-sections {
  overflow: auto;
  padding: 22px;
}

.side-section {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.side-section:last-child {
  border-bottom: 0;
  padding-bottom: 8px;
}

.sec-title {
  font: 800 28px/1.15 'Pretendard', 'Inter', system-ui;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px 0;
}

.sec-title .dot {
  width: 8px;
  height: 8px;
  background: var(--dot);
  border-radius: 50%;
  display: inline-block;
}

/* 3열 링크 그리드 (이미지처럼 텍스트 간격 널찍하게) */
.link-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.link-grid a {
  display: inline-block;
  padding: 6px 0;
  font: 700 18px/1.4 'Pretendard', 'Inter', system-ui;
  color: var(--text);
  text-decoration: none;
}

.link-grid a:hover {
  text-decoration: underline;
}

/* 헤더 */
header {
  width: 100%;
  height: 160px;
  background-color: #000;
  display: flex;
  /* Flexbox 적용 */
  align-items: center;
  /* 세로 방향 중앙 정렬 */
}

.gnb {
  width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /* 가로 방향 정렬 유지 */
  align-items: center;
  /* 내부 요소 세로 중앙 정렬 */
  padding: 10px 20px;
}

.right-cont {
  display: flex;
  align-items: center;
  gap: 30px;
  background: transparent;
  border: none;
  font-family: 'Noto Sans';
}

.custom-select select {
  appearance: none;
  /* 기본 화살표 제거 */
  background: #000;
  color: #fff;
  padding: 10px 40px 10px 20px;
  border: 1px solid #2a2a2a;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  position: relative;
}

/* 드롭다운 화살표 커스텀 */
.custom-select {
  position: relative;
}

.custom-select::after {
  content: '▼';
  font-size: 12px;
  color: #fff;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* 햄버거 메뉴 */
.hamburger {
  width: 35px;
  /* height: 24px; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #ccc;
  border-radius: 0;
  transition: 0.3s;
}

.container {
  width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.top {
  display: flex;
  /* margin-top: 60px; */
}

.hero {
  flex: 1;
  background-image: url(../img/main.jpg);
  background-size: cover;
  /* height: 946px; */
  position: relative;
}

.hero p {
  position: absolute;
  font-family: 'Nato Sans';
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  line-height: 56px;
  bottom: 0;
  padding: 60px;
}

.blue-background {
  background-color: #008cff;
  /* padding: 4px; */
}

.hello {
  flex: 1;
  padding: 30px;
}

.title-flex {
  display: flex;
  gap: 70px;
}

.hello-top,
.hello-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card {
  flex: 1;
  margin: 20px;
  font-family: 'Noto Sans';
  position: relative;
  cursor: pointer;
}

.card-image {
  position: relative;
  overflow: hidden;
  /* 래퍼 기준으로 클리핑 */
  height: 287px;
  /* 원하는 세로 길이(px 단위) */
  background-image: url(../img/card-1.png);
  background-size: cover;
  border-radius: 20px;
  /* 카드 이미지 라운드 */
}

.card-tag {
  display: flex;
  background-color: #008cff;
  border-radius: 20px;
  padding: 10px 8px;
  font-size: 16px;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: -1px;
  z-index: 1;
  font-weight: 600;
  width: 124px;
  height: 46px;
  justify-content: center;
  /* 추가 */
  box-shadow: 0 0 0 8px #fff;
  /* 흰색 외곽선처럼 표현 */
  cursor: pointer;
}

/* 우하단 1/4 원 아크 (좌우 반전은 border-radius/border 방향만 수정) */
.card-image::after {
  content: '';
  display: block;
  position: absolute;
  width: 30px;
  height: 31px;
  border-radius: 0 0 26px;
  border-bottom: 13px solid #fff;
  border-right: 13px solid #fff;
  transform: translate(-50%, -50%);
  bottom: -29px;
  right: 104px;
}

/* 상단 오른쪽 */
.card-image::before {
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 41px;
  border-radius: 0 0 26px;
  border-bottom: 13px solid #fff;
  border-right: 13px solid #fff;
  transform: translate(-50%, -49%);
  top: 226px;
  right: -34px;
}

.exp {
  width: 194px;
}

.no-width {
  width: unset;
}

/* .kimst-contents에 .blue 클래스가 붙었을 때 스타일 변경 */
.kimst-contents.blue .card-tag {
  box-shadow: 0 0 0 8px #008cff;
  /* 파란색 외곽선 */
  background-color: #fff;
  color: #008cff;
}

.kimst-contents.blue .card-image::after {
  border-bottom: 13px solid #008cff;
  border-right: 13px solid #008cff;
  left: 116px;
}

.kimst-contents.blue .card-image::before {
  border-bottom: 13px solid #008cff;
  border-right: 13px solid #008cff;
}

/* id 값으로 ::after 스타일 지정 */
.exp2::after {
  right: 174px;
  /* 원하는 위치 */
}

.card-image img {
  display: block;
}

.card-content {
  margin-top: 20px;
  position: relative;
}

.view {
  position: absolute;
  right: 0;
  bottom: 0;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  /* 튀어오르는 듯한 느낌 */
  display: inline-block;
  cursor: pointer;
}

.view:hover {
  transform: rotate(360deg) scale(1);
  /* 회전하면서 살짝 확대 */
}

.card-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 34px;
  position: relative;
}

.mid-news {
  display: flex;
  background-color: #f1faff;
}

.left-news {
  flex: 1;
  display: flex;
}

.kimst-contents {
  display: flex;
  background-color: #008cff;
  flex-direction: column;
  color: #fff;
  flex: 1;
}

.kimst-contents h1,
.kimst-news h1 {
  padding-top: 30px;
  padding-left: 15px;
}

.kimst-news {
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #f1faff;
}

/* .kimst-contents에 .blue 클래스가 붙었을 때 스타일 변경 */
.kimst-news .card-tag {
  box-shadow: 0 0 0 8px #f1faff;
  /* 파란색 외곽선 */
  background-color: #008cff;
  color: #fff;
}

.kimst-news .card-image::after {
  border-bottom: 13px solid #f1faff;
  border-right: 13px solid #f1faff;
  right: 79px;
}

.kimst-news .card-image::before {
  border-bottom: 13px solid #f1faff;
  border-right: 13px solid #f1faff;
}

.esg-news {
  flex: 1;
  /* margin-left: 20px; */
  /* background-image: url(../img/esg-news.png); */
  background-image: url(../img/subevent-2.png);
  background-size: cover;
  margin: 20px 0px;
  position: relative;
  background-position: top;
}

/* 반투명 검정 레이어 */
.esg-news::before {
  content: '';
  position: absolute;
  inset: 0;
  /* top, right, bottom, left 전부 0 */
  background: rgba(0, 0, 0, 0.5);
  /* 검정색 50% 투명 */
  z-index: 1;
}

.esg-label {
  width: 175px;
  height: 50px;
  font-size: 20px;
  background-color: #008cff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  margin-bottom: 30px;
}

.esg-news .esg-text {
  position: absolute;
  /* z-index 적용을 위해 position 설정 */
  z-index: 2;
  /* 텍스트를 레이어 위로 올림 */
  color: #fff;
  font-size: 28px;
  line-height: 60px;
  font-weight: bold;
  padding: 60px;
  font-family: 'Noto Sans';
  bottom: 0;
  font-size: 40px;
}

.esg-news .esg-text p {
  text-decoration: unset;
}

.white-book {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.white-row {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 20px;
}

.bottom-h1 {
  margin-left: 30px;
}

.event {
  display: flex;
  justify-content: center;
}

/*sub*/

.sub-top {
  width: 100%;
  height: 280px;
  background-image: url(../img/sub-top.png);
  background-size: cover;
  background-repeat: repeat-x;
  position: relative;
  margin-bottom: 50px;
  background-size: auto;
}

.sub-title {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 1440px;
  text-align: center;
  margin: auto;
}

.title {
  font-size: 50px;
  color: #fff;
  font-family: 'NotoSansKR';
  font-weight: 900;
  margin-top: 50px;
}

.title-tab {
  font-size: 24px;
  color: #a0e2fe;
  font-family: 'NotoSansKR';
  font-weight: 700;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 52px;
  margin-top: 30px;
}

.title-tab a {
  cursor: pointer;
}

.title-tab a.active {
  background-color: #fff;
  color: #018fcd;
  border-radius: 30px;
  position: relative;
  padding: 4px 20px;
  top: -5px;
  cursor: pointer;
}

.col-title {
  font-size: 34px;
  color: #000;
  font-family: 'NotoSansKR';
  font-weight: 700;
  margin-top: 10px;
  gap: 52px;
  margin-bottom: 0px;
  text-align: center;
}

.blue_underline {
  color: #018fcd;
  text-decoration: underline;
  text-decoration-line: underline;
  text-decoration-color: #018fcd;
  /* 밑줄색 */
  text-decoration-thickness: 2px;
  /* 밑줄 두께(선택) */
  text-underline-offset: 11px;
  /* 글자와 밑줄 사이 간격 */
}

.mid-blue_underline {
  color: #1a7cea;
  text-decoration-color: #1a7cea;
}

.col-text {
  font-size: 20px;
  font-family: 'noto sans';
  text-align: center;
  margin: 20px 0px;
  padding: 5px;
  font-weight: normal;
}

.col-text-justify {
  font-size: 20px;
  font-family: 'noto sans';
  text-align: justify;
  margin: 50px 0px;
  padding: 5px;
  font-weight: normal;
}

.dhfont {
  font-family: 'BM DoHyeon';
  font-weight: 100;
}

.dhbig {
  font-size: 30px !important;
}

.interview-box {
  width: 1000px;
  height: 520px;
  background-image: url(../img/sub2-2.png);
  background-size: cover;
  background-position: center;
  margin-top: 60px;
  margin-bottom: 60px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: auto;
}

.intervews {
  display: flex;
  margin-top: 10px;
}

.interview-cont {
  display: flex;
  font-family: 'Noto Sans';
  flex-direction: column;
  border-top: 3px solid #0954da;
  width: 1000px;
  margin: auto;
}

.qbox {
  flex: 1;
  padding: 20px 20px;
  background-color: #eee;
  height: 300px;
}

.abox {
  flex: 2;
  padding: 20px 50px;
}

.question {
  /* padding: 20px 50px; */
  font-size: 28px;
  font-weight: 900;
}

.bottom-cont {
  margin-top: 10px;
}

.answer {
  font-size: 20px;
  font-weight: 400;
}

.restyle {
  /* margin: unset !important; */
  margin-left: unset !important;
  margin-right: unset !important;
  margin-top: 10px;
  text-align: center;
  /* padding: unset !important; */
}

.q-mark {
  border: 2px solid #0954da;
  color: #0954da;
  /* padding: 10px 20px; */
  display: flex;
  border-radius: 20px;
  justify-content: center;
  width: 60px;
  height: 30px;
  align-items: center;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 20px;
}

.q-expend {
  width: 120px;
  height: 40px;
  margin: auto;
}

.font-setting {
  font-size: 25px;
  font-family: 'Noto Sans';
  /* width: 350px; */
  margin: auto;
  margin-top: 30px;
}

.report-wrap {
  width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  font-family: 'BM DoHyeon';
  border: 1px solid #0954da;
  background-color: #fff;
}

.report-title {
  background-color: #0954da;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 20px;
  gap: 20px;
  font-size: 20px;
}

.report-title span {
  border-radius: 50px;
  background-color: #fff;
  color: #0954da;
  padding: 0px 20px;
  display: flex;
  align-items: center;
}

.report-cont {
  padding: 40px 20px;
  font-family: 'Noto Sans';
  background-color: #fff;
}

.image-datas {
  display: flex;
  justify-content: space-between;
  border-top: 2px solid #000;
}

.image-datas img {
  width: 100%;
  height: 300px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.image-box {
  display: flex;
  justify-content: center;
  margin: 30px 0px;
}

.general-text {
  padding: 40px 20px;
  font-family: 'Noto Sans';
}

.report-comment {
  padding: 0px 20px;
  padding-bottom: 40px;
  background-color: #fff;
  font-family: 'Noso Sans';
}

.graybox {
  background-color: #f7f7f7;
  border: 1px solid #dadada;
  margin: 10px 20px;
  margin-bottom: 20px;
  padding: 15px;
  font-family: 'Noto Sans';
}

.graybox_1000 {
  background-color: #f7f7f7;
  border: 1px solid #dadada;
  margin: 10px 20px;
  margin-bottom: 20px;
  padding: 15px;
  font-family: 'Noto Sans';
  text-align: center;
  width: 1000px;
  margin: auto;
}

.whitebox {
  background-color: #fff;
  border: 1px solid #9eb5d8;
  margin: 10px 20px;
  margin-bottom: 20px;
  padding: 15px;
  font-family: 'Noto Sans';
  text-align: center;
  width: 1000px;
  margin: auto;
}

.blue-wrap {
  background-color: #e9f9ff;
  padding: 50px 0px;
  margin-top: 100px;
}

.gray-wrap {
  background-color: #f7f7f7;
}

.white-block {
  width: 50%;
  padding: 20px 40px;
  background-color: #fff;
  font-size: 20px;
  font-weight: 400;
  margin: auto;
}

.w-1000 {
  width: 1000px !important;
  margin: auto !important;
}

.w-500 {
  width: 500px !important;
  margin: auto !important;
}

.report-table {
  width: 1000px;
  margin: auto;
  padding: 40px 20px;
  font-family: 'Noso Sans';
}

.report-table table {
  border: 1px solid #dadada;
  border-top: 2px solid #000;
}

.report-table table th {
  background-color: #f8f8f8;
  text-align: center !important;
}

.report-table table th,
td {
  text-align: left;
  padding: 12px;
}

.light-blue {
  color: #1aabea;
}

.mid-blue {
  color: #1a7cea !important;
}

.deep-blue {
  color: #504ac3 !important;
}

.forth-blue {
  color: #0051e2 !important;
}

.font-bold {
  font-weight: 900;
  font-weight: bold;
}

.round-title {
  width: 700px;
  height: 60px;
  margin: auto;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  font-size: 26px;
  font-weight: 700;
}

.blue-accent {
  color: #1aabea;
  font-weight: 700;
}

.red-accent {
  color: #e92b46;
  font-weight: 700;
}

.bottom_cont {
  font-family: 'Noto Sans KR';
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin-bottom: 30px;
}

.pages {
  display: flex;
  font-size: 25px;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.pages a,
.pages .direction {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.direction {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  font-size: 20px;
}

.direction img {
  position: relative;
  top: -1px;
  left: -3px;
}

.pipe {
  width: 3px;
  height: 23px;
}

.sub-hero {
  width: 100%;
  height: 520px;
  background-image: url(../img/sub11_0.png);
  background-size: cover;
  background-position: center;
  margin-top: 60px;
  margin-bottom: 60px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.sub-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 30px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  font-family: 'Noto Sans';
  text-align: center;
  font-size: 40px;
  color: #fff;
  position: relative;
  z-index: 0;
}

.hero-text p {
  font-weight: bold;
}

.hero-text span {
  font-size: 28px;
}

/* ===== 단계 플로우 ===== */
.process-flow {
  display: flex;
  align-items: stretch;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Noto Sans', sans-serif;
}

/* 화살표 */
.process-flow .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  font-size: 20px;
  color: #dadada;
  /* 연한 회색 화살표 */
  font-size: 20px;
}

/* 각 박스 */
.step {
  flex: 1 1 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: 2px solid #000;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

/* 박스 헤더(연한 회색 바 느낌) */
.step-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #f5f5f5;
}

/* 숫자/제목 */
.step-num {
  font-weight: 700;
  color: #333;
}

.step-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  border-top: 1px solid #ddd;
  padding: 20px;
}

/* 설명 */
.step-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  padding: 20px;
}

/* 반응형: 모바일에서는 세로 스택 + 화살표 줄바꿈 */
@media (max-width: 768px) {
  .process-flow {
    flex-direction: column;
    gap: 8px;
  }

  .process-flow .arrow {
    transform: rotate(90deg);
  }
}

.bottom-hero {
  width: 100%;
  height: 720px;
  background-image: url(../img/sub11_1.png);
  background-size: cover;
  background-position: center;
  margin-top: 60px;
  margin-bottom: 60px;
  border-radius: 30px;
}

/* 새 섹션 래퍼 */
.custom-wrap {
  margin: 80px 0;
}

/* 섹션 제목 (기존 h1, .col-title 등과 겹치지 않게 별도 클래스) */
.custom-section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  font-family: 'Noto Sans KR', sans-serif;
}

/* 카드 리스트 레이아웃 (겹치는 것 없음) */
.custom-card-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.inner-gp-wrap {
  display: flex;
  font-family: 'noto sans';
  background-color: #f7f7f7;
  padding: 20px 50px;
}

.inner-gp {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inner-gp img {
  max-width: 216px;
  margin: auto;
}

.inner-gp-title {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0px 10px 0px;
}

/* ===== Custom Table ===== */
.table-wrap {
  width: 100%;
  margin: 40px 0;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 16px;
  border: 1px solid #ddd;
}

.custom-table th,
.custom-table td {
  border: 1px solid #ddd;
  padding: 14px 18px;
  vertical-align: top;
}

.custom-table td {
  background-color: #fff;
}

.table-head {
  background-color: #008cff;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 16px;
}

.table-subhead {
  background-color: #f5f5f5 !important;
  font-weight: 700;
  text-align: center;
  width: 50%;
}

/* ===== 레시피 플렉스 리스트 ===== */
.recipe-list {
  /* margin: 40px 0; */
  font-family: 'noto sans';
  border: 1px solid #eee;
  /* padding: 0 50px; */
}

.bg-gray {
  background-color: #f7f7f7;
}

.recipe-title {
  width: 100%;
  display: flex;
  height: 54px;
  background-color: #1a7cea;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin: 5px;
}

.recipe-box {
  padding: 0px 50px;
}

.recipe-flex {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px dotted #ddd;
}

.recipe-icon {
  width: 160px;
  padding-left: 40px;
}

.recipe-icon img {
  /* width: 60px;
  height: 60px;
  flex-shrink: 0; */
}

.recipe-text {
  flex: 1;
  font-weight: 600;
  position: relative;
}

.recipe-label {
  display: inline-block;
  background: #7c7bc7;
  /* 보라색 배경 */
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.arrows {
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translate(-50%, -50%);
}

.point {
  padding: 2px 12px;
  background-color: #0051e2;
  border-radius: 30px;
  color: #fff;
}

/* 상품 리스트 플렉스 */
.product-list {
  display: flex;
  justify-content: space-between;
  /* 카드 간격 균등 */
  align-items: stretch;
  gap: 0px;
  margin: 40px 0;
  font-family: 'Noto Sans';
  border-top: 1px solid #000;
  width: 1000px;
  margin: auto;
}

.product-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* border: 1px solid #ddd; */
  text-align: center;
  padding: 0px;
  background: #fff;
  border: 1px solid #ddd;
}

.product-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7f7f7;
}

.product-image img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  border-top: 1px solid #ddd;
  padding: 20px;
}

.sub10-green {
  border-radius: 20px;
  background-color: #34b0bb;
}

.sub10-purple {
  border-radius: 20px;
  background-color: #6f71d0;
}

.sub10-green + p {
  font-size: 20px;
}

.sub10-purple + p {
  font-size: 20px;
}

.last-word {
  display: flex;
  justify-content: center;
}

.last-word h1 {
  font-family: 'KoPub Batang', serif;
  font-weight: 900;
  /* Bold */
  color: #1a7cea;
}

.recipe-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.m-title {
  display: none;
}

.dohyn {
  font-family: 'BM DoHyeon';
}

.td-center {
  text-align: center;
}

.black_underline {
  color: #000;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-line: underline;
  text-decoration-color: #000000;
  /* 밑줄색 */
  text-decoration-thickness: 2px;
  /* 밑줄 두께(선택) */
  text-underline-offset: 6px;
  /* 글자와 밑줄 사이 간격 */
}

/* 기본: 모바일 이미지 숨기기 */
.img-m {
  display: none;
}

.card-news {
  width: 1000px;
  margin: auto;
  display: flex;
  margin-bottom: 10px;
}

.card-news img {
  width: 333px;
}

.wave-section {
  background-image: url(../img/wabeback.png);
  background-size: cover;
  /* background-repeat: no-repeat; */
  background-repeat: repeat-x;
  width: 100%;
  height: 1875px;
  margin: auto;
}

.wave5-2 {
  background-image: url(../img/wave5-2.png);
  background-size: cover;
  /* background-repeat: no-repeat; */
  background-repeat: repeat-x;
  width: 100%;
  height: 1989x;
  margin: auto;
}

.wave5-3 {
  background-image: url(../img/wave5-3.png);
  background-size: cover;
  /* background-repeat: no-repeat; */
  background-repeat: repeat-x;
  width: 100%;
  height: 1813px;
  margin: auto;
}

.wave6-1 {
  background-image: url(../img/wave6-1.png);
  background-size: cover;
  /* background-repeat: no-repeat; */
  background-repeat: repeat-x;
  width: 100%;
  height: 1433px;
  margin: auto;
}

.wave6-2 {
  background-image: url(../img/wave6-2.png);
  background-size: cover;
  /* background-repeat: no-repeat; */
  background-repeat: repeat-x;
  width: 100%;
  height: 1429px;
  margin: auto;
}

.wave6-3 {
  background-image: url(../img/wave6-3.png);
  background-size: cover;
  /* background-repeat: no-repeat; */
  background-repeat: repeat-x;
  width: 100%;
  height: 1786px;
  margin: auto;
}

.wave6-4 {
  background-image: url(../img/wave6-4.png);
  background-size: cover;
  /* background-repeat: no-repeat; */
  background-repeat: repeat-x;
  width: 100%;
  height: 1717px;
  margin: auto;
}

.wave6-5 {
  background-image: url(../img/wave6-5.png);
  background-size: cover;
  /* background-repeat: no-repeat; */
  background-repeat: repeat-x;
  width: 100%;
  height: 1354px;
  margin: auto;
}

.event-back {
  background-image: url(../img/event-back.png);
  background-size: cover;
  /* background-repeat: no-repeat; */
  background-repeat: repeat-x;
  width: 100%;
  height: 8050px;
  margin: auto;
}

.blog-btn {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 40px;
  margin: auto;
  border-radius: 30px;
  cursor: pointer;
  font-family: 'Noto Sans';
}

.blog-btn:hover {
  background-color: #000;
  color: #fff;
}

.wave7-1 {
  background-image: url(../img/wave7-1.png);
  background-size: cover;
  /* background-repeat: no-repeat; */
  background-repeat: repeat-x;
  width: 100%;
  height: 818px;
  margin: auto;
}

.wave7-2 {
  background-image: url(../img/wave7-2.png);
  background-size: cover;
  /* background-repeat: no-repeat; */
  background-repeat: repeat-x;
  width: 100%;
  height: 1242px;
  margin: auto;
}

.wave8-1 {
  background-image: url(../img/wave8-1.png);
  background-size: cover;
  /* background-repeat: no-repeat; */
  background-repeat: repeat-x;
  width: 100%;
  height: 4634px;
  margin: auto;
}

.sub5-3 {
  position: relative;
  margin-top: -140px;
  z-index: 1;
}

.sub5-4 {
  position: relative;
  margin-top: -140px;
  z-index: 1;
}

.sub5-7 {
  position: relative;
  margin-top: -140px;
  z-index: 1;
}

.sub5-9 {
  position: relative;
  margin-top: -140px;
  z-index: 1;
}

.sub5-11 {
  position: relative;
  margin-top: -150px;
  z-index: 1;
}

/*sub*/

.footer {
  background-color: #2a2a2a;
  color: #ccc;
  padding: 30px 20px;
  font-size: 14px;
  font-family: 'Noto Sans';
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* SNS 라인 */
.footer-sns ul {
  display: flex;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.footer-sns li a img {
  width: 32px;
  height: 32px;
  display: block;
  filter: grayscale(100%);
  /* 흑백 처리 */
  transition: filter 0.3s;
  /* hover 시 자연스럽게 전환 */
}

/* 중간 좌우 */
.footer-middle {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 20px;
}

.footer-logo img {
  height: 50px;
}

.footer-info p {
  margin: 0;
  line-height: 1.6;
  color: #585858;
}

.footer-info strong {
  color: #999999;
  font-weight: bold;
}

.footer-copy {
  text-align: center;
  font-size: 12px;
  color: #999;
}

/* 1024px 이하 (태블릿) */
/* @media screen and (max-width: 1024px) {
} */

/* 태블릿 가로 (Landscape) */
@media screen and (max-width: 1440px) {
  header {
    height: 110px;
  }

  .top {
    flex-direction: column;
    height: auto;
    /* 혹시 100%였다면 auto로 */
    overflow: visible;
    /* 혹시 hidden이었다면 visible로 */
  }

  .hero {
    min-height: 520px;
    /* 화면에 보일 고정/최소 높이 */
    /* 또는 aspect-ratio: 16/9; 같은 비율도 가능 */
  }

  .container {
    width: 100%;
  }

  .title-flex {
    display: flex;
    justify-content: space-around;
    gap: unset;
  }

  .hero {
    flex: 1;
    background-image: url(../img/main.jpg);
    background-size: cover;
    /* height: 946px; */
    position: relative;
    background-position: center;
  }

  .mid-news {
    flex-direction: column;
  }

  /* ESG 섹션도 1열 */
  .esg-news {
    flex: unset !important;
    height: 600px;
  }

  .kimst-contents.blue .card-image::after {
    right: 174px;
    left: unset;
  }

  /* sub */

  .sub-title {
    width: 100%;
  }

  .m-title {
    display: none;
  }

  .col-text-justify {
    padding: 15px;
  }

  .process-flow {
    padding: 15px;
  }

  .blue-wrap {
    padding: 15px;
  }

  .report-wrap {
    width: 100%;
  }

  .image-datas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 2열 */
    gap: 10px;
    /* 이미지 사이 간격 */
  }

  .image-datas img {
    width: 100%;
    /* 각 셀에 꽉 차도록 */
    height: auto;
    /* 비율 유지 */
    border: 1px solid #eee;
  }

  .graybox {
    margin: 15px !important;
  }

  .hero-text p {
    font-weight: bold;
    font-size: 21px;
  }

  .hero-text span {
    font-size: 20px;
  }

  .interview-cont {
    width: 90%;
  }

  .interview-box {
    width: 90%;
  }

  .restyle {
    margin-top: 10px;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .whitebox {
    width: 100%;
  }

  .graybox_1000 {
    width: 100%;
  }

  .card-news {
    width: 90%;
    margin: auto;
    display: flex;
    margin-bottom: 10px;
    flex-direction: column;
  }

  .card-news img {
    width: 100%;
  }

  .dhbig {
    font-size: 30px !important;
    width: 90%;
  }

  /* sub */
}

/* 태블릿 세로 (Portrait) */
/* @media screen and (max-width: 1024px) and (orientation: portrait) {
} */

/* 모바일(≤640px) 1열 스택 */
@media screen and (max-width: 640px) {
  header {
    height: 110px;
    position: fixed;
    z-index: 123;
  }

  main {
    padding-top: 100px;
  }

  .custom-select {
    display: none;
  }

  /* 폭 제한 해제 + 기본 여백 */
  .gnb,
  .container {
    width: 100%;
    max-width: none;
    padding: 0 0px;
  }

  /* 가로 배치 구간을 전부 세로 스택으로 */
  .top,
  .hello-top,
  .hello-bottom,
  .mid-news,
  .left-news,
  .white-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .hello {
    flex: 1;
    padding: unset;
  }

  .title-flex {
    display: flex;
    flex-direction: column;
    /* justify-content: space-around; */
    /* gap: unset; */
  }

  .hello-top .card-image {
    background-size: 800px;
    background-position: bottom;
  }

  .hero {
    height: 420px;
  }

  h1 {
    padding-bottom: 20px;
    font-size: 2rem;
    padding-top: 20px;
  }

  /* 컬럼/카드가 100% 차지하도록 */
  .hero,
  .hello,
  .kimst-contents,
  .kimst-news,
  .card {
    width: 100%;
    flex: none;
    margin: 0;
    /* 좌우 카드를 세로로 붙일 때 간섭 제거 */
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
  }

  /* 카드 이미지 비율 유지(원하면 비율만 조정) */
  .card-image {
    height: auto;
    aspect-ratio: 16 / 10;
    /* 필요 없으면 이 줄 삭제 */
  }

  /* ESG 섹션도 1열 */
  .esg-news {
    flex: unset !important;
    height: 600px;
  }

  /* 글자/여백 살짝 축소(선택) */
  .card-title {
    font-size: 23px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 29px;
    line-height: 1.4;
    padding: 20px;
  }

  .card-tag {
    font-size: 1.2rem;
    width: 190px;
    height: 60px;
    border-radius: 30px;
    box-shadow: 0 0 0 11px #fff;
    align-items: center;
  }

  /* 푸터도 세로 정렬 */
  .footer-middle {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card-image::before {
    bottom: 34px !important;
    top: unset;
  }

  .card-image::after {
    right: 168px;
  }

  .kimst-contents.blue .card-image::before {
    bottom: 34px !important;
    top: unset;
  }

  .kimst-contents.blue .card-image::after {
    right: 277px;
    left: unset;
  }

  .kimst-news .card-image::after {
    right: 167px;
  }

  .exp {
    width: 300px;
  }

  .exp2::after {
    right: 282px;
  }

  .esg-label {
    display: none;
  }

  .kimst-news h1 {
    display: none;
    visibility: hidden !important;
  }

  /* sub */

  .sub-title {
    width: 100%;
    padding: 0px 20px;
  }

  /* .container{
  padding: 0px 20px;
} */

  .title-tab {
    flex-direction: column;
    gap: 0;
  }

  .title-tab a.active {
    top: unset;
  }

  .sub-top {
    width: 100%;
    height: 450px;
    background-size: cover;
  }

  .sub-hero {
    width: 90%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }

  .bottom-hero {
    width: 90%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-bottom: 50px;
  }

  .round-title {
    display: block;
    background-color: unset;
    flex-direction: column;
    width: unset;
    height: unset;
  }

  .col-title {
    font-size: 26px;
    font-weight: 900;

    width: 90% !important;
    margin: auto !important;
    text-align: center;
    /* display: flex !important; */
  }

  .col-text {
    padding: 15px;
    text-align: justify !important;
    margin: 40px 0px;
  }

  .col-text br {
    display: none;
  }

  .bottom_cont {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 0px 20px;
  }

  .pages a,
  .pages .direction {
    font-size: 0.9rem;
  }

  .inner-gp-wrap {
    flex-direction: column;
  }

  /* .send_mail {
    transform: scale(1.5);
  } */
  .m-hidden {
    display: none;
  }

  .m-title {
    display: block;
  }

  .col-text-justify {
    padding: 15px;
  }

  .process-flow {
    padding: 15px;
  }

  .blue-wrap {
    padding: 15px;
  }

  .report-wrap {
    width: 100%;
  }

  .image-datas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2열 */
    gap: 10px;
    /* 이미지 사이 간격 */
  }

  .image-datas img {
    width: 100%;
    /* 각 셀에 꽉 차도록 */
    height: auto;
    /* 비율 유지 */
    border: 1px solid #eee;
  }

  .graybox {
    margin: 15px !important;
  }

  .hero-text p {
    font-weight: bold;
    font-size: 21px;
  }

  .hero-text span {
    font-size: 20px !important;
  }

  .hero-text hr + br {
    display: none;
  }

  .interview-box {
    width: 90%;
    height: 520px;
    background-image: url(../img/sub2-2.png);
    background-size: cover;
    background-position: center;
    margin-top: 60px;
    margin-bottom: 60px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: auto;
  }

  .intervews {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    /* padding: 15px 0px; */
    gap: 20px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .interview-cont {
    display: flex;
    font-family: 'Noto Sans';
    flex-direction: column;
    border-top: 3px solid #0954da;
    width: 95%;
    margin: auto;
  }

  .qbox {
    flex: 1;
    padding: unset;
    background-color: unset;
    height: unset;
  }

  .abox {
    flex: 2;
    padding: unset;
  }

  .question {
    /* padding: 20px 50px; */
    font-size: 28px;
    font-weight: 900;
  }

  .bottom-cont {
    width: 90%;
    margin-top: 10px;
    margin: auto;
  }

  .answer {
    font-size: 20px;
    font-weight: 400;
  }

  .restyle {
    /* margin: unset !important; */
    margin-left: unset !important;
    margin-right: unset !important;
    margin-top: 10px;
    text-align: center;
    /* padding: unset !important; */
  }

  .q-mark {
    border: 2px solid #0954da;
    color: #0954da;
    /* padding: 10px 20px; */
    display: flex;
    border-radius: 20px;
    justify-content: center;
    width: 60px;
    height: 30px;
    align-items: center;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 20px;
  }

  .report-wrap {
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    font-family: 'BM DoHyeon';
    border: 1px solid #0954da;
    background-color: #fff;
  }

  .report-title {
    background-color: #0954da;
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 20px;
    gap: 20px;
    font-size: 20px;
  }

  .report-title span {
    border-radius: 50px;
    background-color: #fff;
    color: #0954da;
    padding: 0px 20px;
    display: flex;
    align-items: center;
  }

  .report-cont {
    padding: 40px 20px;
    font-family: 'Noto Sans';
    background-color: #fff;
  }

  .image-datas {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #000;
  }

  .image-datas img {
    width: 100%;
    height: 300px;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }

  .image-box {
    display: flex;
    justify-content: center;
    margin: 30px 15px;
  }

  .general-text {
    padding: 40px 20px;
    font-family: 'Noto Sans';
  }

  .report-comment {
    padding: 0px 20px;
    padding-bottom: 40px;
    background-color: #fff;
    font-family: 'Noso Sans';
  }

  .graybox {
    background-color: #f7f7f7;
    border: 1px solid #dadada;
    margin: 10px 20px;
    margin-bottom: 20px;
    padding: 15px;
    font-family: 'Noto Sans';
  }

  .blue-wrap {
    background-color: #e9f9ff;
    padding: 50px 0px;
    margin-top: 100px;
  }

  .gray-wrap {
    background-color: #f7f7f7;
  }

  .white-block {
    width: 50%;
    padding: 20px 40px;
    background-color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin: auto;
  }

  .gray-wrap {
    background-color: #f7f7f7;
  }

  .image-datas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .white-block {
    width: 90%;
    padding: 20px 40px;
    background-color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin: auto;
  }

  .report-table {
    padding: 20px 10px;
    width: 95%;
  }

  .img-pc {
    display: none;
  }

  .img-m {
    display: block;
  }

  .product-list {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
  }

  .q-expend {
    width: 120px;
    height: 40px;
    margin: auto;
  }

  .report-comment {
    padding-bottom: unset;
  }

  .whitebox {
    width: 100%;
  }

  .graybox_1000 {
    width: 100%;
  }

  .card-news {
    width: 90%;
    margin: auto;
    display: flex;
    margin-bottom: 10px;
    flex-direction: column;
  }

  .card-news img {
    width: 100%;
  }

  .dhbig {
    font-size: 1.3vh !important;
    width: 90% !important;
  }

  .w-1000 {
    width: 95% !important;
  }

  .arrow {
    display: none;
  }

  .wave7-1 {
    height: 848px;
  }

  .wave7-2 {
    height: 11 60px !important;
  }

  .wave-section {
    height: auto;
  }

  .wave5-3 {
    height: auto;
  }

  .wave6-1 {
    height: auto;
  }

  .wave6-2 {
    height: auto;
  }

  .wave6-3 {
    height: auto;
  }

  .wave6-4 {
    height: auto;
  }

  .wave6-5 {
    height: auto;
  }

  .wave7-1 {
    height: auto;
  }

  .wave7-2 {
    height: auto;
  }

  .sub5-3 {
    position: relative;
    margin-top: -40px;
    z-index: 1;
  }

  .sub5-4 {
    position: relative;
    margin-top: 0px;
    z-index: 1;
  }

  .sub5-7 {
    position: relative;
    margin-top: 0px;
    z-index: 1;
  }

  .sub5-9 {
    position: relative;
    margin-top: -30px;
    z-index: 1;
  }

  .sub5-11 {
    position: relative;
    margin-top: -30px;
    z-index: 1;
  }

  .recipe-box {
    padding: 0;
  }

  .arrows {
    display: none;
  }

  .ar-three {
    top: 191px !important;
  }

  .ar-forth {
    top: 216px !important;
  }

  .event-back {
    height: auto;
  }

  .wave8-1 {
    height: auto;
  }

  .black_underline {
    display: block;
    text-align: center;
  }
}

/* =========================
   Page Loader (KIMST)
   ========================= */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  /* background: radial-gradient(1200px 800px at 50% -20%, rgba(255, 255, 255, 0.06), transparent 60%),
    linear-gradient(180deg, #041e3a 0%, #0a2a54 100%);
     */
  background: linear-gradient(180deg, rgba(4, 30, 58, 0.8) 0%, rgba(10, 42, 84, 0.8) 100%);

  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease, visibility 0.45s linear;
  opacity: 1;
  visibility: visible;
}

#page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#page-loader .loader-box {
  width: clamp(220px, 28vw, 360px);
  display: grid;
  gap: 18px;
  place-items: center;
  text-align: center;
  user-select: none;
}

#page-loader .loader-logo {
  width: 70%;
  max-width: 260px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
  animation: kimstFloat 2.2s ease-in-out infinite alternate;
}

#page-loader .loader-text {
  font-family: 'Noto Sans', system-ui, -apple-system, 'Segoe UI', Roboto, 'Noto Sans KR', sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
}

#page-loader .progress-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

#page-loader .progress-bar {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    rgba(0, 140, 255, 0) 0%,
    rgba(0, 140, 255, 0.7) 35%,
    rgba(118, 197, 255, 0.95) 60%,
    rgba(0, 140, 255, 0) 100%
  );
  animation: slideBar 1.15s linear infinite;
}

/* 로고 살짝 떠오르는 모션 */
@keyframes kimstFloat {
  0% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(-6px);
  }
}

/* 진행바 스윕 */
@keyframes slideBar {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* 모션 최소화 환경 배려 */
@media (prefers-reduced-motion: reduce) {
  #page-loader .loader-logo {
    animation: none;
  }
  #page-loader .progress-bar {
    animation-duration: 1.6s;
  }
}

/* Responsive image map base */
.rmap {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === 강제 커서 지정 (최종 우선순위) === */
a:hover,
a:focus,
area:hover,
area:focus {
  cursor: pointer !important;
}

/* === 강제 커서 지정 (최종 우선순위) === */
a,
a:link,
a:visited,
area {
  cursor: pointer !important;
}

/* href 있는 a */
a[href] {
  cursor: pointer !important;
}

/* onclick 속성이 붙은 모든 요소 */
[onclick] {
  cursor: pointer !important;
}

/* 자식 요소들도 동일 커서 */
[onclick] * {
  cursor: inherit;
}
