@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;
}

.green {
    color: #138636 !important;
}

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

.hidden {
    display: none !important;
}

.b {
    font-weight: 500 !important;
}

.bb0 {
    border-bottom: 0 !important;
}

select {
    appearance: none;
    -webkit-appearance: none;
    background: #fff url('/images/ic_under.svg') center right 16px no-repeat;
    background-size: 24px 24px;
    padding: 0 16px;
    height: 54px;
    border: 1px solid #ccc;
    font-size: var(--f18);
}

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

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

@media (hover: hover) and (pointer: fine) {
    body {
        user-select: none;
    }
}

/*common*/
.common-tit {
    width: 100%;
    text-align: center;
    color: #292929;
    margin: 70px 0;
    font-size: var(--f24);
    font-weight: 600;
    position: relative;
}

.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 a {
    flex: 1;
    width: 50%;
    /*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;
}

.container.wide .common-tab-wrap {
    width: 1200px;
    margin: 0 auto;
}

.common-tab-wrap {
    width: 100%;
    line-height: 82px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*margin-bottom: 40px;*/
}

.common-tab-wrap a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1.5px;
    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: #121212;
}

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

.container.wide {
    width: 100%;
}

.container.wide .common-top {
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.common-top {
    padding: 30px;
    text-align: center;
    background: #FAFAFA;
    margin-bottom: 60px;
}

.common-top h3 {
    font-size: 20px;
    font-weight: 500;
    color: #028783;
    margin-top: 15px;
}

.common-top p {
    font-size: 15px;
    font-weight: 300;
    margin-top: 10px;
}

.sub-title {
    font-size: var(--f24);
    font-weight: 500;
    position: relative;
    text-align: center;
    margin: 60px 0;
}

.sub-title::after {
    content: "";
    background: var(--main-color);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 2px;
}

.sub-tab-wrap {
    display: flex;
    margin-bottom: 64px;
}

.sub-tab-wrap.w460 {
    max-width: 460px;
    margin: 0 auto 48px;
}

.sub-tab-wrap a {
    flex: 1;
    border-bottom: 2px solid #999;
    line-height: 52px;
    text-align: center;
    cursor: pointer;
    color: #999;
    font-size: var(--f20);
    font-weight: 600;
}

.sub-tab-wrap a.on {
    border-bottom: 2px solid #222;
    color: #222;
}

.content-tab-wrap {
    display: flex;
    justify-content: center;
    margin: 60px 0 90px;
    gap: 0 25px;
}

.content-tab-wrap li {
    text-align: center;
    cursor: pointer;
    color: #9C9C9C;
    font-size: var(--f18);
    background: #EFEFEF;
    border-radius: 30px;
}

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

.content-tab-wrap li a {
    display: block;
    padding: 10px 25px;
}

.content-tab-wrap.pd li {
    padding: 10px 25px;
}

.search-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 50px 0;
}

.select-box {
    position: relative;
    width: 150px;
}

.select-box select {
    width: 100%;
    height: 60px;
    padding: 0 30px 0 12px;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #555;
    font-size: var(--f18);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.search-bar input[type="text"] {
    width: 220px;
    height: 60px;
    padding: 0 14px;
    border: 1px solid #ddd;
    background: #fff;
}

.select-box select::-ms-expand { display: none; }

.search-bar input[type="text"]::placeholder {
    color: #8F8F8F;
}

.select-box::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #333;
    pointer-events: none;
}

.search-bar input[type="text"] {
    width: 300px;
    height: 60px;
    padding: 0 14px;
    border: 1px solid #e5e5e5;
    font-size: 14px;
}

.search-bar input[type="text"]::placeholder { color: #bbb; }

.search-bar button {
    height: 60px;
    padding: 0 24px;
    border: none;
    background: var(--main-color);
    color: #fff;
    font-size: var(--f18);
    font-weight: 600;
    cursor: pointer;
    border-radius: 3px;
}

.custom-radio-box {
    display: flex;
    align-items: flex-start;
    gap: 0 8px;
    height: 50px;
}

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

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

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

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

.tbl-sty01 td button.cancel {
    background: #777;
    color: #fff;
    padding: 5px 25px;
}

.tbl-sty01 td button.change {
    background: var(--main-color);
    color: #fff;
    padding: 5px 25px;
}

.tbl-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tbl-scroll > .tbl-sty01 {
    min-width: 700px;
}

.table-text {
    margin-top: 15px;
}

.table-text li {
    font-size: 14px !important;
    line-height: 180% !important;
}

.table-text li.strong {
    font-size: 20px;
    margin-top: 10px;
}

.text-box {
    padding: 30px;
    border: 1px solid #C2C2C2;
    display: flex;
    gap: 0 40px;
    margin-top: 35px;
    border-radius: 10px;
}

.text-box li {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px 0;
}

.text-box li strong {
    color: var(--red);
}

.text-box02 {
    padding: 30px 60px;
    border: 1px solid #C2C2C2;
    margin-top: 45px;
    border-radius: 10px;
}

.text-box02 li {
    font-size: 16px;
    font-weight: 500;
    line-height: 180%;
}

.pop-area {
    width: 100%;
    position: fixed;
    inset: 0;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background-color: rgba(0, 0, 0, 0.8);
}

.pop-inner {
    width: 100%;
    max-width: 440px;
    max-height: 80%;
    min-height: 250px;
    overflow-y: auto;
    padding: 32px 10px;
    background-color: #fff;
    border-radius: 16px;
}

.pop-box-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-size: var(--f18);
    line-height: 1.5em;
}

.pop-box-col h2 {
    font-size: var(--f24);
    font-weight: 700;
}

.pop-box-col h3 {
    font-size: var(--f20);
    font-weight: 500;
    color: var(--black);
    text-align: center;
}

.pop-box-col h3 span {
    font-size: var(--f15);
    font-weight: 400;
    color: var(--red);
    text-align: center;
}

.btn-pop-wrap {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-pop-wrap a {
    display: block;
    width: 212px;
    line-height: 48px;
    text-align: center;
    font-size: var(--f18);
    font-weight: 500;
    background-color: var(--main-color);
    color: #fff;
}

.btn-basic-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 48px auto 0;
    gap: 8px;
    max-width: 460px;
}

.btn-basic-wrap a {
    flex: 1;
    background-color: #DCDCDC;
    color: #707070;
    font-size: var(--f18);
    font-weight: 500;
    line-height: 56px;
    text-align: center;
}

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

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 88px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

.pagination a.on {
    background-color: var(--sub-color);
    color: var(--main-color);
}

.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;
    line-height: 20px;
}

.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: 220px;
    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;
}

.checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.custom-checkbox:checked {
    background: url('/images/ic_check_on.svg') no-repeat center center;
    background-size: 24px 24px;
}

.none-area {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 회원가입 -  로그인 */
.login-wrap {
    width: 100%;
}

.login-wrap input:focus,
.join-wrap input:focus {
    outline: none;
    border-color: var(--main-color);
}

.join-tit {
    font-size: var(--f36);
    font-weight: 600;
    padding-bottom: 56px;
    text-align: center;
}

.login-main {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #CBCBCB;
    padding: 70px 0;
}

.login-box {
    position: relative;
    width: 400px;
    margin: 0 auto;
}

.login-text {
    text-align: center;
    margin-top: 25px;
    font-size: var(--f14);
    color: #7B7B7B;
}

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

.check-wrap {
    margin: 16px 0 56px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-login-box {
    display: block;
}

.btn-login {
    background-color: var(--main-color);
    color: #fff;
}

.btn-login-box button {
    width: 100%;
    text-align: center;
    line-height: 56px;
    font-size: var(--f20);
    font-weight: 600;
}

.btn-find-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 45px;
    margin-top: 55px;
}

.btn-find-box button {
    text-align: center;
    position: relative;
    font-size: var(--f16);
}

.btn-find-box button:first-child::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -25px;
    width: 1px;
    height: 20px;
    background: #CBCBCB;
}

/* 아이디, 비밀번호 찾기 */
.join-main {
    width: 460px;
    padding: 0 20px 50px;
    margin: auto;
}

.join-inner {
    width: 400px;
    margin: auto;
}

.tab-login {
    display: flex;
    margin-bottom: 68px;
}

.tab-login li {
    flex: 0 0 50%;
    border-bottom: 2px solid #999;
    line-height: 52px;
    text-align: center;
    cursor: pointer;
    color: #999;
    font-size: var(--f20);
    font-weight: 600;
}

.tab-login li.on {
    border-bottom: 2px solid #222;
    color: #222;
}

