@charset "utf-8";

/*-------------------------- common css --------------------------*/
.hr {
    height: 1px;
    border-bottom: 1px solid #e8e8e8;
    width: 100%;
}

.line-dashed {
    border-bottom: 1px dashed #cbcbcb;
    height: 1px;
    width: 100%;
}

/* font color, style */
.red {
    color: #ac3434 !important;
}

.blue {
    color: #326eab;
}

.yellow {
    color: #e2af00;
}

.skyblue {
    color: var(--color-main);
}

.gray {
    color: #ddd;
}

.center {
    text-align: center !important;
}

.left {
    text-align: left !important;
}

.right {
    text-align: right !important;
}

.vertical {
    vertical-align: middle;
}

.cl-b {
    clear: both;
}

.fl-l {
    float: left;
}

.fl-r {
    float: right;
}

.font12 {
    font-size: 12px;
}

.font14 {
    font-size: 14px;
}

.font15 {
    font-size: 15px;
}

.line15 {
    line-height: 1.5em;
}

.pre-line {
    white-space: pre-line;
}

.under {
    text-decoration: underline;
}

.fw300 {
    font-weight: 300;
}

.bold {
    font-weight: 500;
}

.strong {
    font-weight: 700;
}

.wp10 {
    width: 10% !important;
}

.wp15 {
    width: 15% !important;
}

.wp20 {
    width: 20% !important;
}

.wp25 {
    width: 25%;
}

.wp30 {
    width: 30% !important;
}

.wp35 {
    width: 35% !important;
}

.wp40 {
    width: 40% !important;
}

.wp45 {
    width: 45%;
}

.wp50 {
    width: 50% !important;
}

.wp55 {
    width: 55% !important;
}

.wp60 {
    width: 60% !important;
}

.wp70 {
    width: 70% !important;
}

.wp80 {
    width: 80% !important;
}

.wp90 {
    width: 90%;
}

.wp100 {
    width: 100% !important;
}

.padding5 {
    padding: 5px 0;
}

.padding10 {
    padding: 10px 0;
}

.padding20 {
    padding: 20px 0;
}

.padding30 {
    padding: 30px 0;
}

.padding50 {
    padding: 50px 0;
}

.padding70 {
    padding: 70px 0;
}

.margin5 {
    margin: 5px auto;
}

.margin10 {
    margin: 10px auto;
}

.margin15 {
    margin: 15px auto;
}

.margin20 {
    margin: 20px auto !important;
}

.margin25 {
    margin: 25px auto;
}

.margin30 {
    margin: 30px auto;
}

.margin40 {
    margin: 40px auto;
}

.margin50 {
    margin: 50px auto !important;
}

.margin60 {
    margin: 60px auto;
}

.margin90 {
    margin: 90px auto;
}

.mt0 {
    margin-top: 0px !important;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt25 {
    margin-top: 25px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px !important;
}

.mt60 {
    margin-top: 60px !important;
}

.mt80 {
    margin-top: 80px;
}

.mt100 {
    margin-top: 100px;
}

.mb0 {
    margin-bottom: 0px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb15 {
    margin-bottom: 15px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb25 {
    margin-bottom: 25px;
}

.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: 0px !important;
}

.pt5 {
    padding-top: 5px;
}

.pt10 {
    padding-top: 10px;
}

.pt15 {
    padding-top: 15px;
}

.pt20 {
    padding-top: 20px;
}

.pt30 {
    padding-top: 30px;
}

.pt45 {
    padding-top: 45px;
}

.pt50 {
    padding-top: 50px;
}

.pt60 {
    padding-top: 60px;
}

.pt70 {
    padding-top: 70px;
}

.img100 {
    width: 100%;
}


/*common*/
.common-tab {
    width: 100%;
    position: relative;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.common-tab.center {
    justify-content: center;
}

.common-tab a {
    text-align: center;
    position: relative;
    padding-bottom: 14px;
    font-size: 20px;
    margin-right: 50px;
    flex-shrink: 8;
}

.common-tab a:last-child {
    margin-right: 0;
}

.common-tab a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 5px;
    width: 0;
    background-color: var(--color-main);
    transition: 0.2s all ease-in-out;
}

.common-tab a.on {
    font-size: 22px;
    color: #2f3334;
    font-weight: 500;
}

.common-tab a.on::after {
    content: '';
    width: 100%;
}

.common-tab a:hover::after {
    width: 100%;
}

.btn-common {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin: 42px 0;
}

.btn-common a {
    display: block;
    width: 240px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #2f3334;
    border-radius: 8px 0 8px 0;
    line-height: 60px;
    margin-left: 16px;
    font-size: 22px;
    font-weight: 600;
    color: #2f3334;
}

.btn-common a.on {
    width: 450px;
    background-color: #2f3334;
    color: #fff;
}

.btn-common-s {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin: 34px 0 48px;
}

.btn-common-s a {
    display: block;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px 0 8px 0;
    line-height: 32px;
    margin-left: 16px;
    font-size: 15px;
    font-weight: 500;
    padding: 0 32px;
    color: #535b5d;
}

.btn-common-s a.on {
    border: 1px solid var(--color-main);
    color: var(--color-main);
}

/*page-common*/
.common-tit {
    font-size: 22px;
    line-height: 1.7em;
    letter-spacing: -0.55px;
    color: #2f3334;
    position: relative;
    margin-bottom: 15px;
}

.common-tit span {
    width: 100%;
    display: inline;
    box-shadow: inset 0 -8px 0 #4eb9e1;
}

.contents-con {
    position: relative;
    width: 1200px;
    height: 100%;
    margin: auto;
    padding-top: 220px;
}

.common-con {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 60px 0 200px;
}

.page-num-wrap {
    margin: 70px 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-num-wrap a {
    margin: 0px 4px;
    width: 36px;
    line-height: 36px;
    text-align: center;
}

.page-num a {
    font-size: 18px;
    font-weight: 300;
    color: #747e81;
    border: 1px solid #ddd;
    display: inline-block;
}

.page-num a:hover {
    background-color: #f5f5f5;
}

.page-num a.on {
    color: var(--color-main);
    border: 1px solid var(--color-main);
    font-weight: 400;
}

.page-num a.on:hover {
    background-color: transparent;
}

.top-nav {
    text-align: right;
    font-size: 14px;
    line-height: 2.3em;
    letter-spacing: -0.35px;
    color: #2f3334;
}

.top-nav span {
    text-decoration: underline;
}

.con-tit {
    position: relative;
    font-size: 34px;
    color: #292929;
    text-align: left;
    font-weight: 500;
    margin: 10px 0 70px;
    text-transform: uppercase;
}


/*sub-select*/
.sub-select {
    background: #f4f4f4;
    text-align: left;
    cursor: pointer;
    position: relative;
    text-indent: 20px;
    line-height: 48px;
}

.sub-select span {
    color: #000;
}

.sub-select li .options {
    display: block;
    margin: 0;
    background: #fff;
    color: #5f6668;
    position: absolute;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    border: 1px solid #ddd;
    top: 50px;
    left: 0;
    visibility: hidden;
    transition: 0.2s ease all;
    z-index: 7;
}

.sub-select li .options li {
    border-bottom: 1px solid #ddd
}

.sub-select li .options li:last-child {
    border-bottom: 0;
}

.sub-select li .options li:hover {
    background: #f6f3e0;
    color: #326eab;
    font-weight: 600;
}

.sub-select li .options.open {
    background: #fff;
    border-top: 1px solid #ddd;
    visibility: visible;
    max-height: 200px;
    overflow-y: auto;
}

.sub-select:before {
    content: '';
    width: 11px;
    height: 7px;
    position: absolute;
    top: 23px;
    right: 20px;
    background: url(/Images/ic_down.svg) center center no-repeat;
    transform: rotate(180deg);
    background-size: 11px 7px;
    transition: all ease 0.25s;
}

.sub-select.open::after {
    content: '';
    border: 1px solid #ddd;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.sub-select.open:before {
    transform: rotateZ(0deg);
}

.sub-select li .options.open a {
    display: block;
}


/*login*/
.contents-login {
    width: 100%;
    height: 100%;
    position: relative;
    padding-bottom: 100px;
}

.bg-login {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

.bg-login span {
    position: absolute;
    transition: 0.2s all ease-in-out;
}

.bg-left {
    top: 0;
    left: 0;
}

.bg-left2 {
    left: 290px;
    bottom: 210px;
}

.bg-right {
    top: 0;
    right: 0;
}

.bg-right2 {
    top: 220px;
    right: 320px;
}

.bg-bottom {
    bottom: 0;
    right: 330px;
}

.bg-login-left {
    animation: bg-login-left 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) both;
}

.bg-login-left2 {
    animation: bg-login-left 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) 0.1s both;
}

.bg-login-right {
    animation: bg-login-right 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) 0.2s both;
}

.bg-login-right2 {
    animation: bg-login-right 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) 0.3s both;
}

.bg-login-bottom {
    animation: bg-login-bottom 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) 0.4s both;
}

.login-wrap {
    width: 460px;
    margin: auto;
    padding: 120px 0;
    position: relative;
}

.login-logo {
    margin-bottom: 63px;
}

.login-logo a {
    width: 178px;
    height: 92px;
    background: url(/images/logo.svg) center center no-repeat;
    display: block;
    margin: auto;
    font-size: 0;
}

.contents-login-box {
    margin: 34px 0 0;
}

.contents-login-box li p {
    font-size: 20px;
    font-weight: 600;
    color: #535b5d;
    line-height: 2.05em;
    letter-spacing: -1px;
}

.contents-login-box li {
    padding-bottom: 24px;
    position: relative;
}

.contents-login-box li .input-border {
    position: absolute;
    bottom: 24px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #b4bbbc;
}

.contents-login-box li .input-border::after {
    content: '';
    width: 0;
    height: 2px;
    display: block;
    background-color: var(--color-main);
    transition: 0.2s all ease-in-out;
    z-index: 1;
}

.contents-login-box li input:focus~.input-border::after {
    width: 100%;
}

.save-id {
    position: relative;
    width: 100%;
    margin: 0 0 30px;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: -0.9px;
}

.save-id em {
    position: absolute;
    right: 0;
    top: 0;
}

.save-toggle {
    position: absolute;
    visibility: hidden;
}

.save-toggle+label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    user-select: none;
}

input.save-toggle-flat+label {
    width: 60px;
    height: 18px;
    background-color: #ccc;
    border-radius: 11px;
    transition: background 0.4s;
}

input.save-toggle-flat+label:before,
input.save-toggle-flat+label:after {
    display: block;
    position: absolute;
    content: '';
}

input.save-toggle-flat+label:before {
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    border-radius: 11px;
    transition: background 0.4s;
}

