@font-face {
    font-family: '행복고흥M';
    src: url('../fonts/행복고흥M.woff2') format('woff2'),
        url('../fonts/행복고흥M.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




@font-face {
    font-family: '행복고흥2B';
    src: url('../fonts/행복고흥2B.woff2') format('woff2'),
        url('../fonts/행복고흥2B.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BMEULJIRO';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_twelve@1.0/BMEULJIRO.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}



#brandname {
  font-family: '행복고흥M', sans-serif;
  line-height: 0.8;
  font-size:1.8em;
  position: relative;
  color:#850101;
  text-shadow:
  -1px -1px 0 #fff,
    1px -1px 0 #fff,
  -1px  1px 0 #fff,
    1px  1px 0 #fff;  /* 흰색 외곽선 */
  top: 0.2em; /* 아래로 3px 내려감 */
}


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

body {
  font-family: sans-serif;
  scroll-behavior: smooth;
}



/* nav */

html {
  scroll-behavior: smooth;
}

.navbar {
  background-color: rgb(0, 0, 0);
  color:white;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1em 2em;
  z-index: 1000;
  transition: background-color 0.3s, box-shadow 0.3s;
}

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

.logo-image {
  height: 1.5em;     /* 필요 시 조절 가능 */
  display: block;
}


.logo {
  
  font-weight: bold;
  padding-left:2em;
  
}

.logo a{
    font-size: 2.5em;
    text-decoration: none;
    color:rgb(147, 8, 8);
    letter-spacing: 0.2em;  /* 글자 간격 */
    font-family: 'Single Day';
}

.menu {
    padding-right:3em;
}

.menu a {
  margin-left: 1.5em;
  font-size : 1.3em;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: 500;
}

.navbar.scrolled {
  background-color: rgb(0, 0, 0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


/* 반응형 */
@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
    align-items: center;  /* 왼쪽 → 가운데로 변경 */
  }

  .menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* 1줄에 2개 */
    width: 100%;
    gap: 0.5em 1em;
    padding: 1em 0 0 1em;
    text-align: center;
  }

  .menu a {
    margin-left: 0;
    font-size: 1.1em;
  }

  .logo {
    padding-left: 0.5em;
    margin-bottom: 0.5em;
  }

}




/* section 기본 */
.section {
  scroll-margin-top: 4em; 
  /* height: 100vh;
  padding: 3em; */
}



/* 팝업창 */

/* 팝업 배경 */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  display: none;
  z-index: 999;
}

/* 팝업창 */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 90vw;
  max-height: 80vh;
  background: #850101;  /* 진한 파랑 */
  color: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-sizing: border-box;
  display: none;
  flex-direction: column;
  z-index: 1000;
  overflow-y: auto;
  font-family: 'Nanum Gothic', sans-serif;
}

.popup h2 {
  font-size: 3em;
  margin:0.1em auto;
  font-weight: bold;
  text-align: center;
}

.popup .popup-desc{
  font-size : 1.3em;
  text-align: center;
  font-weight: bold;
  margin-bottom:2em;
  margin-top:2em;
}

.popup img {
  width:50%;
  display: block;
  margin: 0 auto;
}


/* 호점 리스트 */
.branch-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* ✅ 3개씩 한 줄 */
  gap: 15px 20px;
  margin-bottom: 1.5rem;
}

.branch-item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: center;
  transition: transform 0.2s;
}

.branch-item:hover {
  transform: translateY(-5px);
}

.branch-item a{
  text-decoration: none;
}

.branch-item img {
  width: 100%;
  height:7em;
  object-fit: cover;  /* 🔥 핵심 */
  display: block;
  border-bottom: 1px solid #eee;
}

.branch-item p {
  margin: 0;
  padding: 10px;
  color: #000;
  font-weight: bold;
  font-size: 1.1em;
}

.branch-item.other-color {
  border: 3px solid #FFD700;
}