.join-container ul {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.join-container ul li {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.join-container ul li span {
    font-size: var(--f14);
    font-weight: 500;
}

.join-container ul li span b {
    color: var(--red);
}

.flex-certify {
    display: flex;
    gap: 8px;
}

.flex-certify .phone-code {
    flex: 1;
}

.flex-certify .date {
    flex: 1;
}

.btn-send-code {
    font-size: var(--f18);
    font-weight: 600;
    line-height: 56px;
    text-align: center;
    color: #707070;
    border: 1px solid #CBCBCB;
    width: 100%;
}

.btn-check-code {
    background: #A4A4A4;
    color: #fff;
    font-size: var(--f18);
    font-weight: 600;
    line-height: 56px;
    text-align: center;
    width: 100%;
}

.fp-code {
    padding: 0 16px;
}

.input-timer-wrap {
    background-color: #fff;
    transition: border-color 0.2s ease;
    position: relative;
}

.input-timer-wrap input {
    border: none;
}

.input-timer-wrap .timer {
    color: #CBCBCB;
    font-size: var(--f18);
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400;
}

.login-wrap .input-timer-wrap:has(input:focus),
.join-wrap .input-timer-wrap:has(input:focus) {
    border-color: var(--main-color);
}

.btn-send-sms,
.btn-check-id{
    border-color: var(--main-color);
    color: var(--main-color);
}

.join-check-inner {
    max-width: 460px;
    margin: auto;
}

.join-check-box {
    background-color: #fff;
    padding: 130px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.join-check-box p {
    font-size: var(--f20);
}

.join-check-box span {
    font-size: var(--f16);
    margin-top: 20px;
}

.join-check-box h1 {
    font-size: var(--f32);
    color: var(--main-color);
    font-weight: 500;
    user-select: text;
}

.result-text-box {
    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%;
    padding-top: 120px;
}

.terms-main {
    width: 800px;
    padding: 0 20px 80px;
    margin: auto;
}

.join-step {
    margin-bottom: 58px;
}

.join-step ul {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 72px;
}

.join-step ul li {
    position: relative;
    color: var(--sub-color);
    text-align: center;
    flex-basis: 80px;
}

.join-step ul li::before {
    content: '';
    position: absolute;
    right: -32px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background-color: #999;
}

.join-step ul li:last-child::before {
    display: none;
}

.join-step ul li p {
    font-size: var(--f14);
    font-weight: 600;
    padding-bottom: 16px;
}

.join-step ul li h1 {
    font-size: var(--f24);
    font-weight: 700;

}

.join-step ul li.on p,
.join-step ul li.on h1 {
    color: var(--main-color);
}

.terms-list .check-select {
    display: flex;
    align-items: center;
    gap: 14px;
    border-block: 1px solid #ccc;
    padding: 24px 16px;
    font-size: var(--f18);
    font-weight: 600;
}

.terms-box {
    background-color: #fff;
    border-block: 1px solid #ccc;
    padding: 24px;
    height: 224px;
    overflow-y: auto;
    line-height: 1.5em;
    margin-bottom: 8px;
}

.terms-box b {
    font-weight: 700;
}

.terms-check-all {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: var(--f20);
    margin: 64px 0 56px;
}*/

/* 회원실명확인 */
/*.identify-box {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 96px 56px;
    margin: auto;
    cursor: pointer;
    max-width: 460px;
}

.identify-box h1 {
    width: 124px;
    height: 124px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

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

.identify-box p {
    font-size: var(--f14);
    color: #999;
    text-align: center;
    line-height: 1.5em;
}

.identify-box:hover h1 {
    background-color: var(--main-color);
}

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

/* 정보 입력 */
/*.join-radio-box {
    display: flex;
    align-items: center;
    gap: 0 8px;
    height: 50px;
}

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

.join-container .checkbox-wrap {
    margin-bottom: 7px;
}

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

.area select {
    flex: 1;
}

.join-select {
    width: 124px;
}*/

/* 마이페이지 - 정보수정 & 회원탈퇴 */
.modify-wrap {
    width: 100%;
    padding: 70px 0;
}

.modify-container {
    width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    border: 1px solid #CBCBCB;
    padding: 50px 0;
}

.modify-container h3 {
    font-size: var(--f24);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.modify-container h3::after {
    content: "";
    background: var(--main-color);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
}

.modify-container ul {
    width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

.modify-container ul li p.etc {
    font-size: var(--f14);
    color: #666;
    margin-top: 10px;
}

.withdraw-text {
    font-size: var(--f18);
    line-height: 1.8em;
    text-align: center;
    padding: 24px 0 40px;
}


/* 예약안내 - 실시간예약 */
.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: #8A784F;
}

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

.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;
    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: 13px 0;
    text-align: center;
    font-weight: 500;
    line-height: 1.5em;
    position: relative;
}

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

.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(--main-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-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);
}

.calendar-box table tbody td div.tee {
    font-size: 15px;
}

.calendar-info {
    word-break: keep-all;
    line-height: 1.8em;
    padding: 0 30px 30px 30px;
    flex: 1;
}

.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(--main-color);
    font-weight: 400;
    font-size: var(--f16);
    margin-top: 10px;
}

.reservation-tab ul {
    display: flex;
    align-items: center;
    gap: 0 5px;
}

.reservation-tab ul li {
    background: #F5F5F5;
    color: #707070;
    border-radius: 10px 10px 0 0;
    flex: 1;
    text-align: center;
    padding: 5px 0;
    cursor: pointer;
}

.reservation-tab ul li.on {
    background: #028783;
    color: #fff;
}

.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;
}

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

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

.tbl-overflow::-webkit-scrollbar-track,
.popup-body::-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: left;
    padding: 6px;
    vertical-align: top;
    word-break: keep-all;
    width: 100%;
}

.tbl-reser td a:not(.wait) {
    display: inline-flex;
    flex-direction: column;
    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: #fff;
    border: 1px solid #CBCBCB;
    line-height: 20px;
}

.tbl-reser td a:not(.wait):hover {
    background-color: #C7AC7A;
    color: #fff;
}

.tbl-reser td a span.course {
    font-size: var(--f13);
    display: block;
}

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

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

/* ===== 예약 확인 팝업 ===== */
.normal-pop {
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80%;
    min-height: 500px;
    padding: 40px 20px 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;
}

.popup-header {
    margin-bottom: 25px;
}

.popup-header h2 {
    font-size: var(--f28);
    font-weight: 500;
}

.popup-header p {
    font-size: var(--f14);
    margin-top: 10px;
}


.popup-body {
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    /*-webkit-overflow-scrolling: touch;*/
    max-height: 460px;
    padding: 0 3px;
}

.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(--main-color);
    color: #fff;
}

.alert-pop reservation .btn-pop-wrap a {
    background-color: var(--main-color);
    color: #fff;
}

.pop-reser-btm {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 15px 0;
}

.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;
}

.pop-reser-btn-modify {
    border: 1px solid #BEBEBE;
    background: #fff;
    font-size: 12px;
    text-align: center;
    padding: 5px 10px;
    display: inline-block;
    margin-top: 10px;
}

.alert-pop.reservation .reser-alert-pop-top {
    font-size: var(--f20);
    font-weight: 600;
    text-align: center;
    line-height: 26px;
}

.alert-pop.reservation .pop-text {
    background: #FAFAFA;
    padding: 30px;
    margin: 20px 0;
}

.alert-pop.reservation .call {
    font-size: var(--f20);
    text-align: center;
    margin-bottom: 20px;
}

/* 대기예약 팝업 */
.popup-body.reser-wait {
    max-height: 310px;
}

.reservation-info-box.wait {
    margin-bottom: 15px;
}

.popup-body.reser-wait .tbl-reser th:nth-of-type(2)::after {
    display: none;
}

.popup-body.reser-wait .tbl-reser {
    table-layout: fixed;
    width: 100%;
}

.popup-body.reser-wait .tbl-reser th {
    white-space: nowrap;
    padding: 13px 4px;
}

.popup-body.reser-wait .tbl-reser td {
    width: auto;
    text-align: center;
    vertical-align: middle;
}

.popup-body.reser-wait .tbl-reser td a {

    width: calc(50% - 12px);
    min-height: 30px;
    margin: 6px 5px;
    padding: 6px 0;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #CBCBCB;
    line-height: 20px;
    font-size: 13px;
    white-space: nowrap;
    box-sizing: border-box;
}

.popup-body.reser-wait .tbl-reser td a:hover,
.popup-body.reser-wait .tbl-reser td a.selected {
    background-color: #C7AC7A;
    color: #fff;
}

.popup-body.reser-wait .tbl-reser td a.all {
    width: 100%;
    max-width: 100%;
}

