@charset "utf-8";

/*----------------------------------basic----------------------------------*/
.center {
    text-align: center !important;
}

.left {
    text-align: left !important;
}

.right {
    text-align: right !important;
}

.cl-b {
    clear: both;
}

.fl-l {
    float: left;
}

.fl-r {
    float: right;
}

.fw700 {
    font-weight: 700 !important;
}

.line15 {
    line-height: 1.5em;
}
.line28 {
    line-height: var(--f28);
}

.pre-line {
    white-space: pre-line;
}

.keep-all {
    word-break: keep-all;
}

.text-under {
    text-decoration: underline;
}

.gap0 {
    gap: 0 !important;
}

.wp10 {
    width: 10% !important;
}

.wp20 {
    width: 20% !important;
}

.wp30 {
    width: 30% !important;
}

.wp40 {
    width: 40% !important;
}

.wp50 {
    width: 50% !important;
}

.wp60 {
    width: 60% !important;
}

.wp70 {
    width: 70% !important;
}

.wp80 {
    width: 80% !important;
}

.wp100 {
    width: 100% !important;
}

.pd5 {
    padding: 5px 0;
}

.pd10 {
    padding: 10px 0;
}

.pd20 {
    padding: 20px 0;
}

.pd30 {
    padding: 30px 0;
}

.pd40 {
    padding: 40px 0;
}

.mt0 {
    margin-top: 0 !important;
}

.mt10 {
    margin-top: 10px;
}

.mt16 {
    margin-top: 16px !important;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt32 {
    margin-top: 32px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mt50 {
    margin-top: 50px !important;
}

.mt55 {
    margin-top: 55px !important;
}

.mt60 {
    margin-top: 60px !important;
}

.mt70 {
    margin-top: 70px !important;
}

.mt80 {
    margin-top: 80px !important;
}

.mt90 {
    margin-top: 90px !important;
}

.mt95 {
    margin-top: 95px !important;
}

.mt100 {
    margin-top: 100px !important;
}

.mt115 {
    margin-top: 115px !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mb50 {
    margin-bottom: 50px !important;
}

.mb60 {
    margin-bottom: 60px !important;
}

.mb70 {
    margin-bottom: 70px !important;
}

.mb100 {
    margin-bottom: 100px !important;
}

.m80 {
    margin: 80px auto;
}

.pb5 {
    padding-bottom: 5px !important;
}

.pb10 {
    padding-bottom: 10px !important;
}

.pb20 {
    padding-bottom: 20px;
}

.pb30 {
    padding-bottom: 30px;
}

.pb40 {
    padding-bottom: 40px;
}

.pb50 {
    padding-bottom: 50px;
}

.pb70 {
    padding-bottom: 70px;
}

.pt0 {
    padding-top: 0 !important;
}

.pt5 {
    padding-top: 5px;
}

.pt10 {
    padding-top: 10px;
}

.pt20 {
    padding-top: 20px;
}

.pt30 {
    padding-top: 30px;
}

.pt50 {
    padding-top: 50px;
}

.pt60 {
    padding-top: 60px;
}

.pt70 {
    padding-top: 70px;
}
.pd50100 {
    padding: 50px 100px !important;
}

.img100 {
    width: 100%;
}

.red {
    color: var(--red) !important;
}

.blue {
    color: var(--blue) !important;
}

.orange {
    color: var(--main-color2) !important;
}

.main-color {
    color: var(--main-color);
}

.f-layout {
    font-weight: 600;
    display: block;
    padding: 16px 0;
}

.hidden {
    display: none;
}

/* div:empty {
    padding: 15px 0;
} */

select {
    appearance: none;
    -webkit-appearance: none;
    color: #333;
    background: url('/images/ic_under.svg?v=1') center right 5px no-repeat;
    background-size: 16px 9px;
}

select option[value=""][disabled] {
    display: none;
}

select[disabled] {
    opacity: 1;
    background-image: none;
}

/*common*/
.common-tit {
    width: 100%;
    text-align: center;
    color: #000;
    margin: 70px 0;
    z-index: 1;
    position: relative;
    padding-top: 70px;
}

.common-tit.sub {
    color: #fff;
    padding-top: 0;
}

.common-tit h4 {
    font-family: var(--font-en);
    font-size: var(--f20);
    padding-bottom: 20px;
    text-transform: uppercase;
    font-weight: 500;
}

.common-tit h2 {
    font-size: var(--f36);
    letter-spacing: -0.9px;
    font-weight: 500;
}

.common-tab-wrap {
    width: 100%;
    line-height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #ccc;
    background: #fff;
    z-index: 1;
    position: relative;
    gap: 40px;
}

.common-tab-wrap a {
    text-align: center;
    position: relative;
    transition: color .2s ease-in-out;
    font-size: var(--f18);
    color: var(--default-color);
}

.common-tab-wrap a.on {
    font-weight:700;
    color:var(--default-color);
}

.common-tab-wrap a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--default-color);
    transition: width .2s ease-in-out;
}

.common-tab-wrap a:hover::before,
.common-tab-wrap a.on::before {
    width: 100%;
}

.common-tab-wrap a:hover,
.common-tab.container-wrap a.on {
    font-weight: 600;
    color: #0D0D0D;
}

.container {
    width: 1200px;
    margin: auto;
    position: relative;
    padding-bottom: 90px;
}

.normal-pop {
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80%;
    /*min-height: 500px;*/
    padding: 40px 16px 36px;
    background-color: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: -1px;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}
.normal-pop.alarm {
    max-width: 350px;
}

/* 팝업 공통 버튼 */
.pop-btn {
    margin: 16px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pop-btn a {
    flex: 1;
    background-color: #DCDCDC;
    line-height: 46px;
    text-align: center;
    font-size: var(--f18);
    letter-spacing: -0.7px;
    color: #666;
    max-width: 140px;
}

.pop-btn a.on {
    background-color: var(--sub-color);
    color: #fff;
}

.title-bar {
    font-size: var(--f28);
    color: #292929;
    letter-spacing: -0.48px;
    text-align: center;
    position: relative;
    font-weight: 500;
    margin: 80px 0 30px;
}

.title-bar::before {
    content: '';
    height: 3px;
    width: 38px;
    background-color: var(--sub-color);
    display: inline-block;
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
}

.btn-pop-wrap {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 32px;
}

.btn-pop-wrap a {
    flex-shrink: 1;
    display: block;
    background-color: #DCDCDC;
    flex-basis: 180px;
    line-height: 46px;
    text-align: center;
    font-size: var(--f18);
    letter-spacing: -0.7px;
    color: #707070;
}

.btn-pop-wrap a.on {
    background-color: var(--sub-color);
    color: #fff;
}

.btn-basic-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    gap: 20px;
}

.btn-basic-wrap a {
    flex: 1;
    max-width: 197px;
    background-color: #ddd;
    color: #666;
    font-size: var(--f20);
    line-height: 60px;
    text-align: center;
}

.btn-basic-wrap a.on {
    background-color: var(--sub-color);
    color: #fff;
}

.pagination {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 2px;
}

.pagination li {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.pagination li.on {
    background-color: var(--main-color);
}
.pagination li.on button{
    color:#fff;
}

.layout-bg {
    background-repeat: no-repeat;
    width: 100%;
    height: 444px;
    background-size: 100% 380px;
    padding-top: 80px;
    position: relative;
    margin-bottom: 64px;
}
.layout-bg:before {
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:332px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
    pointer-events: none;
}

.layout-bg-terms {
    background-repeat: no-repeat;
    width: 100%;
    height: 380px;
    background-size: 100% 380px;
    padding-top: 80px;
    position: relative;
    margin-bottom: 64px;
}
.layout-bg-terms:before {
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    padding-top: 60px;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
}

.breadcrumb li {
    position: relative;
    border-right: 1px solid #A6A6A6;
}

.breadcrumb li.home {
    padding-right: 10px;
}

.breadcrumb .dropdown-btn {
    width: 150px;
    padding: 4px 8px;
    cursor: pointer;
    text-align: left;
    position: relative;
    color: #fff;
}

.breadcrumb .dropdown-btn::after {
    content: '▼';
    position: absolute;
    color: #fff;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--f8);
}

.breadcrumb .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 150px;
    max-height: 300px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    margin: 4px 0 0;
    z-index: 10;
}

.breadcrumb .dropdown-menu.open {
    display: block;
}

.breadcrumb .dropdown-menu li {
    padding-right: 0;
    border-right: 0;
}

.breadcrumb .dropdown-menu li a {
    display: block;
    padding: 10px 6px;
    font-size: var(--f16);
}

.breadcrumb .dropdown-menu li a:hover {
    background: #f0f0f0;
    font-weight: 600;
}

/* 브레드크럼 마진 삭제 */
.breadcrumb-mb0 .layout-bg {
    margin-bottom: 0;
}

.custom-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    background: url('/images/ic_check_off.svg?v=1') no-repeat center center;
    background-size: 20px 20px;
    border: none;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
}

.custom-checkbox:checked {
    background: url('/images/ic_check_on.svg?v=1') no-repeat center center;
    background-size: 20px 20px;
}
.custom-checkbox.round {
    border-radius: 50%;
}

/* 예약안내 - 실시간예약 */
.calendar-wrap {
    width: 100%;
    margin-top: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0 20px;
}