/* 하단 푸터 */
.popup-footer {
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.popup-footer p {
  margin: 0;
  color: #fff7b0;
}

.popup-close-btn {
  background: #ffffff;
  border: none;
  color: rgb(0, 0, 0);
  padding: 8px 18px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.popup-close-btn:hover {
  background: #003f6b;
}





/* 배너 */
.simple-slider {
    margin-top : 5em;
    width: 100%;
    height: 40em;
    position: relative;
    overflow: hidden;
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider-image.active {
  opacity: 1;
  z-index: 1;
}



/* 가맹문의 */
.fixed-consult-btn {
  position: fixed;
  top: 6em;
  right: 3em;
  z-index: 1001;
  display: block;
  width: 15em;
  height: auto;
  transition: transform 0.2s ease-in-out;
}

.fixed-consult-btn:hover {
  transform: scale(1.05);
}

.fixed-consult-btn img {
  width: 100%;
  height: auto;
  display: block;
}


/* 반응형: 태블릿 이하 */
@media (max-width: 1024px) {
  .fixed-consult-btn {
    top: auto;
    bottom: 2em;
    right: 1.5em;
    width: 10em;
  }
}

/* 반응형: 모바일 */
@media (max-width: 600px) {
  .fixed-consult-btn {
    bottom: 1.5em;
    right: 1em;
    width: 8em;
  }

  .slide-target,
  .slide-left,
  .slide-right,
  .slide-in-left,
  .slide-in-right {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }




}



/* 롤링 배너 */
.rolling-banner {
  width: 100%;
  background-color: #5f0808;
  overflow: hidden;
  height: 5em;
  display: flex;
  align-items: center;
  color:aliceblue;
}

.rolling-track {
  display: flex;
  white-space: nowrap;
  animation: roll-left 40s linear infinite;
}

.rolling-text {
  font-size: 1.4em;
  font-weight: bold;
  color:aliceblue;
  letter-spacing: 0.15em;
  padding-right: 4em; /* 끝 간격을 주어 부드러운 연결 */
}


/* 반응형: 모바일 */
@media (max-width: 600px) {

  .simple-slider {
    margin-top : 10em;
    height: 20em;
  }

  .rolling-banner {
    height: 3em;
    font-size: 0.8em;
  }

  .profit-title h2 {
    display: flex;
    flex-direction: column; /* 세로 정렬 */
    align-items: center;
    text-align: center;
    gap: 0.5em;
    font-size : 3em !important;
  }

  #profit-section {
    padding-top:0;
  }


  .profit-title p {
    font-size : 1em !important;
  }

  .profit-images img {
    width:100%;
  }

  .profit-info h2 {
    display: flex;
    flex-direction: column; /* 세로 정렬 */
    align-items: center;
    text-align: center;
    gap: 0.5em;
    font-size : 3em !important;
  }


  .highlight-image-group img {
    width : 100%;
    padding-top : 0.5em;
  }

  .franchise-profit-section .receipt-list {
    margin-top:1em;
    gap: 0.5em;
  }

  .franchise-profit-section .receipt-list li {
    width : 100%;
  }

  .menu-section {
    padding:0;
    padding-top : 1em;

  }


  .menu-section h2 {
    display: flex;
    flex-direction: column; /* 세로 정렬 */
    align-items: center;
    text-align: center;
    gap: 0.5em;
    font-size : 3em !important;
  }


}




/* 애니메이션 */
@keyframes roll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}




/* 수익설명 */
.profit-section {
  background-color: #000;
  padding: 6em 2em;
  color: white;
  text-align: center;
}

.profit-section h2 {
  padding-top:0.5em;
}

.profit-title h2 {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: #ffbd14; /* 노란 계열 강조 */
}

.profit-title .brand{
    color:white;
}

.profit-title p {
  font-size: 1.2em;
  color: #ccc;
  margin-bottom: 3em;
}

.profit-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}

.profit-image {
  width: 45%;
  height: auto;
  max-width: 40em;
  object-fit: contain;
}



/* 주요 가맹점 */

.franchise-profit-section {
  background-color: #000000;
  padding: 4em 2em;
  color: white;
  text-align: center;
  position: relative;
  padding-bottom:6em;
}

.franchise-profit-section span {
  font-size:2em;
  color:rgb(223, 12, 12);
  font-weight:bold;
}