/* 위임 예약 */
.delegate-input-wrap {
    display: none;
    border-top: 1px solid #cbcbcb;
    border-bottom: 1px solid #cbcbcb;
    padding: 20px;
    margin: 15px 0;
}

.delegate-input-wrap.active {
    display: block;
}

.delegate-input-row {
    display: flex;
    align-items: center;
    gap: 0 16px;
}

.delegate-input-row input {
    background-color: #fff;
}

.delegate-input-row + .delegate-input-row {
    margin-top: 12px;
}

.delegate-input-row label {
    flex-shrink: 0;
    width: 70px;
    font-size: var(--f16);
    font-weight: 500;
}

.delegate-input-row input {
    flex: 1;
    height: 40px;
    border: 1px solid #ddd;
    padding: 0 12px;
    font-size: var(--f14);
    letter-spacing: -0.5px;
}

.delegate-input-row .custom-radio-box {
    align-items: center;
}

.delegate-input-row .custom-radio-box label {
    width: 45px;
}


/* ===== 위임예약 팝업 ===== */
.popup-header .popup-notice {
    margin-top: 14px;
}

.popup-header .popup-notice li {
    position: relative;
    padding-left: 12px;
    font-size: var(--f14);
    line-height: 1.7em;
    color: #363636;
}

.popup-header .popup-notice li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 0.75em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #363636;
}

.popup-header .popup-notice b.red {
    color: var(--red);
    font-weight: 500;
}

.popup-body.delegate {
    max-height: 430px;
}

/* 예약 정보 리스트 */
.delegate-info-list {
    border-top: 1px solid var(--main-color);
    border-bottom: 1px dashed #CACACA;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 14px 0;
}

.delegate-info-list li {
    display: flex;
    align-items: center;
    line-height: 25px;
}

.delegate-info-list .label {
    flex-shrink: 0;
    width: 120px;
    font-weight: 700;
}

.delegate-info-list .value {
    flex: 1;
}

.delegate-info-list .custom-radio-box {
    align-items: center;
}

.delegate-guide {
    font-size: var(--f16);
    margin: 30px 0 25px;
}

.delegate-form {
    padding: 0 16px;
}

.delegate-form .delegate-input-row {
    display: flex;
    align-items: center;
    gap: 0 16px;
}

.delegate-form .delegate-input-row + .delegate-input-row {
    margin-top: 14px;
}

.delegate-form .delegate-input-row label {
    flex-shrink: 0;
    width: 120px;
    font-weight: 700;
    font-size: var(--f16);
    padding-left: 10px;
}

.delegate-form .delegate-input-row input {
    width: calc(100% - 136px);
    height: 48px;
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 0 14px;
    font-size: var(--f15);
    letter-spacing: -0.5px;
}

.delegate-form .delegate-input-row input::placeholder {
    color: #bbb;
}

.delegate-form .delegate-input-row input:focus {
    outline: none;
    border-color: var(--main-color);
}

/* 성별 라디오는 텍스트 입력창 스타일을 물려받지 않도록 되돌린다 */
.delegate-form .delegate-input-row .custom-radio-box input {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border: none;
    background-color: transparent;
    padding: 0;
}

.delegate-form .delegate-input-row .custom-radio-box label {
    width: 45px;
    padding-left: 0;
    font-weight: 400;
}

.delegate-agree {
    padding: 28px 10px 30px;
    border-bottom: 1px solid #cbcbcb;
}

.delegate-agree .checkbox-wrap {
    align-items: flex-start;
}

.delegate-agree .custom-checkbox {
    flex-shrink: 0;
    margin-top: 2px;
}

.delegate-agree label {
    font-size: var(--f14);
    flex: 1;
    min-width: 0;
    word-break: keep-all;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 22px;
}

/* 예약전 확인 팝업 — 예약일자 줄내림 방지 */
.tbl-sty01.pop-reser td:first-child {
    white-space: nowrap;
}

/* 캐디선택 팝업 */
.tbl-sty01.pop-caddie {
    table-layout: fixed;
    width: 100%;
}

.tbl-sty01.pop-caddie th,
.tbl-sty01.pop-caddie td {
    border-bottom: 1px dashed #CACACA;
    background-color: #fff;
}

.tbl-sty01.pop-caddie th {
    vertical-align: top;
}

.tbl-sty01.pop-caddie td {
    text-align: left;
}

.pop-caddie-title {
    font-size: var(--f16);
    color: var(--main-color);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.custom-radio-box.caddie {
    height: auto;
    width: 100%;
}

.radio-caddie {
    display: flex;
    width: 100%;
    min-width: 0;
}

.radio-caddie li {
    display: flex;
    align-items: flex-start;
    gap: 0 5px;
    min-width: 0;
}

.radio-caddie li input[type="radio"] {
    flex-shrink: 0;
}

.radio-caddie li label {
    font-size: var(--f14);
    flex: 1;
    min-width: 0;
    word-break: keep-all;
    overflow-wrap: break-word;
    white-space: normal;
}

.radio-caddie.col {
    flex-direction: column;
    gap: 10px 0;
}

.radio-caddie.wrap {
    flex-wrap: wrap;
    gap: 10px;
}


/*자동입력 방지*/
.captcha-img-area {
}

.captcha-img-area p {
    margin-bottom: 10px;
    font-size: var(--f16);
}

.captcha-box {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.captcha-image {
    width: 180px;
    height: 80px;
    border: 1px solid #ddd;
    overflow: hidden;
}

.captcha-image img {
    width: 180px;
    height: 80px;
    display: block;
}

.captcha-controls {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 180px;
}

.button-group {
    display: flex;
    gap: 5px;
}

.btn-refresh,
.btn-audio {
    padding: 3px 18px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: var(--f14);
}

.btn-refresh:hover,
.btn-audio:hover {
    background: #f5f5f5;
}

input[type="text"].input-captcha {
    padding: 12px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: var(--f14);
}

input[type="text"].input-captcha::placeholder {
    color: #999;
}

/*.res-note {
    background-color: #fff;
    padding: 24px;
    margin-top: 40px;
    line-height: 1.5em;
}

.res-note h2 {
    font-size: var(--f20);
    padding-bottom: 24px;
    font-weight: 700;
}

.res-agree-area {
    display: flex;
    margin-top: 16px;
    font-weight: 600;
    font-size: var(--f18);
}

.res-agree-area .join-radio-box em {
    width: 16px;
}*/

.tbl-reser td .empty {
    padding: 20px 0;
    text-align: center;
    color: #A8A8A8;
    font-size: var(--f14);
}

.tbl-reser td .wait {
    display: block;
    padding: 50px 0;
    text-align: center;
    font-size: var(--f14);
}

.tbl-reser th:nth-of-type(2) {
    position: relative;
}

.tbl-reser th:nth-of-type(2)::after {
    content: '';
    width: 1px;
    height: 50%;
    background-color: #cbcbcb;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
/* //실시간예약 */

/* 예약확인 */
.tab-check {
    display: flex;
    align-items: center;
    padding: 30px 0;
    justify-content: center;
}

.tab-check a {
    font-size: var(--f24);
    font-weight: 500;
    padding-bottom: 10px;
    color: #9E9E9E;
    border-bottom: 1px solid #9E9E9E;
    width: 200px;
    text-align: center;
}

.tab-check a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1.5px;
    background-color: #0D0D0D;
    transition: width .2s ease-in-out;
}

.tab-check a.on {
    border-bottom: 1px solid #121212;
    color: #121212;
}

.reser-check-wrap {
    border-top: 1px solid var(--main-color);
}

.reser-check-box {
    background: #fafafa;
    padding: 40px;
    border-bottom: 1px solid var(--main-color);
}

.reser-check-box .top {
    padding-bottom: 30px;
}

.reser-check-box .top ul {
    display: flex;
    align-items: center;
    gap: 0 25px;
}

.reser-check-box .top ul.time {
    margin-bottom: 20px;
}

.reser-check-box .top ul.time li {
    font-size: var(--f20);
}

.reser-check-box .top ul.info {
    margin-left: 25px;
}

.reser-check-box .top ul.info li {
    display: flex;
    align-items: center;
}

.reser-check-box .top ul.info a {
    display: inline-block;
    padding: 3px 5px;
    text-align: center;
    font-size: var(--f13);
    background: #fff;
    border: 1px solid #979797;
    margin-left: 5px;
}

.reser-check-box .bottom {
    padding-top: 25px;
    display: flex;
    justify-content: flex-end;
    gap: 0 16px;
    border-top: 1px solid #E9E9E9;
}

.reser-check-box .bottom a {
    display: block;
    width: 100px;
    padding: 8px 0;
    background: #777777;
    color: #fff;
    text-align: center;
}

.reser-check-box .bottom a.on {
    background: var(--main-color);
}

.reser-check-box.complete {
    color: #d3d3d3;
    background: #fff;
}

.reser-check-box.complete .top ul.info a {
    color: #d3d3d3;
    border: 1px solid #d3d3d3;
}

.reser-check-box.no-data {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

/* //예약확인 */

/* 동반자 등록 팝업 */
.register-popup {
    border-top: 1px solid var(--main-color);
    border-bottom: 1px solid #CACACA;
    padding: 30px;
    margin-bottom: 30px;
}

.register-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 35px;
}

.register-item {
    box-sizing: border-box;
    min-width: 0;
}

.register-list .divider {
    grid-column: 1 / -1;
    border-top: 1px dashed #CACACA;
    margin: 25px 0;
}

.register-item .tit {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
}

.register-item .name-row {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
}

.register-item input[type="text"],
.register-item input[type="tel"] {
    height: 52px;
    padding: 0 15px;
    border: 1px solid #eee;
    background: #fafafa;
    font-size: 15px;
    color: #333;
    outline: none;
}

.register-item input::placeholder {
    color: #bbb;
}

.register-item .inp-name {
    flex: 1;
    min-width: 0;
}

.register-item .inp-phone {
    width: 100%;
}

.register-item .btn-gender {
    width: 52px;
    height: 52px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    flex-shrink: 0;
}

.register-item .btn-gender.male.on {
    background: #2f80c3;
    border-color: #2f80c3;
    color: #fff;
}

.register-item .btn-gender.female.on {
    background: #d6317f;
    border-color: #d6317f;
    color: #fff;
}
/* // 동반자 등록 팝업 */

/* 카트변경 팝업 */
.cart-popup {
    border-top: 1px solid var(--main-color);
    border-bottom: 1px solid #CACACA;
    padding: 30px;
    margin-bottom: 30px;
}

.cart-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
}

.cart-item {
    display: block;
    cursor: pointer;
    text-align: center;
    min-width: 0;
}

.cart-item input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
}

