@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;
}

.line15 {
    line-height: 1.5em;
}

.pre-line {
    white-space: pre-line;
}

.keep-all {
    word-break: keep-all;
}

.text-under {
    text-decoration: underline;
}

.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;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px !important;
}

.mt60 {
    margin-top: 60px !important;
}

.mt70 {
    margin-top: 70px !important;
}

.mt80 {
    margin-top: 80px !important;
}

.mt90 {
    margin-top: 90px !important;
}

.mt100 {
    margin-top: 100px !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;
}

.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;
}

.mb-20 {
    margin-bottom: -20px;
}

.img100 {
    width: 100%;
}

.red {
    color: var(--red) !important;
}

.blue {
    color: var(--blue) !important;
}

.dark-blue {
    color: var(--dark-blue) !important;
}

.main-color {
    color: var(--main-color);
}

.hidden {
    display: none !important;
}

.b {
    font-weight: 500 !important;
}

div:empty {
    padding: 15px 0;
}

select {
    appearance: none;
    -webkit-appearance: none;
    color: #333;
    background: url('/images/ic_under-4797cf8f38d958d3dd317837da7b20fd.svg') center right 5px no-repeat;
    background-size: 10px 8px;
}

select option[value=""][disabled] {
    display: none;
}

select[disabled] {
    opacity: 1;
    background-image: none;
}

/*common*/
.common-tit {
    width: 100%;
    text-align: center;
    color: #292929;
    margin: 70px 0;
}

.common-tit h4 {
    font-family: var(--font-en);
    font-size: var(--f20);
    padding-bottom: 10px;
    text-transform: uppercase;
    font-weight: 500;
}

.common-tit h2 {
    font-size: var(--f36);
    letter-spacing: -0.9px;
    font-weight: 400;
}

.common-tab-wrap {
    width: 100%;
    line-height: 82px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.common-tab-wrap a {
    flex: 1;
    max-width: 240px;
    text-align: center;
    position: relative;
    transition: color .2s ease-in-out;
    font-size: var(--f24);
    color: #9E9E9E;
    border-bottom: 1px solid #9E9E9E;
}

.common-tab-wrap a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background-color: #0D0D0D;
    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-wrap a.on {
    font-weight: 600;
    color: #0D0D0D;
}

.container {
    width: 1200px;
    margin: auto;
    position: relative;
    padding: 90px 0;
}

.normal-pop {
    border-radius: 20px;
    width: 90%;
    max-width: 660px;
    max-height: 80%;
    min-height: 350px;
    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;
    overflow-y: auto;
}

.title-bar {
    font-size: var(--f28);
    color: #292929;
    letter-spacing: -0.48px;
    text-align: center;
    position: relative;
    font-weight: 500;
    margin: 20px 0;
}

.title-bar::before {
    content: '';
    height: 3px;
    width: 38px;
    background-color: var(--main-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: 6px;
}

.btn-basic-wrap a {
    flex: 1;
    max-width: 196px;
    background-color: #dedede;
    color: #707070;
    font-size: var(--f20);
    line-height: 50px;
    text-align: center;
}

.btn-basic-wrap a.on {
    background-color: var(--sub-color);
    color: #fff;
}

.pagination {
    margin: 30px 0;
}

.pagination li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 2px;
}

.pagination li button {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination li button.on {
    background-color: var(--main-color);
    color: #fff;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    padding-top: 60px;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
}

.breadcrumb li {
    position: relative;
    border-right: 1px solid #ccc;
}

.breadcrumb li.home {
    padding-right: 10px;
}

.breadcrumb .dropdown-btn {
    width: 150px;
    padding: 4px 8px;
    cursor: pointer;
    text-align: left;
    position: relative;
}

.breadcrumb .dropdown-btn::after {
    content: '▼';
    position: absolute;
    color: #565656;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--f10);
}

.breadcrumb .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 150px;
    max-height: 290px;
    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;
}

.custom-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    background: url('/images/ic_check_off-1501e44722789ca2977ab6c3999b4dd9.svg') 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-75944b2853d96fbef5c285bd11fbb5d8.svg') no-repeat center center;
    background-size: 20px 20px;
}

/* 예약안내 - 실시간예약 */
.title-reser {
    padding: 36px 0 26px;
    text-align: center;
    font-size: var(--f24);
    font-weight: 500;
}

.tbl-sty01.delegate {
    margin-bottom: 60px;
}

.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(--main-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: 270px;
    margin: 30px 0 46px;
    position: relative;
    z-index: 0;
    font-size: var(--f18);
}

.calendar-box table thead th {
    font-weight: 400;
    color: var(--black);
    padding: 15px 0;
}

.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: #cbcbcb;
    padding: 5px 0;
    text-align: center;
    font-weight: 500;
    line-height: 1.5em;
    position: relative;
    vertical-align: middle;
    height: 56px;
}

.calendar-box table tbody td.possible {
    color: #292929;
    cursor: pointer;
    vertical-align: baseline;
}

.calendar-box table tbody td.possible:first-child {
    color: #e90505;
}

.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(--main-color2);
    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);
}

.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 #000;
    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;
}

.tab-reser-course {
    text-align: right;
}

.tab-reser-course select {
    margin: 16px 10px;
    border: 1px solid #e0e0e0;
    width: 100%;
    max-width: 190px;
    line-height: 45px;
    padding: 0 16px;
    background: #fafafa url('/images/ic_under-4797cf8f38d958d3dd317837da7b20fd.svg') center right 16px no-repeat;
    background-size: 16px 9px;
}