.franchise-profit-section .sales-change {
  margin-bottom:2em;
}

.profit-info h2 {
  font-size: 3em;
  color: #ffbd14;
}

.profit-info p {
  font-size: 2.5em;
  font-weight: bold;
  margin: 0.3em 0;
}

.profit-info .sub {
  font-size: 1em;
  color: #ccc;
}

.highlight-image-group {
  position: relative;
  display: inline-block;
}

.highlight-image {
  width: 70%;
}

.speech-bubble {
  position: absolute;
  right: -5em;
  top: -2em;
  width: 6em;
}

.receipt-list {
  margin-top: 4em;
  display: flex;
  justify-content: center;
  gap: 2em;
  list-style: none;
  padding: 0;
}



.receipt-list li {
  opacity: 0;
  transform: translateY(3em);
  transition: all 0.8s ease;
}

.receipt-list li img {
    width:20em;
}

.receipt-list li.show {
  opacity: 1;
  transform: translateY(0);
}


.receipt2 {
  gap:6em;
  margin-top:0;
}

.receipt2 li img {
  width:30em;
}



/* 메뉴 */
.menu-section {
  background-color: #fffbe9;
  padding: 4em 2em;
  text-align: center;
}



.menu-title {
  margin-bottom: 1em;
  color : #ffbd14;
}


.highlight {
  color: #000000;
  color: #850101;
}


.menu-grid {
  margin: auto 5em;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ← 이게 핵심 */
  gap: 2em;
  justify-items: center;
  margin-bottom: 2em;
}




.menu-item img {
  width: 20em;
  height: auto;
  object-fit: contain;
}

.menu-item p {
  margin-top: 0.5em;
  font-size: 1.3em;
  font-weight:bold;
}

/* 전체메뉴 보기 버튼 */
.menu-button-wrap {
  margin-top: 2em;
}

.view-all-menu-btn {
  background-color: rgb(147, 8, 8);;
  color: white;
  font-size: 1.4em;
  font-weight:bold;
  padding: 0.8em 2em;
  border: none;
  border-radius: 2em;
  cursor: pointer;
}

/* 팝업 스타일 */
.menu-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.menu-popup.active {
  display: flex;
  z-index: 9999; /* 👈 이 값 충분히 높게! */
}

.popup-content {
  position: relative;
  background-color: rgb(0, 0, 0);
  padding: 1em;
  border-radius: 1em;
  max-width: 60%;
  max-height: 80%;
  overflow: auto;
  color:white;
}

.popup-content img {
  width: 100%;
  height: auto;
  display: block;
  margin-top:1em;
}

.popup-close {
  position: absolute;
  top: 0.5em;
  right: 0.8em;
  background: none;
  border: none;
  font-size: 2em;
  cursor: pointer;
  color:white;
}



/* 인테리어 */

.interior-section {
  background-color: #000000;
  color: white;
  padding: 5em 2em;
}

.interior-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2em;
  margin-left:5em;
  font-size:1.3em;
}

.interior-text {
  flex: 1;
  min-width: 20em;
  max-width: 30em;
  margin-left:2em;
}

.interior-text h2 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
  line-height: 1.4;
}

.interior-text .bold {
  font-weight: 800;
  color: white;
}

.interior-text .highlight {
  color: #fdd835;
  font-size: 1.2em;
  margin-bottom: 0.5em;
}

.interior-text .desc {
  font-size: 1em;
  line-height: 1.6;
  color: #ddd;
}
.interior-slider {
  flex: 1;
  min-width: 15em;
  max-width: 40em;

  /* 📌 높이 고정 (원하는 값으로 설정) */
  height: 40em; /* 또는 350px 등 */
  width: 15em;
  overflow: hidden; /* 이미지 넘침 방지 */
  position: relative;
}