.cart-item .thumb {
    width: 100%;
    height: 157px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
}

.cart-item .thumb img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.cart-item .thumb img.svg {
    width: 162px;
    height: 112px;
}

.cart-item .tit {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.cart-item .desc {
    display: block;
    font-size: 15px;
    color: #555;
    margin-bottom: 14px;
}

.cart-item .radio-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #333;
}

.cart-item .radio-icon {
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background: #fff;
    position: relative;
}

.cart-item input[type="radio"]:checked ~ .thumb {
    border-color: var(--main-color);
}

.cart-item input[type="radio"]:checked ~ .radio-row .radio-icon {
    border-color: var(--main-color);
}

.cart-item input[type="radio"]:checked ~ .radio-row .radio-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--main-color);
}

.cart-item input[type="radio"]:focus-visible ~ .thumb {
    outline: 2px dashed var(--main-color);
    outline-offset: 3px;
}
/* // 카트변경 팝업 */

/* 예약안내 */
.reser-guide-wrap {
    display: flex;
    flex-direction: column;
    gap: 90px 0;
    margin-top: 100px;
}

.guide-box {
    display: flex;
    flex-direction: column;
    gap: 40px 0;
}

.guide-content {
    padding-bottom: 30px;
    border-bottom: 1px dashed #D5D5D5;
}

.guide-content h3 {
    font-size: var(--f20);
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--main-color);
    line-height: 22px;
}

.guide-content p {
    font-size: var(--f16);
    color: #373737;
    line-height: 22px;
}

.guide-content p strong {
    font-size: var(--f20);
    font-weight: 600;
    margin-left: 20px;
    display: inline-block;
}

.guide-content ul li {
    font-size: var(--f16);
    line-height: 28px;
    display: flex;
}

.guide-content ul li b {
    display: inline-block;
    margin-right: 5px;
}

.guide-content ul li strong {
    font-size: var(--f16);
    font-weight: 600;
    display: inline-block;
    margin-right: 5px;
    margin-left: 0;
}

.guide-content .dwn-btn {
    display: flex;
    align-items: center;
    gap: 0 20px;
    margin-top: 25px;
}

.guide-content .dwn-btn a {
    display: flex;
    align-items: center;
    gap: 0 10px;
    padding: 8px 20px;
    color: #fff;
    font-size: var(--f18);
    text-align: center;
    font-weight: 600;
}

.guide-content .dwn-btn a.reser {
    background: var(--main-color);
}

.guide-content .dwn-btn a.team {
    background: #C8AC7A;
}

.guide-content ul li strong {
    font-size: var(--f14);
}

.step-flow {
    display: flex;
    align-items: flex-start;
    border: 1px solid #DADADA;
    padding: 30px 50px;
    margin-top: 20px;
    border-radius: 10px;
}

.step-item {
    position: relative;
    flex: 1;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.step-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 33px;
    left: 50%;
    width: 100%;
    border-top: 1px dashed #b8b8b8;
}

.step-num {
    position: relative;
    z-index: 1;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--main-color);
    color: #fff;
}

.step-num .label {
    font-size: var(--f12);
    letter-spacing: 1px;
}

.step-num .num {
    font-size: var(--f16);
    font-weight: 700;
    line-height: 1.2;
    margin-right: 0;
}

.step-txt {
    margin-top: 16px;
    font-size: var(--f16);
    line-height: 1.5;
    color: #444;
}

.step-txt.strong {
    font-weight: 700;
}


/* // 예약안내 */

/* 카트안내 */
.limousine {
    margin-top: 100px;
}

.limousine-head {
    padding: 0 20px;
    width: 1200px;
    margin: 0 auto;
}

.limousine-head .brand {
    font-size: 16px;
    letter-spacing: 2px;
    color: #3a8f8f;
    margin-bottom: 12px;
}

.limousine-head .tit {
    font-size: 60px;
    font-weight: 300;
    line-height: 1.2;
    color: #1a2b2b;
}

.limousine-head .tit b {
    color: var(--main-color);
}

.limousine-head .tit + .desc {
    margin-top: 20px;
}

.limousine-head .desc {
    font-size: 20px;
    line-height: 1.6;
    color: #8a8f8f;
}

.limousine-head .desc .point {
    color: var(--main-color);
}

.limousine-head .btn-tel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    font-size: 20px;
    color: #1a2b2b;
}

.limousine-head .btn-tel .ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 5px;
    background: var(--main-color);
}

.limousine-head .btn-tel .ico img {
    width: 24px;
    height: 24px;
}

.limousine-visual {
    margin-top: 75px;
}

.limousine-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.limousine-list {
    width: 1200px;
    margin: 100px auto 0 auto;
}

.limousine-item {
    display: flex;
    align-items: center;
}

.limousine-item.reverse {
    flex-direction: row-reverse;
}

.limousine-item .txt {
    text-align: center;
    width: 50%;
    padding: 0 50px;
}

.limousine-item .txt .ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.limousine-item .txt .ico img {
    width: 38px;
    height: 38px;
}

.limousine-item .txt .eng {
    font-size: var(--f16);
    color: var(--main-color);
    margin-bottom: 30px;
}

.limousine-item .txt .sub-tit {
    font-size: 30px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
}

.limousine-item .txt .sub-desc {
    font-size: var(--f16);
    line-height: 130%;
    color: #8B8B8B;
}

.limousine-item .img {
    width: 50%;
    height: 618px;
}

.limousine-item .img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* // 카트안내 */

/* 전문캐디 */
.caddie-wrap {
    margin-top: 100px;
    padding-bottom: 150px;
}

.caddie-head {
    padding: 0 20px;
}

.caddie-head .tit {
    font-size: 24px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 15px;
}

.caddie-head .desc {
    font-size: var(--f15);
    line-height: 1.7;
    color: #0A0A0A;
}

.caddie-head .btn-tel {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    font-size: var(--f20);
    color: #373737;
}

.caddie-head .btn-tel .ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 5px;
    background: var(--main-color);
}

.caddie-head .btn-tel .ico img {
    width: 24px;
    height: 24px;
}

.caddie-visual {
    position: relative;
    margin-top: 30px;
}

.caddie-visual > img {
    display: block;
    width: 100%;
    height: 673px;
    object-fit: cover;
}

.caddie-card {
    position: absolute;
    left: 90px;
    bottom: -120px;
    width: 482px;
    max-width: calc(100% - 60px);
    padding: 38px 25px;
    border-radius: 10px;
    background: var(--main-color);
    color: #fff;
}