.calendar-section {
    flex-basis: 370px;
    margin: 0 15px;
}

.calendar-box {
    width: 100%;
    position: relative;
}

.calendar-top {
    width: 100%;
    position: relative;
}

.calendar-top button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.calendar-top button.left {
    left: 57px;
    color: #CBCBCB;
}

.calendar-top button.right {
    right: 57px;
    color: var(--default-color);
}

.calendar-tit {
    font-size: var(--f24);
    line-height: 35px;
    font-weight: 400;
    color: #303030;
    text-align: center;
}

.calendar-box table {
    width: 100%;
    min-height: 330px;
    margin: 30px 0 46px;
    position: relative;
    z-index: 0;
    font-size: var(--f18);
}

.calendar-box table thead th {
    font-weight: 400;
    color: var(--default-color);
    padding: 15px 0;
    font-size: var(--f14);
}

.calendar-box table thead th:first-child {
    color: var(--red);
}

.calendar-box table thead th:last-child {
    color: var(--blue);
}

.calendar-box table tbody td {
    color: #ccc;
    padding: 5px 0;
    text-align: center;
    font-weight: 500;
    line-height: 1.5em;
    position: relative;
    vertical-align: middle;
    height: 53px;
}

.calendar-box table tbody td.possible {
    color: #292929;
    cursor: pointer;
    vertical-align: baseline;
}

.calendar-box table tbody td.possible:first-child {
    color: #FF3D40;
}

.calendar-box table tbody td.possible:last-child {
    color: #1075ce;
}

.calendar-box table tbody td.choice {
    font-weight: 400;
    color: #fff !important;
    cursor: pointer;
}

.calendar-box table tbody td.choice::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    background-color: var(--sub-color);
    z-index: -1;
}

.calendar-box table tbody td.choice .tee,
.calendar-box table tbody td.possible .tee {
    position: absolute;
    font-size: var(--f12);
    color: var(--default-color);
    border-radius: 5px;
    line-height: 20px;
    width: 55px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    letter-spacing: -0.26px;
    z-index: 10;
    font-weight: 400;
}

.calendar-box table tbody td.possible.choice .tee {
    color: #fff;
}

.calendar-box table tbody td.impossible::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: #efefef;
    z-index: -1;
}

.calendar-box table tbody td.holiday {
    color: var(--red);
}
.reser-sub-text{
    text-align: right;
    padding: 12px 0 8px;
    font-weight: 400;
    letter-spacing: -0.56px;
    font-size: var(--f14);
}
.reser-sub-text span{
    font-weight: 500;
    margin-right: 5px;
}

.calendar-info {
    margin: 44px 0 0;
    word-break: keep-all;
    line-height: 1.8em;
    border: 1px solid #C2C2C2;
    border-radius: 15px;
    padding: 30px 60px;
}

.calendar-info p {
    padding-left: 10px;
}

.info-section {
    flex: 1;
    height: 100%;
}

.reservation-info-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 64px;
    height: 90px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #cbcbcb;
    margin-bottom: 35px;
}

.reservation-info-box span {
    font-weight: 700;
    margin-right: 8px;
}

.tbl-reser-head {
    width: 100%;
    border-top: 2px solid var(--default-color);
    font-weight: 400;
    color: #363636;
    font-size: var(--f16);
}

.tbl-reser-head thead th {
    text-align: center;
    vertical-align: middle;
    background-color: #fafafa;
    border-bottom: 1px solid #cbcbcb;
    padding: 10px 0;
    font-weight: 500;
    position: relative;
    z-index: 0;
    height: 50px;
}

.tbl-reser-head thead th::after {
    content: '';
    width: 1px;
    height: 25px;
    background-color: #cbcbcb;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.tbl-reser-head thead th:last-child::after {
    display: none;
}

.tab-reser-time {
    width: 100%;
}

.tab-reser-time ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 5px;
}

.tab-reser-time li {
    text-align: center;
    flex: 1;
    background-color: #efefef;
    line-height: 40px;
    color: #707070;
    border-radius: 8px 8px 0 0;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
}

.tab-reser-time li.on {
    background-color: var(--main-color);
    color: #fff;
}

.reservation-tooltip {
    padding: 16px 0 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: var(--f14);
}

.reservation-tooltip p {
    display: inline-block;
    margin-right: 10px;
}

.reservation-tooltip p b {
    font-weight: 600;
    margin-right: 15px;
}

.reservation-tooltip em {
    display: inline-flex;
    align-items: center;
}

.no-caddy {
    width: 90%;
    max-width: 50px;
    font-size: var(--f12);
    color: #fff;
    background-color: #F48A12;
    border-radius: 10px;
    display: block;
    text-align: center;
    line-height: 20px;
    margin: 0 auto 4px;
}

.tbl-overflow {
    max-height: 770px;
    overflow-y: auto;
    border-bottom: 1px solid #cbcbcb;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.tbl-overflow::-webkit-scrollbar {
    width: 2px;
}

.tbl-overflow::-webkit-scrollbar-thumb {
    height: 2%;
    background: var(--main-color);
    border-radius: 10px;
}

.tbl-overflow::-webkit-scrollbar-track {
    background: #ddd;
}

.tbl-reser {
    width: 100%;
    font-weight: 400;
    color: #363636;
}

.tbl-reser tr {
    border-bottom: 1px solid #cbcbcb;
}

.tbl-reser th {
    position: relative;
    text-align: center;
    vertical-align: middle;
    background-color: #fafafa;
    padding: 13px 0;
    font-weight: 500;
    word-break: keep-all;
}

.tbl-reser td {
    text-align: center;
    padding: 6px 0;
    vertical-align: middle;
    word-break: keep-all;
}

.tbl-reser td a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    width: 90%;
    max-width: 80px;
    min-height: 30px;
    margin: 6px 5px;
    text-align: center;
    border-radius: 5px;
    padding: 6px 0;
    background-color: var(--sub-color);
    color: #fff;
}

/*.tbl-reser td a:hover {
    background-color: var(--sub-color);
    color: #fff;
}*/

.tbl-reser td a b {
    font-size: var(--f12);
    color: var(--red);
    display: none;
}

.tbl-reser td a:hover b {
    color: #fff;
}

.pop-reser-text {
    background-color: #fafafa;
    padding: 30px;
    line-height: 1.5em;
    font-size: var(--f14);
    margin: 24px 0;
}

.pop-reser-text b {
    font-weight: 600;
}

.w90m56{
    margin-top: 96px;
}

/* //reservation */

/* 조인방(조인) */
.text-list-gray {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 16px;
}
.text-list-gray li {
    position: relative;
    padding-left: 20px;
    line-height: 28.8px;
}
.text-list-gray li span{
    font-weight: 700;
}
.text-list-gray li:before {
    content: '';
    position: absolute;
    top: 12px;
    left: 8px;
    width: 3px;
    height: 3px;
    background: var(--default-color);
    border-radius: 50%;
}
.text-list-gray.align-center{
    text-align: center;
    justify-content: center;
    display: flex;
    font-size: var(--f20);
    font-weight: 500;
}

.join-list {
    position: relative;
    width: 100%;
    margin-top: 36px;
    border-top: 1px solid #ddd;
}

.join-list li {
    border-bottom: 1px solid #ddd;
    width: 100%;
    min-height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    transition: .1s all ease;
    gap: 0 15px;
}

.join-list li:hover {
    background-color: #f4f4f4;
}

.join-list .title-area {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0 15px;
    flex: 1;
    font-size: var(--f18);
}

.join-list .title-area b {
    flex-basis: 90px;
    font-size: var(--f16);
    text-align: center;
    font-weight: 500;
}

.join-list .title-area b span {
    display: block;
    border-radius: 5px;
    background: var(--sub-color);
    text-align: center;
    line-height: 30px;
    color: #fff;
    font-size: var(--f14);
}
.join-list li a .re {
    font-weight: 700;
    color: var(--sub-color);
    margin-left: 5px;
    text-decoration: none !important;
}

.join-list .title-area strong {
    color: var(--sub-color);
}

.join-list .date {
    flex-basis: 280px;
    text-align: right;
    color: #707070;
}

.join-list li .title {
    flex: 1;
    display: block;
    line-height: 1.3em;
}

.join-list li:hover a span {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.join-write-btn{
    width: 100%;
    text-align: center;
}
.join-write-btn a {
    background: var(--sub-color);
    color: #fff;
    font-size: var(--f20);
    font-weight: 500;
    padding: 20px 0;
    min-width: 197px;
    display: inline-block;
    text-align: center;
}

/* 조인글쓰기 */
.join-select{
    background: #fff url("/images/ic_join_under.svg") center right 16px no-repeat;
    background-size: 16px 8px;
    padding: 0 16px;
    line-height: 40px;
    border: 1px solid #ccc;
    flex: 1;
}
.input-width {
    width: 224px;
}

/* 조인 뷰페이지 */
.join-btn-list {
    display: flex;
    margin: 37px 0 80px;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
}
.join-btn-list a {
    flex: 0 1 197px;
    padding: 18px 0;
    font-size: var(--f20);
    color: #707070;
    background: #dcdcdc;
}
.join-btn-list a.del {
    background: #fff;
    border: 1px solid #dcdcdc;
}
.join-btn-list a.list {
    background: #5b5b5b;
    color: #fff;
    border: 1px solid #5b5b5b;
}
/* 조인댓글리스트 */
.comments-list {
    background: #fafafa;
    padding: 32px;
    color: #707070;
}
.comments-list h1 {
    color: #000;
    font-size: var(--f20);
    position: relative;
    font-weight: 500;
    padding-left: 22px;
}
.comments-list h1:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000;
}
.comments-list .title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.comments-list .text {
    margin-top: 18px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
}
.comments-list .text p {
    flex: 1;
    padding: 0 23px;
    color: #000;
    line-height: 18px;
}
.comments-list .text textarea {
    flex: 1;
    padding: 0 23px;
    border: 1px solid #d2d2d2;
    background: #fff;
    height: 80px;
}