input.save-toggle-flat+label:after {
    top: -5px;
    left: -4px;
    width: 28px;
    height: 28px;
    background-color: #fff;
    border: 1px solid #777;
    border-radius: 50%;
    transition: margin 0.4s, background 0.4s;
}

input.save-toggle-flat:checked+label {
    background-color: #ccb835;
}

input.save-toggle-flat:checked+label:after {
    margin-left: 40px;
}

.btn-login {
    display: block;
    width: 100%;
    color: #fff;
    font-weight: 500;
    line-height: 54px;
    font-size: 20px;
    /*background-color: #326eab;*/
    background-color: var(--color-main);
    text-align: center;
}

.btn-idpw {
    width: 90%;
    margin: 33px 5% 32px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.btn-idpw a {
    color: #535b5d;
    position: relative;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}

.btn-idpw em {
    color: #b4bbbc;
    font-size: 20px;
}

.text-login01 {
    text-align: center;
    line-height: 1.25em;
    color: #535b5d;
    word-break: keep-all;
    margin-bottom: 10px;
}

.text-login02 {
    font-size: 14px;
    text-align: center;
    line-height: 1.4em;
    color: #535b5d;
    word-break: keep-all;
    margin-bottom: 24px;
}

.btn-join {
    text-align: center;
}

.btn-join a {
    color: var(--color-main);
    font-size: 18px;
    line-height: 2em;
    font-weight: 600;
    letter-spacing: -0.9px;
    display: inline-block;
    text-decoration: underline;
}

.login-title {
    text-align: center;
    margin: 33px 0 32px;
}

.login-title h2 {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.75em;
    letter-spacing: -0.7px;
    color: #2f3334;
}

.login-title h4 {
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: -0.8px;
    color: #535b5d
}

.contents-join-box ul li.phone {
    width: 100%;
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contents-join-box ul li.phone input {
    width: 32%;
    text-align: center;
}

.btn-login-wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.btn-login-wrap a {
    border: 1px solid #326eab;
    width: 49%;
    color: #326eab;
    text-align: center;
    line-height: 56px;
    font-size: 20px;
    letter-spacing: -1px;
    font-weight: 600;
    margin-bottom: 17px;
    background-color: #fff;
}

.btn-login-wrap a.on {
    background-color: #326eab;
    color: #fff;
}

.btn-certified {
    width: 100%;
    text-align: center;
    border: 1px solid var(--color-main);
    color: var(--color-main);
    font-weight: 500;
    background-color: #fff;
    font-size: 18px;
    line-height: 46px;
}

.phone-certified {
    width: 100%;
    overflow: hidden;
    margin: 16px 0;
}

.phone-certified li {
    width: 25%;
    float: left;
    margin-bottom: 0 !important;
}

.phone-certified li:first-child {
    width: 75%;
}

.phone-certified input[type="number"] {
    width: 100%;
    background-color: #f4f4f4;
}

.phone-certified .certified-time {
    color: var(--color-main);
    line-height: 60px;
    background-color: #f4f4f4;
    text-align: center;
    font-weight: 100;
    font-size: 20px;
}

.btn-back {
    height: 48px;
}

.btn-back a {
    display: inline-block;
}

.id-check-box {
    width: 100%;
    padding: 65px 0;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    font-size: 22px;
    letter-spacing: -0.55px;
    line-height: 2.23em;
    color: #2f3334;
    background-color: #f4f4f4;
}

/*join*/
.join-wrap {
    /*    width: 460px;*/
    width: 780px;
    margin: auto;
    position: relative;
}

.join-top-box {
    width: 100%;
    background-color: #326eab;
    color: #fff;
    font-weight: 300;
    text-align: center;
    line-height: 48px;
    text-transform: uppercase;
    font-size: 1.13em;
}

.join-top-box span {
    color: #f3f3d4;
}

.join-wrap h1.title {
    text-align: center;
    font-size: 18px;
    padding: 40px 0 22px;
    color: #535b5d;
    font-weight: 600;
}

.check-all {
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
	display: flex;       /* 요소를 플렉스 박스로 설정 */
    align-items: center; /* 세로 방향 가운데 정렬 (핵심) */
	justify-content: center;   /* 3. 화면 가로 기준 중앙 정렬 (필요 시) */
}

.check-all span {
    width: 34px;
    height: 34px;
    display: inline-block;
}

.check-all p {
    font-size: 24px;
    color: #292929;
    padding: 14px 0 5px;
    font-weight: 500;
    letter-spacing: -0.48px;
}

.check-all input[type=checkbox] {
    display: none;
}

.check-all input[type=checkbox]+label {
    cursor: pointer;
    background-repeat: no-repeat;
    background-image: url('/images/join/ic_check_all.svg');
    background-size: 34px 34px;
    padding: 17px;
    display: block;
    width: 34px;
    height: 34px;
    transition: 0.3s ease;
}

.check-all input[type=checkbox]:checked+label {
    background-image: url('/images/join/ic_check_all_on.svg');
    background-size: 34px 34px;
}

.join-box {
    width: 100%;
}

.join-box ul li {
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.join-box ul li h2.title {
    font-size: 18px;
    text-align: left;
    color: #535b5d;
    letter-spacing: -1px;
    font-weight: 400;
    padding-left: 46px;
    position: relative;
    width: 100%;
    vertical-align: middle;
}

.join-box ul li h2.title b {
    color: #ccb835;
    padding-left: 2px;
    display: inline-block;
}

.join-box ul li h2.title a {
    position: absolute;
    right: 5px;
    top: 0;
    color: #535b5d;
    letter-spacing: -0.7px;
    font-size: 14px;
    text-decoration: underline;
}

.member-agree-box {
    width: 100%;
    margin: 25px 0;
}

.member-agree-box li {
    padding-bottom: 25px;
}

.member-agree-box h2 {
    font-size: 14px;
    font-weight: 500;
    line-height: 2.64em;
}

.member-agree-box h2 b {
    color: #ccb835;
    padding-left: 5px;
}

.join-table {
    width: 100%;
    border-top: 1px solid #5f6668;
    border-bottom: 1px solid #b4bbbc;
    text-align: center;
    font-size: 12px;
    background-color: #fff;
    color: #000;
}

.join-table th {
    background-color: #f4f4f4;
    height: 32px;
    vertical-align: middle;
    font-weight: 700;
    border-right: 1px solid #b4bbbc;
}

.join-table th:last-child {
    border-right: 0;
}

.join-table td {
    padding: 6px 0;
    line-height: 1.33em;
    vertical-align: middle;
    border-left: 1px solid #b4bbbc;
}

.join-table td:first-child {
    border-left: 0;
}

.agree-text {
    padding: 12px 0;
    border-bottom: 1px solid #d4d4d4;
    margin-bottom: 10px;
}

.agree-text p {
    position: relative;
    font-size: 12px;
    line-height: 1.33em;
    letter-spacing: -0.5px;
    color: #000;
    padding-left: 20px;
}

.agree-text p::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #b5b5b5;
    display: block;
    position: absolute;
    left: 3px;
    top: 5px;
}

.agree-text p b {
    font-weight: 700;
}

.agree-chk {
    display: inline-block;
}

.agree-chk input[type=checkbox] {
    display: none;
}

.agree-chk input[type=checkbox]+label {
    cursor: pointer;
    background-repeat: no-repeat;
    background-image: url('/images/ic_normal_check.svg');
    background-size: 16px 16px;
    font-size: 12px;
    text-indent: 20px;
    display: block;
    transition: 0.2s ease-in-out;
}

.agree-chk input[type=checkbox]:checked+label {
    background-image: url('/images/ic_normal_check_on.svg');
    background-size: 16px 16px;
}

.agree-box {
    border-top: 1px solid #5f6668;
    text-align: right;
    padding: 8px 0;
    line-height: 1.33em;
}

.agree-box .agree-chk {
    text-align: left;
}

.agree-box .agree-chk span {
    display: inline-block;
    margin-left: 15px;
}

.agree-box .agree-chk input[type=checkbox]+label {
    background-position: left top 3px;
}

.join-pop-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45em;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.join-terms {
    width: 650px;
    height: 600px;
    overflow-y: auto;
    line-height: 1.6em;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.3px;
    color: #222;
    padding-right: 10px;
}

.join-terms::-webkit-scrollbar {
    width: 4px;
}

.join-terms::-webkit-scrollbar-thumb {
    height: 5%;
    background: #72b0ef;
}

.join-terms::-webkit-scrollbar-track {
    background: #e8e8e8;
}

.join-terms h2 {
    font-size: 16px;
}

.pop-agree-table {
    width: 100%;
    font-size: 11px;
    background-color: #fff;
    margin: 5px 0;
    line-height: 1.36em;
    text-align: center;
}

.pop-agree-table th {
    background-color: #f4f4f4;
    height: 28px;
    vertical-align: middle;
    color: #2f3334;
    border: 1px solid #ddd;
    padding: 3px 6px;
}

.pop-agree-table td {
    padding: 6px;
    line-height: 1.33em;
    vertical-align: middle;
    border: 1px solid #ddd;
    word-break: keep-all;
}

.check-select {
    position: absolute;
    left: 8px;
    top: -3px;
    width: 34px;
    height: 34px;
}

.check-select input[type=checkbox] {
    display: none;
}

.check-select input[type=checkbox]+label {
    cursor: pointer;
    background-repeat: no-repeat;
    background-image: url('/images/join/ic_check_off.svg');
    background-size: 28px 27px;
    font-size: 0;
    padding: 14px;
    width: 28px;
    height: 27px;
    display: block;
    transition: 0.3s all;
}

.check-select input[type=checkbox]:checked+label {
    background-image: url('/images/join/ic_check_on.svg');
    background-size: 28px 27px;
}

.join-agree-box {
    width: 100%;
    height: 100px;
    border: 1px solid #e8e8e8;
    background-color: #f4f4f4;
    font-size: 12px;
    font-weight: 300;
    padding: 12px;
    overflow: hidden;
    overflow-y: scroll;
    white-space: pre-line;
    line-height: 1.4em;
}

.text-join01 {
    font-size: 14px;
    line-height: 1.25em;
    color: #535b5d;
    word-break: keep-all;
    text-align: left;
    letter-spacing: -1px;
    padding: 20px 0 50px;
}

.join-type-box {
    width: 100%;
    margin: 60px 0 20px;
    display: flex;
    justify-content: space-between;
}

.join-type-box a {
    width: 220px;
    border: 1px solid #ccc;
    padding: 60px 45px;
    display: block;
    text-align: center;
    background-color: #fff;
    transition: 0.3s all ease-in-out;
}

.join-type-box a p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #f8f0e3;
    margin-bottom: 24px;
}

.join-type-box a h2 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    letter-spacing: -0.9px;
    line-height: 0.94em;
    transition: 0.3s all ease-in-out;
    padding-bottom: 10px;
}