.caddie-card .card-tit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--f24);
    font-weight: 700;
    margin-bottom: 25px;
}

.caddie-card .card-tit .ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.caddie-card .card-tit .ico img {
    width: 100%;
    height: 100%;
}

.caddie-card .card-list li {
    position: relative;
    padding-left: 14px;
    font-size: var(--f15);
    line-height: 1.7;
}

.caddie-card .card-list li + li {
    margin-top: 6px;
}

.caddie-card .card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
}

.caddie-card .card-list .label {
    font-weight: 700;
}

/* // 전문캐디 */


/* 게시판 - list */
.board-list {
    position: relative;
    width: 100%;
    border-top: 1px solid #CBCBCB;
    margin-top: 65px;
}

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

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

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

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

.title-area b.notice {
    background: var(--main-color);
    color: #fff;
    border-radius: 5px;
    padding: 3px 0;
}

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

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

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

.board-list .date b {
    position: relative;
    margin-left: 20px;
}

.board-list .date b::after {
    content: '';
    width: 1px;
    height: 15px;
    background-color: #cbcbcb;
    display: inline-block;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.board-list li .title {
    flex: 1;
    display: block;
    padding: 0 0 0 10px;
}

/* 게시판 - view */
.board-view {
    width: 100%;
    border-top: 1px solid #CBCBCB;
    margin-top: 65px;
}

.board-view-top {
    width: 100%;
    background-color: #FAFAFA;
}

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

.board-view-top .title-area {
    justify-content: space-between;
}

.board-view-top .title-area .title {
    text-align: left;
    font-size: var(--f18);
    font-weight: 500;
    line-height: 1.5em;
}

.board-view-top .title-area .date {
    color: #707070;
}

.board-view-top .title-area .date b {
    position: relative;
    margin-left: 20px;
}

.board-view-top .title-area .date b::after {
    content: '';
    width: 1px;
    height: 15px;
    background-color: #cbcbcb;
    display: inline-block;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.board-view-top .info-area {
    color: #707070;
}

.board-view-top .info-area .file {
    position: relative;
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.board-view-top .info-area .file::after {
    content: '';
    width: 1px;
    height: 15px;
    background-color: #cbcbcb;
    display: inline-block;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.board-view-top .info-area .file span {
    display: flex;
    align-items: center;
}

.board-view-top .info-area .file a {
    position: relative;
    margin-left: 40px;
    font-weight: 600;
    color: #000;
}

.board-view-top .info-area .file a::before {
    content: '';
    width: 22px;
    height: 22px;
    background: url('/images/icon_file_down.svg') no-repeat center center / cover;
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.board-view-con {
    background-color: #fff;
    min-height: 300px;
    border-bottom: solid 1px #CBCBCB;
    padding: 40px 30px;
    line-height: 1.5em;
    text-align: center;
}

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

.board-view-con video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 20px auto 0;
}

/* 유튜브 등 임베드는 summernote 가 width/height 속성으로 640x360 을 박으므로 비율 유지 반응형 처리 */
/* height:auto 가 없으면 height 속성값(360px)이 남아 aspect-ratio 가 적용되지 않는다 */
.board-view-con iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 20px auto 0;
}

.board-bottom ul {
    width: 100%;
}

.board-bottom ul li {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0 20px;
    min-height: 88px;
    padding: 25px 24px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.board-bottom ul li span {
    font-size: var(--f16);
}

.board-bottom ul li p {
    font-size: var(--f18);
    font-weight: 600;
}

.btn-basic-wrap.notice a {
    max-width: 200px;
}

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

/* 포토갤러리 */
.gallery-wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 15px;
    justify-content: center;
}

.gallery-wrap a {
    display: block;
}

.gallery-item {
    border-bottom: 1px solid #ccc;
}

.photo {
    width: 276px;
    height: 276px;
    overflow: hidden;
}

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

figcaption {
    padding: 15px 0;
    font-size: var(--f14);
}

.board-view-top .title-area .gallery {
    color: #666;



    font-size: var(--f16);
    text-align: center;
}

/* 게시판 - 명예의 전당 */
.honor-list-wrap {
    width: 100%;
    border-bottom: 1px solid #CBCBCB;
    padding-bottom: 50px;
}

.record-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 35px 45px;
    border: 1px solid #CFCFCF;
    border-radius: 15px;
    background: #FBFBFB;
    margin-bottom: 0;
    font-size: var(--f20);
}

.record-item + .record-item {
    margin-top: 52px;
    position: relative;
}

.record-item + .record-item::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    border-top: 1px dotted #ccc;
}

.record-title {
    font-family: var(--font-en);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--main-color);
    width: 200px;
    flex-shrink: 0;
}

.record-date {
    padding-left: 20px;
    border-left: 1px solid #ddd;
    flex-shrink: 0;
}

.record-name {
    font-weight: 600;
    flex-shrink: 0;
}

.record-hole {
    font-weight: 600;
    flex-shrink: 0;
}

.record-club {
    margin-left: auto;
}

.record-club strong {
    font-weight: 600;
}

/* 게시판-자료실 */
.download-wrap {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 60px 0;
}

.file-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, 240px);
    gap: 16px;
    justify-content: center;
}

.file-item {
    border: 1px solid #D5D5D5;
    background: #fff;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
}

.file-item:hover {
    border-color: #3aa6a0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.file-item a {
    display: flex;
    align-items: center;
    padding: 14px 8px;
}

.file-item .icon {
    flex-shrink: 0;
    width: 29px;
    height: 33px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.file-item .txt {
    flex: 1;
    margin-left: 8px;
    padding-left: 8px;
    border-left: 1px solid #eee;
    font-size: 14px;
    line-height: 1.4;
    word-break: keep-all;
}

.file-item .icon {
    background-size: 100%;
    background-position: center center;
}

/* 파일형식별 아이콘 */
.file-item.type-hwp .icon { background-image: url("/images/icon_hwp.svg"); }
.file-item.type-xls .icon { background-image: url("/images/icon_xls.svg"); }
.file-item.type-pdf .icon { background-image: url("/images/icon_pdf.svg"); }
.file-item.type-doc .icon { background-image: url("/images/icon_doc.svg"); }
.file-item.type-zip .icon { background-image: url("/images/icon_zip.svg"); }


/* 동반자등록 */
.pop-inner.companion {
    padding: 0;
    max-width: 375px;
}

.pop-companion-head {
    position: relative;
    background-color: var(--sub-color);
}

.pop-companion-head h2 {
    color: #fff;
    font-size: var(--f18);
    line-height: 64px;
    text-align: center;
}

.pop-companion-head button {
    position: absolute;
    top: 20px;
    left: 16px;
}

.pop-companion-con {
    padding: 32px 16px 0;
    min-height: 498px;
}

.companion-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding-bottom: 32px;
}

.companion-info em b {
    font-weight: 700;
}

.companion-box {
    background-color: #F9F9F9;
    border: 1px solid #EEE;
    border-radius: 8px;
    padding: 24px;
    max-width: 380px;
    margin: 0 auto;
    text-align: center;
}

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

.companion-title h2 {
    font-size: var(--f18);
    font-weight: 700;
    margin-bottom: 8px;
}

.companion-title p {
    font-size: var(--f13);
    color: #666;
    margin-bottom: 16px;
}

.companion-list {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.companion-list .item {
    flex: 1;
}

.companion-list .item .icon {
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid #ccc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.companion-list .item .icon::before,
.companion-list .item .icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #666;
    transform: translate(-50%, -50%);
}

.companion-list .item .icon::before {
    width: 16px;
    height: 1px;
}

.companion-list .item .icon::after {
    width: 1px;
    height: 16px;
}

.companion-list .item.basic .icon::before,
.companion-list .item.basic .icon::after,
.companion-list .item.enter .icon::before,
.companion-list .item.enter .icon::after {
    display: none;
}

.companion-list .item.basic .icon {
    border: 1px solid #E42C2C;
    background: url('/images/ic_companion.svg') no-repeat center;
}

.companion-list .item.enter .icon {
    border: 1px solid #285DF1;
    font-size: 0;
    background: url('/images/ic_companion2.svg') no-repeat center;
}

.companion-list .item .label {
    display: block;
    margin-top: 10px;
    font-size: var(--f12);
    color: #666;
}

.companion-list .item.enter .label {
    color: #999;
}

.companion-list .item .del {
    margin-top: 10px;
    padding: 3px 0;
    width: 48px;
    text-align: center;
    font-size: var(--f12);
    color: #666;
    border: 1px solid #ccc;
    border-radius: 60px;
    cursor: pointer;
}

.companion-box h4 {
    color: var(--red);
    font-size: var(--f14);
    margin-top: 16px;
}

.pop-inner.companion .join-container {
    padding-top: 18px;
}

.pop-inner.companion .join-radio-box {
    height: 32px;
}

.pop-inner.companion .btn-basic-wrap {
    margin-top: 32px;
}

/* 클럽소개 - 클럽소개 */
.container.club {
    padding: 90px 0 0 0;
}

.club-guide {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: #222222;
    letter-spacing: -0.02em;
}

.club-guide .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.club-guide .eng {
    letter-spacing: 0.02em;
}

.club-guide img {
    display: block;
    max-width: 100%;
}

.club-guide .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.club-guide .reveal.is-active {
    opacity: 1;
    transform: translateY(0);
}

.rex-meaning {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #ffffff;
}

.rex-meaning .bx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
    will-change: clip-path;
}