.comments-list .comments {
    border-bottom: 1px solid #dadada;
    padding: 16px 0 24px;
}
.comment-btn {
    display: flex;
    gap: 13px;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.comment-btn a {
    background: #dcdcdc;
    padding: 15px 0;
    text-align: center;
    font-size: var(--f18);
    flex: 0 0 100px;
    min-width: 100px;
}
.comment-btn a.del {
    background: #fff;
    border: 1px solid #dcdcdc;
}

/* 조인댓글작성 */
.comment {
    background: #fafafa;
    padding: 48px 32px;
    margin-top: 40px;
    color: #707070;
}
.comment .title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.comment h1 {
    color: #000;
    font-size: var(--f20);
    position: relative;
    font-weight: 500;
    padding-left: 22px;
}
.comment h1:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000;
}

.c-text {
    border-bottom: 1px solid #dadada;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 16px 0 13px;
    position: relative;
    gap: 20px;
}
.c-text textarea {
    width: 100%;
    height: 95px;
    background: #fff;
    border: 1px solid #d2d2d2;
    padding: 10px;
}

.c-btn {
    width: 100%;
    text-align: right;
    margin-top: 19px;
}
.c-btn button {
    background: #dcdcdc;
    color: #707070;
    text-align: center;
    width: 100px;
    padding: 16px 0;
    font-weight: 500;
    font-size: var(--f18);
}
/* //join */

.tbl-sty01 {
    width: 100%;
    border-top: 2px solid var(--default-color);
    font-weight: 400;
    color: var(--default-color);
}

.tbl-sty01 th {
    text-align: center;
    vertical-align: middle;
    background-color: #fafafa;
    border-bottom: 1px solid #cbcbcb;
    padding: 10px 0;
    height: 50px;
}

.tbl-sty01 td {
    line-height: 1.4em;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #cbcbcb;
    padding: 10px 0;
    font-weight: 400;
    height: 50px;
    word-break: keep-all;
}

/* 회원가입 -  로그인 */
.login-wrap {
    width: 100%;
    max-width: 660px;
    border-radius: 20px;
    border: 1px solid #cecece;
    padding: 70px 135px;
    margin: auto;
}

.input-login-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.check-wrap {
    margin: 35px 0 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-login {
    width: 100%;
    background-color: var(--sub-color);
    color: #fff;
    margin-bottom: 55px;
    text-align: center;
    line-height: 60px;
    font-size: var(--f20);
}

.login-links {
    display: flex;
    align-items: center;
}

.login-links a {
    flex-grow: 1;
    position: relative;
    border-right: 1px solid #dedede;
    text-align: center;
}

.login-links a:last-child {
    border-right: 0;
}

.btn-send-code {
    width: 100%;
    line-height: 60px;
    border: 1px solid #CBCBCB;
    background-color: #fff;
    font-size: var(--f18);
    text-align: center;
    margin: 20px 0;
    color: #707070;
}

.btn-check-code {
    width: 100%;
    line-height: 60px;
    background-color: var(--main-color);
    color: #fff;
    font-size: var(--f18);
    text-align: center;
    margin-top: 20px;
}

.result-text {
    text-align: center;
    padding-bottom: 50px;
    border-bottom: 1px solid #dedede;
}

.result-text span {
    color: var(--sub-color);
    font-size: var(--f36);
    display: block;
    margin: 25px 0;
}

.OAuth{
    margin-top: 56px;
    display: flex;
    justify-content: center;
    gap: 22px;
    align-items: center;
}

/* 회원가입 - 회원가입 */
.join-wrap {
    width: 100%;
    max-width: 660px;
    border-radius: 20px;
    border: 1px solid #cecece;
    padding: 50px 20px;
    margin: auto;
}

.terms-check-all {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: var(--f24);
    margin: 20px 0 30px;
}

.terms-check-all .custom-checkbox {
    width: 34px;
    height: 34px;
    background-size: 34px 34px;
}

.terms-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 450px;
    margin: auto;
}

.terms-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    border-bottom: 1px solid #CBCBCB;
    gap: 0 30px;
    padding: 6px 0;
}

.terms-list li h2 {
    width: 65%;
    max-width: 250px;
    font-size: var(--f18);
    word-break: keep-all;
    line-height: 1.4em;
}

.terms-list-right {
    display: flex;
    flex-basis: 35%;
    align-items: center;
    justify-content: flex-end;
    gap: 0 10px;
}

.terms-list-right a {
    flex: 1;
    min-width: 68px;
    max-width: 100px;
    padding: 0 6px;
    border: 1px solid #CBCBCB;
    line-height: 34px;
    display: inline-block;
    text-align: center;
    font-size: var(--f16);
}

.terms-list li .check-select .custom-checkbox {
    width: 34px;
    height: 34px;
    background-size: 34px 34px;
}

.terms-text {
    padding-top: 30px;
    text-align: center;
}