.join-type-box a:hover {
    border-color: #777;
}

.join-type-box a:hover h2 {
    color: var(--color-main);
    text-decoration: underline;
}

.join-type-box a h4 {
    font-size: 15px;
    color: #333;
    line-height: 1.33em;
    letter-spacing: -0.38px;
}

.certified-box {
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
    border-top: 1px solid #e8e8e8;
}

.certified-box ul {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
}

.certified-box li {
    width: 100%;
    text-align: center;
}

.certified-box li h2 {
    color: #535b5d;
    font-weight: 700;
}

.certified-box li p {
    margin: 20px auto;
}

.certified-box li button {
    display: block;
    margin: 4px auto;
    font-weight: 600;
    width: 160px;
    line-height: 42px;
    text-align: center;
    border: 1px solid #b4bbbc;
    color: #b4bbbc;
    background-color: #fff;
}

.certified-box li button.on {
    border: 1px solid var(--color-main);
    color: var(--color-main);
}

.certified-box li input[type=text] {
    width: 100%;
    text-align: center;
    height: 48px;
    margin: -10px 0 10px;
}

.certified-box li input[type=text]::placeholder {
    font-size: 16px;
    font-weight: 400;
}

.text-join02 {
    color: #2f3334;
    font-weight: 300;
    font-size: 15px;
    word-break: keep-all;
    width: 85%;
    margin: auto;
    letter-spacing: -1px;
    line-height: 1.5em;
}

.text-join02 span.text-big {
    color: #326eab;
    font-size: 16px;
    font-weight: 600;
}

.text-join02 span.text-small {
    font-size: 13px;
}

/*join04*/
.join-select {
    background: #f4f4f4;
    text-align: left;
    cursor: pointer;
    position: relative;
    text-indent: 20px;
    line-height: 48px;
}

.join-select span {
    color: #000;
}

.join-select li .options {
    display: block;
    margin: 0;
    background: #fff;
    color: #5f6668;
    position: absolute;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    border: 1px solid #ddd;
    top: 50px;
    left: 0;
    visibility: hidden;
    transition: 0.2s ease all;
    z-index: 1;
}

.join-select li .options li {
    border-bottom: 1px solid #ddd
}

.join-select li .options li:last-child {
    border-bottom: 0;
}

.join-select li .options li:hover {
    background: #f6f3e0;
    color: #326eab;
    font-weight: 600;
}

.join-select li .options.open {
    background: #fff;
    border-top: 1px solid #ddd;
    visibility: visible;
    max-height: 200px;
    overflow-y: auto;
}

.join-select:before {
    content: '';
    width: 11px;
    height: 7px;
    position: absolute;
    top: 23px;
    right: 20px;
    background: url(/Images/ic_down.svg) center center no-repeat;
    transform: rotate(180deg);
    background-size: 11px 7px;
    transition: all ease 0.25s;
}

.join-select.open:before {
    transform: rotateZ(0deg);
}

.join-select li .options.open a {
    display: block;
}

.join-select.disabled .selected-option {
    background-color: #fff;
    border: 1px solid #ddd;
}

.member-info-box {
    width: 100%;
    border-top: 1px solid #ddd;
    padding-top: 27px;
}

.member-info-box input {
    height: 48px;
    font-size: 16px;
    color: #535b5d;
}

.member-info-box input::placeholder {
    font-size: 16px;
    font-weight: 400;
}

.member-info-box dl {
    width: 100%;
    margin-bottom: 34px;
    /*overflow: hidden;*/
}

.member-info-box dt {
    display: block;
    margin-bottom: 15px;
    color: #000;
    font-weight: 500;
}

.member-info-box dt span {
    vertical-align: text-top;
    color: #ccb835;
    font-weight: 500;
    padding-left: 5px;
}

.member-info-box dd {
    width: 100%;
    margin-bottom: 8px;
}

.enter-name {
    display: flex;
    justify-content: space-between;
}

.enter-name div {
    width: 70%;
    border: 1px solid #ddd;
    background-color: #fff;
    line-height: 48px;
    padding-left: 20px;
}

.enter-name .join-select {
    width: 28%;
}

.enter-id {
    display: flex;
    justify-content: space-between;
}

.enter-id input {
    width: 70%
}

.btn-overlap {
    width: 28%;
    margin-left: 2%;
    background-color: #fff;
    color: var(--color-main);
    font-weight: 600;
    text-align: center;
    line-height: 46px;
    border: 1px solid var(--color-main);
}

.birthday {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.birthday input {
    width: 32.5%;
    background-color: #fff;
    border: 1px solid #ddd;
}

.area {
    display: flex;
    justify-content: space-between
}

.area .zone {
    width: 48%;
}

.email {
    display: flex;
    justify-content: space-between;
    justify-items: center;
    line-height: 40px;
}

.email input[type="text"] {
    width: 55%;
}

.email input[type="text"]:first-child {
    width: 35%;
}

.member-info-box .phone {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.member-info-box .phone input {
    width: 32.5%;
    background-color: #fff;
    border: 1px solid #ddd;
}

.radio-sty01 {
    font-size: 14px;
}

.radio-sty01 input[type=radio] {
    display: none;
}

.radio-sty01 input[type=radio]+label {
    background-repeat: no-repeat;
    background-image: url('/images/radio.svg');
    background-size: 16px 16px;
    padding-left: 23px;
    padding-right: 20px;
    background-position: left top 3px;
    transition: 0.2s ease-in-out;
}

.radio-sty01 input[type=radio]:checked+label {
    background-image: url('/images/radio_on.svg');
    background-size: 16px 16px;
}

/*reservation*/
.contents-reser {
    position: relative;
    width: 1200px;
    height: 100%;
    margin: auto;
    padding-top: 220px;
    min-height: 600px;
}

.reser-wrap {
    width: 100%;
    margin: 50px 0 150px;
    display: flex;
    justify-content: space-between;
}

.calendar-wrap {
    width: 336px;
}

.reser-list-wrap {
    width: 740px;
}

.calendar-box {
    width: 100%;
    padding: 0 0 36px;
    position: relative;
    font-family: var(--font-num);
}

.calendar-box h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
}

.calendar-box h2 span {
    display: inline-block;
    font-weight: 500;
    color: #000;
}

.calendar-box h2 div {
    display: flex;
}

.calendar-box table {
    width: 100%;
    position: relative;
    z-index: 0;
}

.calendar-box table thead th {
    font-size: 11px;
    font-weight: 500;
    color: #000;
    height: 32px;
    vertical-align: middle;
    text-transform: uppercase;
}

.calendar-box table thead th:first-child {
    color: #e61818;
}

.calendar-box table thead th:last-child {
    color: #187fe6;
}

.calendar-box table tbody td {
    text-align: center;
    font-weight: 500;
    height: 56px;
    position: relative;
    vertical-align: middle;
    background-color: #fff;
    padding: 1px;
    border: 1px solid #ddd;
}

.calendar-box table tbody td span {
    font-size: 12px;
    display: block;
    font-weight: 400;
    font-family: var(--font-normal);
    padding-top: 2px;
}

.calendar-box table tbody td.deadline {
    color: #b4bbbc;
    background-color: #f5f5f5;
}

.calendar-box table tbody td.deadline span {
    color: #b4bbbc;
}

.calendar-box table tbody td.possible {
    color: #000;
    cursor: pointer;
    background-color: #fff;
}

.calendar-box table tbody td.possible:first-child {
    color: #e61818;
}

.calendar-box table tbody td.possible:last-child {
    color: #187fe6;
}

.calendar-box table tbody td.possible span {
    color: #000;
}

.calendar-box table tbody td.today {
    color: #000;
    background-color: #fff;
    cursor: pointer;
}

.calendar-box table tbody td.today::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #326eab;
    z-index: 1;
}

.calendar-box table tbody td.today:first-child {
    color: #e61818;
}

.calendar-box table tbody td.today:last-child {
    color: #187fe6;
}

.calendar-box table tbody td.today span {
    color: #326eab;
}

.calendar-box table tbody td.open {
    color: #b4bbbc;
    background-color: #fff;
}

.calendar-box table tbody td.open span {
    color: #b4bbbc;
}

.calendar-box table tbody td.weekend {
    background-color: #f8eeee;
}

.calendar-box table tbody td.today.holiday {
    color: #e61818;
}

.calendar-box table tbody td.possible.holiday {
    color: #e61818;
}

.calendar-box table tbody td.choice {
    color: #fff !important;
    background-color: #326eab !important;
    cursor: pointer;
}

.calendar-box table tbody td.choice::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #326eab;
    z-index: 1;
}

.calendar-box table tbody td.choice span {
    color: #fff;
}

.calendar-box table tbody td span.weekend {
    color: #d94040;
    font-size: 10px;
}

.calendar-box table tbody td.choice span.weekend {
    color: #fff;
}


.calendar-info {
    text-align: center;
    margin-top: -12px;
}

.calendar-info span {
    padding-left: 18px;
    margin: 0 12px;
    font-size: 14px;
    color: #000;
    line-height: 1.7em;
    position: relative;
}

.calendar-info span::before {
    content: '';
    width: 14px;
    height: 14px;
    display: inline-block;
    margin-right: 4px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.calendar-info span.today::before {
    border: 1px solid #326eab;
    background-color: #fff;
}

.calendar-info span.deadline::before {
    border: 1px solid #b4bbbc;
    background-color: #b4bbbc;
}

.calendar-info span.choice::before {
    border: 1px solid #326eab;
    background-color: #326eab;
}

.reser-list-wrap.not-choice {
    display: flex;
    width: 740px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.reser-choice-tab ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.reser-choice-tab ul li {
    cursor: pointer;
    flex: 1;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 17px;
    font-weight: 500;
    line-height: 40px;
}

.reser-choice-tab ul li.on {
    background-color: #326eab;
    border: 1px solid #326eab;
    color: #fff;
}

.reser-list-box {
    width: 100%;
    max-height: 721px;
    overflow-y: auto;
    border-top: 1px solid #000;
    margin-bottom: 18px;
}

.reser-list-box::-webkit-scrollbar {
    width: 4px;
}

.reser-list-box::-webkit-scrollbar-thumb {
    height: 5%;
    background: #72b0ef;
}

.reser-list-box::-webkit-scrollbar-track {
    background: #e8e8e8;
}

.reser-list-box li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 72px;
    padding: 0 38px;
    border-bottom: 1px solid #ddd;
    transition: 0.2s ease-in-out;
}

.time-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.time-info .chapter {
    background-color: #fff;
    border: 1px solid #ddd;
    width: 46px;
    line-height: 26px;
    text-align: center;
    display: inline-block;
    margin-right: 10px;
}

.time-info .course-name {
    width: 110px;
    font-size: 22px;
    letter-spacing: -0.55px;
    color: #326eab;
    font-weight: 400;
}

.time-info .timeline {
    color: #000;
    font-weight: 500;
    line-height: 1.5em;
    letter-spacing: -0.4px;
}

.reser-fee-info {
    display: flex;
    width: 250px;
    justify-content: space-between;
    align-items: center;
}

.reser-fee {
    font-size: 17px;
    color: #326eab;
    letter-spacing: -0.55px;
    text-align: right;
    width: 110px;
    display: block;
}

.reser-fee b {
    font-size: 22px;
    font-weight: 500;
    padding-right: 3px;
    vertical-align: text-top;
}

.btn-reser {
    display: block;
    background-color: #fff;
    border: 1px solid #ddd;
    width: 100px;
    line-height: 28px;
    text-align: center;
    border-radius: 6px 0 6px 0;
    font-weight: 500;
    letter-spacing: -0.85px;
    transition: 0.15s ease-in-out;
    margin: auto;
}

.btn-reser.big {
    line-height: 40px;
}

.promotion-wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 37px 0 33px;
}