.interior-slider .swiper-slide {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.interior-slider .swiper-slide img {
  width: 67%;
  height: 100%;
  object-fit: cover;  /* or 'contain' if 여백 생겨도 비율 유지 원하면 */
  border-radius: 0.5em;
}


/* 가입절차 */

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

.enter-section{
  background-color: #000000;
}

.enter-section h2{
  color:#ffbd14;
  padding-top:1em;
}

.enter-table {
  display: flex;
  justify-content: center; /* 가로 가운데 */
  align-items: center;     /* 세로 가운데 */
}

.enter-section .enter-table img{
  text-align: center;
  width:80%;
}



/* 창업비용 */

.cost-section{
  background-color: #000000;
}

.content-table {
  display: flex;
  justify-content: center; /* 가로 가운데 */
  align-items: center;     /* 세로 가운데 */
}

.cost-section .content-table img{
  text-align: center;
  width:80%;

}

.cost-section h2 {
  padding-top:2em;
  color:#ffbd14;
  font-size:4em;
  text-align:center;
}

.cost-section h2 .red-text{
  color:rgb(168, 3, 3);
}




/* 문의하기 */
.contact-section {
  font-family: 'Pretendard', sans-serif;
  background: #000000;
  color: #fff;
  margin: 0;
  padding: 0;
}

.contact-section h2 {
  text-align: center;
  padding-top : 2em;
}

#inquiry-form {
  width: 50%;
  margin: 0 auto;
  padding: 3em;
  background: #000000aa;
  border-radius: 10px;
}

#inquiry-form .highlight {
  color: rgb(168, 3, 3);
}

h1 {
  font-size: 4em;
  text-align: center;
  margin-bottom: 1em;
}

h1 span {
  color: white;
}

h1 strong {
  color: #ffd700;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 0.7em;
  margin-bottom: 1em;
  border: none;
  border-radius: 5px;
  font-size: 1em;
}

form textarea {
  height: 120px;
}

.phone-group,
.email-group {
  display: flex;
  gap: 0.5em;
}

.radio-group,
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
  flex-wrap: wrap;
}

.radio-group label,
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.3em;
  white-space: nowrap;
}

button[type="submit"] {
  width: 100%;
  padding: 1em;
  background-color: #5a6cf3;
  color: white;
  font-size: 1.1em;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: not-allowed;
  transition: 0.3s;
}

button[type="submit"]:enabled {
  cursor: pointer;
  background-color: #3b4cc0;
}

.agree-policy {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 1em;
  font-size: 0.9em;
}

.agree-policy input {
  width: 2em;
  margin:0;
}


.radio-group input[type="radio"] {
  margin:0;
}

.checkbox-group input[type="checkbox"] {
  margin:0;
}




/* footer */
/* ====== site-footer ====== */
.site-footer {
  
  background: #000;
  color: #fff;
  padding: 4em 4em;
  font-family: Pretendard, sans-serif;
  font-size: 1em;
  line-height: 1.6;
}
.site-footer .footer-links {
  text-align: left;
  margin-bottom: 1em;
}
.site-footer .footer-links a {
  color: #fff;
  text-decoration: none;
  margin-right: 1.5em;
  font-weight: 500;
}
.site-footer .footer-links a:hover {
  text-decoration: underline;
}

.site-footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1em;
}
.site-footer .footer-info {
  flex: 1 1 60%;
}
.site-footer .footer-info p {
  margin: 0.3em 0;
}

.site-footer .footer-contact {
  flex: 0 1 auto;
  text-align: right;
}
.site-footer .franchise-inquiry {
  display: inline-block;
  font-size: 2em;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
.site-footer .franchise-inquiry:hover {
  text-decoration: underline;
}



/* 리뷰 */

.review-section {
  padding: 3em 1em;
  background-color: #1f1a17; /* 어두운 배경 */
  color: white;
  font-family: 'Pretendard', sans-serif;
  padding-bottom:4em;
}

.review-section h2 {
  color : #ffbd14;
}

.review-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25em, 1fr));
  gap: 2em;
  max-width: 75em;
  margin: 0 auto;
}

.review-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 1em;
  border-radius: 1em;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.review-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1em;
  border: 2px solid white;
}

.review-content .stars {
  color: gold;
  font-size: 1.1em;
  margin-bottom: 0.5em;
}

.review-content p {
  line-height: 1.4;
  font-size: 0.95em;
}