.agree-pop-inner {
    min-height: 430px;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.agree-pop-inner .title-bar {
    font-size: var(--f24);
}

.agree-pop-contents {
    overflow-y: auto;
    flex-grow: 1;
    padding: 20px;
    min-height: 300px;
    max-height: 50vh;
}

.agree-box {
    line-height: 1.5em;
}

.member-info-box {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

.member-info-box li {
    min-height: 60px;
}

.member-info-box li p {
    margin: 10px 0 15px;
    color: #707070;
    font-size: var(--f14);
    letter-spacing: -0.5px;
    line-height: 18px;
}

/* 회원실명확인 */
.login-wrap.identify {
    border: 0;
    padding: 0;
}

.identify-box {
    background-color: #fff;
    border: 1px solid #CBCBCB;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*flex-direction: column;*/
    gap: 0 124px;
    padding: 70px 32px;
    /*max-width: 400px;*/
    margin: auto;
    cursor: pointer;
    flex-wrap: wrap;
}

.identify-box h1 {
    width: 124px;
    height: 124px;
    border-radius: 50%;
    background-color: #F5F5F5;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 14px;
    transition: all 0.5s;
}

.identify-box h2 {
    font-size: var(--f18);
}

.identify-box p {
    font-size: var(--f14);
    color: #999;
    margin-top: 8px;
}

.identify-text {
    margin-top: 48px;
    line-height: 1.4em;
    flex: 1 1 auto;
}

.identify-text h2 {
    color: var(--sub-color);
    font-size: var(--f18);
    font-weight: 500;
}

.identify-text p {
    font-weight: 400;
    color: #000;
    margin: 0 auto 40px;
}
.identify-text p span {
    font-size: var(--f16);
}

.identify-box .con {
    text-align: center;
}

.identify-box .con:hover h1 {
    background-color: var(--main-color);
    transition: all 0.5s;
}

.identify-box .con:hover h1 img {
    filter: brightness(0) invert(1);
}

.identify-guide{
    margin-top: 56px;
    text-align: center;
    font-size: var(--f18);
    line-height: 1.5em;
}

/* 정보 입력 */
.id {
    display: flex;
    gap: 10px;
}

.id input {
    flex: 1;
}

.id button {
    width: 25%;
    height: 60px;
    background-color: var(--main-color);
    color: #fff;
}

.password-confirm p {
    line-height: 1.4em;
}

.join-radio-box {
    display: flex;
    align-items: center;
    gap: 12px 20px;
    flex-wrap: wrap;
}
.join-radio-box span{
    display: flex;
    align-items: center;
}
.join-radio-box input {
    flex-shrink:0;
    -webkit-appearance: none; /* 웹킷 브라우저에서 기본 스타일 제거*/
    appearance: none; /*기본 브라우저에서 기본 스타일 제거*/
    width: 19px;
    height: 19px;
    border: 1px solid #cbcbcb; /*체크되지 않았을 때의 테두리 색상*/
    border-radius: 50%;
    outline: none; /*focus 시에 나타나는 기본 스타일 제거*/
    cursor: pointer;
    margin-right: 5px;
}
.join-radio-box input:checked {
    background-color: var(--main-color);
    border: 4px solid #fff;
    box-shadow: 0 0 0 1px var(--main-color);
}
.join-radio-box label{
    cursor: pointer;
}

/* radio - center */
.join-radio-box-center{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 20px;
}
.join-radio-box-center span{
   display: flex;
    align-items: center;
}
.join-radio-box-center input {
    flex-shrink:0;
    -webkit-appearance: none; /* 웹킷 브라우저에서 기본 스타일 제거*/
    appearance: none; /*기본 브라우저에서 기본 스타일 제거*/
    width: 19px;
    height: 19px;
    border: 1px solid #cbcbcb; /*체크되지 않았을 때의 테두리 색상*/
    border-radius: 50%;
    outline: none; /*focus 시에 나타나는 기본 스타일 제거*/
    cursor: pointer;
    margin-right: 5px;
}
.join-radio-box-center input:checked {
    background-color: var(--main-color);
    border: 4px solid #fff;
    box-shadow: 0 0 0 1px var(--main-color);
}
.join-radio-box-center label{
     cursor: pointer;
}

/* ---------- radio - center disabled 상태 ---------- */
.join-radio-box-center input:disabled {
    background-color: transparent;
    border-color: #cbcbcb;
    cursor: default;
}

.join-radio-box-center input:disabled:checked {
    background-color: #999;
    border: 4px solid #fff;
    box-shadow: 0 0 0 1px #999;
}

.join-radio-box-center input:disabled + label {
    cursor: default;
    color: #000;
}

/* radio - left */
.join-radio-box-left{
    display: flex;
    align-items: center;
    gap: 0 10px;
    height: 60px;
}
.join-radio-box-left input {
    flex-shrink:0;
    -webkit-appearance: none; /* 웹킷 브라우저에서 기본 스타일 제거*/
    appearance: none; /*기본 브라우저에서 기본 스타일 제거*/
    width: 19px;
    height: 19px;
    border: 1px solid #cbcbcb; /*체크되지 않았을 때의 테두리 색상*/
    border-radius: 50%;
    outline: none; /*focus 시에 나타나는 기본 스타일 제거*/
    cursor: pointer;
    margin-right: 5px;
}
.join-radio-box-left input:checked {
    background-color: var(--main-color);
    border: 4px solid #fff;
    box-shadow: 0 0 0 1px var(--main-color);
}
.join-radio-box-left label{
    cursor: pointer;
}


.input-disable {
    background: #FAFAFA;
    padding: 0 16px;
    line-height: 60px;
}

.year-select,
.area {
    display: flex;
    gap: 0 10px;
    align-items: center;
}

.year-select select,
.area select {
    background: #FAFAFA url("/images/ic_under.svg?v=1") center right 15px no-repeat;
    background-size: 16px 9px;
    padding: 0 16px;
    line-height: 60px;
    border: none;
    flex: 1;
}

/* 마이페이지 - 정보수정 & 회원탈퇴 */
.withdraw-area {
    width: 100%;
    text-align: center;
    padding-top: 50px;
}

.withdraw-area p {
    color: #707070;
    font-size: var(--f18);
    padding-bottom: 20px;
}

.withdraw-area a {
    font-size: var(--f18);
    color: var(--main-color2);
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* 마이페이지 - 나의스코어 */
.mobile-guide-text {
    display: none;
}

/* 마이페이지 - 예약확인 */
.btn-tbl {
    line-height: 30px;
    text-align: center;
    display: block;
    width: 90%;
    max-width: 78px;
    color: #fff;
    margin: auto;
}

.btn-tbl.cancel {
    background-color: #777;
}

.btn-tbl.change {
    background-color: var(--main-color);
}

.ct-box {
    line-height: 1.5em;
    color: #707070;
    padding: 8px 0;
    word-break: keep-all;
}

/* 마이페이지 - 마이페이지 */
.coupon-summary {
    border-radius: 15px;
    background: #FBFBFB;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
}

.coupon-summary h1 {
    width: 170px;
    height: 96px;
    background: url("/images/logo.svg") center center no-repeat;
    background-size: 170px 96px;
    margin-bottom: 30px;
}

.coupon-summary p {
    padding: 14px 0;
    line-height: 1.5em;
    text-align: center;
    word-break: keep-all;
}

.welcome {
    color: #818181;
}

.welcome b {
    font-weight: 600;
    color: var(--black);
}

.coupon-summary p span {
    color: var(--red);
    font-weight: 600;
}

.slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.card-slider {
    width: 100%;
}

.swiper-slide.card {
    background: #F3F3F3;
    border-radius: 15px;
    padding: 28px 30px;
    height: 220px;
    overflow: hidden;
}

.card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 26px;
}

.card-title {
    color: #7F7D7E;
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: var(--f14);
}

.card-info em {
    display: inline-block;
    width: 75px;
}

.card-info span {
    color: #BD0E0E;
}

.card-info li::before {
    content: '·';
    display: inline-block;
    padding: 0 5px;
}

.empty-desc {
    text-align: center;
    line-height: 1.6em;
    color: #707070;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
}

.nav-buttons .swiper-button-prev {
    left: -30px;
    background: url("/images/ic_slider_r.svg") center center no-repeat;
    transform: rotateZ(180deg);
}

.nav-buttons .swiper-button-next {
    right: -30px;
    background: url("/images/ic_slider_r.svg") center center no-repeat;
}

.nav-buttons .swiper-button-next:after,
.nav-buttons .swiper-button-prev:after {
    font-size: 0;
}

/* 클럽소식 - list */
.board-list {
    position: relative;
    width: 100%;
    margin-top: 36px;
    border-top: 1px solid #ddd;
}

.board-list li {
    border-bottom: 1px solid #ddd;
    width: 100%;
    min-height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    transition: .1s all ease;
    gap: 0 15px;
}

.board-list li:hover {
    background-color: #f4f4f4;
}

.board-list .answer {
    color: var(--sub-color);
    margin-left: 5px;
    text-decoration: none !important;
}
.board-list .noti {
    background: var(--sub-color);
    color: #fff;
    border-radius: 5px;
    font-size: var(--f14);
    max-width: 60px;
}

.title-area {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0 15px;
    flex: 1;
    font-size: var(--f18);
}

.title-area b {
    flex-basis: 60px;
    font-size: var(--f16);
    text-align: center;
}

.title-area b span {
    display: block;
    border-radius: 5px;
    background: var(--sub-color);
    text-align: center;
    line-height: 30px;
    color: #fff;
    font-size: var(--f14);
}

.title-area strong {
    color: var(--sub-color);
}

.board-list .date {
    flex-basis: 300px;
    text-align: right;
    color: #707070;
}

.board-list li .title {
    flex: 1;
    display: block;
    line-height: 1.3em;
}

.board-list li:hover a span {
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* 클럽소식 - view */
.board-view {
    width: 100%;
    margin-top: 36px;
}

.board-view-top {
    width: 100%;
    background-color: #fafafa;
    border-top: 1px solid #CBCBCB;
}

.board-view-top ul {
    border-bottom: 1px solid #cbcbcb;
    width: 100%;
    min-height: 50px;
    padding: 21px 20px;
    display: flex;
    align-items: center;
}

.board-view-top ul.title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 50px;
}

.board-view-top ul.file-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 15px;
}

.board-view-top ul.file-area li.file {
    position: relative;
    padding-left: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    width: 90%;
}

.board-view-top ul.file-area li.file::before {
    content: '|';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.board-view-top .join-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 15px;
}

.board-view-top .join-info li {
    position: relative;
    padding-right: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}
.board-view-top .join-info li span {
    font-weight: 600;
    color: #3c3a3a;
}

.board-view-top .join-info li:before {
    content: '|';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.board-view-top .join-info li:last-child:before {
    display: none;
}

.board-view-top ul li {
    color: #707070;
}

.board-view-top ul li.title {
    flex-basis: calc(100% - 230px);
    text-align: left;
    font-size: var(--f18);
    color: #333;
    font-weight: 500;
    line-height: 1.5em;
}

.board-view-top ul li.date {
    flex-basis: 180px;
    text-align: right;
    font-size: var(--f16);
}

.board-view-top ul li em {
    display: inline-block;
    width: 1px;
    border-right: 1px solid #ccc;
    height: 20px;
    vertical-align: middle;
    margin: 0 15px;
}

.board-view-top ul li b {
    font-weight: 600;
}

.board-view-con {
    min-height: 300px;
    border-bottom: solid 1px #cbcbcb;
    padding: 40px 20px;
    /*margin-bottom: 70px;*/
    line-height: 1.5em;
    text-align: left;
    font-size: var(--f18);
}

.board-view-con img {
    display: block;
    max-width: 100%;
    margin: auto;
}

/* 클럽소식 - event */
.event-list-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
    min-width: 0;
    justify-content: flex-start;
    align-content: flex-start;
}

.event-list-wrap ul {
    flex: 0 0 276px;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    min-width: 0;
    cursor: pointer;
}

.event-list-wrap ul li {
    min-width: 0;
}

.event-list-wrap figure {
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.event-list-wrap figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:all 0.6s;
}

.event-list-wrap ul.end li:hover img {
    transform:none;
}
.event-list-wrap li:hover img {
    transform:scale(1.15);
    transition:all 0.6s;
}

.event-list-wrap h3 {
    font-size: var(--f18);
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 23px;
}

.event-list-wrap ul.end {
    cursor: default;
}

.event-list-wrap ul.end figure {
    position: relative;
}

.event-list-wrap ul.end figure::after {
    content: '해당 이벤트는 종료 되었습니다.';
    font-size: var(--f16);
    font-weight: 700;
    color: #fff;
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 클럽소식 - 영광의순간 */
.common-round-tab{
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.common-round-tab li {
    background: #efefef;
    border-radius: 30px;
    padding: 7px 32px;
    font-size: var(--f20);
    color: #9c9c9c;
    cursor: pointer;
}
.common-round-tab li.on {
    background: var(--sub-color);
    color: #fff;
    font-weight: 700;
}

.honor-list-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 80px;
    min-width: 0;
    justify-content: flex-start;
    align-content: flex-start;
    gap: 22px;
}

.honor-list-wrap ul {
    flex: 0 0 385px;
    display: flex;
    flex-direction: column;
    padding: 25px;
    min-width: 0;
    border: 1px solid #e7e7e7;
    border-radius: 15px;
}

.honor-list-wrap ul:nth-child(2n-1) {
    background-color: #FBFBFB;
}

.honor-list-wrap ul li {
    min-width: 0;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
}

.honor-list-wrap ul li h4 {
    color: #7F7D7E;
    text-transform: uppercase;
    font-size: var(--f14);
    letter-spacing: -0.5px;
}

.honor-list-wrap ul li .date {
    color: #000;
    font-size: var(--f20);
    padding: 12px 0 18px;
    font-weight: 400;
}

.honor-list-wrap ul li .title {
    font-size: var(--f32);
    font-weight: 600;
    color: var(--sub-color);
}

.honor-info {
    padding-top: 30px;
}

.honor-info h2 {
    font-size: var(--f20);
    font-weight: 600;
    padding-bottom: 5px;
}

.honor-info p {
    font-size: var(--f14);
    line-height: 1.6em;
}

.honor-info p span {
    display: block;
    color: var(--sub-color);
    font-size: var(--f15);
    line-height: 24px;
}

.honor-info p b {
    font-weight: 600;
}

/* 클럽소식 - 고객의 소리 */
.board-list.vod li .title em {
    color: var(--sub-color);
    display: inline-block;
    margin-left: 6px;
}

.board-list.vod li .title em.unanswered {
    color: var(--main-color);
}

.post-info-list {
    gap: 12px;
    flex-wrap: wrap;
    color: #707070;
}

.post-info-list b {
    color: #3C3A3A;
}

.btn-basic-wrap a.btn-delete {
    background-color: #fff;
    border: 1px solid #DCDCDC;
}

.btn-basic-wrap a.btn-list {
    background-color: #5B5B5B;
    color: #fff;
}

.admin-reply {
    width: 100%;
    background-color: #fafafa;
    padding: 45px 40px 40px;
    line-height: 1.5em;
    margin-top: 80px;
}

.admin-reply h4 {
    font-size: var(--f20);
    font-weight: 500;
    padding-bottom: 15px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.admin-reply h4 span {
    font-size: var(--f16);
    color: #707070;
    font-weight: 400;
}

.admin-reply p {
    padding: 10px 0;
    max-height: 150px;
    overflow-y: auto;
}

.btn-reply-wrap {
    padding: 19px 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 15px;
    background: #fafafa;
    margin: 0 auto;
    width: 100%;
    position: relative;
}
.btn-reply-wrap:before {
    content:'';
    position:absolute;
    top: 0;
    left:50%;
    width: 100%;
    transform:translateX(-50%);
    height:1px;
    background: #dadada;
}

.btn-reply-wrap a {
    width: 100px;
    line-height: 50px;
    background-color: #DCDCDC;
    color: #707070;
    text-align: center;
}

.btn-reply-wrap a.btn-delete {
    background-color: #fff;
    border: 1px solid #DCDCDC;
}

.tbl-write {
    width: 100%;
    border-top: 1px solid #CBCBCB;
}

.tbl-write tr {
    border-bottom: 1px solid #CBCBCB;
}

.tbl-write th {
    background-color: #F5F5F5;
    padding: 20px 0 20px 30px;
    text-align: left;
    min-height: 60px;
}

.tbl-write td {
    padding: 10px 20px;
    min-height: 60px;
    vertical-align: middle;
}

.tbl-write td input[type=text] {
    width: 100%;
    height: 40px;
    background-color: #fff;
    border: 1px solid #cbcbcb;
}

.tbl-write td textarea {
    width: 100%;
    height: 480px;
    background-color: #fff;
    border: 1px solid #cbcbcb;
    padding: 10px;
}

.voc-radio-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 25px;
}

.voc-radio-box span {
    display: flex;
    align-items: center;
    gap: 0 5px;
}

.voc-radio-box input {
    accent-color: var(--main-color);
    width: 20px;
    height: 20px;
}

/*.tbl-write .file-area {
    display: flex;
    align-items: center;
    gap: 0 20px;
    font-weight: 300;
    color: #ABABAB;
    line-height: 1.5em;
}

.tbl-write .file-area .file-btn {
    width: 130px;
    line-height: 40px;
    background-color: #000;
    color: #fff;
    text-align: center;
    cursor: pointer;
}*/

/* 서브 공통 컨텐츠 리스트 */
.con-list {
    padding-top: 17px;
}
.con-list .box {
    display: flex;
    width: 100%;
    background: #F9F9F9;
    border-radius: 16px;
    padding: 32px 72px 32px 40px;
    align-items: center;
    gap: 32px;
    margin-bottom: 24px;
}
.con-list .box:last-child {
    margin-bottom: 0;
}
.con-list .box .img {
    width: 116px;
    height: 116px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.con-list .box .text {
    width: 100%;
    flex: 1;
}
.con-list .box .text h1 {
    margin-bottom: 16px;
    color: var(--sub-color);
    font-weight: 600;
    font-size: var(--f24);
    line-height: 1.5em;
}
.con-list .box .text h2 {
    position: relative;
    font-weight: 600;
    font-size: var(--f18);
    line-height: 1.8em;
    margin: 16px 0 4px;
    padding-left: 20px;
}
.con-list .box .text h2:before {
    content: '';
    position: absolute;
    top: 14px;
    left: 8px;
    width: 4px;
    height: 4px;
    background: var(--default-color);
    border-radius: 50%;
}
.con-list .box .text h3 {
    font-weight: 600;
    font-size: var(--f18);
    line-height: 1.8em;
    margin: 16px 0 4px;
}
.con-list .box .text p {
    line-height: 1.8em;
}
.con-table {
    width: 100%;
    border-top: 2px solid var(--default-color);
    letter-spacing: -0.4px;
    table-layout: fixed;
    text-align: center;
}
.con-table tbody tr {
    border-bottom: 1px solid #CBCBCB;
}
.con-table th,
.con-table td {
    word-break: break-word;
    vertical-align: middle;
    padding: 11px 0;
    line-height: 1.8em;
}
.con-table thead th{
    background: #F9F9F9;
    border-bottom: 1px solid #CBCBCB;
}
.con-table tbody td{
    background: #fff;
}

/* 라운드 넘버 리스트 */
.number-list-round{
    counter-reset: item 0;
}
.number-list-round li{
    counter-increment: item 1;
    position: relative;
    line-height: 1.8em;
    padding-left: 48px;
    margin-bottom: 22px;
}
.number-list-round li:last-child{
    margin-bottom: 0;
}
.number-list-round li span {
    font-weight: 600;
}
.number-list-round li::before {
    content: counter(item);
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: #999;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/* 서브페이지 공통테이블 */
.table-title  {
    color: var(--default-color);
    font-weight: 700;
    font-size: var(--f20);
    margin: 56px 0 8px;
}
.table-title span {
    font-weight: 400;
    font-size: var(--f16);
}
.common-table {
    width: 100%;
    border-top: 2px solid var(--default-color);
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.64px;
}
.common-table th {
    text-align: center;
    vertical-align: middle;
    background-color: #fafafa;
    border-bottom: 1px solid #cbcbcb;
    padding: 10px 4px;
}
.common-table td {
    line-height: 1.4em;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #cbcbcb;
    padding: 10px 8px;
    word-break: keep-all;
}
.table-text {
    margin-top: 8px;
    color: var(--default-color);
    font-size: var(--f16);
}
.table-text li {
    position: relative;
    padding-left: 20px;
    line-height: 1.8em;
    letter-spacing: -0.1px;
}
.table-text li:before {
    content: '';
    position: absolute;
    top: 12px;
    left: 10px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--default-color);
}
.table-text li span{
    font-weight: 600;
}

.table-text.orange li:before{
    background: var(--main-color2);
}


.common-table.line28 th {
    line-height: 28px;
}
.common-table.line28 td {
    line-height: 28px;
}

/* 게스트하우스 - 이용안내 */
.gh-intro img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    border-radius: 16px;
}
.gh-intro h1 {
    margin: 80px 0 48px;
    font-weight: 300;
    font-size: var(--f48);
    color: var(--default-color);
}
.gh-intro p {
    color: #666;
    font-size: var(--f18);
    line-height: 1.8rem;
}

.gh-img-area {
    margin-top: 80px;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 114px;
}
.gh-img-area li {
    border-radius: 16px;
    overflow: hidden;
    flex: 1;
}
.gh-img-area li img {
    width: 100%;
    object-fit: cover;
    height: 360px;
}

/* 게스트하우스 - 포토갤러리 */
.gallery-swiper {
    position: relative;
    height: 100%;
    border-radius: 16px;
    margin-top: 80px;
}

.gallery-swiper .swiper-slide {
    position: relative;
}

.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-swiper-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
}

.gallery-swiper-nav .swiper-btn-prev,
.gallery-swiper-nav .swiper-btn-next {
    cursor: pointer;
    margin-top: -3px;
}

.gallery-swiper-nav .swiper-pagination-bullets.swiper-pagination-horizontal {
    position: relative;
    bottom: auto;
    top: auto;
    width: auto;
}

.gallery-swiper-nav .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border: 1px solid #fff;
    background-color: transparent;
    opacity: 1;
}