.promotion-wrap .img-promotion {
    width: 170px;
    height: 100px;
    border-radius: 8px 0 8px 0;
    overflow: hidden;
}

.promotion-wrap .img-promotion img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promotion-wrap .promotion-info {
    width: calc(100% - 280px);
    display: flex;
    flex-direction: column;
    padding: 0 24px;
}

.promotion-wrap .promotion-info h4 {
    color: #000;
    font-weight: 500;
    line-height: 1.5em;
    letter-spacing: -0.4px;
}

.promotion-wrap .promotion-info p {
    margin-top: 8px;
    line-height: 1.56em;
    color: #326eab;
    font-weight: 500;
    letter-spacing: -0.4px;
}

.promotion-wrap .promotion-info p span {
    color: #ac3434;
    padding-left: 18px;
    text-decoration: line-through;
}

.promotion-wrap .promotion-reser {
    display: flex;
    width: 110px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.promotion-wrap .promotion-reser .reser-fee {
    margin-bottom: 12px;
}

.reser-list-box li:hover {
    background-color: #f4f4f4;
}

.reser-list-box li:hover .btn-reser {
    background-color: #000;
    color: #fff;
}

/*reser-0911 renew*/
.reser-check-info {
    text-align: center;
    font-size: 17px;
    color: #326eab;
    font-weight: 500;
    width: 100%;
    line-height: 48px;
    border: 1px solid #000;
    background-color: #f9f9f9;
    margin-top: 8px;
}

.reser-check-info span {
    color: #d94040;
    padding-left: 5px;
}

.reser-list {
    width: 100%;
    margin-bottom: 15px;
}

.reser-list th {
    font-size: 17px;
    font-weight: 500;
}

.reser-list td {
    text-align: center;
    height: 65px;
    padding: 5px;
    vertical-align: middle;
    border-bottom: 1px solid #ddd;
    text-transform: uppercase;
    color: #535b5d;
    font-weight: 300;
}

.reser-list tr:hover td {
    background-color: #f9f9f9;
    color: #000;
    font-weight: 400;
}

.reser-list tr.none:hover td {
    background-color: #fff;
    color: #535b5d;
    font-weight: 300;
}

.reser-list tr:hover .btn-reser {
    background-color: #000;
    color: #fff;
}

.reser-list tr.event td:nth-of-type(3) {
    text-decoration: line-through;
}

.reser-list tr.event td:nth-of-type(5) {
    color: #d94040;
    font-weight: 500;
}

.btn-event {
    display: inline-block;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    line-height: 1.3em;
    padding: 6px 16px;
    text-align: center;
    background-color: #d94040;
    border-radius: 7px 0 7px 0;
    margin-right: 8px;
}

.btn-event2 {
    display: inline-block;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    line-height: 1.3em;
    padding: 6px 16px;
    text-align: center;
    background-color: #326eab;
    border-radius: 7px 0 7px 0;
}

.common-pop.event {
    max-height: 600px;
    overflow-y: auto;
}

.common-pop.event::-webkit-scrollbar {
    width: 4px;
}

.common-pop.event::-webkit-scrollbar-thumb {
    height: 5%;
    background: #72b0ef;
}

.common-pop.event::-webkit-scrollbar-track {
    background: #e8e8e8;
}

.pop-event {
    width: 464px;
    border: 1px solid #629bd2;
    padding: 30px;
    text-align: center;
    line-height: 2em;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px 0 10px 0;
}

.pop-event h2 {
    color: var(--color-main);
    font-size: 18px;
    padding-bottom: 10px;
}

/*confirm*/
.reser-confirm {
    width: 100%;
    margin: 55px 0 150px;
}

.reser-confirm-wrap {
    padding: 38px 32px 54px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #d4d4d4;
    display: flex;
    justify-content: space-between;
}

.confirm-section {
    width: 460px;
}

.confirm-section h3 {
    font-size: 15px;
    color: #000;
    line-height: 2em;
    font-weight: 500;
    padding-bottom: 5px;
}

.confirm-section dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2f3334;
    font-weight: 400;
    padding: 10px 0;
}

.confirm-section dl.input {
    padding: 1px 0;
}

.confirm-section dl dt {
    font-size: 13px;
}

.confirm-section dl dd {
    font-size: 14px;
    text-align: right;
}

.confirm-section dl dd .price {
    font-size: 20px;
    font-family: var(--font-num);
}

.btn-pop-agree {
    text-decoration: underline;
    cursor: pointer;
}

.confirm-section dl dt.agree {
    font-size: 15px;
    color: #000;
    line-height: 1em;
    font-weight: 500;
    padding-bottom: 5px;
}

.agree-select {
    position: relative;
    width: 25px;
    height: 24px;
}

.agree-select input[type=checkbox] {
    display: none;
}

.agree-select input[type=checkbox]+label {
    cursor: pointer;
    background-repeat: no-repeat;
    background-image: url('/images/join/ic_check_off.svg');
    background-size: 25px 24px;
    font-size: 0;
    padding: 14px;
    width: 25px;
    height: 24px;
    display: block;
    transition: 0.3s all;
}

.agree-select input[type=checkbox]:checked+label {
    background-image: url('/images/join/ic_check_on.svg');
    background-size: 25px 24px;
}

.confirm-section dl.input input[type=text],
.confirm-section dl.input input[type=number] {
    width: 200px;
    height: 30px;
    text-align: center;
    text-indent: 0;
    font-size: 13px;
    font-weight: 400;
}

.confirm-section dl.input input::placeholder {
    font-size: 13px;
    text-align: center;
    font-weight: 400;
}

.verify-wrap {
    width: 100%;
}

.verify-wrap h4 {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    padding-bottom: 8px;
}

.verify-wrap ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verify-wrap img-box {
    width: 240px;
    height: 80px;
    overflow: hidden;
}

.verify-enter {
    width: 210px;
}

.verify-enter ul {
    flex-direction: column;
    height: 80px;
    justify-content: space-between;
}

.verify-enter ul input {
    height: 40px;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
}

.verify-enter ul input::placeholder {
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    line-height: 1em;
}

.verify-enter ul li {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.verify-enter ul li button {
    width: 102px;
    height: 32px;
    background-color: #fff;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 14px;
    color: #000;
    font-weight: 400;
}

.verify-enter ul li button img {
    vertical-align: sub;
    margin-right: 3px;
}

.confirm-text {
    font-size: 14px;
    line-height: 1.64em;
    letter-spacing: -0.35px;
    color: #222;
    word-break: keep-all;
}

.confirm-text p {
    position: relative;
    padding-left: 18px;
}

.confirm-text p::before {
    content: '•';
    position: absolute;
    left: 6px;
    top: -1px;
    color: #222;
}

.confirm-text .b {
    font-weight: 500;
    color: #326eab;
}

.confirm-text .under {
    background-color: #fff700;
    font-weight: 500;
}

/*member-weekend*/
.tbl-horizon-sty01 {
    width: 100%;
    border-top: 1px solid #000;
    font-size: 15px;
}

.tbl-horizon-sty01 tr {
    border-bottom: 1px solid #ddd;
}

.tbl-horizon-sty01 th {
    padding: 24px 40px;
    font-size: 17px;
    color: #000;
    line-height: 1.8em;
    font-weight: 600;
    text-align: left;
}

.tbl-horizon-sty01 td {
    line-height: 1.6em;
    font-weight: 300;
    padding: 24px 0;
    vertical-align: middle;
}

.tbl-horizon-sty02 {
    width: 100%;
    border-top: 1px solid #000;
}

.tbl-horizon-sty02 tr {
    border-bottom: 1px solid #ddd;
}

.tbl-horizon-sty02 th {
    padding: 15px 40px;
    font-size: 17px;
    color: #000;
    line-height: 1.8em;
    font-weight: 600;
    text-align: left;
}

.tbl-horizon-sty02 td {
    line-height: 1.6em;
    font-weight: 300;
    height: 62px;
    vertical-align: middle;
    padding: 5px 0;
}

.tbl-horizon-sty02 td input[type="text"] {
    line-height: 48px;
    height: auto;
}

.tbl-horizon-sty02 td input[type="text"]::placeholder {
    font-size: 16px;
}

.tbl-horizon-sty02 td textarea {
    width: 100%;
    height: 218px;
    border: 0;
    background-color: #f4f4f4;
    padding: 20px;
}

.basic-select-wrap {
    width: 100%;
}

/*member-partnerInfo*/
.partner-box {
    width: 100%;
    position: relative;
}

.partner-box ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.partner-info {
    width: 580px;
    padding: 9px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.partner-info dl {
    margin: 10px 0;
    display: table;
    line-height: 1.46em;
    font-size: 13px;
    color: #000;
}

.partner-info dl dt {
    display: table-cell;
    vertical-align: top;
    text-align: left;
    font-weight: 600;
    width: 110px;
    text-indent: 16px;
}

.partner-info dl dd {
    display: table-cell;
    vertical-align: center;
}

.partner-box .partner-img {
    width: 540px;
    height: 280px;
    overflow: hidden;
}

.partner-box .partner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease-in-out;
}

.partner-box:hover .partner-img img {
    transform: scale(1.03);
}

.partner-btn-wrap {
    position: absolute;
    right: 0;
    top: -48px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.partner-btn-wrap a {
    display: block;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px 0 4px 0;
    line-height: 26px;
    margin-left: 16px;
    font-size: 14px;
    font-weight: 500;
    padding: 0 17px;
    color: #535b5d;
}

.partner-btn-wrap a.on {
    border: 1px solid var(--color-main);
    color: var(--color-main);
}

.partner-pop-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45em;
    padding-bottom: 8px;
}

.partner-pop-wrap {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    width: 780px;
}

.partner-pop-info dl {
    display: table;
    width: 100%;
    margin: 13px 0;
}

.partner-pop-info dt,
.partner-pop-info dd {
    display: table-cell;
}

.partner-pop-info dt {
    width: 140px;
    font-size: 14px;
    color: #2f3334;
}

.partner-pop-info dd {
    font-size: 14px;
    color: #2f3334;
    line-height: 1.5em;
}

.partner-pop-apply {
    padding: 10px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.partner-pop-apply {
    width: 100%;
}

.partner-pop-apply ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2.5px 0;
}

.partner-pop-apply ul dl {
    display: table;
}

.partner-apply-enter dt {
    display: table-cell;
    width: 130px;
    font-size: 14px;
    font-weight: 700;
    vertical-align: middle;
}

.partner-apply-enter dd {
    display: table-cell;
    width: 240px;
    vertical-align: middle;
    position: relative;
    z-index: 50;
}

.partner-apply-enter .disable div {
    background-color: #fff;
    border: 1px solid #ddd;
    width: 100%;
    line-height: 38px;
    padding: 0 20px;
    font-size: 14px;
}

.partner-pop-wrap .sub-select {
    line-height: 40px;
    font-size: 14px;
}

.partner-pop-wrap .sub-select::before {
    top: 17px;
}

.partner-pop-wrap .sub-select li .options {
    top: 42px;
}

.partner-pop-enter {
    width: 100%;
    padding: 17px 0;
}

.partner-pop-enter dl {
    display: table;
    width: 100%;
}

.partner-pop-enter dl dt {
    display: table-cell;
    width: 130px;
    font-size: 14px;
    font-weight: 700;
    padding-top: 10px;
}

.partner-pop-enter dl dd {
    display: table-cell;
    vertical-align: middle;
}

.partner-pop-enter dl dd input {
    line-height: 40px;
    font-size: 14px;
}

.reser-select-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    width: 100%;
}