.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: 100%;
    max-width: 135px;
    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 b {
    display: block;
    /*margin-right: 5px;*/
}

/*.tbl-reser td a:hover {
    background-color: var(--sub-color);
    color: #fff;
}*/

span.normal-fee {
    color: var(--blue);
    /*display: block;*/
}

span.special-fee {
    color: var(--red);
    display: block;
}

span.discount-fee {
    text-decoration: line-through;
    color: #878787;
}

.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;
}

.reser-text {
    padding: 10px 0;
    line-height: 1.5em;
    color: #707070;
}

/* //예약안내 - 실시간예약 */

/* 예약안내 - 팝업 */
.btn-delegate {
    text-align: center;
    margin: 25px auto 0;
}

.btn-delegate button {
    width: 150px;
    line-height: 38px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: var(--f14);
}

.captcha-area {
    border: 1px solid #ccc;
    text-align: center;
    padding: 30px 0;
    margin-top: 20px;
}

.captcha-box {
    width: 96%;
    max-width: 348px;
    margin: auto;
}

.captcha-box p {
    font-size: var(--f14);
    padding-bottom: 10px;
}

.captcha-box ul {
    display: flex;
    width: 100%;
    gap: 14px;
    margin: auto;
}

.captcha-img {
    flex: 1;
}

.captcha-img img {
    width: 100%;
}

.captcha-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    max-width: 156px;
}

.captcha-controls button {
    flex: 1 1 calc(50% - 2px);
    line-height: 22px;
    text-align: center;
    font-size: var(--f12);
    border: 1px solid #ccc;
    border-radius: 4px;
}

.captcha-controls .captcha-input {
    flex: 1 1 100%;
    height: 30px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: var(--f12);
}

/* 위임 */
.delegate-area .tbl-sty01 th {
    word-break: keep-all;
}

.delegate-area .tbl-sty01 input[type=text] {
    height: 45px;
    border: 1px solid #ccc;
}

.delegate-area .tbl-sty01 .board-radio-box {
    justify-content: center;
    gap: 8px 16px;
}

.delegate-area {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease;
}

.delegate-area.open {
    max-height: 2000px;
}

/* //예약안내 - 팝업 */

/* 예약안내 - 대기예약 */
.calendar-wrap.wait .tee {
    display: none;
}

.calendar-wrap.wait .calendar-box table tbody td.possible {
    vertical-align: middle;
}

.tbl-sty01.time-list td {
    padding: 10px;
}

.time-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
    gap: 12px;
}

.time-group input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.time-group label {
    display: block;
    padding: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: var(--f14);
    text-align: center;
    cursor: pointer;
    color: #221E1F;
    background: #fff;
    user-select: none;
}

.time-group input[type="radio"]:checked + label {
    background-color: #2f6fb7;
    border-color: #2f6fb7;
    color: #fff;
    font-weight: 700;
}

/* //예약안내 - 대기예약 */

.tbl-sty01 {
    width: 100%;
    border-top: 2px solid #000;
    font-weight: 400;
    color: #363636;
}

.tbl-sty01 th {
    text-align: center;
    vertical-align: middle;
    background-color: #fafafa;
    border-bottom: 1px solid #cbcbcb;
    padding: 10px 0;
    font-weight: 500;
    height: 50px;
    word-break: keep-all;
}

.tbl-sty01 td {
    line-height: 1.4em;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #cbcbcb;
    padding: 10px 2px;
    font-weight: 300;
    height: 50px;
    word-break: keep-all;
}

/* 회원가입 -  로그인 */
.login-text-box {
    background-color: #F8F8F8;
    border-radius: 20px;
    padding: 20px 14px;
    line-height: 1.4em;
    max-width: 660px;
    margin: 0 auto 20px;
    color: #373737;
    font-size: var(--f14);
}

.login-text-box li {
    position: relative;
    padding-left: 10px;
    word-break: keep-all;
}

.login-text-box li::before {
    content: '·';
    position: absolute;
    left: 0;
}

.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: 5px;
    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;
}

/* 회원가입 - 회원가입 */
.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 10px;
    padding: 6px 0;
}

.terms-list li h2 {
    width: 70%;
    max-width: 280px;
    font-size: var(--f18);
    word-break: keep-all;
    line-height: 1.4em;
    padding-left: 10px;
}

.terms-list-right {
    display: flex;
    flex-basis: 30%;
    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-notice {
    border-block: 1px solid #BCBCBC;
    padding: 16px 6px;
    max-width: 450px;
    margin: auto;
}

.terms-notice li {
    position: relative;
    padding-left: 16px;
    line-height: 1.5em;
    font-size: var(--f14);
    word-break: keep-all;
}

.terms-notice li::before {
    content: '·';
    position: absolute;
    left: 6px;
}

.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(--f20);*/
    padding: 0 40px;
    word-break: keep-all;
    line-height: 1.2em;
}

.agree-pop-contents {
    overflow-y: auto;
    flex-grow: 1;
    padding: 20px;
    min-height: 300px;
    max-height: 50vh;
    border-top: 1px dotted #ddd;
}

.agree-box {
    line-height: 1.5em;
}

.agree-box b {
    font-weight: 700;
}