.gallery-swiper-nav .swiper-pagination-bullet-active {
    background-color: #fff;
    width: 30px;
    border-radius: 10px;
}

/* 정보공개 공통 */
.down-border-btn {
    padding: 12px 30px;
    font-size: var(--f16);
    color: var(--sub-color);
    border: 1px solid var(--sub-color);
    display: inline-flex;
    gap: 10px;
    align-items: center;
    border-radius: 4px;
    min-width: 248px;
    width: auto;
    max-width: fit-content;
    text-align:center;
    margin: 0 auto;
    font-weight: 600;
    justify-content: center;
}
.down-color-btn{
    padding: 12px 0;
    font-size: var(--f16);
    color: #fff;
    border: 1px solid var(--sub-color);
    background: var(--sub-color);
    display: flex;
    gap: 10px;
    align-items: center;
    border-radius: 4px;
    width: 248px;
    justify-content: center;
    margin: 5px auto;
    font-weight: 600;
}

.text-list-gray li.title {
    font-size: var(--f24);
    font-weight: 700;
    margin: 10px 0 16px;
}
.text-list-gray li.title:before{
    display: none;
}

.text-list-gray.center {
    text-align: center;
}
.text-list-gray.center li:before {
    display: none;
}

.text-list-gray.none {
    padding: 40px 60px;
    font-size: var(--f18);
}
.text-list-gray.none li {
    padding-left: 0;
    margin-bottom: 30px;
}
.text-list-gray.none li:last-child {
    margin-bottom:0;
}
.text-list-gray.none li:before {
    display: none;
}