.reser-select-box .sub-select {
    width: 214px;
}

.reser-select-box input {
    width: 170px;
    height: 40px;
}

.reser-select-box input {
    width: 214px;
    height: 40px;
}

.reser-select-box input::placeholder {
    font-size: 14px;
    font-weight: 400;
}

.btn-datapicker {
    width: 214px;
    height: 40px;
    background-color: #f5f5f5;
    padding: 12px 20px;
    font-size: 14px;
    position: relative;
}

.btn-datapicker::after {
    content: '';
    width: 11px;
    height: 7px;
    position: absolute;
    top: 18px;
    right: 20px;
    background: url(/Images/ic_down.svg) center center no-repeat;
    transform: rotate(180deg);
    background-size: 11px 7px;
}

.partner-select-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    width: 100%;
}

.partner-select-box .sub-select {
    width: 193px;
}

.partner-select-box input {
    width: 193px;
    height: 40px;
}

.partner-select-box input::placeholder {
    font-size: 14px;
    font-weight: 400;
}

.btn-info-add button {
    width: 58px;
    line-height: 30px;
    border-radius: 5px 0 5px 0;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #5f6668;
    font-weight: 300;
}

.btn-info-add button.on {
    border-color: var(--color-main);
    color: var(--color-main);
}

.partner-select-box .disable {
    width: 193px;
}

.partner-select-box .disable div {
    background-color: #fff;
    border: 1px solid #ddd;
    width: 100%;
    line-height: 38px;
    padding: 0 20px;
    font-size: 14px;
}

.low-step {
    position: relative;
    z-index: 1;
}

/*mypage*/
.reser-confirm {
    width: 100%;
    margin: 55px 0 150px;
}

.modify-wrap {
    padding: 38px 32px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #d4d4d4;
    display: flex;
    justify-content: space-between;
}

.modify-section {
    width: 460px;
}

.modify-section .member-info-box {
    border-top: 0;
    padding-top: 0;
}

.modify-section .member-info-box .delete {
    margin-top: 60px;
}

.modify-section .member-info-box .delete dd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
}

.modify-section .member-info-box .delete dd a {
    display: inline-block;
    border: 1px solid #777f82;
    padding: 0 18px;
    line-height: 32px;
    font-weight: 500;
    border-radius: 6px 0 6px 0;
}

/*reser-check*/
.search-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 75px;
}

.search-wrap .title {
    font-size: 18px;
    color: #2f3334;
    font-weight: 500;
}

.search-wrap button {
    padding: 0 40px;
    display: block;
    border: 1px solid var(--color-main);
    color: var(--color-main);
    height: 48px;
    border-radius: 6px 0 6px 0;
    font-size: 18px;
    font-weight: 700;
    min-width: 140px;
}

.search-area {
    margin: 0 24px 0 43px;
}

.search-area ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-area ul li {
    position: relative;
}

.btn-pop-calendar {
    line-height: 48px;
    padding: 0 54px;
    margin: 0 13px;
    background-color: #f4f4f4;
    cursor: pointer;
    font-size: 18px;
    color: #5f6668;
}

.btn-pop-calendar::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    background: url(/images/ic_calendar.svg) center center no-repeat;
    width: 27px;
    height: 26px;
}

.pop-calendar {
    width: 338px;
    padding: 37px 17px;
    border: 1px solid var(--color-main);
    border-radius: 4px;
    background-color: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1200;
    font-family: var(--font-num);
}