.rex-meaning .bx:first-child {
    clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 0%);
}

.rex-meaning .bg-bx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rex-meaning .bg-bx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.rex-meaning .bx1 {
    display: flex;
    align-items: flex-start;
    padding-top: 150px;
    justify-content: center;
    background-color: #ffffff;
    text-align: center;
}

.rex-meaning .bx1 .label {
    margin-bottom: 34px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: #727272;
}

.rex-meaning .bx1 .title {
    margin-bottom: 40px;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.45;
    color: #2A2A2A;
}

.rex-meaning .bx1 .desc {
    font-size: var(--f16);
    line-height: 2;
    color: #666666;
}

.rex-meaning .bx1 .desc strong {
    color: #2A2A2A;
    font-weight: 600;
}

.rex-meaning .bx2 {
    background-color: #000000;
}

.art-course {
    padding: 160px 0 180px;
    background-color: #ffffff;
}

.art-course#mobile {
    display: none;
}

.art-course .art-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}


.art-course .art-head {
    flex: 0 0 29%;
    padding-top: 6px;
}

.art-course .art-head .sub {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    color: #262626;
}

.art-course .art-head h3 {
    font-size: 68px;
    font-weight: 400;
    line-height: 1;
    color: #262626;
}

.art-course .art-collage {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    padding-bottom: 60%;
}

.art-course .art-collage .ph {
    position: absolute;
    overflow: hidden;
}

.art-course .art-collage .ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.art-course .art-collage .deco {
    position: absolute;
    display: block;
}

.art-course .art-collage .deco1 {
    top: 63%;
    left: 0.8%;
    width: 9%;
    height: 15.6%;
    background-color: #c2a884;
}

.art-course .art-collage .deco2 {
    top: 63%;
    left: 79.3%;
    width: 6.8%;
    height: 10%;
    background-color: #0b7f77;
}

.art-course .art-collage .ph1 {
    top: 44.6%;
    left: 10.5%;
    width: 7.5%;
    height: 25%;
}

.art-course .art-collage .ph2 {
    top: 0;
    left: 18.6%;
    width: 22.4%;
    height: 69.6%;
}

.art-course .art-collage .ph3 {
    top: 7.1%;
    left: 42.4%;
    width: 14.7%;
    height: 14.2%;
}

.art-course .art-collage .ph4 {
    top: 30.4%;
    left: 41.9%;
    width: 22.4%;
    height: 69.6%;
}

.art-course .art-collage .ph5 {
    top: 66.5%;
    left: 65.4%;
    width: 12.9%;
    height: 25.6%;
}

.art-course .art-collage .art-txt h4 {
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.55;
    color: #262626;
}

.art-course .art-collage .art-txt p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
    color: #262626;
}

.art-course .art-collage .txt1 {
    position: absolute;
    top: 76.7%;
    right: 62.4%;
    width: 36%;
    text-align: right;
}

.art-course .art-collage .txt2 {
    position: absolute;
    top: 38.9%;
    left: 69.5%;
    width: 37%;
    text-align: left;
}

.course-feature {
    padding: 20px 0 180px;
    background-color: #ffffff;
}

.course-feature .course-list > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.course-feature .course-list > li + li {
    margin-top: 130px;
}

.course-feature .course-list > li:nth-child(even) {
    flex-direction: row-reverse;
}

.course-feature .img-bx {
    flex: 0 0 42%;
    overflow: hidden;
}

.course-feature .img-bx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-feature .txt-bx {
    flex: 0 0 46%;
    padding: 0 2%;
}

.course-feature .txt-bx .num {
    margin-bottom: 26px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #0b7f77;
}

.course-feature .txt-bx .num span {
    font-weight: 700;
}

.course-feature .txt-bx h3 {
    margin-bottom: 18px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: #1c1c1c;
}

.course-feature .txt-bx .lead {
    margin-bottom: 34px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #444444;
}

.course-feature .txt-bx .desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 2;
    color: #8f8f8f;
}

.course-designer {
    padding: 120px 0 130px;
    background-color: #0b7f77;
    text-align: center;
}

.course-designer .designer-inner {
    display: flex;
    align-items: center;
    gap: 70px;
    justify-content: center;
}