.agree-box h2 {
    font-weight: 600;
    padding: 8px 0;
}

.agree-box .tbl-sty01 th,
.agree-box .tbl-sty01 td {
    word-break: keep-all;
}

.tbl-sty01.left td {
    text-align: left;
    padding: 10px;
}

.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: 8px 0;
    color: #707070;
    font-size: var(--f14);
    letter-spacing: -0.5px;
}

/* 회원실명확인 */
.login-wrap.identify {
    border: 0;
    padding-top: 0;
}

.identify-box {
    background-color: #f5f5f5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
    max-width: 400px;
    margin: auto;
    cursor: pointer;
}

.identify-box h1 {
    width: 124px;
    height: 124px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
}

.identify-box h2 {
    font-size: var(--f18);
}

.identify-box p {
    font-size: var(--f14);
    color: #999;
}

.identify-text {
    margin-top: 30px;
    line-height: 1.4em;
}

.identify-text h2 {
    color: var(--sub-color);
    font-size: var(--f18);
    font-weight: 500;
}

.identify-text p {
    font-weight: 400;
    margin-top: 30px;
}

.identify-box:hover h1 {
    background-color: var(--main-color);
}

.identify-box:hover h1 img {
    filter: brightness(0) invert(1);
}


/* 정보 입력 */
.join-notice {
    border-radius: 20px;
    background: #F8F8F8;
    padding: 28px 20px;
    max-width: 660px;
    margin: 0 auto 20px;
}

.join-notice li {
    position: relative;
    padding-left: 12px;
    line-height: 1.3em;
    word-break: keep-all;
}

.join-notice li::before {
    content: '·';
    position: absolute;
    left: 0;
}

.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: 0 10px;
    height: 60px;
}

.join-radio-box input {
    accent-color: var(--main-color);
    width: 20px;
    height: 20px;
}

.phone .join-radio-box,
.year .join-radio-box {
    height: 40px;
}

.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-4797cf8f38d958d3dd317837da7b20fd.svg") center right 15px no-repeat;
    background-size: 10px 8px;
    padding: 0 16px;
    line-height: 60px;
    /*border: none;*/
    flex: 1;
    border: 1px solid #CBCBCB;
;
}

/* 마이페이지 - 정보수정 & 회원탈퇴 */
.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;
}

/* 마이페이지 - 예약확인 */
.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(--sub-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-0aa764fc56d776a40657552e814950a6.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-d9435be5db25de075f55c3ad6001cbdc.svg") center center no-repeat;
    transform: rotateZ(180deg);
}

.nav-buttons .swiper-button-next {
    right: -30px;
    background: url("/images/ic_slider_r-d9435be5db25de075f55c3ad6001cbdc.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;
}

.title-area {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0 15px;
    flex: 1;
    font-size: var(--f18);
}

.title-area b {
    flex-basis: 70px;
    font-size: var(--f16);
    text-align: center;
}

.title-area .tag {
    display: inline-block;
    width: 90%;
    max-width: 70px;
    border-radius: 5px;
    text-align: center;
    line-height: 28px;
    color: #fff;
    font-size: var(--f14);
    margin-right: 5px;
}

.title-area .tag.join {
    background-color: #F98613;
}

.title-area .tag.invite {
    background-color: #189DC3;
}

.title-area .tag.deadline {
    background: #999;
}

/*.title-area strong {
    font-weight: 600;
    padding-right: 20px;
}*/

.board-list .date {
    flex-basis: 220px;
    text-align: right;
    color: #707070;
}

.board-list li .title {
    flex: 0 1 auto;
    display: inline-block;
    line-height: 1.3em;
}

.board-list li:hover a span {
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* 게시판 검색 추가 260115*/
.board-search-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 60px 0;
}

.board-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    /*flex: 1;
    min-width: 0;*/
}

.search-select,
.search-input[type=text] {
    height: 58px;
    border-radius: 6px;
    color: #8f8f8f;
    border: 1px solid #dddddd;
    background-color: #fff;
}

.search-select {
    width: 154px;
    background-position: center right 25px;
    padding: 0 25px;
}

.search-input[type=text] {
    width: 297px;
    background-color: #fff;
    color: #000;
}

.search-input::placeholder {
    color: #8f8f8f;
}

.search-btn {
    width: 90px;
    height: 58px;
    background: #7b7b7b;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* 클럽소식 - 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: 5px 15px;
    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;
    max-width: 90%;
}

.board-view-top ul.file-area li.file::before {
    content: '|';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.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 30px;
    /*margin-bottom: 70px;*/
    line-height: 1.5em;
    text-align: center;
}

.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;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    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;
}

.event-list-wrap h3 {
    font-size: var(--f18);
    margin: 10px 0;
    line-height: 1.5em;
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.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(--f18);
    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;
}

/* 클럽소식 - 영광의순간 */
.honor-list-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    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;
}

.honor-info p b {
    font-weight: 600;
}

/* 클럽소식 - 조인게시판 */
.post-info-list {
    gap: 10px;
    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;
}

.reply-area {
    width: 100%;
    background-color: #fafafa;
    padding: 45px 40px 40px;
    line-height: 1.5em;
    margin-top: 80px;
}

.replay-list {
    border-top: 1px solid #DADADA;
    padding-top: 10px;
    margin-top: 10px;
}

.replay-list:first-child {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}

