@charset "UTF-8";

/* sub공통 */
.sub_visual {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background-color: #000;
}

.sub_hero_inner {
    width: 100%;
    height: 100%;
}

.sub_hero_inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    /* Soft dark tone for consistency */
}

/* Sub Container Layout */
.sub_container {
    max-width: 1455px;
    margin: 0 auto;
    display: flex;
    padding: 60px 0px;
    gap: 50px;
    box-sizing: border-box;
}

/* Sidebar Component */
.sub_sidebar {
    width: 245px;
    flex-shrink: 0;
    background-color: #F8ECD2;
    padding: 25px 20px;
    box-sizing: border-box;
    height: fit-content;
}

.sub_sidebar .sidebar_title {
    border-bottom: 4px solid #442C10;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.sub_sidebar .sidebar_title h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: 24px;
    font-weight: 600;
    color: #534340;
    letter-spacing: 0.02em;
    margin: 0;
}

.sub_sidebar .lnb {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sub_sidebar .lnb li {
    margin-bottom: 10px;
}

.sub_sidebar .lnb li:last-child {
    margin-bottom: 0;
}

.sub_sidebar .lnb li a {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    color: #776e65;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.sub_sidebar .lnb li.active a {
    background-color: #442C10;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-right: 35px;
}

.sub_sidebar .lnb li.active a::after {
    content: '>';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #534340;
    background-color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    font-weight: bold;
}

.sub_sidebar .lnb li:not(.active) a:hover {
    color: #8c2a1c;
}

/* Non-active visual Reservation button */
.sub_sidebar .reservation_btn {
    display: block;
    background-color: #81725F;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 30px;
    letter-spacing: 0.05em;
    border-radius: 2px;
    user-select: none;
    cursor: default;
    opacity: 0.9;
    pointer-events: none;
    /* Disable interaction as requested */
}


/* sub공통 끝 */






/*sub01 */
/* sub_content main */
.sub_content {
    flex-grow: 1;
    width: calc(100% - 295px);
}

.sub_content .breadcrumb {
    font-size: 12px;
    color: #888;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    font-weight: 500;
}

.sub_content .breadcrumb .home_icon {
    display: inline-flex;
    align-items: center;
    color: #AE8C67;
}

.sub_content .content_section {
    margin-bottom: 70px;
}

.sub_content .content_section:last-child {
    margin-bottom: 0;
}

.sub_content .section_title {
    font-family: 'Noto Serif KR', serif;
    font-size: 22px;
    font-weight: 600;
    color: #534340;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.sub_content .section_desc {
    font-size: 17px;
    color: #776e65;
    line-height: 1.65;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    word-break: keep-all;
    white-space: nowrap;
    overflow-wrap: break-word;
}

/* table */
.sub_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-size: 15px;
    border-top: 2px solid #AE8C67;
    border-bottom: 1px solid #AE8C67;
}

.sub_table th,
.sub_table td {
    padding: 12px 15px;
    border-bottom: 1px solid #E4D2BC;
    border-right: 1px solid #E4D2BC;
    text-align: center;
    vertical-align: middle;
    color: #534340;
    line-height: 1.5;
}

.sub_table th:last-child,
.sub_table td:last-child {
    border-right: none;
}

.sub_table thead th {
    background-color: #FAF6EE;
    font-weight: 600;
    color: #534340;
}

.sub_table tbody td.category {
    font-weight: 600;
    color: #534340;
}

.sub_table tbody td.content {
    color: #776e65;
}

/* Section 2 table style override */
.table_type2 tbody td.category {
    background-color: #FAF6EE;
    width: 25%;
}

.table_type2 tbody td.content {
    text-align: left;
    padding-left: 20px;
    width: 75%;
}

/* Images collage sections */
.sub_content .section_img {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04); */
    border-radius: 4px;
    /* transition: transform 0.4s ease, box-shadow 0.4s ease; */
}

.sub_content .section_img:last-child {
    margin-bottom: 0;
}

.sub_content .section_img img {
    width: 100%;
    height: auto;
    display: block;
}





/* sub02 */
.sub02 .sub_sidebar .sidebar_title h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: 21px;
    font-weight: 600;
    color: #442C10;
    letter-spacing: 0.02em;
    margin: 0;
}



.sub02 .sub_content .section_desc {
    font-family: 'Noto Serif KR', serif;
    font-size: 26px;
    font-weight: 500;
    color: #AE8C67;
    line-height: 1.65;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    word-break: keep-all;
    white-space: nowrap;
    overflow-wrap: break-word;
}
.sub02 .sub_content .section_desc span.bold {
    font-weight: bold;
}

.sub02 .sub_content .sub_txt {
    font-family: 'Noto Sans KR', serif;
    font-size: 17px;
    color: #81725F;
    line-height: 1.65;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* sub03 */
.sub03 .sub_sidebar .sidebar_title h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: 21px;
    font-weight: 600;
    color: #442C10;
    letter-spacing: 0.02em;
    margin: 0;
}