.course-designer .designer-photo {
    flex: 0 0 40%;
    max-width: 400px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.course-designer .designer-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-designer .designer-txt {
    text-align: left;
}

.course-designer .label {
    margin-bottom: 30px;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.course-designer h3 {
    margin-bottom: 34px;
    font-size: 44px;
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
}

.course-designer .lead {
    margin-bottom: 40px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.course-designer .desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 2;
    color: rgba(255, 255, 255, 0.75);
}

/*.course-map {
    width: 100%;
    background-color: #dff0e2;
}

.course-map .map-bx {
    width: 100%;
    overflow: hidden;
}

.course-map .map-bx img {
    width: 100%;
    height: auto;
}

.root_daum_roughmap_landing {
    width: 100%;
}

.root_daum_roughmap .wrap_controllers,
.root_daum_roughmap .cont,
.root_daum_roughmap .wrap_btn_zoom {
    display: none;
}*/
/* // 클럽소개 - 클럽소개 */

/* 다이닝 */
.visual-section {
    width: 100%;
    height: 500px;
    position: relative;
}

.visual-section .visual-img {
    width: 100%;
    height: 100%;
    background: url("/images/res_visual.jpg") no-repeat center center / cover;
}

.visual-section .visual-text {
    position: absolute;
    right: 30%;
    top: 50%;
    transform: translate(50%, -50%);
    color: #fff;
}

.visual-section .visual-text h3 {
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 500;
}

.visual-section .visual-text p {
    font-size: var(--f14);
    line-height: 23px;
    margin-top: 35px;
}

.dining-content {
    max-width: 1200px;
    margin: 75px auto;
}

.dining-info .info-cont {
    display: flex;
    gap: 50px;
    height: 650px;
    width: 100%;
}

.info-cont .left-cont {
    width: calc(60% - 50px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-bottom: 1px dashed #B5B5B5;
}

.info-cont .left-cont .top {
    padding-bottom: 40px;
    border-bottom: 1px dashed #B5B5B5;
}

.info-cont .left-cont .top .small {
    font-size: var(--f16);
    color: #8E8E8E;
    display: block;
    margin-bottom: 10px;
}

.info-cont .left-cont .top h2 {
    font-size: 60px;
    line-height: 100%;
}

.info-cont .left-cont .top h2 strong {
    color: var(--main-color);
    display: block;
}

.info-cont .left-cont .top p {
    font-size: var(--f16);
    line-height: 25px;
    color: #4E4E4E;
    margin-top: 20px;
}

.info-cont .left-cont .btm {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    padding: 40px 0;
}

.info-cont .left-cont .btm li {
    display: flex;
    font-size: var(--f16);
    font-weight: 500;
    line-height: 24px;
}

.info-cont .left-cont .btm b {
    width: 35%;
}

.info-cont .right-cont {
    width: 40%;
    height: 100%;
}

.info-cont .right-cont img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dining-content .menu-btn {
    margin-top: 35px;
}

.dining-content .menu-btn a {
    background: var(--main-color);
    color: #fff;
    text-align: center;
    font-size: var(--f16);
    padding: 8px 15px;
    display: inline-flex;
    align-items: center;
    gap: 0 5px;
}

.dining-gallery {
    margin-top: 100px;
    width: 100%;
    height: 700px;
}

.dining-gallery .swiper,
.dining-gallery .swiper-wrapper,
.dining-gallery .swiper-slide {
    width: 100%;
    height: 100%;
}

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

.dining-gallery .swiper-slide img.mo {
    display: none;
}

.dining-gallery .swiper-button-prev,
.dining-gallery .swiper-button-next {
    width: 25px;
    height: 66px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    bottom: 20px;
    top: unset;
}

.dining-gallery .swiper-button-prev {
    background-image: url('/images/ic_gallery_prev.svg');
}

.dining-gallery .swiper-button-next {
    background-image: url('/images/ic_gallery_next.svg');
}

.dining-gallery .swiper-button-prev::after,
.dining-gallery .swiper-button-next::after {
    display: none;
}

/* 스타트하우스 */
.start-content {
    display: flex;
    flex-direction: column;
    gap: 90px 0;
    max-width: 1200px;
    margin: 100px auto 0;
}

.visual-section .visual-img.front {
    background: url("/images/front_visual.jpg") no-repeat left 22% center / cover;
}

/* 클럽마켓 */
.clubMarket-wrap {
    width: 100%;
}

.clubMarket-wrap .bn-img {
    width: 50%;
    display: flex;
}

.clubMarket-wrap .bn-img img {
    width: 100%;
    height: 350px;
}

.clubMarket-text {
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clubMarket-text p {
    font-size: 24px;
    margin-left: 15px;
}
/* // 다이닝 */


/* policy */
.policy-box {
    font-size: 16px;
    line-height: 26px;
    color: #626262;
}

.policy-box h3 {
    font-size: 22px;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid #222;
    color: #2E2E2E;
    margin-bottom: 15px;
    position: relative;
}

.policy-box.dot h3 {
    padding: 15px 0 15px 30px;
}

.policy-box.dot h3::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #2E2E2E;
}

.policy-box h3.bd0 {
    border-bottom: 0;
}

.policy-box a {
    text-decoration: underline;
}

/* FAQ */
.faq-wrap .info-text {
    font-size: 18px;
    margin-bottom: 30px;
}

.faq-box {
    display: flex;
    flex-direction: column;
    gap: 35px 0;
}

.toggle-list-wrap {
    border: 1px solid #C3C3C3;
    border-radius: 10px;
}

.faq-box .toggle-list-wrap li.toggle-list {
    font-size: 20px;
    cursor: pointer;
    text-align: left;
    position: relative;
}

.faq-box .toggle-list-wrap li.toggle-list ul.toggleIn li.toggle {
    display: flex;
    align-items: center;
    gap: 0 15px;
    padding: 30px 40px;
}

.faq-box .toggle-list-wrap li.toggle-list ul.toggleIn li.toggle span {
    display: flex;
    align-items: center;
    gap: 0 20px;
    font-weight: 600;
    position: relative;
    width: 240px;
}

.faq-box .toggle-list-wrap li.toggle-list ul.toggleIn li.toggle span::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #9D9D9D;
    width: 1px;
    height: 50%;
}

.faq-box .toggle-list-wrap li.toggle-list ul.toggleIn li.toggle span b.badge,
.toggle-list .toggleIn .toggle-content li b.badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.faq-box .toggle-list-wrap li.toggle-list ul.toggleIn li.toggle span b.badge.q {
    background: var(--main-color);
}

.toggle-list .toggleIn .toggle-content li b.badge.a {
    background: #C8AC7A;
}

.faq-box .toggle-list-wrap li.toggle-list ul.toggleIn li.toggle h2 {
    font-size: 20px;
    font-weight: 400;
    position: relative;
    width: calc(100% - 255px);
    word-break: keep-all;
    line-height: 28px;
}

.faq-box .toggle-list-wrap li.toggle-list ul.toggle-content {
    display: none;
}

.faq-box .toggle-list-wrap li.toggle-list ul.toggle-content li.toggle-content-in {
    display: flex;
    align-items: flex-start;
    gap: 0 20px;
    position: relative;
    padding: 30px 40px;
}

.faq-box .toggle-list-wrap li.toggle-list ul.toggle-content li.toggle-content-in::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 1px;
    border: 1px dashed #C3C3C3;
}

.faq-box .toggle-list-wrap li.toggle-list ul.toggle-content li.toggle-content-in p {
    line-height: 28px;
    font-size: 18px;
    width: calc(100% - 70px);
    word-break: keep-all;
}

/* 코스 */
/* 코스안내 */
.course-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.course-top-text .course-title {
    display: inline-block;
}

.course-top-text .course-title h2 {
    font-size: 40px;
    text-transform: uppercase;
    position: relative;
}

.course-top-text .course-title h2::before {
    content: "";
    width: 80px;
    height: 1px;
    background: #000;
    position: absolute;
    left: -100px;
    bottom: 7px;
}

.course-top-text .course-title h2::after {
    content: "";
    width: 80px;
    height: 1px;
    background: #000;
    position: absolute;
    right: -100px;
    bottom: 7px;
}

.course-top-text .course-title span {
    font-size: var(--f20);
    text-transform: uppercase;
    display: block;
    margin-top: 15px;
}

.course-top-text p {
    font-size: var(--f16);
    color: #606060;
    margin-top: 20px;
}

.course-top-text .course-attachment {
    margin-top: 35px;
}

.course-top-text .course-attachment span {
    color: #797979;
    font-size: var(--f15);
    display: block;
}

.course-top-text .course-attachment .attachment {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 0 20px;
}

.course-top-text .course-attachment .attachment a {
    display: flex;
    gap: 0 5px;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #d5d5d5;
    text-transform: uppercase;
    min-width: 240px;
}

.course-top-text .course-attachment .attachment a.on {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fff;
}

.course-table {
    width: 100%;
    margin-top: 55px;
}

.course-table span {
    display: block;
    text-align: right;
    font-size: var(--f16);
    color: #2C2C2C;
    margin-bottom: 15px;
}

.tbl-sty01.course thead tr th:not(:last-child) {
    border-right: 1px solid #cbcbcb;
}

.tbl-sty01.course thead tr th.black {
    background: #454545;
    color: #fff;
}

.tbl-sty01.course tbody tr td:not(:last-child) {
    border-right: 1px solid #cbcbcb;
}

.tbl-sty01.course tbody tr td span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    font-size: 0;
}

.tbl-sty01.course tbody tr td span.blue {
    background: #0367AD;
}

.tbl-sty01.course tbody tr td span.white {
    background: #fff;
    border: 1px solid #A8A8A8;
}

.tbl-sty01.course tbody tr td span.red {
    background: #E22525;
}

.course-back {
    width: 100%;
    height: 635px;
    position: relative;
    margin-top: 120px;
}

.course-back.lake {
    background: url("/images/course/course_back_lake.jpg") no-repeat center center / cover;
}

.course-back.mountain {
    background: url("/images/course/course_back_mountain.jpg") no-repeat center center / cover;
}

.course-back.valley {
    background: url("/images/course/course_back_valley.jpg") no-repeat center center / cover;
}