.replay-list h4 {
    font-size: var(--f20);
    font-weight: 500;
    padding-bottom: 15px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.replay-list h4 span {
    font-size: var(--f16);
    color: #707070;
    font-weight: 400;
}

.replay-con {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.replay-con p {
    padding: 10px 0;
    flex: 1 1 0;
}

.btn-reply-wrap {
    flex: 1 1 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 15px;
}

.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;
}

.reply-enter {
    width: 100%;
    background-color: #fafafa;
    padding: 45px 40px 40px;
    margin-top: 30px;
}

.reply-textarea {
    padding: 10px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #dadada;
}

.reply-textarea textarea {
    resize: none;
    width: 100%;
    height: 95px;
    border: 1px solid #dedede;
    overflow-y: auto;
    background-color: #fff;
}

.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;
}

.board-radio-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 25px;
}

.board-radio-box span {
    display: flex;
    align-items: center;
    gap: 0 5px;
}

.board-radio-box input {
    accent-color: var(--main-color);
    width: 20px;
    height: 20px;
}

.date-wrap {
    position: relative;
    width: 100%;
    max-width: 260px;
}

.date-wrap input[type="date"] {
    position: relative;
    width: 100%;
    max-width: 260px;
    height: 38px;
    padding: 0 10px 0 20px;
    border: 1px solid #ccc;
    appearance: none;
    background-color: #f5f5f5;
    color: #666;
}

.date-wrap input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
}

.date-wrap::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    background: url("/images/ic_input_calendar-d6c903bcebd6be913ac7bd8245177008.svg") no-repeat center center;
    pointer-events: none;
}

.tbl-write td select {
    width: 100%;
    max-width: 125px;
    height: 40px;
    background-color: #f5f5f5;
    padding: 0 10px 0 20px;
    border: 1px solid #ccc;
    color: #666;
}

/* 스코어카드 */
.score-wrap {
    width: 100%;
}

.score-wrap li {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px dotted #ccc;
}

.score-wrap li:first-child {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}

/* 명예의전당 */
.tag-egle {
    display: inline-block;
    width: 80%;
    max-width: 72px;
    line-height: 30px;
    margin: auto;
    border-radius: 10px;
    color: #fff;
    background-color: #E4A839;
}

.tag-ace {
    display: inline-block;
    width: 80%;
    max-width: 72px;
    line-height: 30px;
    margin: auto;
    border-radius: 10px;
    color: #fff;
    background-color: #189DC3
}


/*.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;
}*/

/* 대회기록 */
.board-list.record li {
    cursor: pointer;
}

.board-list.record li:hover a span {
    text-decoration: none;
}

.board-list.record li .title-area {
    flex-wrap: wrap;
    gap: 15px;
}

.board-list.record li .title-area .record-number {
    font-weight: 700;
    text-align: center;
}

.board-list.record li .title-area .record-number b {
    width: 60px;
    display: inline-block;
}

.board-list.record li .title-area .record-number strong {
    width: 100px;
    display: inline-block;
}

.board-list.record li .title-area .title span {
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
    font-weight: 700;
}

.board-list.record li .title-area .title span::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 13px;
    background-color: #000;
}

.board-list.record li .title-area .title span:last-child::after {
    content: '';
    display: none;
}

.board-list.record li .title-area .title span em {
    font-weight: 300;
    padding-left: 15px;
}

.board-list.record li.record-view-area {
    padding: 30px 0;
    text-align: center;
    width: 100%;
    display: none;
    overflow: hidden;
    border-bottom: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.board-list.record li.record-view-area.open {
    opacity: 1;
    border-bottom: 1px solid #ddd;
}

.board-list.record li.record-view-area:hover {
    background-color: #fff;
}

.record-view-area figure img {
    max-width: 100%;
    display: inline-block;
}

.record-view-area .btn-record-close {
    margin: 20px auto 0;
    border: 1px solid #ccc;
    text-align: center;
    width: 100px;
    line-height: 50px;
    font-size: var(--f18);
    color: #707070;
}

/* 예약안내 - 이용안내*/
.guide-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 15px;
    margin-bottom: 80px;
}

.guide-tab a {
    flex-shrink: 1;
    min-width: 138px;
    padding: 10px 30px;
    background-color: #EFEFEF;
    text-align: center;
    color: #9C9C9C;
    border-radius: 30px;
    font-size: var(--f20);
    transition: .1s all ease-in-out;
}

.guide-tab a.on, .guide-tab a:hover {
    background-color: var(--main-color);
    color: #fff;
}

.step-wrap {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    margin-top: 20px;
}

.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: #63bbd4;
    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;
}

.guide-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 36px;
    counter-reset: n;
}

.guide-list > li {
    flex: 1 1 calc(50% - 18px);
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 30px 60px;
    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: 100%;
    font-size: var(--f16);
    color: #707070;
}

.guide-list.terms > li p {
    display: flex;
    align-items: center;
    width: calc(100% - 60px);
    gap: 0 20px;
}

.guide-list.terms > li p strong {
    flex-basis: 190px;
    color: #333;
    font-weight: 500;
}

.guide-list.terms > li p em {
    flex-basis: calc(100% - 210px);
}

.guide-list.terms > li p em b {
    font-weight: 700;
    color: #333;
}

.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 > p > em > .ct-box {
    display: block;
    background-color: #f8f8f8;
    padding: 5px 10px;
    margin-top: 10px;
}