.sub03 .sub_content .section_desc {
    font-family: 'Noto Serif KR', serif;
    font-size: 26px;
    font-weight: 500;
    color: #AE8C67;
    line-height: 1.65;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    word-break: keep-all;
    white-space: nowrap;
    overflow-wrap: break-word;
}

.sub03 .sub_content .sub_txt {
    font-family: 'Noto Sans KR', serif;
    font-size: 17px;
    color: #81725F;
    line-height: 1.65;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* sub04 */
.sub04 .sub_sidebar .sidebar_title h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: 21px;
    font-weight: 600;
    color: #442C10;
    letter-spacing: 0.02em;
    margin: 0;
}

.sub04 .sub_content .section_desc {
    font-family: 'Noto Serif KR', serif;
    font-size: 26px;
    font-weight: 500;
    color: #AE8C67;
    line-height: 1.65;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    word-break: keep-all;
    white-space: nowrap;
    overflow-wrap: break-word;
}

.sub04 .sub_content p.sub_txt {
    font-family: 'Noto Sans KR', serif;
    font-size: 17px;
    color: #81725F;
    line-height: 1.65;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* 게시판 css */

.sub04 .content_section .board .photo_bbs .thumb{
    padding-top: 80.8%;
    object-fit: cover;
}
.sub04 .content_section .board .photo_bbs .date {
    display: none;
}

.sub04 .content_section .board .photo_bbs .tit a {
	font-size : 14px;
	font-weight : 400;
}

/* 검색 기능 제거 */
.sub04 .content_section .board .AWbbs_f_search {
    display: none;
}

/* 리스트 버튼 제거 */
.sub04 .content_section .board .bbs_btn {
    display: none;
}

.sub04 .content_section .board .bbs_paging tr td b {
    background: #453C35;
}













/* sub05 */
.sub05 .sub_sidebar .sidebar_title h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: 21px;
    font-weight: 600;
    color: #442C10;
    letter-spacing: 0.02em;
    margin: 0;
}

.sub05 .sub_content .section_desc {
    font-family: 'Noto Serif KR', serif;
    font-size: 26px;
    font-weight: 500;
    color: #AE8C67;
    line-height: 1.65;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    word-break: keep-all;
    white-space: nowrap;
    overflow-wrap: break-word;
}

.sub05 .sub_content p.sub_txt {
    font-family: 'Noto Sans KR', serif;
    font-size: 17px;
    color: #81725F;
    line-height: 1.65;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* 메뉴판 */

.menu_board {
    width: 100%;
    margin-top: 40px;
    font-family: 'Noto Sans KR', sans-serif;
    color: #534340;
}

.menu_cols {
    display: flex;
    gap: 0;
    align-items: flex-start;
}

.menu_col {
    flex: 1;
    border: 1px solid #E4D2BC;
    background-color: #FAFBF0;
    box-sizing: border-box;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.menu_col.col_left {
    border-right: none;
}

/* Menu Header */
.menu_header {
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 1px solid #E4D2BC;
}

.col_left .menu_header {
    background-color: #EAD9B0;
}

.col_right .menu_header {
    background-color: #F4E9DB;
}

.menu_header .header_title {
    font-family: 'Noto Serif KR', serif;
    font-size: 21px;
    font-weight: 600;
    color: #442C10;
    letter-spacing: 0.05em;
}

.menu_header .header_logo img {
    height: 26px;
    width: auto;
    vertical-align: middle;
}

/* Menu Category Section */
.menu_section {
    width: 100%;
}

.menu_sec_title {
    font-family: 'Noto Serif KR', serif;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    padding: 12px 10px;
    color: #442C10;
    margin: 0;
    border-bottom: 1px solid #E4D2BC;
    letter-spacing: 0.02em;
}

.col_left .menu_sec_title {
    background-color: #F0E4C8;
}

.col_right .menu_sec_title {
    background-color: #EDEAC7;
}

/* Menu Items List */
.menu_items {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #FAFBF0;
}

.menu_items li {
    font-size: 15px;
    text-align: center;
    padding: 6px 15px;
    border-bottom: 1px solid #EAE2D2;
    color: #534340;
    font-weight: 400;
    line-height: 1.4;
    transition: background-color 0.2s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.menu_items li.dash {
    color: #ccc;
    font-size: 15px;
}

/* 2-Column Layout for Tea & Brunch */
.menu_grid_2col {
    display: flex;
    width: 100%;
}

.menu_grid_2col .menu_items {
    flex: 1;
}

.menu_grid_2col .menu_items.border_right {
    border-right: 1px solid #EAE2D2;
}

/* Inline list style for Beer & Dessert */
.menu_text_row {
    background-color: #FAFBF0;
    padding: 16px 20px;
    font-size: 14px;
    color: #534340;
    line-height: 1.7;
    text-align: center;
    border-bottom: 1px solid #EAE2D2;
    word-break: keep-all;
}

.menu_col.col_left .menu_section:last-child .menu_items li:last-child,
.menu_col.col_right .menu_section:last-child .menu_items li:last-child {
    border-bottom: none;
}

/* 메뉴판 하단 공지 */
.menu_common_notice {
    margin: 0;
    padding: 9px 20px;
    background-color: #FAFBF0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.notice_content_left {
    flex: 1;
}

.notice_red_warning {
    margin-bottom: 20px;
    text-align: left;
}

.notice_red_warning .red_main_title {
    font-size: 16px;
    font-weight: bold;
    color: #8c2a1c;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.notice_red_warning .red_sub_title {
    font-size: 14px;
    font-weight: bold;
    color: #8c2a1c;
    margin-bottom: 2px;
    letter-spacing: -0.02em;
}

.notice_red_warning .red_sub_desc {
    font-size: 13px;
    color: #81725F;
    letter-spacing: -0.02em;
    padding-left: 12px;
}

.notice_bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 11px;
}

.notice_bullets li {
    font-size: 14px;
    color: #665b50;
    line-height: 1.9;
    position: relative;
    padding-left: 15px;
}

.notice_bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #AE8C67;
    font-weight: bold;
}

.notice_logo_right {
    flex-shrink: 0;
}

.notice_logo_right img {
    width: 65px;
    height: auto;
    display: block;
    margin-top: 160px;
}

/* sub06 */
.sub06 .sub_sidebar .sidebar_title h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: 21px;
    font-weight: 600;
    color: #442C10;
    letter-spacing: 0.02em;
    margin: 0;
}

