@charset "utf-8";

:root {
    --color-primary: #4a7c59;
    --color-primary-dark: #3a6346;
    --color-secondary: #f4f7f5;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.flex {
    display: flex;
}

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

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

.gap-4 {
    gap: 1rem;
}

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

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.text-xl {
    font-size: 1.25rem;
}

.font-bold {
    font-weight: 700;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

.btn-outline {
    border: 1px solid #d1d5db;
    color: var(--color-text);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-primary);
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e5e7eb;
    transition: color 0.2s;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.logo img {
    height: 40px;
    width: auto;
}

.nav ul {
    display: flex;
    gap: 2rem;
}

.nav a {
    font-weight: 500;
    color: var(--color-text);
    transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 6s ease-out;
    transform: scale(1);
}

.slide.active {
    opacity: 1;
    transform: scale(1.1);
}

/* Overlay to make text readable */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 10;
    /* Higher than overlay */
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-subtitle {
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.about-features {
    margin-top: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.check-icon {
    color: var(--color-primary);
    font-weight: bold;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    /* Reduced height */
    background-color: #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background-color: #f9fafb;
    transition: transform 0.2s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background-color: #e6f0eb;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.benefit-desc {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background-color: #f4f7f5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stars {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-primary);
    text-align: right;
}

/* Footer (Original Modern) */
.footer {
    background-color: #1f2937;
    color: #f3f4f6;
    padding-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-desc {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.social-links a:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 2rem 0;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Photo Gallery (New) */
.photo-gallery {
    background-color: #ffffff;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.photo-item {
    overflow: hidden;
    border-radius: 0.5rem;
    aspect-ratio: 1 / 1;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.photo-item img:hover {
    transform: scale(1.1);
}

/* Links Grid (Formerly Gallery) */
.gallery-links {
    background-color: #f9fafb;
}

/* Specific grid for Links section: 2x2 on desktop */
#links .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Force 2 columns */
    gap: 1.5rem;
    max-width: 1000px;
    /* Limit width to keep items from getting too wide */
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    height: 250px;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.gallery-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-btn {
    border-color: white;
    color: white;
}

.gallery-btn:hover {
    background-color: white;
    color: var(--color-text);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    /* Reset grid for mobile */
    #links .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Right Quick Menu (Floating Sidebar) */
#right_quick {
    position: absolute;
    top: 220px;
    right: 50%;
    margin-right: -730px;
    z-index: 999;
    width: 100px;
}

.quick_kakao {
    width: 100px;
    height: 100px;
    background: #ffeb00;
    border-radius: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    color: #3c1e1e;
    text-decoration: none;
    transition: transform 0.2s;
}

.quick_kakao:hover {
    transform: scale(1.05);
    text-decoration: none;
    color: #3c1e1e;
}

.quick_kakao span {
    font-family: 'NotoKrB';
    font-size: 13px;
    display: block;
    margin-top: 5px;
}

.quick_menu_box {
    width: 100px;
    border: 1px solid #ddd;
    background: #fff;
    margin-top: 10px;
    text-align: center;
}

.quick_header {
    background: #fff;
    padding: 10px 0;
    font-size: 13px;
    font-family: 'NotoKrM';
    color: #333;
    border-bottom: 1px solid #eee;
}

.quick_body {
    padding: 15px 0;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cart_icon {
    width: 30px;
    height: auto;
    margin-bottom: 5px;
    opacity: 0.6;
}

.cart_badge {
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 11px;
    font-weight: bold;
    display: inline-block;
}

.btn_top {
    display: block;
    width: 100px;
    height: 40px;
    line-height: 40px;
    background: #c31d22;
    color: #fff;
    text-align: center;
    font-family: 'NotoKrB';
    font-size: 14px;
    text-decoration: none;
}

.btn_top:hover {
    color: #fff;
    text-decoration: none;
    background: #a5181c;
}

/* =========================================
   LEGACY LAYOUT RESTORATION (USER REQUIRED)
   ========================================= */

/* Menu Area (Header) - Flexbox Layout */
.menu_area {
    width: 100%;
    height: 80px;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    /* Flex layout */
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    /* Horizontal padding */
    box-sizing: border-box;
}

/* Sub Logo */
.sub_logo {
    order: 1;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.sub_logo li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sub_logo h2 {
    display: block;
    /* Show text */
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    margin: 0;
    padding: 0;
}

/* Menu Container */
.menu {
    order: 2;
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.menu_tab {
    height: 100%;
    display: flex;
    align-items: center;
}

/* GNB Navigation */
.gnb {
    display: flex;
    gap: 50px;
    /* Adjust gap between menu items */
}

.gnb li {
    position: relative;
    /* Anchor for submenu */
}

.gnb li a {
    font-size: 18px;
    color: #fff;
    /* White text for transparent header */
    font-weight: 500;
    text-decoration: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    display: block;
}

.gnb li a:hover,
.gnb li a.on_menu_active {
    color: #fff;
    font-weight: 700;
    border-bottom: 2px solid #fff;
    /* White underline */
}

/* Subpage Menu Style Override */
body:not(.main-page) .gnb>li>a {
    color: #333;
    /* Black text for subpages */
    text-shadow: none;
}

body:not(.main-page) .gnb>li>a:hover,
body:not(.main-page) .gnb>li>a.on_menu_active {
    color: #000;
    border-bottom: 2px solid #000;
}

/* Ensure subpage submenu items are white (visible on dark dropdown) */
body:not(.main-page) .gnb ul li a {
    color: #fff !important;
}

body:not(.main-page) .gnb ul li a:hover {
    color: #fff !important;
    /* User requested white adjustment */
    font-weight: bold;
}

/* Submenu Styles - New Addition for Stability */
.gnb ul {
    position: absolute;
    top: 60px;
    /* Start position */
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    border-radius: 5px;
    z-index: 9999;
    display: none;
    /* Hidden by default */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gnb ul li {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 5px 0;
}

.gnb ul li a {
    font-size: 14px;
    color: #fff;
    display: block;
    padding: 5px 0;
    text-shadow: none;
    font-weight: 500;
    border: none !important;
    /* Remove bottom border from parent styles */
}

.gnb ul li a:hover {
    color: #ffeb00;
    font-weight: bold;
    border: none !important;
}


/* Menu Icons (SNS) */
.menu_icon {
    order: 3;
    display: flex;
    align-items: center;
}

.menu_icon ul {
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.menu_icon ul li {
    list-style: none;
    /* Remove position relaive from general li if needed, but .gnb li is specific */
}


/* Subvisual (Hero Section) */
.subvisual {
    width: 100%;
    height: 350px;
    background: url('../images/subvisual01.jpg') no-repeat center top;
    background-size: cover;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* Overlay for text readability */
.subvisual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.subvisual_text01 {
    position: relative;
    /* Relative to flex container */
    z-index: 10;
}

.subvisual_text01 h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-family: 'NotoKrB', sans-serif;
}

.title_text01 span {
    border-bottom: 3px solid #c31d22;
    padding-bottom: 5px;
}

.title_text02 {
    font-size: 18px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-family: 'NotoKrL', sans-serif;
}

/* Clearfix for menu_area if needed */
.menu_area::after {
    content: "";
    display: table;
    clear: both;
}

/* Footer (Legacy Subpage Footer) */
#copy_bt {
    width: 100%;
    background: #f9f9f9;
    border-top: 1px solid #ddd;
    padding: 15px 0;
}

.copy_bt_fix {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.u_left {
    display: flex;
    gap: 15px;
}

.u_left li {
    color: #666;
    font-size: 13px;
    list-style: none;
}

.u_right {
    display: flex;
    gap: 10px;
}

.u_right li {
    list-style: none;
}

#copy {
    width: 100%;
    background: #333;
    color: #bbb;
    padding: 20px 0;
    /* Reduced padding */
}

.copy_fix {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.copy01 {
    flex: 2;
    font-size: 13px;
    line-height: 1.8;
}

.copy01_2 {
    color: #fff;
    font-weight: bold;
    margin-top: 15px;
}

.copy02,
.copy03 {
    flex: 1;
}

.copy02_title span,
.copy03_title span {
    color: #c31d22;
}

.copy02_title,
.copy03_title {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
    display: block;
}

.copy02_p01 {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
}

.copy02_p02,
.copy03_p01,
.copy03_p02 {
    font-size: 13px;
    line-height: 1.6;
}

/* Wrap Reset to allow full width backgrounds */
/* Wrap Reset to allow full width backgrounds */
#wrap {
    width: 100%;
    overflow-x: hidden;
}

/* Floating Talk Button (Image Based) */
.floating_talk {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 100px;
    height: 100px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    display: block;
}

.floating_talk a {
    display: block;
    width: 100%;
    height: 100%;
}

.floating_talk img {
    display: block !important;
    width: 100px;
    height: 100px;
}

.floating_talk::before,
.floating_talk::after {
    display: none !important;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating_talk:hover {
    transform: scale(1.05);
}

/* Right Quick Menu (Hidden globally) */
#right_quick {
    display: none !important;
}

/* Main Page Transparent Header */
.main_page_header .menu_area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    /* Very subtle tint */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 5000;
}

.main_page_header .gnb li a {
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.main_page_header .sub_logo h2 {
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Subpage Clean Header (White) - Default is already white in style.css but ensuring consistency */
.sub_page_header .menu_area {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

/* Restored Hero CSS */
.main_visual_container {
    position: relative;
    width: 100%;
    height: 969px;
    background: #fff;
    z-index: 1;
}

.fullBgImg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 969px;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}
/* =========================================
   Restored Main Page Content CSS (Moved from index.html)
   ========================================= */

/* Main Content 01 (Best Items) */
table.not_style_area {
    padding: 0;
    margin: 0;
    text-align: left;
}

td.borders2 {
    border: 2px solid transparent;
    background: transparent;
}

td div.l_img_area {
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.l_img_area .best {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

td div.l_img_area a {
    height: 380px;
    padding: 0;
    margin: 0;
    display: block;
}

td div.l_img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

td div.l_subject_area {
    width: 380px;
    line-height: 16px;
    text-align: center;
    padding: 20px 0 15px 0;
}

td div.l_subject_area p {
    width: 380px;
    color: #444444;
    font-size: 18px;
    padding-left: 0;
}

td div.l_amount_area {
    width: 380px;
    line-height: 16px;
    text-align: center;
    padding: 0 0 25px 0;
}

td div.l_amount_area span.span01 {
    width: 380px;
    color: #bc171d;
    font-size: 20px;
    padding-left: 0;
    font-family: 'NotoKrB';
}

td div.l_amount_area span.span02 {
    color: #bc171d;
    font-size: 20px;
}

td.td_view_area {
    width: 140px;
    line-height: 40px;
    font-size: 16px;
}

a.reser_bt03 {
    width: 100%;
    height: 40px;
    float: left;
    text-align: center;
    background: #c31d22;
    color: #ffffff;
    display: block; /* Ensure it behaves like a button */
    line-height: 40px;
}

.scale_area {
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.scale_area:hover {
    transform: scale(1.1);
}

.main_content01_title {
    width: 1200px;
    height: 146px;
    text-align: center;
    margin: 0 auto;
}

.main_content01_title p.title_01 {
    font-size: 40px;
    color: #2c2c2c;
    font-family: 'NotoKrB';
    padding-top: 38px;
}

.main_content01_title p.title_02 {
    font-size: 18px;
    color: #a19686;
}

p.title_02 span {
    color: #bc171d;
}

/* Main Content 02 (Banner) */
.main_content02 {
    width: 100%;
    height: 140px;
    background: #f8f1e9;
    text-align: center;
    margin: 0 auto;
}

.main_content02 .main_content02_fix {
    width: 1200px;
    height: 140px;
    background: url(../images/main_banner_01_new.jpg) no-repeat 50% 0; /* Updated path relative to css file */
    margin: 0 auto;
}

.main_content02_fix p.main_content02_1_text {
    padding-left: 196px;
    padding-top: 36px;
    color: #331e01;
    font-family: 'NotoKrM';
    font-size: 18px;
    text-align: left;
}

.main_content02_fix p.main_content02_2_text {
    padding-left: 196px;
    padding-top: 5px;
    color: #331e01;
    font-family: 'yg-jalnan';
    font-size: 30px;
    text-align: left;
}

p.main_content02_2_text span {
    color: #879402;
    font-family: 'yg-jalnan';
    font-size: 30px;
}

/* Main Content 03 (Promo Grid) */
.main_content03 {
    width: 1200px;
    margin: 0 auto;
    height: 600px;
    display: flex;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.main_content03_1 {
    flex: 1;
    background: url(../images/main_banner_02_new.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.main_content03_2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main_content03_2_1 {
    flex: 1;
    background: url(../images/main_banner03_new.png) no-repeat center center;
    background-size: cover;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.main_content03_2_2 {
    flex: 1;
    background: url(../images/main_banner04_new.png) no-repeat center center;
    background-size: cover;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.overlay_text_left {
    position: absolute;
    top: 50px;
    left: 40px;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    font-family: 'NotoKrM';
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.a_style {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.p_bt01,
.p_bt02,
.p_bt03 {
    position: absolute;
    bottom: 30px;
    left: 40px;
    background: rgba(195, 29, 34, 0.9);
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    font-family: 'NotoKrM';
    transition: all 0.3s;
}

.p_bt01:hover,
.p_bt02:hover,
.p_bt03:hover {
    background: #a5181c;
}

/* Main Content 04, 06 (Intro & Text) */
.main_content04 {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 50px;
}

.img_bg01 {
    position: absolute;
    top: 0;
    right: 80%;
}

.img_bg02 {
    position: absolute;
    bottom: -50px;
    left: 80%;
}

.img_text01 {
    font-family: 'Caveat', cursive;
    font-size: 60px;
    color: #c31d22;
    text-align: center;
    padding-top: 120px;
}

.main_content06 {
    text-align: center;
    margin-top: 20px;
}

.main_content06_text {
    font-size: 22px;
    color: #333;
    font-family: 'NotoKrM';
    line-height: 1.6;
}

.main_content06_text span {
    color: #666;
    font-size: 16px;
    display: block;
    margin-top: 10px;
    font-family: 'NotoKrL';
}