.pop-calendar-top {
    widows: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.pop-calendar-top span {
    cursor: pointer;
}

.calendar-s {
    width: 100%;
}

.calendar-s th {
    font-size: 11px;
    border-bottom: 1px solid #e8e8e8;
    text-transform: uppercase;
    padding: 8px 0;
    color: #000;
}

.calendar-s th:first-child,
.calendar-s td:first-child {
    color: #d57878;
}

.calendar-s th:last-child,
.calendar-s td:last-child {
    color: #4e85aa;
}

.calendar-s td {
    width: 44px;
    height: 44px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #e8e8e8;
    font-size: 14px;
    color: #000;
}

.calendar-s td.possible {
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.calendar-s td.possible:hover {
    background-color: #f6f3e0;
}

.btn-table a {
    min-width: 60px;
    display: inline-block;
    text-align: center;
    border: 1px solid #ddd;
    line-height: 32px;
    padding: 0 16px;
    border-radius: 6px 0 6px 0;
    transition: 0.2s ease-in-out;
    background-color: #fff;
}

.btn-table a:hover {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}

.tbl-sty01 {
    width: 100%;
    border-top: 1px solid #000;
}

.tbl-sty01 th {
    line-height: 48px;
    font-weight: 700;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
}

.tbl-sty01 td {
    text-align: center;
    vertical-align: middle;
    height: 60px;
    padding: 14px 0;
    border-bottom: 1px solid #ddd;
}

.tbl-sty01 td .reser-number {
    color: var(--color-main);
    text-decoration: underline;
    font-weight: 300;
}

.tbl-sty01 tbody tr {
    transition: 0.2s ease-in-out;
}

.tbl-sty01 tbody tr:hover {
    background-color: #f9f9f9;
}

.no-list {
    display: flex;
    width: 100%;
    height: 380px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.no-list.line {
    border-top: 1px solid #000;
    border-bottom: 1px solid #ddd;
}

/*양도팝업*/
.pop-transfer {
    width: 530px;
}

.pop-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45em;
    padding-bottom: 8px;
    /*    margin-bottom: 16px;*/
}

.pop-blue-info {
    border: 1px solid #629bd2;
    border-radius: 6px 0 6px 0;
    padding: 26px 0;
    margin-bottom: 25px;
}

.pop-blue-info dl {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.pop-blue-info dl dt {
    text-align: right;
    width: 60px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.38px;
}

.pop-blue-info dl dd {
    text-align: left;
    font-size: 19px;
    color: #384043;
    letter-spacing: -0.48px;
    padding-left: 16px;
    width: 230px;
}

.pop-sub-title {
    font-size: 15px;
    letter-spacing: -0.38px;
    padding-bottom: 8px;
    font-weight: 500;
}

.transfer-info {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 8px 0;
}

.transfer-info dl {
    margin: 12px 0;
    display: table;
    width: 100%;
}

.transfer-info dt {
    display: table-cell;
    width: 26%;
    height: 40px;
    vertical-align: middle;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.38px;
}

.transfer-info dd {
    display: table-cell;
    width: 74%;
    vertical-align: middle;
}

.transfer-info dd input {
    height: 40px;
    font-size: 15px;
}

.transfer-info dd input::placeholder {
    font-size: 15px;
    font-weight: 400;
}

.btn-popup {
    margin: 24px 0 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
}

.btn-popup a {
    border: 1px solid #ddd;
    border-radius: 6px 0 6px 0;
    background-color: #fff;
    color: #535b5d;
    width: 140px;
    font-size: 18px;
    margin: 0 10px;
    line-height: 48px;
    font-weight: 700;
    transition: 0.2s all ease-in-out;
}

.btn-popup a.on {
    border: 1px solid var(--color-main);
    color: var(--color-main);
}

/*delete*/
.delete-blue-info {
    border: 1px solid #629bd2;
    border-radius: 20px 0 20px 0;
    padding: 48px 0;
    margin-bottom: 25px;
}

.delete-blue-info dl {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.delete-blue-info dl dt {
    text-align: right;
    width: 70px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.45px;
}

.delete-blue-info dl dd {
    text-align: left;
    font-size: 22px;
    color: #384043;
    letter-spacing: -0.55px;
    padding: 0 100px 0 16px;
}

.delete-blue-info dl dd:last-child {
    padding-right: 0;
}

.delete-box {
    padding-bottom: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid #d4d4d4;
}

.delete-box .member-info-box {
    width: 460px;
    margin: auto;
    border-top: 0;
}

.delete-text h2 {
    font-size: 18px;
    font-weight: 700;
    color: #007bc2;
    padding-bottom: 12px;
}

.delete-text p {
    line-height: 1.67em;
    color: #222;
    font-weight: 300;
    font-size: 15px;
    margin-bottom: 80px;
}

/*coupon*/
.input-coupon {
    width: 520px;
}

.input-coupon input {
    height: 48px;
    text-align: center;
}

.input-coupon input::placeholder {
    font-size: 18px;
}

.coupon-tab {
    display: flex;
    justify-content: center;
    margin-bottom: 78px;
}

.coupon-tab a {
    width: 248px;
    border: 1px solid #ddd;
    line-height: 48px;
    text-align: center;
    display: block;
    font-size: 17px;
    font-weight: 500;
}

.coupon-tab a.on {
    background-color: #326eab;
    border: 1px solid #326eab;
    color: #fff;
}

.coupon-wrap {
    border-top: 1px solid #000;
    border-bottom: 1px solid #ddd;
}

.coupon-list ul {
    display: flex;
    justify-content: flex-start;
    padding: 32px 30px;
    border-bottom: 1px solid #ddd;
}

.coupon-list ul:last-child {
    border-bottom: 0;
}

.coupon-list ul li {
    width: 50%;
    text-align: left;
    position: relative;
}

.coupon-list ul li::after {
    content: '';
    width: 1px;
    height: 100%;
    display: block;
    background-color: #ddd;
    position: absolute;
    left: 0;
    top: 0;
}

.coupon-box {
    width: 460px;
    min-height: 202px;
    text-align: left;
    float: right;
    position: relative;
    border-radius: 8px;
    padding: 24px 0 15px;
}

.coupon-box::before {
    content: '';
    background: url(/images/bg_coupon01.svg) center center no-repeat;
    width: 54px;
    height: 53px;
    position: absolute;
    top: 7px;
    right: 6px;
}

.coupon-list ul li:first-child .coupon-box {
    float: left;
}

.coupon-list ul li:first-child::after {
    display: none;
}

.coupon-box.possible {
    background-color: #cbf0f2;
    cursor: pointer;
}

.coupon-box.used {
    background-color: #efefef;
}

.coupon-box.gift {
    background-color: #f2cbdb;
}

.coupon-box h4 {
    position: relative;
}

.coupon-box h4 span {
    padding: 0 12px 2px;
    margin: 0 19px;
    border-radius: 2px;
    line-height: 27px;
    color: #fff;
    font-size: 15px;
}

.coupon-box h4 u {
    font-size: 15px;
    color: #326eab;
    position: absolute;
    right: 19px;
    text-decoration: underline;
    cursor: pointer;
}

.coupon-box h1 {
    padding: 6px 84px 6px 19px;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.46em;
    word-break: keep-all;
}

.coupon-num {
    font-size: 15px;
    font-weight: 300;
    color: #5f6668;
    padding: 0 0 32px 19px;
    position: relative;
}

.coupon-num::after {
    content: '';
    background: url(/images/bg_coupon02.svg) center center no-repeat;
    width: 84px;
    height: 70px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.coupon-day {
    padding: 12px 19px 0;
    font-size: 15px;
    font-weight: 300;
    color: #5f6668;
}

.coupon-box.possible h4 span {
    background-color: #326eab;
}

.coupon-box.possible .coupon-num {
    border-bottom: 1px solid #bae1e2;
}

.coupon-text {
    margin: 20px 0;
    line-height: 1.67em;
}

.coupon-text h2 {
    color: #007bc2;
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 8px;
}

.coupon-text p {
    font-size: 15px;
    color: #222;
    font-weight: 300;
}

.coupon-pop {
    width: 700px;
}

.coupon-pop-box {
    width: 100%;
}

.coupon-pop-info {
    width: 100%;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 16px 0;
}

.coupon-pop-info dl {
    display: table;
    width: 100%;
}

.coupon-pop-info dt,
.coupon-pop-info dd {
    display: table-cell;
    vertical-align: middle;
}

.coupon-pop-info dt {
    font-size: 12px;
    line-height: 2.67em;
    width: 10%;
    max-width: 50px;
    font-weight: 400;
}

.coupon-pop-info dd {
    width: 90%;
    font-size: 14px;
    font-weight: 400;
    color: #2f3334;
    text-align: right;
}

.coupon-pop-text {
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding: 16px 0;
    font-size: 12px;
    color: #222;
    line-height: 1.5em;
    font-weight: 300;
    letter-spacing: -0.3px;
    word-break: keep-all;
    margin-bottom: 20px;
}

.coupon-pop-text ul {
    display: flex;
    justify-content: space-between;
}

.coupon-pop-text ul li {
    width: 300px;
}

.resive-pop-info {
    width: 100%;
}

.resive-pop-info ul {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-bottom: 10px;
}

.resive-pop-info ul li {
    width: 300px;
    padding: 5px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #ddd;
}

.resive-pop-info ul li input {
    height: 40px;
    font-size: 14px;
}

.resive-pop-info ul li input::placeholder {
    font-size: 14px;
}

.coupon-box.used {
    background-color: #efefef;
}

.coupon-box.used::before {
    background: none;
}

.coupon-box.used h4 span {
    background: #b4bbbc;
}

.coupon-box.used h1 {
    color: #b4bbbc;
}

.coupon-box.used .coupon-num {
    border-bottom: 1px solid #e8e8e8;
}

.coupon-box.used .coupon-num::after {
    background: none;
}

.coupon-box.used p {
    color: #b4bbbc
}

.coupon-box.gift {
    background-color: #f2cbdb;
}

.coupon-box.gift::before {
    background: none;
}

.coupon-box.gift h4 span {
    background: #ccb835;
}

.coupon-box.gift .coupon-num {
    border-bottom: 1px solid #fcd5e5;
}

/*information*/
.tbl-sty02 {
    width: 100%;
    border-top: 1px solid #000;
    line-height: 1.38em;
}

.tbl-sty02 thead th {
    height: 48px;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    vertical-align: middle;
    border-bottom: 1px solid #ddd;
}

.tbl-sty02 tbody th {
    position: relative;
    background-color: #f9f9f9;
    height: 60px;
    vertical-align: middle;
    border-bottom: 1px solid #ddd;
    color: #000;
    font-weight: 500;
}

.tbl-sty02 tbody td {
    position: relative;
    height: 60px;
    padding: 5px 0;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #ddd;
}

.tbl-sty02 tbody td::before,
.tbl-sty02 th.line-l::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 16px;
    background-color: #ddd;
    bottom: 0;
    left: 0;
}

.tbl-sty02 td.line-r::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 16px;
    background-color: #ddd;
    bottom: 0;
    right: 0;
}

.tbl-sty02 td.bg-g,
.tbl-sty02 thead th.bg-g {
    background-color: #f4f4f4;
}


.reser-step {
    width: 100%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #ddd;
    padding: 30px 40px;
}

.reser-step ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reser-step ul li {
    width: 300px;
    line-height: 80px;
    text-align: center;
    border-radius: 4px;
    font-size: 15px;
    color: #000;
    background: #f9f9f9;
    text-indent: 65px;
    position: relative;
}

.reser-step ul em {
    background: url(/images/ic_arw_right.svg) center center no-repeat;
    width: 10px;
    height: 18px;
}

.reser-step ul li::before {
    content: '';
    width: 54px;
    height: 54px;
    position: absolute;
    left: 48px;
    top: 13px;
}

.reser-step ul li:first-child::before {
    background: url(/images/ic_reser_step01.svg) center center no-repeat;
}

.reser-step ul li:nth-of-type(2)::before {
    background: url(/images/ic_reser_step02.svg) center center no-repeat;
}

.reser-step ul li:last-child::before {
    background: url(/images/ic_reser_step03.svg) center center no-repeat;
}

.text-b {
    color: #326eab;
    text-decoration: underline;
    font-weight: 500;
}

.reser-group-info {
    width: 100%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #ddd;
    padding: 30px 40px;
}

.reser-group-info ul {
    display: flex;
    justify-content: space-between;
    /*    align-items: center;*/
}

.reser-group-info ul li {
    width: 440px;
    font-size: 15px;
    line-height: 1.47em;
    color: #000;
    position: relative;
    font-weight: 300;
}

.reser-group-info ul li h2 {
    font-size: 17px;
    padding-bottom: 10px;
    font-weight: 700;
}

.tbl-sty03 {
    width: 100%;
    border-top: 1px solid #000;
    line-height: 1.38em;
}

.tbl-sty03 thead th {
    height: 48px;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    border-bottom: 1px solid #ddd;
}

.tbl-sty03 tbody th {
    position: relative;
    background-color: #f9f9f9;
    height: 60px;
    padding: 20px 40px;
    border-bottom: 1px solid #ddd;
    color: #000;
    font-weight: 700;
    text-align: left;
}

.tbl-sty03 tbody td {
    position: relative;
    height: 60px;
    padding: 20px 50px;
    border-bottom: 1px solid #ddd;
    font-weight: 300;
    font-size: 15px;
}

.tbl-sty03 tbody td::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 16px;
    background-color: #ddd;
    bottom: 0;
    left: 0;
}

.tbl-sty03 tbody td.none::before {
    display: none;
}

/*board-list*/
.input-board {
    width: 360px;
    margin-left: 8px;
}

.input-board input {
    height: 48px;
    text-align: center;
}

.input-board input::placeholder {
    font-size: 18px;
}

.search-area .sub-select {
    width: 160px;
}

.search-area .sub-select li .options {
    width: 160px;
}

.search-area .sub-select li .options.open {
    width: 160px;
    /*    height: 148px;*/
    max-height: auto;
    overflow-y: hidden;
}

.tbl-board {
    width: 100%;
    border-top: 1px solid #000;
}

.tbl-board th {
    padding: 15px 0 16px;
    border-bottom: 1px solid #ddd;
    font-weight: 700;
}

.tbl-board td {
    padding: 15px 0;
    height: 70px;
    vertical-align: middle;
    text-align: center;
    border-bottom: 1px solid #ddd;
    font-size: 17px;
}

.tbl-board td.title {
    text-align: left;
    padding: 15px 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tbl-board td a span {
    color: var(--color-main);
    font-weight: 500;
}

.tbl-board tbody tr {
    transition: 0.2s all ease-in-out;
}

.tbl-board tbody tr:hover {
    background-color: #f5f5f5;
}

.tbl-board tbody tr:hover a {
    text-decoration: underline;
    font-weight: 500;
}

/*board-view*/
.board-view-wrap {
    width: 100%;
}

.board-view-header {
    border-top: 1px solid #000;
    border-bottom: 1px solid #ddd;
    padding: 21px 50px 23px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
}

.board-view-header b {
    color: var(--color-main);
    margin-right: 16px;
    width: 45px;
}

.board-view-header em {
    width: 90px;
    text-align: right;
}

.board-view-header p {
    flex: 1;
    padding-right: 40px;
    font-weight: 600;
    line-height: 1.5em;
}

.board-view-con {
    border-bottom: 1px solid #ddd;
}

.board-view-con p {
    padding: 20px 50px 10px;
    text-align: right;
}

.board-view-con p span {
    color: var(--color-main);
    margin-right: 7px;
}

.board-view-con b {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.board-view-con li {
    line-height: 2em;
    padding: 30px 50px;
    min-height: 460px;
}

.board-view-con li img {
    display: block;
    max-width: 100%;
}

.board-prev-next {
    width: 100%;
}

.board-prev-next ul {
    border-bottom: 1px solid #ddd;
    display: flex;
    padding: 23px 50px;
    align-items: center;
    justify-content: space-between;
}

.board-prev-next ul span {
    color: #747e81;
}

.board-prev-next ul li {
    flex: 1;
    margin: 0 50px;
    padding: 2px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.board-prev-next ul li a b {
    color: var(--color-main);
    margin-right: 5px;
}

.board-prev-next ul em {}

.btn-board-list {
    text-align: center;
    margin: 65px 0;
}

.btn-board-list a {
    display: inline-block;
    width: 220px;
    line-height: 56px;
    color: var(--color-main);
    border: 1px solid var(--color-main);
    border-radius: 6px 0 6px 0;
    font-size: 20px;
    font-weight: 700;
}

/*qna*/
.qna-wrap {
    width: 100%;
}

.qna-tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qna-tab span {
    cursor: pointer;
    text-align: center;
    width: 128px;
    line-height: 40px;
    flex-shrink: 1;
    border: 1px solid #ddd;
    border-radius: 6px 0 6px 0;
    color: #535b5d;
    font-weight: 700;
    transition: 0.2s all ease-in-out;
}

.qna-tab span.on,
.qna-tab span:hover {
    color: var(--color-main);
    border: 1px solid var(--color-main);
}

.qna-list {
    border-top: 1px solid #000;
    width: 100%;
    margin-top: 24px;
    line-height: 2em;
    min-height: 400px;
}

.question {
    width: 100%;
    padding: 19px 50px 19px 58px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.hidden {
    display: none;
}

.answer {
    padding: 19px 50px 19px 58px;
    border-bottom: 1px solid #ddd;
    background-color: #f2f5f5;
    display: none;
}

.answer li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.question b,
.answer b {
    text-transform: uppercase;
    position: relative;
    color: #000;
    font-weight: 900;
    margin-right: 83px;
}

.answer b {
    color: var(--color-main);
    transition: 0.2s ease-in-out;
}

.question b::after,
.answer b::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    height: 2px;
    width: 100%;
    background-color: #000;
}

.question p,
.answer p {
    flex: 1;
    padding-right: 150px;
    word-break: keep-all;
    transition: 0.2s ease-in-out;
}

.question p span {
    color: var(--color-main);
    margin-right: 5px;
}

.question em {
    width: 20px;
    height: 11px;
    display: block;
    background: url(/images/ic_board_down.svg) center center no-repeat;
    transition: 0.2s ease-in-out;
}

.question.on em {
    transform: rotateX(180deg);
}

.question.on p {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.83px;
}

/*clubhouse*/
.contents-wide {
    position: relative;
    width: calc(100% - 180px);
    height: 100%;
    margin: auto;
    padding-top: 164px;
}

.wide-area-top {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 480px;
    border-radius: 40px 0 0 0;
}

.wide-area-top .bg img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    position: absolute;
    left: 0;
    z-index: -1;
}

.wide-area-top .con-tit {
    text-align: center;
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 40px;
    padding-top: 141px;
    color: #fff;
    animation: text-focus-in 1s ease both;
}

.head-menu-area {
    background-color: #fff;
    width: 90%;
    max-width: 1420px;
    height: 160px;
    margin: 130px auto 0;
    border-radius: 40px 0 0 0;
    position: relative;
    padding: 50px clamp(1.25rem, -10rem + 14.0625vw, 6.875rem);
    /*20-110*/
}

.head-menu-area .top-nav {
    position: absolute;
    top: -45px;
    right: 110px;
    color: #fff;
}

.head-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.head-menu a {
    flex: 1;
    line-height: 60px;
    text-align: center;
    border: 1px solid #ddd;
    display: block;
    font-size: 18px;
    color: #535b5d;
    font-weight: 500;
    transition: 0.2s ease-in-out;
}

.head-menu a:first-child {
    border-radius: 30px 0 0 0;
}

.head-menu a.on,
.head-menu a:hover {
    border: 1px solid var(--color-main);
    color: var(--color-main);
}

.club-house {
    width: 1200px;
    margin: 0 auto 100px;
}

.club-house ul {
    display: flex;
    justify-content: space-between;
}

.club-house:nth-child(even) ul {
    flex-direction: row-reverse;
}

.club-house li {
    width: 520px;
    font-size: 15px;
    font-weight: 300;
}

.club-house li h1 {
    font-size: 42px;
    font-family: var(--font-en);
    text-transform: capitalize;
    font-weight: 700;
    color: #000;
    padding-top: 8px;
}

.club-house li h3 {
    padding: 10px 0 30px;
}

.club-house li p {
    line-height: 1.6em;
    word-break: keep-all;
    letter-spacing: -0.38px;
    color: #2f3334;
}

.facil-info {
    width: 100%;
    margin-top: 24px;
}

.facil-info dl {
    display: table;
    font-size: 14px;
    line-height: 1.7em;
    padding-bottom: 16px;
}

.facil-info dt {
    width: 90px;
    font-weight: 700;
    padding-right: 32px;
    display: table-cell;
}

.facil-info.big dt {
    width: 150px;
}

.club-house .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 50px;
    z-index: 5;
    font-size: 0;
}

.club-house .slick-prev {
    left: 0;
    background: url(/images/ic_facil_l.svg) center center no-repeat;
}

.club-house .slick-next {
    right: 0;
    background: url(/images/ic_facil_r.svg) center center no-repeat;
}

.club-house .slick-dots {
    position: absolute;
    bottom: -30px;
    right: 16px;
    width: 100%;
    text-align: right;
}

.club-house:nth-child(even) .slick-dots {
    text-align: left;
    left: 16px;
}

.facil-slide {
    width: 540px;
}

.f-slide .slick-dots li {
    display: none;
}

.f-slide .slick-dots li.slick-active {
    display: block;
}

/*course*/
.course-intro-wrap {
    text-align: center;
    width: 1200px;
    margin: auto;
}

.course-intro-wrap h2 {
    font-size: 26px;
    color: #000;
    line-height: 1.23em;
    font-weight: 500;
    letter-spacing: -0.65px;
    margin-bottom: 20px;
}

.course-intro-wrap p {
    font-weight: 300;
    color: #000;
    line-height: 1.6em;
    letter-spacing: -0.4px;
}

.all-course-info {
    margin: 80px 0 60px;
    width: 100%;
    color: #5f6668;
}

.all-course-info ul {
    display: flex;
    justify-content: center;
}

.all-course-info ul li {
    width: 270px;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.all-course-info ul li::after {
    content: '';
    width: 1px;
    height: 88px;
    background-color: #ddd;
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
}

.all-course-info ul li:last-child::after {
    display: none;
}

.all-course-info ul li h3 {
    padding-bottom: 20px;
}

.all-course-info ul li>ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 88px;
}

.all-course-info ul li dl {
    display: table;
}

.all-course-info ul li dl dt,
.all-course-info ul li dl dd {
    display: table-cell;
    padding: 0 5px;
    vertical-align: middle;
}

.all-course-info ul li dl dt {
    font-size: 15px;
    color: #2f3334;
    letter-spacing: -0.38px;
    font-weight: 500;
}

.all-course-info ul li dl dd {
    font-size: 32px;
    font-weight: 500;
    color: #2f3334;
    line-height: 1.44em;
    letter-spacing: -0.8px;
}

.all-course-info ul li dl dd span {
    font-size: 24px;
}

.course-intro-img {
    width: 100%;
    height: 388px;
    border-radius: 50px 0 0 0;
    overflow: hidden;
}

.course-intro-img {
    background-image: url(/images/img_course.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 20%;
    border-radius: 50px 0 0 0;
    width: 100%;
    margin-bottom: 40px;
}

.course-intro-img>.inner-img {
    padding-top: 105px;
    padding-bottom: 105px;
}

/*course-detail*/
#tabCon2 {
    display: none;
}

.course-tab {
    width: 100%;
    display: flex;
    justify-content: center;
}

.course-tab span {
    position: relative;
    cursor: pointer;
    font-size: 22px;
    color: #969594;
    line-height: 1.27em;
    font-weight: 500;
    margin: 0 25px;
    transition: 0.2s ease-in-out;
}

.course-tab span.on {
    color: #000;
    font-weight: 700;
}

.course-tab span.on::after {
    content: '';
    height: 4px;
    width: 100%;
    display: block;
    position: absolute;
    bottom: -4px;
    left: 0;
    background-color: var(--color-main);
}

.course-wrap {
    width: 1200px;
    margin: auto;
}

.course-photo {
    margin: 42px 0 50px;
}

.course-photo img {
    width: 100%;
}

.course-header h2 {
    font-size: 26px;
    color: #000;
    line-height: 1.23em;
    font-weight: 500;
    letter-spacing: -0.65px;
    text-align: center;
    margin-bottom: 20px;
}

.course-header p {
    font-weight: 300;
    color: #000;
    line-height: 1.6em;
    letter-spacing: -0.4px;
    text-align: center;
}

.course-list {
    margin-top: 54px;
    width: 100%;
    position: relative;
}

.course-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

.course-box .course-info {
    width: 370px;
    margin-left: 80px;
    letter-spacing: -0.5px;
}

.course-box .course-info h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-main);
}

.course-box .course-info h2 span {
    font-size: 18px;
    color: #535b5d;
    line-height: 1.33em;
    display: inline-block;
    padding-left: 8px;
    vertical-align: middle;
    text-transform: capitalize;
}

.course-box .course-info h3 {
    color: #2f3334;
    font-size: 24px;
    font-weight: 700;
    padding: 15px 0 20px;
}

.course-box .course-info p {
    line-height: 1.63em;
    color: #2f3334;
    font-weight: 300;
    padding-bottom: 32px;
    word-break: keep-all;
}

.course-box .swiper-btn {
    display: flex;
}

.swiper-btn .next,
.swiper-btn .prev {
    width: 45px;
    height: 45px;
    cursor: pointer;
}

.swiper-btn .next {
    background: url(/images/btn_course_r.svg) center center no-repeat;
}

.swiper-btn .prev {
    background: url(/images/btn_course_l.svg) center center no-repeat;
}

.course-box .hole-img {
    width: 690px;
}

.course-page,
.course-page-other {
    width: 960px !important;
    margin: 0 auto 50px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-page::before,
.course-page-other::before {
    content: '';
    height: 1px;
    width: calc(100% - 20px);
    display: block;
    background-color: #ddd;
    position: absolute;
    left: 50%;
    top: 12x;
    transform: translateX(-50%);
    z-index: -1;
}

.course-page.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.course-page.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet,
.course-page-other.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.course-page-other.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    opacity: 1;
}

.course-page .swiper-pagination-bullet,
.course-page-other .swiper-pagination-bullet {
    background-color: #384043;
    width: 17px;
    height: 17px;
    position: relative;
    display: inline-block;
}

.course-page .swiper-pagination-bullet b,
.course-page-other .swiper-pagination-bullet b {
    position: absolute;
    text-align: center;
    width: 50px;
    left: 50%;
    top: 35px;
    transform: translateX(-50%);
    font-size: 17px;
    color: #000;
    letter-spacing: -0.4px;
    font-weight: 300;
}

.course-page .swiper-pagination-bullet-active,
.course-page-other .swiper-pagination-bullet-active {
    width: 25px;
    height: 25px;
    background: #fff;
    border: 4px solid var(--color-main);
}

.course-page .swiper-pagination-bullet-active b,
.course-page-other .swiper-pagination-bullet-active b {
    color: var(--color-main);
    text-decoration: underline;
    font-weight: 500;
}

/*club*/
.map-wrap {
    max-width: 1200px;
    width: 100%;
    margin: auto
}

.map {
    width: 100%;
    height: 501px;
    overflow: hidden;
    position: relative;
}

/*
.map-inner{
    position: absolute;
    left: -1px;
    top: -1px;
}
*/
.map-info {
    width: 100%;
    margin-top: 16px;
}

.map-info dl {
    width: 100%;
    display: table;
    margin-bottom: 8px;
}

.map-info dt {
    width: 320px;
    display: table-cell;
    padding-left: 80px;
    vertical-align: middle;
    font-size: 18px;
    color: #2f3334;
    letter-spacing: -0.45px;
    font-weight: 500;
}

.map-info dd {
    display: table-cell;
    width: calc(100% - 320px);
    background-color: #f4f4f4;
    height: 56px;
    padding: 0 50px;
    vertical-align: middle;
    color: #2f3334;
    letter-spacing: -0.4px;
    font-weight: 300;
}

.map-info dd em {
    width: 280px;
    display: inline-block;
}

#daumRoughmapContainer1694141219383 {
    width: 100%;
}