/* 정보공개-인권경영 */
.human-list {
    padding: 30px 0;
    width: 100%;
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}
.human-list li {
    background: #f5f5f5;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    padding: 33px 20px;
    font-size: var(--f18);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 27px;
    text-align: center;
}
.human-list li:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    right: calc(100% + 12px);
    background: url('/images/human-list.svg') center center no-repeat;
    width: 16px;
    height: 16px;
}
.human-list li:first-child:before {
    display: none;
}

/* 이용안내 - 이용안내*/
.text-list-gray.guide{
    text-align: center;
    justify-content: center;
    display: flex;
    font-size: var(--f24);
    font-weight: 600;
}
.text-list-gray.guide li:before {
    width: 4px;
    height: 4px;
}
.text-list-gray.guide.orange li:before {
    background: var(--main-color2);
}

.guide-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 36px;
    counter-reset: n;
}

.guide-list > li {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 24px;
    min-height: 130px;
    border: 1px solid #c2c2c2;
    border-radius: 10px;
    font-size: var(--f20);
    line-height: 1.5em;
    word-break: keep-all;
}

.guide-list > li::before {
    counter-increment: n;
    content: counter(n);
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    color: #000;
    font-weight: 500;
    background: #F5F5F5;
}

.guide-list > li.guide-etc {
    font-size: var(--f14);
    letter-spacing: -0.5px;
    border: 0;
    padding: 0 10px;
    min-height: auto;
}

.guide-list > li.guide-etc::before {
    display: none;
}

.guide-list.terms > li {
    flex-basis: calc(50% - 18px);
    font-size: var(--f16);
    color: var(--default-color);
}

.guide-list.terms > li p {
    display: flex;
    align-items: center;
    width: calc(100% - 75px);
    gap: 0 20px;
}

.guide-list.terms > li p strong {
    flex-basis: 100%;
    color: #333;
    font-weight: 500;
}

.guide-list.terms > li p em {
    flex-basis: calc(100% - 210px);
}

.guide-list.terms > .group-tbl-area {
    width: 100%;
    margin: 70px 0 60px;
}

.guide-list.terms > li.guide-etc p {
    width: 100%;
}

.guide-list.terms > li .sub {
    font-size: var(--f14);
    font-weight: 400;
}

/* 이용안내 - 예약안내 */
.step-wrap {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
}

.step-flow {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 8px;
}

.step-flow::before {
    content: '';
    position: absolute;
    inset: 30px 150px 0;
    border-top: 2px dashed #e8e8e8;
}

.step-flow li {
    flex: 1 1 0;
    text-align: center;
}

.step-flow li .dot {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    margin: 0 auto 25px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-flow li h5 {
    margin-bottom: 15px;
    color: #111;
    font-weight: 500;
}

.step-flow li .desc {
    line-height: 1.5em;
}

/* 코스안내 - 코스소개 */
.course-intro-box {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 27px 112px;
    display: flex;
    gap: 86px;
    text-align: left;
}
.course-info {
    margin: 84px 0 40px;
}
.course-info li {
    margin-top: 8px;
    font-size: var(--f20);
    font-weight: 600;
    color: #fff;
    padding: 10px 44px 10px 24px;
    background: var(--sub-color);
    text-align: left;
    letter-spacing: -0.8px;
}
.course-info li:nth-child(2) {
    background: var(--main-color);
}

.course-intro-box table {
    font-size: var(--f20);
    letter-spacing: -0.8px;
    line-height: 36px;
}
.course-intro-box table th {
    font-weight: 600;
}
.course-intro-box table th span {
    letter-spacing: 7.3px;
}

.table-title-course {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: var(--f20);
    font-weight: 700;
    color: var(--default-color);
    align-items: flex-end;
}
.table-title-course span {
    font-size: var(--f16);
    font-weight: 400;
}

.tbl-sty03 {
    width: 100%;
    border-top: 2px solid var(--default-color);
    font-weight: 400;
    color: var(--default-color);
}

.tbl-sty03 th {
    text-align: center;
    vertical-align: middle;
    background-color: #fafafa;
    border-bottom: 1px solid #cbcbcb;
    padding: 15px 0;
    font-weight: 600;
}

.tbl-sty03 td {
    line-height: 1.4em;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #cbcbcb;
    padding: 10px 0;
    font-weight: 400;
    height: 50px;
    word-break: keep-all;
}
.tbl-sty03 .blue {
    color: #00a3ff !important;
}
.tbl-sty03 .white {
    color: #999999 !important;;
}
.tbl-sty03 .red {
    color: #ff3D40 !important;;
}

.course-list-card {
    position: relative;
    display: flex;
    gap: 0 16px;
    margin-top: 112px;
}

.course-list-card li {
    position: relative;
    flex: 1;
    height: 380px;
    color: #fff;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
}

.course-list-card li::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.course-list-card li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.course-list-card li a h2 {
    font-size: var(--f32);
    font-weight: 900;
    text-transform: uppercase;
}

.course-list-card li a h2 span {
    display: block;
    font-size: var(--f20);
    font-weight: 100;
}

.course-list-card li:first-child {
    background: url('/images/course/img_course_01.jpg?v=1') center no-repeat;
}

.course-list-card li:nth-of-type(2) {
    background: url('/images/course/img_course_02.jpg?v=1') center no-repeat;
}

.course-list-card li:hover a h2 {
    animation: scaleUp 1s ease forwards;
}

.course-list-card li:not(:hover) a h2 {
    animation: scaleDown 1s ease forwards;
}

/* 클럽안내 - 클럽소개 */
.container.wide {
    width: 100%;
}
.container.semi-wide {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.club-list-wrap {
    position: relative;
    padding: 0 100px;
}

.club-title {
    width: 100%;
    margin-top: 90px;
}

.club-title h4 {
    font-family: var(--font-en);
    font-size: var(--f20);
    color: #DE1C1C;
    padding-bottom: 30px;
    text-transform: uppercase;
}

.club-title h2 {
    font-size: var(--f40);
    font-weight: 300;
    line-height: 1.3em;
    text-transform: uppercase;
}

.club-title h2 b {
    font-weight: 700;
}

.club-slider-wrap {
    width: 100%;
    height: 1080px;
    position: relative;
}

.club-swiper {
    position: relative;
    height: 100%;
}

/* .club-swiper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
} */

.club-swiper .swiper-slide {
    position: relative;
}

.club-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.club-swiper-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
}

.club-swiper-nav .swiper-btn-prev,
.club-swiper-nav .swiper-btn-next {
    cursor: pointer;
    margin-top: -3px;
}

.club-swiper-nav .swiper-pagination-bullets.swiper-pagination-horizontal {
    position: relative;
    bottom: auto;
    top: auto;
    width: auto;
}

.club-swiper-nav .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border: 1px solid #fff;
    background-color: transparent;
    opacity: 1;
}

.club-swiper-nav .swiper-pagination-bullet-active {
    background-color: #fff;
    width: 30px;
    border-radius: 10px;
}

.club-slider-text {
    position: absolute;
    top: 50%;
    right: 180px;
    transform: translateY(-50%);
    z-index: 1;
    width: 550px;
    color: #fff;
}

.club-slider-text h2 {
    font-size: var(--f32);
    font-weight: 600;
    line-height: 1.2em;
}

.club-slider-text p {
    font-size: var(--f18);
    line-height: 1.5em;
    padding: 32px 0 40px;
    font-weight: 300;
}

.club-about-wrap {
    position: relative;
    padding: 110px 156px;
}

.club-about-wrap ul {
    display: flex;
    gap: 36px;
    align-items: center;
}

.club-about-wrap ul li {
    flex: 1;
}