.guide-list.terms > li p em {
    flex-basis: calc(100% - 210px);
}

.tbl-sty01.transfer td {
    vertical-align: top;
    line-height: 1.8em;
    padding: 15px 10px;
}

.title-guide {
    position: relative;
    font-size: var(--f24);
    padding-bottom: 17px;
    font-weight: 500;
    border-bottom: 1px solid #2e2e2e;
    margin-top: 60px;
}

.title-guide a {
    position: absolute;
    right: 0;
    bottom: 9px;
    width: 120px;
    line-height: 38px;
    border-radius: 6px;
    color: #fff;
    text-align: center;
    font-size: var(--f16);
    background-color: var(--main-color);
}

.guide-text-box,
.transfer-divide li p {
    padding: 10px 0;
    line-height: 1.8em;
    color: #626262;
}

.transfer-divide {
    display: flex;
    gap: 20px;
}

.transfer-divide li {
    flex: 1;
}

/* 코스안내 - 코스소개 */
.course-intro-text {
    text-align: center;
    word-break: keep-all;
}

.course-intro-text h2 {
    font-size: var(--f24);
    padding-bottom: 27px;
    color: var(--blue);
    font-weight: 500;
    margin-top: 48px;
}

.course-intro-text h3 {
    color: #2D2D2D;
    padding: 27px 0;
    line-height: 1.6em;
}

.course-intro-text p {
    color: #707070;
    letter-spacing: -0.04px;
    line-height: 1.6em;
}

.design-concept {
    position: relative;
    margin: 48px 0;
    padding: 58px 0;
    text-align: center;
    border-block: 1px solid #d7d7d7;
}

.design-concept p img {
    max-width: 100%;
    margin: auto;
}

.course-info-text {
    padding-bottom: 10px;
    line-height: 1.4em;
}

.course-info-text h2 {
    font-size: var(--f18);
    font-weight: 500;
    padding: 10px 0;
}

.course-info-text h3 {
    font-size: var(--f14);
    color: #ae6d08;
    padding-bottom: 10px;
}

.course-info-text.cos2 h3 {
    color: #103276;
}

.course-info-text.cos3 h3 {
    color: #A31C58;
}

.course-info-text p {
    font-size: var(--f14);
    color: #a2a2a2;
}

.tbl-sty03 {
    width: 100%;
    border-top: 2px solid #000;
    font-weight: 400;
    color: #363636;
    border-collapse: separate;
    border-spacing: 0;
}

.tbl-sty03 th {
    text-align: center;
    vertical-align: middle;
    border: 1px solid #ccc;
    border-top: 0;
    border-left: 0;
    padding: 10px 0;
    font-weight: 500;
    height: 50px;
}

.tbl-sty03 thead th {
    background-color: #9f9f9f;
    color: #fff;
}

.tbl-sty03 thead th:first-child,
.tbl-sty03 tbody th:first-child {
    border-left: 1px solid #ccc;
}

.tbl-sty03 thead th.bg-yellow {
    background-color: #F2A223;
}

.tbl-sty03 thead th.bg-blue {
    background-color: #235bcc;
}

.tbl-sty03 thead th.bg-pink {
    background-color: #F92382;
}

.tbl-sty03 tbody th {
    background-color: #fff;
}

.tbl-sty03 tbody th span {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: inline-block;
}

.tbl-sty03 .blue-ball {
    background-color: #235BCC;
}

.tbl-sty03 .white-ball {
    background-color: #fff;
    border: 1px solid #828282;
}

.tbl-sty03 .red-ball {
    background-color: #E22525;
}

.tbl-sty03 td {
    line-height: 1.4em;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #ccc;
    border-top: 0;
    border-left: 0;
    padding: 10px 2px;
    font-weight: 300;
    height: 50px;
    word-break: keep-all;
}

.m-only {
    display: none;
}

.rating-desc {
    text-align: center;
    color: #707070;
    line-height: 1.5em;
}

.rating-img {
    text-align: center;
    padding: 32px 0 25px;
}

.tbl-scroll {
    -webkit-overflow-scrolling: auto;
}

.tbl-scroll .tbl-sty01,
.tbl-scroll .tbl-sty03 {
    width: 100%;
}

.video-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
    margin-top: 38px;
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tbl-sty01 .bg-black {
    background-color: #000;
    color: #fff;
}

.tbl-sty01 .bg-blue {
    background-color: #0367AD;
    color: #fff;
}

.tbl-sty01 .bg-yellow {
    background-color: #FFC300;
}

.tbl-sty01 .bg-red {
    background-color: #E22525;
    color: #fff;
}

/* 홀인원 상 현황 */
.sponsor-title {
    position: relative;
    margin: 50px 0;
    text-align: center;
}

.sponsor-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #acacac;
}

.sponsor-title span {
    position: relative;
    display: block;
    max-width: 136px;
    line-height: 45px;
    border-radius: 30px;
    background: #E69719;
    font-size: var(--f24);
    font-weight: 700;
    margin: auto;
    color: #fff;
    z-index: 1;
}

.sponsor-title.mh span {
    background-color: #1E53BD;
}

.sponsor-title.bg span {
    background-color: #CD1F6C;
}

.sponsor-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sponsor-area {
    flex: 0 0 587px;
}

.sponsor-sub-title {
    font-size: var(--f20);
    font-weight: 700;
    padding-bottom: 16px;
}