.round-img {
    border-radius: 80px 0 0 0;
}

.club-wrap {
    width: 1200px;
    margin: auto;
}

.club-box {
    width: 100%;
    position: relative;
    margin-bottom: 230px;
}

.club-box:last-child {
    margin-bottom: 0;
}

.club-box ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.club-img {
    width: 748px;
    position: relative;
}

.inner-img {
    width: 748px;
    height: 388px;
    overflow: hidden;
    transition: 0.4s all ease-in-out;
}

.inner-img img {
    width: 100%;
}

.club-img::after {
    content: '';
    background: url(/images/img_club_mask.svg) center center no-repeat;
    width: 68px;
    height: 78px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.club-box h2 {
    font-size: 26px;
    color: #000;
    line-height: 1.2em;
    letter-spacing: -0.65px;
    font-weight: 500;
    padding-bottom: 20px;
}

.club-box p {
    color: #000;
    line-height: 1.63em;
    letter-spacing: -0.4px;
    font-weight: 300;
}

.club-box .bg-shape {
    position: absolute;
    z-index: -1;
    display: none;
}

.club-box .bg-shape img {
    width: 100%;
}

.bg-shape.type1 {
    top: 0;
    left: -200px;
}

.bg-shape.type2 {
    left: 354px;
    bottom: -111px;
}

.bg-shape.type3 {
    top: 174px;
    left: 65px;
}

.bg-shape.type4 {
    top: 101px;
    left: 140px;
}

.bg-shape.type5 {
    top: -34px;
    right: 130px;
}

.bg-shape.type6 {
    left: 0px;
    bottom: -162px
}

.bg-shape.type7 {
    left: 258px;
    bottom: -180px
}

.bg-shape.type8 {
    top: 7px;
    left: 213px;
}

.bg-shape.type3,
.bg-shape.type7 {
    animation: rotate 6s ease 6s infinite;
}

/*terms*/
.terms-box {
    line-height: 1.6em;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.3px;
    color: #222;
    padding-right: 10px;
}

.terms-box h2 {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 7px;
}

.terms-box table {
    font-size: 13px;
}

.terms-box table td {
    padding: 10px;
}

.terms-box a {
    text-decoration: underline;
}

/*23-09-14추가*/
.common-tit .btn-link {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    text-align: center;
    background-color: #fff;
    border: 1px solid var(--color-main);
    border-radius: 4px 0 4px 0;
    line-height: 26px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.7px;
    padding: 0 27px;
    color: var(--color-main);
}

/*greeting*/
.greeting-wrap {
    width: 1000px;
    margin: auto;
}

.greeting-visual {
    background: url(/images/img_greeting.jpg) center center no-repeat;
    background-size: contain;
    width: 100%;
    height: 400px;
    position: relative;
    text-align: center;
}

.greeting-visual h1 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    padding-top: 265px;
    font-family: var(--font-serif);
}