.club-about-wrap h2 {
    text-transform: uppercase;
    font-size: var(--f48);
    color: var(--default-color);
    line-height: 1.2em;
    font-weight: 300;
}

.club-about-wrap h2 span {
    font-family: var(--font-en);
    color: var(--sub-color);
    font-weight: 600;
    display: block;
}

.club-about-wrap p {
    font-size: var(--f18);
    color: #666;
    padding: 48px 0;
    max-width: 533px;
    line-height: 1.6em;
    font-weight: 300;
    word-break: keep-all;
}

.club-about-wrap a {
    display: inline-block;
    background-color: var(--sub-color);
    color: #fff;
    width: 243px;
    line-height: 56px;
    text-align: center;
    font-size: var(--f18);
    font-weight: 300;
    letter-spacing: -0.36px;
}

.video-club-about {
    flex-basis: 730px;
    min-width: 550px;
    position: relative;
    overflow: hidden;
}

.video-club-about video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-club-about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*클럽소개-클럽안내*/
.tour-title {
    text-align: center;
    font-size: var(--f48);
    font-weight: 300;
    margin: 142px 0 64px;
}
.tour-title span {
    display: block;
    font-weight: 500;
    margin-top: 10px;
}

.golf-tour {
    display: flex;
    justify-content: center;
    gap: 32px;
}
.golf-tour li {
    text-align: center;
    max-width: 378px;
    flex: 1;
}
.golf-tour li figure {
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
    height: 304px;
}
.golf-tour li img {
    transition: transform 0.6s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.golf-tour li:hover img {
    transform: scale(1.08);
    transition: transform 0.6s;
}
.golf-tour li h3 {
    font-size: var(--f24);
    font-weight: 700;
    margin: 24px 0 8px;
}
.golf-tour li p {
    font-size: var(--f18);
    font-weight: 300;
}

/* 클럽소개 - 스토리텔링 */
.story-img {
    display: flex;
    gap: 80px;
    margin-bottom: 80px;
    align-items: center;
    justify-content: flex-start;
}
.story-img:last-child {
    margin-bottom: 0;
}

.story-img .text{
    width: 34%;
}
.story-img .text h1{
    font-weight: 700;
    font-size: var(--f36);
    color: var(--main-color2);
    line-height: 1.5em;
    margin-bottom: 8px;
}
.story-img .text h2 {
    font-weight: 600;
    font-size: var(--f24);
    line-height: 1.3em;
    margin-bottom: 32px;
    color: var(--sub-color);
}
.story-img .text p {
    color: var(--default-color);
    line-height: 1.5em;
    font-size: var(--f18);
    position: relative;
    z-index: 99;
}
.story-img .text .book-text {
    display: inline-block;
    margin-top: 43px;
    position: relative;
    color: #666;
    font-size: var(--f14);
    line-height: 1.5em;
}
.story-img .text .book-text img {
    position: absolute;
    right: -175px;
    bottom: 0;
}

.s-img {
    position: relative;
}
.s-img img {
    border-radius: 16px;
    overflow: hidden;
}
.s-img span {
    position: absolute;
    bottom: 3px;
    right: 0;
    background: var(--sub-color);
    color: #fff;
    padding: 4px 24px;
    border-radius: 16px 0 16px 0;
    display: inline-block;
    font-size: var(--f20);
    font-weight: 700;
    line-height: 1.5em;
}

.story-img.left {
    justify-content: space-between;
}
.story-img.left .s-img span {
    left: 0;
    border-radius: 0 16px 0 16px;
    right: auto;
}

/* 클럽안내 - ci */
.bg-gray {
    background: #F9F9F9;
    padding: 48px 32px 80px;
    border-radius: 4px;
}
.mono {
    width: 100%;
    position: relative;
    background: url('/images/mono.png?v=1') center center;
    border-radius: 16px;
}
.ci-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 54px 0 65px;
}
.ci-down-btn {
    margin: 0 auto;
    text-align: center;
}
.ci-down-btn a {
    background: var(--sub-color);
    border-radius: 4px;
    font-weight: 600;
    line-height: 1.5em;
    padding: 12px 15px;
    margin-top: 16px;
    display: inline-block;
    color: #fff;
}

.ci-text {
    margin-top: 64px;
}
.ci-text h1 {
    font-weight: 700;
    font-size: var(--f32);
    line-height: 1.3em;
}
.ci-text h2 {
    font-size: var(--f26);
    line-height: 1.3em;
    font-weight: 600;
}
.ci-text p {
    font-size: var(--f18);
    line-height: 1.5em;
    margin: 16px 0 56px;
}

.ci-list {
    background: #fff;
    border-radius: 16px;
    display: flex;
    padding: 51px 72px 34px;
    gap: 133px;
    justify-content: center;
    margin-top: 30px;
}
.ci-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}
.ci-list li:before {
    content: '';
    position: absolute;
    top: 0;
    left: -66.5px;
    width: 1px;
    height: 240px;
    background: #ccc;
}
.ci-list li:first-child:before {
    display: none;
}
.ci-list li img:first-child {
    margin-bottom: 60px;
}
.ci-list li p {
    font-size: var(--f18);
    font-weight: 700;
    line-height: 1.5em;
    color: var(--default-color);
    margin: 40px 0 0;
}

/* 클럽안내 - 부대시설 */
.facil-swiper-wrap {
    width: 100%;
    height: 900px;
    position: relative;
    padding-top: 120px;
}

.facil-text-box {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 20px;
    padding: 24px 0 42px;
    width: 86%;
    max-width: 930px;
    text-align: center;
    z-index: 5;
}

.facil-text-box h2 {
    font-size: var(--f36);
    font-weight: 600;
    text-transform: uppercase;
}

.facil-text-box h2 span {
    font-weight: 600;
    color: var(--sub-color);
}

.facil-text-box p {
    padding-top: 28px;
    color: #707070;
    font-size: var(--f18);
    word-break: keep-all;
    line-height: 1.2em;
}

.food-menu-box {
    width: 1200px;
    margin: auto;
}

.food-menu-wrap {
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.food-menu-wrap p {
    text-align: center;
    margin-bottom: 24px;
    /*border: 1px solid #999;*/
}

.food-menu-wrap p img {
    width: 100%;
}

.tbl-sty02 {
    width: 100%;
    border-top: 2px solid var(--main-color2);
    font-weight: 400;
    color: #363636;
}

.tbl-sty02 th {
    text-align: center;
    vertical-align: middle;
    background-color: #fafafa;
    border-bottom: 1px solid var(--main-color2);
    padding: 10px 0;
    font-size: var(--f18);
    font-weight: 500;
    word-break: keep-all;
    height: 50px;
}

.tbl-sty02 td {
    line-height: 1.33em;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid var(--main-color2);
    padding: 10px;
    font-weight: 500;
    height: 50px;
    letter-spacing: -0.64px;
    word-break: keep-all;
}

.tbl-sty02 td span {
    color: #797979;
    font-weight: 400;
}

.tbl-sty02 th.red {
    font-weight: 400;
    font-size: var(--f16);
}

.tbl-sty02 tr.bd-top {
    border-top: 2px solid var(--main-color2);
}

/* 클럽소개 - 오시는길 */
.tab-content-wrap{
    position:relative;
}
.tab-content {
    opacity: 0;
    transition: all .4s;
    position: relative;
    width: 100%;
    margin-top: 40px;
    display: none;
}

.tab-content.on {
    opacity: 1;
    display: block;
}

.map-guide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 2px solid #eee;
}
.map-guide .info {
    display: flex;
    align-items: center;
    gap: 48px;
}
.map-guide .info li {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: var(--f18);
    font-weight: 600;
    line-height: 1.2em;
}
.map-guide .img {
    background: var(--sub-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 12px;
    width: 48px;
    height: 48px;
}
.map-guide .img.naver {
    background: #00C300;
}

.map-guide .info li p span {
    display: block;
    font-size: var(--f14);
    font-weight: 400;
}

.map-guide .quick {
    display: flex;
    align-items: center;
    gap: 24px;
}
.map-guide .quick a {
    display: flex;
    align-items: center;
    gap: 16px;
}
.map-guide .quick a p span {
    border-bottom: 1px solid #222;
}

.map-info-wrap {
    padding-top: 8px;
}

.map-info-wrap h2 {
    font-size: var(--f32);
    font-weight: 500;
    border-bottom: 1px solid #000;
    padding: 73px 0 17px;
    margin-bottom: 24px;
}

.map-list p {
    color: #222;
    font-weight: 600;
    font-size: var(--f24);
    margin-bottom: 24px;
}
.map-list li {
    position: relative;
    padding-left: 30px;
    padding-right: 10px;
    font-size: var(--f24);
    line-height: 1.5em;
}
.map-list li span {
    font-weight: 700;
    color: var(--sub-color);
}
.map-list li:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 4px;
    height: 4px;
    background: #222;
    border-radius: 50%;
}

/* 약관(개인정보처리방침) */
.anchor-offset {
    display: block;
    position: relative;
    top: -30px;
    height: 0;
}
.policy-wrap {
    font-size: var(--f16);
    line-height: 1.5em;
    color: #222;
    padding-top: 24px;
}
.policy-wrap h1 {
    font-size: var(--f24);
    font-weight: 600;
    margin: 40px 0 -25px;
}
.policy-wrap b {
    font-weight: 600;
}