.course-back .hole-info {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 35px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.course-back .hole-info ul {
    padding: 40px 45px;
    display: flex;
    align-items: center;
    gap: 0 95px;
    position: relative;
    background: rgba(217, 217, 217, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
}


.course-back .hole-info ul::after {
    content: "";
    height: 1px;
    background: #fff;
    position: absolute;
    left: 72px;
    right: 10px;
    top: 46px;
    width: 89%;
}

.course-back .hole-info ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 1;
    height: 46px;
}

.course-back .hole-info ul li span {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
}

.course-back .hole-info ul li.on span {
    width: 20px;
    height: 20px;
    margin-top: -3px;
    transition: width .2s, height .2s;
}

.course-back .hole-info ul li b {
    color: #cbcbcb;
    font-size: var(--f16);
    margin-top: 10px;
    text-transform: uppercase;
}

.course-back .hole-info ul li.on b {
    font-weight: 600;
    color: #fff;
}

.hole-detail {
    overflow: hidden;
    margin-top: 100px;
}

.hole-detail .swiper-slide {
    height: auto;
}

.hole-text-wrap {
    display: flex;
    gap: 0 100px;
}

.hole-text-wrap .hole-detail-text {
    width: 50%;
    position: relative;
}

.hole-text-wrap .hole-detail-text .hole-num {
    display: flex;
    gap: 0 15px;
    font-weight: 600;
    align-items: flex-end;
}

.hole-text-wrap .hole-detail-text .hole-num strong {
    color: var(--main-color);
    font-size: 64px;
}

.hole-text-wrap .hole-detail-text .hole-num span {
    font-size: 20px;
}

.hole-text-wrap .hole-detail-text .hole-num em {
    font-size: var(--f16);
}

.hole-text-wrap .hole-detail-text .photo-view {
    position: absolute;
    right: 0;
    top: 0;
    font-size: var(--f15);
    color: #fff;
    background: var(--main-color);
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 5px;
}

.hole-text-wrap .hole-detail-text .hole-yard {
    display: flex;
    gap: 0 30px;
    margin-top: 45px;
}

.hole-text-wrap .hole-detail-text .hole-yard li {
    font-size: var(--f16);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0 5px;
}

.hole-text-wrap .hole-detail-text .hole-yard li span {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0;
}

.hole-text-wrap .hole-detail-text .hole-yard li span.blue {
    background: #0367AD;
}

.hole-text-wrap .hole-detail-text .hole-yard li span.white {
    background: #fff;
    border: 1px solid #A8A8A8;
}

.hole-text-wrap .hole-detail-text .hole-yard li span.red {
    background: #E22525;
}

.hole-text-wrap .hole-detail-text .hole-tip {
    margin: 60px 0;
    color: #707070;
    font-size: var(--f16);
}

.hole-text-wrap .hole-detail-text .hole-tip strong,
.hole-text-wrap .hole-detail-text .caddie-tip strong {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.hole-text-wrap .hole-detail-text .hole-tip strong img,
.hole-text-wrap .hole-detail-text .caddie-tip strong img {
    margin-right: 10px;
}

.hole-text-wrap .hole-detail-text .hole-tip p,
.hole-text-wrap .hole-detail-text .caddie-tip p {
    line-height: 160%;
    color: #707070;
    font-size: var(--f16);
}

.hole-text-wrap .hole-detail-text .hole-info-box {
    background: #FAFAFA;
    padding: 35px 30px;
    box-sizing: border-box;
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}

.hole-text-wrap .hole-detail-text .hole-info-box li {
    display: flex;
    font-size: var(--f16);
}

.hole-text-wrap .hole-detail-text .hole-info-box b {
    font-weight: 600;
    width: 18%;
}

.hole-text-wrap .hole-map {
    width: calc(50% - 100px);
}

.hole-text-wrap .hole-map img {
    width: 100%;
    height: 100%;
}

.container.wide.course {
    padding: 90px 0 0 0;
}

.course01-visual-area {
    width: 100%;
    height: 823px;
    padding-top: 40px;
}

.course01-visual-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.rexfield-8 .scene-head h2 {
    font-size: 50px;
    font-weight: 400;
    letter-spacing: .02em;
}

.rexfield-8 .scene-lead {
    margin-top: 25px;
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
}

.rexfield-8 .scene-desc {
    margin-top: 60px;
    font-size: 20px;
    line-height: 36px;
    color: #908E8E;
}

.rexfield-8 .scene-nav {
    margin-top: 60px;
}

.rexfield-8 .scene-nav ul {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.rexfield-8 .scene-nav li {
    display: flex;
    align-items: center;
}

.rexfield-8 .scene-nav li::after {
    content: "";
    width: 4px;
    height: 4px;
    background: #D2D2D2;
    border-radius: 50%;
    margin: 0 14px;
}

.rexfield-8 .scene-nav li:last-child::after {
    display: none;
}

.rexfield-8 .scene-nav button {
    padding: 13px 18px;
    border: 0;
    border-radius: 30px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: background .3s, color .3s;
    background: #D2D2D2;
}

.rexfield-8 .scene-nav li.on button {
    background: #C8AC7A;
}

.rexfield-8 .scene-detail {
    position: relative;
    overflow: hidden;
}

.rexfield-8 .scene-box {
    display: flex;
    align-items: stretch;
    min-height: 890px;
}

.rexfield-8 .scene-txt {
    /*flex: 0 0 41%;*/
    flex: 0 0 780px;
    box-sizing: border-box;
    padding: 80px 120px;
    background: var(--main-color);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.rexfield-8 .scene-txt h3 {
    font-size: 30px;
    font-weight: 400;
}

.rexfield-8 .scene-meta {
    margin: 40px 0 0;
    padding: 0;
    list-style: none;
}

.rexfield-8 .scene-meta li {
    font-size: 20px;
    line-height: 30px;
}

.rexfield-8 .scene-story {
    margin-top: 60px;
    padding-top: 45px;
    font-size: var(--f16);
    line-height: 30px;
    color: #fff;
    position: relative;
}

.rexfield-8 .scene-story::before {
    content: "";
    width: 60px;
    height: 2px;
    background: #3AC7C2;
    position: absolute;
    left: 0;
    top: 0;
}

.rexfield-8 .scene-img {
    flex: 1;
    overflow: hidden;
}

.rexfield-8 .scene-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rexfield-8 .scene-ctrl {
    position: absolute;
    left: 700px;
    bottom: 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    z-index: 5;
}

.rexfield-8 .scene-ctrl button {
    width: 15px;
    height: 28px;
    cursor: pointer;
}

.rexfield-8 .scene-ctrl button.scene-prev {
    background: url("/images/scene-prev.svg") no-repeat center center;
    position: relative;
}

.rexfield-8 .scene-ctrl button.scene-prev::after {
    content: "";
    width: 1px;
    height: 18px;
    background: #fff;
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
}

.rexfield-8 .scene-ctrl button.scene-next {
    background: url("/images/scene-next.svg") no-repeat center center;
}

/* 코스 갤러리 */
.season-container {
    width: 1200px;
    margin: auto;
    padding: 60px 0;
}

.season-tab ul {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.season-tab li {
    position: relative;
    width: 290px;
    height: 290px;
    overflow: hidden;
}

.season-tab li button {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.season-tab li button img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.season-tab li button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    transition: background .3s;
}

.season-tab li button span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.season-tab li button strong {
    display: block;
    font-size: 32px;
    font-weight: 500;
}

.season-tab li button em {
    display: block;
    margin-top: 10px;
    font-size: 20px;
}

.season-tab li.on img {
    display: none;
}

.season-tab li.on button {
    background: var(--main-color);
}

.season-tab li.on button::before {
    background-size: 60px 60px;
}

.season-tab li.on button.spring::before {
    background: url("/images/course/icon_spring.svg") no-repeat center 100px;
}

.season-tab li.on button.summer::before {
    background: url("/images/course/icon_summer.svg") no-repeat center 100px;
}

.season-tab li.on button.autumn::before {
    background: url("/images/course/icon_autumn.svg") no-repeat center 100px;
}

.season-tab li.on button.winter::before {
    background: url("/images/course/icon_winter.svg") no-repeat center 100px;
}

.season-tab li.on button strong {
    display: none;
}

.season-tab li.on button em {
    margin-top: 80px;
}

.season-panel {
    display: none;
}

.season-panel.on {
    display: block;
}

.season-head {
    width: 1200px;
    margin: 70px auto 0 auto;
}

.season-head h3 {
    font-size: 50px;
    font-weight: 400;
}

.season-head p {
    margin-top: 28px;
    font-size: 20px;
    line-height: 36px;
    color: #323232;
}

.season-visual {
    position: relative;
    margin-top: 65px;
}

.season-bg {
    width: 100%;
    height: 650px;
}

.season-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.season-gallery {
    position: relative;
    z-index: 1;
    width: 1200px;
    margin: -420px auto 0;
    padding: 30px 20px;
    background: #fff;
    box-sizing: border-box;
    border-radius: 20px;
}

.season-gallery .board-view {
    margin-top: 0;
    border-top: 0;
}

.season-gallery .board-view-top ul {
    background: #fff;
    min-height: 55px;
    padding: 10px 24px;
}

/* art gallery */
.art-gallery-visual {
    width: 100%;
    height: 480px;
    position: relative;
}

.art-gallery-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-text {
    position: absolute;
    color: #fff;
    font-weight: 500;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 338px;
    height: 338px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.visual-text b {
    font-size: 18px;
}

.visual-text p {
    font-size: 18px;
    margin: 15px 0 50px;
}

.visual-text p small {
    font-size: 15px;
    display: block;
    margin-top: 5px;
}

.visual-text span {
    font-size: 12px;
    position: relative;
    display: block;
    padding-bottom: 10px;
}

.visual-text span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 73px;
    height: 1px;
    background: #fff;
}

.art-gallery-content {
    width: 100%;
    min-height: 800px;
    background: url("/images/art_gallery_back.jpg") no-repeat center center;
    padding: 85px 100px;
    display: flex;
    gap: 0 100px;
}

.art-gallery-content .art-gallery-text {
    width: 60%;
}

.art-gallery-content .art-gallery-text h3 {
    font-size: 24px;
    color: #937A4E;
    font-weight: 600;
    margin-bottom: 20px;
}

.art-gallery-content .art-gallery-text p {
    font-size: 14px;
    color: #535353;
    font-weight: 500;
    line-height: 24px;
}

.art-gallery-content .art-gallery-img {
    width: calc(40% - 100px);
}