.sponsor-card {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #bababa;
    border-radius: 14px;
    overflow: hidden;
}

.sponsor-card th {
    width: 120px;
    height: 37px;
    padding: 12px 20px;
    background: #FFF9EF;
    font-weight: 600;
    color: #444;
    border-right: 1px solid #bababa;
    text-align: left;
}

.sponsor-wrap.mh th {
    background-color: #F0F5FF;
}

.sponsor-wrap.bg th {
    background-color: #FFF5FA;
}

.sponsor-card td {
    padding: 12px 20px;
    color: #222;
    line-height: 1.5em;
    border-bottom: 1px solid #bababa;
}

.sponsor-card tr:last-child td {
    border-bottom: 0;
}

.sponsor-card tr:first-child td {
    font-weight: 700;
}

/* 클럽안내 - 클럽소개 */
.container.wide {
    width: 100%;
}

.club-list-wrap {
    position: relative;
    padding: 0 100px;
}

.club-title {
    width: 100%;
    margin-top: 90px;
    text-align: center;
}

.club-title h2 {
    font-size: var(--f40);
    font-weight: 300;
    line-height: 1.3em;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.club-title p {
    font-size: var(--f20);
    color: #949494;
    padding-bottom: 70px;
    line-height: 1.5em;
    max-width: 600px;
    word-break: keep-all;
    margin: auto;
}

.club-second-title {
    width: 100%;
    margin-top: 150px;
    text-align: center;
}

.club-second-title h2 {
    font-size: var(--f40);
    font-weight: 900;
    text-transform: uppercase;
    padding-bottom: 34px;
    color: #474747;
}

.club-second-title p {
    font-size: var(--f20);
    color: #949494;
    padding-bottom: 80px;
    line-height: 1.5em;
    max-width: 1060px;
    word-break: keep-all;
    margin: auto;
}

.club-divide ul {
    display: flex;
    gap: 25px;
}

.img-club-slide {
    flex: 2 1 0;
    height: 800px;
    border-radius: 42px;
    overflow: hidden;
}

.img-club-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.club-slide-wrap {
    flex: 3 1 0;
    min-width: 0;
    background-color: #189DC3;
    border-radius: 42px;
    overflow: hidden;
}

.club-swiper,
.club-swiper .swiper-slide {
    height: 800px;
    position: relative;
}

.club-swiper-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 15px;
}

.club-swiper-nav .swiper-btn-prev,
.club-swiper-nav .swiper-btn-next {
    cursor: pointer;
}

.club-slider-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    padding: 0 130px;
}

.club-slider-text h2 {
    font-size: var(--f32);
    font-weight: 600;
    word-break: keep-all;
}

.club-slider-text p {
    font-size: var(--f18);
    line-height: 1.3em;
    padding: 30px 0;
    font-weight: 300;
    letter-spacing: -0.5px;
    word-break: keep-all;
}

/* 클럽안내 - 부대시설 */
.facil-swiper-wrap {
    width: 100%;
    position: relative;
    padding-bottom: 28px;
}

.facil-swiper-wrap.snack {
    display: none;
}

.facil-swiper-wrap.snack.on {
    display: block;
}

.facil-text-box {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    text-align: left;
    padding-top: 28px;
}

.facil-text-box h2 {
    font-size: var(--f32);
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: -0.4px;
    word-break: keep-all;
    line-height: 1.3em;
}

.facil-text-box h3 {
    padding-top: 16px;
    color: #707070;
    font-size: var(--f18);
    word-break: keep-all;
    line-height: 1.5em;
}

.facil-text-box h3 span {
    color: #5b5b5b;
}

.facil-text-box p {
    color: #707070;
    line-height: 1.8em;
    word-break: keep-all;
    padding-top: 28px;
}

.food-menu-box {
    width: 1200px;
    margin: auto;
}

.food-menu-wrap {
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.food-menu-wrap p {
    text-align: center;
}

.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);
}

/* 클럽소개 - 연혁*/
.history-wrap {
    position: relative;
    width: 100%;
    padding-top: 70px;
    z-index: 2;
}

.history-wrap::before {
    content: '';
    background: url("/images/bg_history-e1f170feed80e267f98e3fe7a46948a0.jpg") center top no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    width: 100%;
    height: 680px;
    z-index: -1;
}

.history-list-wrap {
    background-color: #fff;
    border-radius: 20px;
    padding: 65px 30px;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.history-list-wrap h1 {
    background: url("/images/logo-0aa764fc56d776a40657552e814950a6.svg") center center no-repeat;
    background-size: 184px 46px;
    width: 184px;
    height: 46px;
    font-size: 0;
    margin: 0 auto 50px;
}

.history-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 46px 24px;
}

.history-list li {
    position: relative;
    border: 1px dotted #a4a4a4;
    border-radius: 12px;
    min-height: 75px;
    padding: 12px 28px 12px;
    display: flex;
    align-items: center;
}

.history-list li .history-year {
    position: absolute;
    top: -15px;
    left: 16px;
    padding: 2px 10px;
    background-color: #fff;
    z-index: 5;
    font-size: var(--f24);
    color: var(--main-color);
    font-weight: 600;
}

.history-con {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    flex: 1 1 auto;
    min-width: 0;
    line-height: 1.4em;
    word-break: keep-all;
}

.history-con b {
    flex: 0 0 auto;
    white-space: nowrap;
    font-weight: 600;
}