.sub06 .sub_content .section_desc {
    font-family: 'Noto Serif KR', serif;
    font-size: 26px;
    font-weight: 500;
    color: #AE8C67;
    line-height: 1.65;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    word-break: keep-all;
    white-space: nowrap;
    overflow-wrap: break-word;
}

.sub06 .sub_content .sub_txt {
    font-family: 'Noto Sans KR', serif;
    font-size: 17px;
    color: #81725F;
    line-height: 1.65;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.sub06 .content_section .board .bbs_paging tr td b {
    background: #453C35 !important;
}

/* sub07 */
.sub07 .sub_sidebar .sidebar_title h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: 21px;
    font-weight: 600;
    color: #442C10;
    letter-spacing: 0.02em;
    margin: 0;
}

.sub07 .sub_content .section_desc {
    font-family: 'Noto Serif KR', serif;
    font-size: 26px;
    font-weight: 500;
    color: #AE8C67;
    line-height: 1.65;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    word-break: keep-all;
    white-space: nowrap;
    overflow-wrap: break-word;
}

.sub07 .sub_content .sub_txt {
    font-family: 'Noto Sans KR', serif;
    font-size: 17px;
    color: #81725F;
    line-height: 1.65;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.sub07 .content_section .board .bbs_paging tr td b {
    background: #453C35 !important;
}

/* sub08 */
.sub08 .sub_sidebar .sidebar_title h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: 21px;
    font-weight: 600;
    color: #442C10;
    letter-spacing: 0.02em;
    margin: 0;
}

.sub08 .sub_content .section_desc {
    font-family: 'Noto Serif KR', serif;
    font-size: 26px;
    font-weight: 500;
    color: #AE8C67;
    line-height: 1.65;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    word-break: keep-all;
    white-space: nowrap;
    overflow-wrap: break-word;
}

.sub08 .sub_content .sub_txt {
    font-family: 'Noto Sans KR', serif;
    font-size: 17px;
    color: #81725F;
    line-height: 1.65;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    word-break: keep-all;
    overflow-wrap: break-word;
}
.sub08 .content_section .board .bbs_paging tr td b {
    background: #453C35 !important;
}

/* 글쓰기버튼 css */
.sub08 .content_section .board td a {
	border : 1px solid #ddd;
	line-height : 31px;
	font-size : 14px;
    padding : 0 12px;
	box-sizing : border-box;
	display : inline-block;
	cursor : pointer;
}



/* sub09 */
.sub09 .sub_sidebar .sidebar_title h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: 21px;
    font-weight: 600;
    color: #442C10;
    letter-spacing: 0.02em;
    margin: 0;
}

.sub09 .sub_content .section_desc {
    font-family: 'Noto Serif KR', serif;
    font-size: 26px;
    font-weight: 500;
    color: #AE8C67;
    line-height: 1.65;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    word-break: keep-all;
    white-space: nowrap;
    overflow-wrap: break-word;
}

.sub09 .sub_content .sub_txt {
    font-family: 'Noto Sans KR', serif;
    font-size: 17px;
    color: #81725F;
    line-height: 1.65;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    word-break: keep-all;
    overflow-wrap: break-word;
}