.greeting-visual h1 span {
    font-size: 44px;
}

.greeting-visual p {
    padding-top: 8px;
    font-size: 19px;
    color: #fff;
    letter-spacing: -0.5px;
    font-weight: 400;
}

.greeting-visual p span {
    color: #00d4ff;
    font-weight: 700;
}

.greeting-text {
    text-align: center;
    padding: 25px 0;
    font-size: 17px;
    line-height: 2em;
    letter-spacing: -0.43px;
    color: #2f3334;
}

/*group-추가*/
.pop-round-wrap {
    width: 860px;
    height: 500px;
    overflow-y: auto;
    border-bottom: 1px solid #000;
}

.pop-round-wrap::-webkit-scrollbar {
    width: 4px;
}

.pop-round-wrap::-webkit-scrollbar-thumb {
    height: 5%;
    background: #72b0ef;
}

.pop-round-wrap::-webkit-scrollbar-track {
    background: #e8e8e8;
}

.tbl-pop-round {
    width: 100%;
    border-top: 1px solid #000;
}

.tbl-pop-round th,
.tbl-pop-round td {
    border: 1px solid #ddd;
    vertical-align: middle;
}

.tbl-pop-round thead tr:first-child th,
.tbl-pop-round thead tr:first-child td {
    border-top: 1px solid #000;
}

.tbl-pop-round th {
    font-weight: 700;
    font-size: 14px;
    color: #2f3334;
    letter-spacing: -0.35px;
    height: 40px;
    padding: 11px 0;
}

.tbl-pop-round th b {
    width: 100%;
    display: inline;
    box-shadow: inset 0 -4px 0 #fff350;
}

.tbl-pop-round td {
    font-size: 14px;
    height: 40px;
    text-align: center;
}

.tbl-pop-round input[type="text"] {
    height: 40px;
    background-color: #fff;
    text-align: center;
    padding: 0;
    font-size: 14px;
}

.tbl-pop-round input[type="text"]::placeholder {
    font-size: 14px;
    font-weight: 400;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.tbl-pop-round select {
    width: 100%;
    height: 40px;
    font-size: 14px;
    letter-spacing: -0.35px;
    text-align: center;
    color: #2f3334;
    padding: 0;
    background: #f5f5f5 url(/images/ic_down2.svg) center right 20px no-repeat;
    text-indent: -20px;
}

.tbl-pop-round select.gender {
    background: #f5f5f5 url(/images/ic_down2.svg) center right 8px no-repeat;
    background-size: 6px 4px;
    text-indent: -10px
}

.tbl-pop-round select[disabled] {
    background-color: #fff;
    font-weight: 500;
}

.tbl-pop-round tbody input[type="text"] {
    background-color: #f4f4f4;
}

.tbl-pop-round tbody input[type="text"]::placeholder {
    color: #2f3334;
    font-weight: 300;
}

.tbl-pop-round tbody .disabled {
    font-weight: 500;
}

.tbl-pop-round .radio-sty01 input[type=radio]+label {
    padding-right: 10px;
}

.tbl-pop-round .agree-chk input[type=checkbox]+label {
    display: inline-block;
    padding: 4px 9px;
    text-indent: 12px;
    background-position: left top 3px;
}

.tbl-pop-round .datepicker {
    width: 100%;
    height: 40px;
    padding: 12px 20px;
    font-size: 14px;
    position: relative;
    text-align: center;
}

/*score*/
.score-wrap {
    width: 100%;
}

.score-wrap h2 {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2f3334;
    margin-bottom: 15px;
}

.score-wrap h2 span {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 16px;
    font-weight: 400;
}

.tbl-score {
    width: 100%;
    border-top: 1px solid #000;
}

.tbl-score th {
    position: relative;
    background-color: #e7edee;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.tbl-score td {
    position: relative;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.tbl-score tr:first-child td {
    background-color: #f4f4f4;
    font-weight: 300;
}

.tbl-score th::after,
.tbl-score td::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1px;
    height: 16px;
    background-color: #ddd;
    display: block;
}

.tbl-score th:last-child::after,
.tbl-score td:last-child::after {
    display: none;
}

/*단체등록신청서*/
.pop-group-wrap {
    /*    width: 780px;*/
    width: 100%;
    /*border-bottom: 1px solid #000;*/
    padding-bottom: 10px;
}

.pop-group-wrap .tbl-pop-round {
    font-size: 16px;
}

.pop-radio-text {
    position: relative;
    margin-bottom: 15px;
}

.pop-radio-text .red {
    color: #d94040 !important;
    font-weight: 500;
}

.pop-radio-text .radio-sty01 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.pop-group-wrap .tbl-pop-round th {
    font-size: 17px;
}

/*
.pop-group-wrap .tbl-pop-round td input{
    font-size: 16px;
}
.pop-group-wrap .tbl-pop-round td input::placeholder{
    font-size: 16px;
}
*/
.pop-group-wrap .tbl-pop-round th span {
    font-size: 14px;
    display: block;
    padding-top: 3px;
}

.tbl-pop-round .pop-time-select select {
    width: 96%;
    margin: 0 6px;
}

.pop-radio-text ul li h3 {
    font-weight: 700;
    padding: 30px 0px 20px;
}

.pop-radio-text ul li p {
    line-height: 1.5em;
}

.etc-group-text {
    line-height: 1.5em;
}

.etc-group-text h3 {
    font-weight: 700;
    padding: 30px 0px 10px;
}

.etc-group-text li {
    padding-bottom: 4px;
}

.etc-group-text .red {
    color: #d94040 !important;
    font-weight: 500;
}

.border-none {
    border-bottom: 0;
}

.btn_file {
    display: inline-block;
    background: #a6a6a6;
    width: 90px;
    height: 80%;
    line-height: 30px;
    text-align: center;
    color: #fff;
    font-size: 12px;
}

.btn-common-s.group a {
    line-height: 1.25em;
    height: 45px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center
}

.group-file {
    background-color: #fff;
    border-radius: 8px 0 8px 0;
    margin-left: 16px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.25em;
    height: 45px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--color-main);
    color: var(--color-main);
    cursor: pointer;
}

.group-file span {
    font-size: 12px;
}