/* 클럽소개 - 오시는길 */
.sub-map-area {
    position: relative;
    width: 100%;
}

#daumRoughmapContainer1764213024608 {
    width: 100%;
    height: 720px !important;
    position: relative;
}

#daumRoughmapContainer1764213024608 > div,
#daumRoughmapContainer1764213024608 iframe {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.sub-map-info {
    position: absolute;
    right: 100px;
    bottom: 50px;
    z-index: 5;
    background-color: #fff;
    width: 540px;
    height: 240px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #212429;
}

.sub-map-info h1 {
    font-size: var(--f36);
    font-weight: 100;
    color: #999;
}

.sub-map-info h2 {
    padding: 20px 0 15px;
    font-size: var(--f24);
    font-weight: 600;
}

.sub-map-info p {
    font-size: var(--f20);
    line-height: 1.5em;
}

.sub-map-info a {
    margin-top: 32px;
    font-weight: 400;
    color: #C8A445;
    text-decoration: underline;
}

.map-info-wrap {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 60px 16px;
}

.map-info-wrap h2 {
    font-size: var(--f24);
    font-weight: 500;
    border-bottom: 1px solid #000;
    padding: 17px 0;
    margin-bottom: 10px;
}

.map-info-wrap p {
    line-height: 1.5em;
}

.map-info-wrap p b {
    font-weight: 600;
}

.map-info-wrap p span {
    color: var(--main-color);
    font-weight: 600;
}

.way-line {
    width: 100%;
    max-width: 900px;
}

.way-line ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin-top: 30px;
}

.way-line ul li {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.way-line ul li::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.way-line ul li::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    transform: translateX(50%);
    width: 100%;
    height: 1px;
    background-color: #CBCBCB;
}

.way-line ul li:last-child::after {
    display: none;
}

.way-line ul li.finish {
    color: var(--sub-color);
    font-weight: 600;
}

.way-line ul li.finish::before {
    background-color: var(--sub-color);
}

.tel-info-list {
    position: relative;
    display: flex;
    gap: 25px;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.tel-info-list ul {
    flex: 1;
    display: flex;
    justify-content: space-evenly;
    border-radius: 10px;
    border: 1px solid #c2c2c2;
    padding: 25px;
}

.tel-info-list ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.tel-info-list ul li h2 {
    font-size: var(--f20);
    font-weight: 500;
    line-height: 1.8em;
    padding-bottom: 5px;
}

.tel-info-list ul li h3 {
    color: #4C4C4C;
    font-size: var(--f24);
    line-height: 1.8em;
    text-align: center;
}

.tel-info-list ul li p {
    font-size: var(--f20);
    font-weight: 400;
    letter-spacing: -0.8px;
    color: #707070;
}

/* 개인정보처리방침 */
.policy-wrap {
    font-size: var(--f14);
    line-height: 1.5em;
    color: #333;
}

.policy-wrap.terms {
    display: none;
}

.policy-wrap.terms.on {
    display: block;
}

.policy-wrap h2 {
    font-size: var(--f18);
    font-weight: 600;
    padding: 15px 0;
}

.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: 36px auto 100px;
    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;
    font-family: var(--font-en);
    font-weight: 600;
    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: #D9D9D9;
    z-index: 1;
}

.hole-wrap ul li::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 100%;
    height: 1px;
    background-color: #d9d9d9;
    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: #000;
}

.hole-wrap ul li.active span {
    color: #000;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.hole-info-wrap {
    display: flex;
    gap: 20px 28px;
    align-items: flex-start;
    justify-content: space-between;
}

.hole-info-wrap li {
    flex: 1;
}

.hole-info {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    margin-bottom: 20px;
}

.hole-info h1 {
    font-size: var(--f64);
    font-weight: 600;
    display: inline-block;
    margin-bottom: -7px;
}

.hole-info h3 {
    font-family: var(--font-en);
    font-size: var(--f20);
    font-weight: 600;
    text-transform: uppercase;
}

.hole-info p {
    font-weight: 400;
    letter-spacing: -0.6px;
    text-transform: uppercase;
}

.hole-desc {
    line-height: 1.6em;
    color: #707070;
}

.hole-info-wrap li.course-img {
    background-color: #f8f8f8;
    border-radius: 15px;
    padding: 20px;
}

.hole-info-wrap li.course-img figure img {
    max-width: 100%;
    display: block;
    margin: auto;
}

/* 연단체 관련 */
.tbl-sty01.group th {
    word-break: keep-all;
    line-height: 1.4em;
}

.tbl-sty01.group td {
    padding: 10px;
}

.tbl-sty01 .group-area {
    display: flex;
    gap: 12px 24px;
    align-items: center;
}

.tbl-sty01 .group-area input[type=text] {
    flex: 0 0 310px;
    height: 45px;
    border: 1px solid #e0e0e0;
}

.tbl-sty01 .group-area select {
    flex: 0 0 140px;
    height: 45px;
    border: 1px solid #e0e0e0;
    padding: 0 16px;
    background: #fafafa url('/images/ic_under-4797cf8f38d958d3dd317837da7b20fd.svg') center right 16px no-repeat;
    background-size: 16px 9px;
}

.group-title {
    font-size: var(--f20);
    font-weight: 600;
    padding-bottom: 16px;
    margin-top: 53px;
}

.group-text {
    line-height: 1.8em;
    color: #707070;
}