.review-title {
  font-size:3em;
  color:rgb(168, 3, 3);
  text-align: center;
  margin-bottom:1.5em;
  margin-top:0.5em;
}

.white-color {
  color:white;
}


h2 {
  font-family: 'BMEULJIRO' !important;
  font-weight: normal;
  font-size:5em !important;
  color : #ffbd14;
}



/* 로고 설정 */

.logo-img {
  height: 1.2em;     /* 텍스트와 어울리게 조절 */
  vertical-align: middle;
  margin-right: 0.2em;
}


.interior-text h2{
  font-size:4em !important;
}



/* 🎨 팝업창 2 레이아웃 */
.custom-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.custom-popup.active {
  display: flex;
}

.custom-popup-content {
  background: #850101;
  padding: 2em;
  border-radius: 1rem;
  text-align: center;
  width: 90%;
  max-width: 500px;
  position: relative;
  font-family: 'Nanum Gothic', sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.custom-popup-content h2 {
  font-size: 1.7em;
  color: #ffffff;
  margin-bottom: 0.5em;
  margin-top:0.5em;
  font-weight:bold;
}

.custom-popup-content p {
  font-size: 1.4em;
  margin: 0.3em 0;
  font-weight:bold;
  color: #fefefe;
}

.custom-popup-close {
  position: absolute;
  top: 0.6em;
  right: 0.8em;
  background: none;
  border: none;
  font-size: 2em;
  color: #ffffff;
  cursor: pointer;
}

.custom-popup-footer {
  margin-top: 1.5em;
  font-size: 1.1em;
  color: #ffffff;
}


.popup2-img {
  width : 100%;
}


/* 애니메이션 */
.slide-target {
  display: inline-block;
  opacity: 0;
  transform: translateX(0); /* 기본 초기값 */
}

/* 왼쪽에서 시작 */
.slide-left {
  transform: translateX(-100%);
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

/* 오른쪽에서 시작 */
.slide-right {
  transform: translateX(100%);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

/* 위쪽에서 시작 */
.slide-top {
  transform: translateY(-100%);
}

@keyframes slideInTop {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.slide-in-top {
  animation: slideInTop 0.8s ease-out forwards;
}

.fade-target {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.fade-in {
  opacity: 1;
}




/* 반응형 */

/* 💡 모든 요소의 박스 사이징 정리 */
* {
  box-sizing: border-box;
}

/* 💡 뷰포트 너비 초과 방지 */
html, body {
  overflow-x: hidden; 
  max-width: 100%;
}

/* 💡 공통 레이아웃 반응형 처리 */
.container, .wrapper, .main, body > div {
  max-width: 100%;
  width: 100%;
}

/* 💡 이미지 반응형 */
img {
  max-width: 100%;
  height: auto;
}

/* 💡 고정 width 제한 */
@media (max-width: 768px) {
  .your-fixed-width-class {
    width: 100% !important;
    padding: 0 16px;
  }
}





/* 반응형: 모바일 */
@media (max-width: 600px) {

  .receipt-list li {
    width : 10em;
  }

  .menu-grid {
    margin:0;
  }


  .menu-item p {
    font-size: 1em;
  }

  .view-all-menu-btn {
    font-size: 1.1em;
  }

  .review-section h2 {
    display: flex;
    flex-direction: column; 
    align-items: center;
    text-align: center;
    gap: 0.5em;
    font-size : 3em !important;
    margin-bottom:1em;
  }

  .review-card {
    width:100%;
  }

  .review-content {
    font-size:1em;
  }


  .enter-section p{
    display: none;
  }

  .enter-section h2 {
    display: flex;
    flex-direction: column; /* 세로 정렬 */
    align-items: center;
    text-align: center;
    gap: 0.5em;
    font-size : 3em !important;
  }

  .enter-table {
    width:100%;
    padding-top:1em;
  }

  .enter-section .enter-table img {
    width:95%;
  }

  .cost-section .fade-target{
    padding-top:0;
  }

  .cost-section {
    padding-bottom:4em;
  }

  .cost-section h2 {
    display: flex;
    flex-direction: column; /* 세로 정렬 */
    align-items: center;
    text-align: center;
    gap: 0.5em;
    font-size : 3em !important;
  }

  .cost-section .content-table img{
    padding-top:2em;
    width:100%;
  }

  .contact-section h2 {
    display: flex;
    flex-direction: column; /* 세로 정렬 */
    align-items: center;
    text-align: center;
    gap: 0.5em;
    font-size : 3em !important;

  }

  #inquiry-form {
    margin-right:0em;
    margin-left:0em;
    width:100%;
  }


  


  .interior-content {
    flex-direction: column;         /* 세로로 배치 */
    align-items: center;            /* 가운데 정렬 */
    margin-left: 0;
    font-size: 0.9em;                 /* 글씨 크기 축소 */
    padding: 0 1em;
  }

  .interior-text {
    margin-left: 0;
    text-align: center;
    max-width: 100%;
  }

  .interior-text h2 {
    display: flex;
    flex-direction: column; /* 세로 정렬 */
    align-items: center;
    text-align: center;
    gap: 0.5em;
    font-size : 3em !important;
  }

  .interior-text .desc {
    font-size: 0.95em;
    line-height: 1.6;
  }

  .interior-slider {
    max-width: 100%;
    width: 100%;
    padding: 0 1em;
  }

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


  /* 리뷰 */
  .review-container {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    padding: 0 1em;
  }

  .review-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .review-img {
    margin-right: 0;
    margin-bottom: 0.5em;
    width: 70px;
    height: 70px;
  }

  .review-title {
    font-size: 2em;
  }

  .review-content p {
    font-size: 0.9em;
  }

  .mobile-delete {
    display: none;
  }


  .site-footer {
    padding:1em;
  }

  .footer-info {
    font-size: 0.8em;
  }

  .footer-contact {
    font-size : 1em;
  }

  /* 팝업창 */

  .popup {
    width:90%;
  }

  .popup h2 {
    font-size:2.5em !important;
  }

  .popup .popup-desc {
    font-size: 1.1em;
  }

  .branch-list {
  display: grid;
  grid-template-columns: 1fr;  /* ✅ 한 줄에 1개만 */
  gap: 15px;
  margin-bottom: 1.5em;
}

.branch-item img {
  width: 100%;
  height:4em;
}

.branch-item a p {
  font-size:0.9em;
}

.dont-show {
  font-size: 0.9em;
}

.footer-content .footer-contact a {
  font-size:2em;
}

.franchise-profit-section .receipt-list .show {
  width:10em;
}

.interior-text .desc{
  text-align: left;
  font-size:1em;
  padding-top:1em;
}

/* 문의하기 */
   #inquiry-form {
    width: 90%;
    margin: 0 auto; /* 👉 가운데 정렬 */
    padding: 2em 1em;
  }

  .radio-group,
  .checkbox-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
    margin-bottom: 1.5em;
  }

  .radio-group label,
  .checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5em; /* 👉 버튼과 텍스트 간격 */
    font-size: 1em;
  }

  .radio-group input[type="radio"],
  .checkbox-group input[type="checkbox"] {
    width: 1.1em;
    height: 1.1em;
    margin: 0;
  }

  .contact-section h2 {
    padding: 1em 1em 0 1em;
    text-align: center;
  }

  .logo-img {
    width: 140px;
    height: auto;
  }


.agree-policy {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 1em;
  font-size: 0.9em;
  flex-wrap: wrap; /* 글자가 너무 길어지면 줄바꿈 */
}

.agree-policy input[type="checkbox"] {
  margin: 0;
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
}

.agree-policy label {
  margin: 0;
  line-height: 1.2;
  vertical-align: middle;
}

.receipt2 {
  gap:0.5em;
  margin-top:0;
}

.receipt2 li img {
  width:35em;
}

}



/* 반응형 애니메이션 */
@media (max-width: 600px) {
  .mobile-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .mobile-left.active-mobile-left {
    animation: slideInLeftMobile 0.8s ease-out forwards;
  }

  @keyframes slideInLeftMobile {
    0% {
      opacity: 0;
      transform: translateX(-80px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
}