.policy-wrap h2 {
    font-size: var(--f18);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 80px 0 16px;
}
.policy-wrap h2 img {
    max-width: 32px;
}
.policy-wrap .box {
    padding: 24px 40px;
    background: #F9F9F9;
    line-height: 1.5em;
    margin: 16px 0;
}

.privacy-guide {
    background: #F9F9F9;
    text-align: center;
    padding: 24px 0;
    font-size: var(--f18);
    line-height: 1.5em;
}
.privacy-guide span {
    font-weight: 600;
}

.privacy-label {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px 40px;
    width: calc(100% - 25%);
    margin: 20px auto;
}
.privacy-label li {
    flex: 0 0 calc((100% - 2 * 40px) / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0 18px;
    text-align: center;
}
.privacy-label li img {
    mix-blend-mode:multiply;
}
.privacy-label li h3 {
    margin-top: 24px;
}
.privacy-label li p {
    font-size: var(--f14);
    line-height: 1.3em;
    margin-top: 10px;
    color: #999;
}

.list-title {
    display: block;
    margin: 40px 0;
    font-weight: 600;
}
.privacy-list {
    max-width: 80%;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    counter-reset: num;
    height: 145px;
    justify-content: flex-start;
    align-items: center;
    font-weight:400;
    font-size:var(--f16);
    line-height:1.5em;
    text-align:left;
}
.privacy-list li {
    width: 50%;
    counter-increment: num;
    position: relative;
    padding-left: 45px;
}
.privacy-list li::before {
    content: "제"counter(num)"조 ";
    position: absolute;
    left: 0;
}

.privacy-history {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 16px;
    max-width: 560px;
}
.privacy-history li {
    border: 1px solid #C2C2C2;
    border-radius: 10px;
    padding: 18px 24px;
    letter-spacing: -0.64px;
    cursor: pointer;
    transition:all 0.3s;
    display: flex;
    justify-content: space-between;
}
.privacy-history li:hover {
    background:rgba(194, 194, 194, 0.15);
    transition:all 0.3s;
}
.privacy-history li span {
    color:var(--sub-color);
}

/* 영상정보처리기기 목차 리스트 */
.num-list {
    width: 890px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    counter-reset: num;
    height: 110px;
    justify-content: flex-start;
    align-items: center;
    font-weight:400;
    font-size:var(--f16);
    line-height:1.5em;
    text-align:left;
}
.num-list li {
    width: 50%;
    counter-increment: num;
    position: relative;
    padding-left: 20px;
}
.num-list li::before {
    content: counter(num) ". ";
    position: absolute;
    left: 0;
}

.privacy-table {
    width: 100%;
    border-top: 2px solid #222;
    font-weight: 400;
    margin: 16px 0;
}

.privacy-table th {
    text-align: center;
    vertical-align: middle;
    background-color: #fafafa;
    border: 1px solid #cbcbcb;
    border-left: none;
    padding: 10px 0;
    color: #000;
    line-height: 1.5em;
    height: 68px;
}
.privacy-table th:last-child {
    border-right: 0;
}

.privacy-table td {
    line-height: 1.5em;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #cbcbcb;
    border-left: 0;
    padding: 10px 8px;
    word-break: keep-all;
    letter-spacing: -0.8px;
    color: var(--text2);
}
.privacy-table .br0 {
    border-right: 0 !important;
}

.privacy-table ul {
    text-align: left;
}
.privacy-table ul li {
    position: relative;
    padding-left: 8px;
}
.privacy-table ul li:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 3px;
    height: 3px;
    background: var(--text);
    border-radius: 50%;
}

/* 약관 - 이용약관 */
.terms-wrap {
    font-size: var(--f18);
    line-height: 1.5em;
}
.terms-wrap h1 {
    font-size: var(--f24);
    font-weight: 600;
    margin: 40px 0 -25px;
}
.terms-wrap h2 {
    font-weight: 600;
    margin-top: 30px;
}
.inside {
    padding: 0 12px;
}

/* ---------------- 추가 --------------- */
.tbl-guide-wrap {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.tbl-guide-wrap li {
    flex: 1;
}

.tbl-guide {
    width: 100%;
    min-height: 330px;
    position: relative;
    z-index: 0;
    font-size: var(--f14);
}

.tbl-guide thead th {
    font-weight: 400;
    color: #fff;
    padding: 15px 0;
    background-color: var(--main-color);
}

.tbl-guide thead th:first-child {
    color: var(--red);
}

.tbl-guide thead th:last-child {
    color: var(--blue);
}

.tbl-guide tbody td {
    color: #333;
    background-color: #f8f8f8;
    padding: 13px 0;
    text-align: center;
    font-weight: 400;
    line-height: 1.5em;
    position: relative;
    vertical-align: middle;
}

.tbl-guide tbody td.check {
    background-color: #B58A6D;
    color: #fff;
}

.tbl-guide tbody td.reser {
    background-color: #92B5F7;
    color: #fff;
}

/* 코스 */
.hole-wrap {
    position: relative;
    text-align: center;
    max-width: 100%;
    margin: 49px auto 52px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
}

.hole-wrap ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 900px;
    padding: 0 8px;
    margin: auto;
}

.hole-wrap ul li {
    position: relative;
    color: #CBCBCB;
    padding-top: 22px;
    flex: 1;
    text-align: center;
    scroll-snap-align: center;
}

.hole-wrap ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ccc;
    z-index: 1;
}

.hole-wrap ul li::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-index: 0;
}

.hole-wrap ul li:last-child::after {
    width: 0;
}

.hole-wrap ul li span {
    cursor: pointer;
    padding-top: 22px;
    position: relative;
    z-index: 1;
}

.hole-wrap ul li.active::before {
    background-color: var(--sub-color);
}

.hole-wrap ul li.active span {
    color: var(--default-color);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.hole-info-wrap li.course-img {
    background-color: #f9f9f9;
    border-radius: 16px;
    padding: 61px 64px 58px 64px;
    display: flex;
    align-items: center;
    gap: 88px;
    flex-wrap: wrap;
}
.hole-info-wrap .course-img .hole-text {
    flex: 1;
    color: var(--default-color);
}

.hole-info-wrap li.course-img figure img {
    max-width: 100%;
    display: block;
    margin: auto;
    border-radius: 16px;
}

.hole-info h1 {
    font-size: var(--f48);
}
.hole-info h1 span {
    font-weight: 700;
}

.p-box {
    margin: 32px 0 16px;
    display: flex;
    gap: 32px;
    font-size: var(--f24);
    align-items: center;
    color: var(--main-color2);
    font-weight: 600;
}
/* 밸리코스일때 컬러 변경 */
.p-box.valley {
    color: var(--sub-color);
}

.p-box li {
    position: relative;
}
.p-box li:before {
    content: '';
    position: absolute;
    top: 8px;
    left: -16px;
    width: 1px;
    height: 8px;
    background: #999;
}
.p-box li:first-child:before {
    display: none;
}

.m-box {
    display: flex;
    padding: 16px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.m-box li {
    position: relative;
    padding-left: 18px;
    color: var(--default-color)!important;
}
/* 미터박스 라인 */
.m-box li:before {
    content: '';
    position: absolute;
    top: 5px;
    left: -8px;
    width: 1px;
    height: 8px;
    background: #999;
}
.m-box li:first-child:before {
    display: none;
}

/* 미터박스 컬러 디폴트 - 블랙 */
.m-box li:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
}
.m-box li.blue:after {
    background: #00a3ff;
}
.m-box li.white:after {
    border: 1px solid var(--default-color);
    background: transparent;
}
.m-box li.red:after {
    background: #e32d2e;
}

.hole-desc {
    font-size: var(--f18);
    margin: 16px 0;
    line-height: 1.5rem;
}

/*코스 서브 이미지*/
.course-sub-img {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.course-sub-img img {
    border-radius: 16px;
}


/* 연단체 관련 */
.time-date-select {
    max-width: 1200px;
    margin: 45px auto 110px;
    border-bottom: 1px solid #CBCBCB;
    padding: 0 10px 15px;
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); full로 리스트 뿌려줄때*/
    grid-template-columns: repeat(auto-fit, minmax(0, 180px));  /* 고정사이즈 */
    gap: 12px 20px;
}

.time-date-select input {
    display: none;
}

.time-date-select label {
    display: inline-block;
    width: 100%;
    padding: 8px 0;
    border: 1px solid #999;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-align: center;
    cursor: pointer;
}

.time-date-select input:checked + label {
    background: #000;
    color: #fff;
    border-color: #000;
}

.tbl-sty01.group th{
    border-right: 1px solid #CBCBCB;
    word-break: keep-all;
}

.tbl-sty01.group td{
    padding: 15px 27px;
}

.tbl-sty01.group td input{
    height: 50px;
}

.close-layout {
    position: absolute;
    bottom: -64px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF1C;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.pop-text {
     text-align: center;
     line-height: 1.3em;
     max-height: 400px;
     overflow-y: scroll;
 }
.pop-text::-webkit-scrollbar {
    display: none;
}
.pop-title {
    font-weight: 700;
    font-size: var(--f24);
    margin-bottom: 8px;
    line-height: 1.3em;
}
.pop-text p {
    font-weight: 500;
    margin-bottom: 16px;
    word-break: keep-all;
    line-height: 1.5em;
}

.pop-text .orange {
    color: var(--main-color2);
}