.group-text b {
    display: block;
    color: #282828;
}

.policy-check-agree {
    margin-top: 20px;
}

.policy-check-area ul {
    border-block: 1px solid #ccc;
    padding: 20px 0;

}

.policy-check-area ul li {
    line-height: 2em;
    color: #707070;
}

.policy-check-agree {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 34px 16px;
}

.group-enter-info {
    margin-top: 30px;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    gap: 24px;
    align-items: center;
    border-block: 1px solid #ccc;
}

.group-enter-info input[type=text] {
    flex: 1 1 auto;
    max-width: 250px;
    height: 45px;
    border: 1px solid #e0e0e0;
}

/* 연습장 아카데미 */
.driving-con-top {
    width: 100%;
}

.driving-con-top figure img {
    width: 100%;
}

.driving-con-top h1 {
    padding: 34px 0;
    font-size: var(--f32);
    font-weight: 200;
    text-align: center;
    letter-spacing: -1px;
    line-height: 1.3em;
    max-width: 900px;
    margin: auto;
    word-break: keep-all;
}

.driving-con-top p {
    font-size: var(--f18);
    color: #5B5B5B;
    padding-bottom: 32px;
    text-align: center;
    line-height: 1.3em;
    max-width: 900px;
    margin: auto;
    word-break: keep-all;
}

.academy-text {
    font-size: var(--f18);
    color: #5B5B5B;
    padding-bottom: 32px;
    line-height: 1.3em;
    word-break: keep-all;
}

.academy-title {
    font-size: var(--f24);
    font-weight: 500;
    text-align: center;
    margin-top: 60px;
}

.tbl-sty01.academy td.left {
    padding: 10px 25px;
}

.title-approach {
    font-size: var(--f20);
    font-weight: 700;
    padding: 30px 0 16px;
}

.approach-wrap {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.approach-wrap li {
    flex: 1;
}

.approach-wrap li.approach-info {
    flex: 1.5;
}

.approach-text-box {
    background-color: #f8f8f8;
    padding: 26px 12px;
    line-height: 1.5em;
    border-radius: 15px;
    width: 100%;
}

.approach-text-box h3 {
    font-weight: 600;
}

.instructor-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 40px;
    margin-top: 50px;
}

.instructor-list ul {
    flex: 0 0 calc((100% - 40px) / 2);
    border-radius: 15px;
    border: 1px solid #d2d2d2;
    padding: 33px 40px;
    display: flex;
    gap: 30px;
}

.instructor-list ul .img_pro {
    flex: 0 0 130px;
    width: 130px;
    height: 157px;
}

.instructor-list ul .img_pro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-list ul li {
    flex: 1 1 auto;
    min-width: 0;
    color: #505050;
    line-height: 1.4em;
}

.instructor-list ul li h2 {
    color: #000;
    font-size: var(--f20);
    padding-bottom: 8px;
}

/* 인사말 */
.greeting-wrap {
    width: 100%;
    display: flex;
    gap: 30px 96px;
}

.greeting-wrap .greet-l {
    flex: 1;
    padding-left: 160px;
    max-width: 650px;
}

.greeting-wrap .greet-l h2 {
    font-size: var(--f40);
    color: #474747;
    padding: 40px 0 34px;
}

.greeting-wrap .greet-l p {
    font-size: var(--f20);
    color: #747474;
    line-height: 2em;
    padding-bottom: 65px;
    word-break: break-all;
}

.greeting-wrap .greet-l p::first-line {
    color: var(--main-color);
}

.greeting-wrap .greet-r {
    flex: 2;
    height: 1052px;
    border-radius: 16px 0 0 16px;
    overflow: hidden;
    background: url("/images/img_club_01-28105e914e5d0278d4f106925de77cca.jpg") center center no-repeat;
    background-size: cover;
    font-size: 0;
}

/* 예약일정표 */
.schedule-wrap {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 70px;
}

.schedule-wrap li {
    flex: 0 0 calc(50% - 20px);
}

.schedule-wrap li h2 {
    font-size: var(--f24);
    text-align: center;
    font-weight: 500;
    padding-bottom: 20px;
}

.tbl-schedule {
    width: 100%;
    font-size: var(--f14);
}

.tbl-schedule th {
    height: 45px;
    vertical-align: middle;
}

.tbl-schedule th:first-child,
.tbl-schedule td:first-child {
    color: var(--red);
}

.tbl-schedule th:last-child,
.tbl-schedule td:last-child {
    color: var(--blue);
}

.tbl-schedule tr td:nth-child(3) .schedule::first-line,
.tbl-schedule tr td:nth-child(4) .schedule::first-line {
    color: #0e63bd;
}

.tbl-schedule td {
    position: relative;
    height: 98px;
    vertical-align: top;
    border: 1px solid #D9D9D9;
}

.schedule-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tbl-schedule td .schedule-box .day {
    padding: 5px 10px;
}

.tbl-schedule td .schedule-box .holiday {
    color: var(--red);
}

.tbl-schedule td .schedule-box .normal {
    color: #121212;
}

.tbl-schedule td .schedule-box .special {
    color: #0e63bd;
}

.tbl-schedule td .schedule-box .schedule {
    text-align: center;
    line-height: 1.5em;
    padding: 5px 2px;
    font-size: var(--f12);
}

.tbl-schedule td .schedule-box .schedule .member-day {
    color: var(--red);
}