@charset "utf-8";
/* https://developer.mozilla.org/en-US/docs/Web/CSS/@layer */
/* @import start */
@import url("https://webfontworld.github.io/amore/AritaBuri.css");
/* @import end */

/* 중첩 이슈 발생 시 scss -> css 컴파일 후 적용 */
:root {
    /* font-family */
    --page-font-family: "Pretendard Variable", sans-serif;
    --page-font-family-serif: "AritaBuri", serif;
    /* navbar */
    --navbar-height: clamp(60px, 10vw, 90px);
    --header-quick-link-height: 35px;
    /* font-size default (desktop / mobile)*/
    --page-font-size: 14px;
    /* page global color */
    --page-point-color: #ab0835;
    --page-point-color2: #e0124d;
    --page-point-color3: #f8901a;
    --page-point-color-pale: #ebf4fc;
    --page-point-color-light: #e1e8fa;
    --page-point-color-soft: #2c76eb;
    --page-point-color-dark: #790224;
    --page-point-color-hover: var(--page-point-color-dark);
    --color-grey: #6c757d;
    --color-grey-100: #f4f4f6;
    --color-grey-200: #e9ecef;
    --color-grey-300: #dee2e6;
    --color-grey-400: #ced4da;
    --color-grey-500: #adb5bd;
    --color-grey-600: #6c757d;
    --color-grey-700: #495057;
    --color-grey-800: #343a40;
    --color-grey-900: #212529;
    --color-dark: #202022;
    /* grid */
    --grid-1fr: minmax(0, 1fr);
    --grid-repeat-2: repeat(2, minmax(0, 1fr));
    --grid-repeat-3: repeat(3, minmax(0, 1fr));
    --grid-repeat-4: repeat(4, minmax(0, 1fr));
    --grid-repeat-5: repeat(5, minmax(0, 1fr));
    --grid-repeat-6: repeat(6, minmax(0, 1fr));
    --grid-repeat-7: repeat(7, minmax(0, 1fr));
    --grid-repeat-8: repeat(8, minmax(0, 1fr));
    --grid-repeat-9: repeat(9, minmax(0, 1fr));
    --grid-repeat-10: repeat(10, minmax(0, 1fr));
    --grid-repeat-11: repeat(11, minmax(0, 1fr));
    --grid-repeat-12: repeat(12, minmax(0, 1fr));
    /* google-material-symbols */
    --gms: "Material Symbols Outlined";
    --gms-grad-low: "GRAD" -25;
    --gms-grad-zero: "GRAD" 0;
    --gms-grad-high: "GRAD" 200;
    --gms-opsz: "opsz" 48;
    /* fill icon */
    --gms-wght-100-fill: "FILL" 1, "wght" 100, var(--gms-opsz);
    --gms-wght-200-fill: "FILL" 1, "wght" 200, var(--gms-opsz);
    --gms-wght-300-fill: "FILL" 1, "wght" 300, var(--gms-opsz);
    --gms-wght-400-fill: "FILL" 1, "wght" 400, var(--gms-opsz);
    --gms-wght-500-fill: "FILL" 1, "wght" 500, var(--gms-opsz);
    --gms-wght-600-fill: "FILL" 1, "wght" 600, var(--gms-opsz);
    --gms-wght-700-fill: "FILL" 1, "wght" 700, var(--gms-opsz);
    /* outlined icon */
    --gms-wght-100-out: "FILL" 0, "wght" 100, var(--gms-opsz);
    --gms-wght-200-out: "FILL" 0, "wght" 200, var(--gms-opsz);
    --gms-wght-300-out: "FILL" 0, "wght" 300, var(--gms-opsz);
    --gms-wght-400-out: "FILL" 0, "wght" 400, var(--gms-opsz);
    --gms-wght-500-out: "FILL" 0, "wght" 500, var(--gms-opsz);
    --gms-wght-600-out: "FILL" 0, "wght" 600, var(--gms-opsz);
    --gms-wght-700-out: "FILL" 0, "wght" 700, var(--gms-opsz);
}
/* html */
html {
    font-size: var(--page-font-size);
}
html.menu-overlay {
    overflow: hidden;
}
body#site {
    display: none;
    padding-top: 0;
    font-family: var(--page-font-family);
}
body#site > .container {
    max-width: inherit !important;
    width: 100% !important;
    padding: 0 !important;
}
/* reset-default */
* {
    word-break: keep-all;
    float: unset;
}
/* selection */
::selection {
    background-color: var(--page-point-color);
    color: #fff;
}
/* input 색상 초기화 */
input:is(:-webkit-autofill, :-webkit-autofill:hover, :-webkit-autofill:focus, :-webkit-autofill:active) {
    -webkit-box-shadow: 0 0 0 30px white inset;
}
/* Paragraph */
:is(ol, ul, li, dl) {
    all: unset;
    display: block;
}
:is(dt, dd, li) {
    display: inline-block;
}
:is(p, h1, h2, h3, h4, h5, h6, dt, dd, th, td, li) {
    position: relative;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    letter-spacing: -0.025em;
}
br {
    visibility: visible;
    opacity: 0;
}
:is(.big) {
    font-size: 1.2em;
}
:is(small, .small) {
    font-size: 0.75em;
}
a:not(.btn) {
    text-decoration: none;
    color: inherit;
}
a:not(.btn):is(:focus, :hover) {
    text-decoration: unset;
    color: unset;
}
/* reset-form */
.form-control {
    font-size: inherit;
}
/* reset-button */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(13px, 5vw, 15px);
    line-height: 1;
    height: 40px;
    padding: 0 1em;
    border-radius: 0;
}
.btn.btn-lg {
    font-size: clamp(14px, 5vw, 16px);
    height: 50px;
}
.btn-outline-primary {
    --bs-btn-active-bg: var(--page-point-color-dark);
    --bs-btn-hover-border-color: var(--page-point-color);
}
.btn.btn-danger {
    color: #fff;
}
button[disabled] {
    pointer-events: none;
    user-select: none;
    /* filter: grayscale(1); */
    opacity: 0.5;
}
@media (hover: hover) {
    .btn.btn-primary {
        background-color: #333;
        border: 1px solid #333;
        color: #fff;
    }
    .btn.btn-primary:is(:hover, :focus) {
        background-color: #000;
        border-color: #000;
    }
    .btn.btn-secondary:is(:hover, :focus) {
        color: #000;
        background-color: var(--page-grey-color-hover);
        border-color: var(--page-grey-color);
    }
}
/* reset-image */
img {
    user-select: none;
    flex-shrink: 0;
    image-orientation: from-image;
}
:where(.container, .row) {
    position: relative;
}
.row::before,
.row::after,
.container::before,
.container::after {
    content: none;
    display: none;
}
.row {
    margin: 0;
}
.clearfix {
    width: 100%;
}
.col {
    --flex-col-2: calc((100% - (var(--gap) * (2 - 1))) / 2);
    --flex-col-3: calc((100% - (var(--gap) * (3 - 1))) / 3);
    --flex-col-4: calc((100% - (var(--gap) * (4 - 1))) / 4);
    --flex-col-5: calc((100% - (var(--gap) * (5 - 1))) / 5);
    --flex-col-6: calc((100% - (var(--gap) * (6 - 1))) / 6);
    --flex-col-7: calc((100% - (var(--gap) * (7 - 1))) / 7);
    --flex-col-8: calc((100% - (var(--gap) * (8 - 1))) / 8);
    --flex-col-9: calc((100% - (var(--gap) * (9 - 1))) / 9);
    --flex-col-10: calc((100% - (var(--gap) * (10 - 1))) / 10);
    --flex-col-11: calc((100% - (var(--gap) * (11 - 1))) / 11);
    --flex-col-12: calc((100% - (var(--gap) * (12 - 1))) / 12);
    padding: 0;
}
.row > * {
    float: unset;
    padding: 0;
}
/* modal  */
.modal.fade.in,
.modal.show {
    transition: 0.25s;
    opacity: 1 !important;
    display: flex !important;
    justify-content: center;
    /* align-items: center; */
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7);
}
.modal .modal-content {
    padding: 35px clamp(5px, 2vw, 35px);
    border-radius: 0.5em;
}
.modal .modal-dialog {
    transform: none;
    margin: 0;
}
.modal .modal-dialog::after {
    content: "";
    display: block;
    height: 30px;
}
.modal .modal-header {
    flex-direction: row-reverse;
    align-items: center;
}
.modal .modal-title {
    font-size: clamp(17px, 3vw, 20px);
}
.modal .modal-header::before,
.modal .modal-header::after {
    content: none;
}
.modal .modal-footer {
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 5px;
}
.modal .modal-footer .btn {
    flex: 1;
    min-width: inherit !important;
    margin: 0;
}
.modal .btn.btn-default {
    background-color: #5d5d5d;
    color: #fff;
}
.modal-header .close {
    line-height: 0;
    margin-top: 0;
    opacity: 0.6;
}
.modal-header .close span {
    font-variation-settings: var(--gms-wght-400-out);
}
.modal-header .close:hover {
    opacity: 1;
}
#am01 .modal .modal-header {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9999;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .modal.fade.in,
    .modal.show {
        padding: 0;
    }
}
/* reset-iframe */
/* 구글맵 iframe*/
iframe[src*="https://www.google.com/"]
{
    background-color: #e5e3df;
    margin-bottom: -6px;
}
/* 유튜브 iframe */
iframe[src*="youtube"],
iframe[title*="YouTube"] {
    aspect-ratio: 1.7777777778;
    background-color: #000;
}
/* reset-icon  */
/* material-symbols */
span.material-symbols-outlined {
    font-family: var(--gms) !important;
    overflow: hidden;
    display: inline-flex;
    line-height: 0.9;
    font-variation-settings: var(--gms-wght-300-out), var(--gms-grad-zero);
    user-select: none;
    transition: background 0.6s ease;
    font-size: 26px;
}
/* layout */
[class*="container"] {
    --gutter-x: 30px;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    max-width: none;
    width: 100%;
    /* `md` applies to small devices (landscape phones, less than 768px) */
}
@media (width <= 767.98px) {
    /* XX-Large devices (larger desktops, 1400px and up) */
    [class*="container"] {
        max-width: none;
        width: 100%;
    }
}
@media (width >= 1400px) {
    [class*="container"] {
        max-width: 1140px;
    }
}
.container-fluid{
    /* max-width: 100%; */
}
/* list-style */
:is(.li-cir, .li-dash) {
    display: flex;
    flex-direction: column;
}
:is(.li-cir, .li-dash) > li {
    position: relative;
    padding-left: 0.8em;
}
/* circle */
.li-cir > li::before {
    content: "";
    position: absolute;
    top: 0.6em;
    left: 0;
    display: block;
    width: 4px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #333;
}
/* dash */
.li-dash > li::before {
    content: "-";
    position: absolute;
    top: 0.7em;
    left: 0;
    line-height: 0;
}
/* 이미지 */
.img-box {
    overflow: hidden;
    position: relative;
    display: flex;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.img-fit {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
.img-fixed {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* 준비중 */
.maintenance {
    background: #f4f4f4;
    padding: 130px 25px;
    text-align: center;
    border-radius: 20px;
}
.maintenance span.material-symbols-outlined {
    display: inline-block;
    line-height: 1;
    font-size: 64px;
    margin-bottom: 10px;
}
.maintenance .big-cont {
    display: block;
    line-height: 1;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}
.maintenance .small-cont {
    display: block;
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: -0.03em;
    color: #818181;
    margin-bottom: 20px;
}

/* 로그인 아이콘 */
#gnbauth i {
    display: none;
}
/* bs3 초기화 */
.navbar::before,
.navbar::after,
.navbar *::before,
.navbar *::after {
    content: none;
}
/* expend 숨김 */
.navbar .caret {
    display: none;
}
:is(.navbar-header, .navbar > .container) {
    display: flex;
}
.navbar .navbar-header {
    /* justify-content: center; */
    align-items: center;
    margin: 0;
}
.navbar > .container {
    justify-content: space-between;
    height: 100%;
}
.navbar .navbar-collapse ul.navbar-right {
    margin-right: 0 !important;
    display: none !important;
}
/* 상단 메뉴 */
.navbar {
    /* --navbar-transition: 0.3s; */
    --navbar-point-color: var(--page-point-color);
    /* 메인메뉴 .navbar ul.navbar-right > li > a*/
    --navbar-dropdown-padding: 0px clamp(15px, 2vw, 25px);
    --navbar-dropdown-font-size: clamp(16px, 2vw, 18px);
    /* 서브메뉴 .navbar ul.navbar-right .dropdown-menu */
    --navbar-dropdown-menu-padding: 10px clamp(20px, 2vw, 25px);
    --navbar-dropdown-menu-font-size: clamp(13px, 2vw, 15px);
    /* 로고 */
    --navbar-logo-width: clamp(120px, 15vw, 200px);
    --navbar-transition: 0.3s;
    position: fixed;
    background: #fff;
    box-shadow: 5px 0 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    border: 0;
    padding: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
}
/* nav 로고 */
.navbar a:is(.navbar-brand, .navbar-brand:hover, .navbar-brand:focus) {
    width: var(--navbar-logo-width);
    height: auto;
    margin: 0;
    padding: 0;
    color: #000;
}
/* nav 텍스트 로고 */
.navbar a.navbar-brand span {
    position: relative;
    display: block;
    font-size: 24px;
    font-weight: 700;
}
/* nav 메인 메뉴*/
.navbar ul.navbar-right > li > a {
    position: relative;
    font-weight: 500;
    color: #222;
    font-size: var(--navbar-dropdown-font-size);
}
/* nav 대메뉴 클릭&후버 시 */
.navbar-collapse ul.navbar-right > li > a:is(:hover, :focus),
.navbar-collapse ul.navbar-right > li:is(:hover, :focus) .dropdown-toggle {
    background: none !important;
    color: var(--navbar-point-color) !important;
}
/* nav 서브메뉴 dropdown-menu background */
.navbar ul.navbar-right ul.dropdown-menu {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    flex-direction: column;
}
.navbar ul.navbar-right > li.open > ul.dropdown-menu {
    display: flex !important;
}
/* nav 서브메뉴 dropdown-menu color */
.navbar ul.navbar-right > li.open > ul.dropdown-menu > li > a {
    color: #fff;
    font-size: var(--navbar-dropdown-menu-font-size);
    height: var(--navbar-dropdown-menu-height);
}
/* nav 서브메뉴 dropdown-menu hover */
.navbar ul.navbar-right > li.open > ul.dropdown-menu > li > a:hover {
    background: var(--navbar-point-color);
    color: #fff;
}
.navbar,
.navbar > .container {
    align-items: stretch;
}
.navbar > .container {
    box-sizing: border-box;
    flex-wrap: nowrap;
    max-width: 100%;
    padding-inline: clamp(30px, 7vw, 50px) 0;
}
.navbar :is(.container, .navbar-right, .navbar-right > li, .navbar-right > li > a) {
    height: var(--navbar-height);
    margin: 0;
}
.navbar ul.navbar-right {
    height: 100%;
    flex-flow: row nowrap;
    justify-content: flex-end;
}
.navbar :is(ul.navbar-right, ul.navbar-right > li) {
    float: unset !important;
}
.navbar :is(ul.navbar-right, ul.navbar-right > li > a) {
    display: flex;
}
.navbar .navbar-nav > li:last-child {
    margin-right: -25px;
}
.navbar ul.navbar-right > li > a {
    height: 100%;
    justify-content: center;
    align-items: center;
    letter-spacing: -0.01em;
    padding: var(--navbar-dropdown-padding);
    padding-top: 31px;
}
.navbar ul.navbar-right ul.dropdown-menu {
    min-width: 160px;
    left: 50%;
    right: auto;
    translate: -50% 0;
    border-radius: 0 !important;
    border: 0;
    padding: 0;
    text-align: center;
    overflow: hidden;
    height: 0;
    opacity: 0;
    transform-origin: center top;
    scale: 1 0.7;
    padding: 0;
}
.navbar ul.navbar-right li.open ul.dropdown-menu {
    transition: 0.2s;
    height: auto;
    scale: 1 1;
    padding: 0;
}
.navbar ul.navbar-right ul.dropdown-menu > li > a {
    display: flex;
    padding: var(--navbar-dropdown-menu-padding);
    line-height: 1;
    padding: 12px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.navbar ul.navbar-right ul.dropdown-menu > li:last-child > a {
    border-bottom: 0;
}
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
    background-color: var(--navbar-point-color);
}
.navbar:not(.scroll) {
    background-color: var(--navbar-scroll-background-color);
}
.navbar:is(.top) {
    --navbar-scroll-color: #fff;
    --navbar-scroll-color-hover: var(--page-point-color);
    --navbar-scroll-font-weight: 400;
    --navbar-scroll-background-color: transparent;
    background-color: var(--navbar-scroll-background-color);
}
/* [hover] PC 환경에서만 :hover 효과 적용  */
.navbar:is(.scroll) {
    --navbar-scroll-filter: unset;
    --navbar-scroll-color: #333;
    --navbar-scroll-color-hover: var(--page-point-color);
    --navbar-scroll-font-weight: 500;
    --navbar-scroll-background-color: #fff;
}
.navbar:where(.top, .scroll) {
    --navbar-transition: 0.3s;
    transition: var(--navbar-transition);
    height: var(--navbar-height);
    background-color: var(--navbar-scroll-background-color);
}
.navbar:where(.top, .scroll) .navbar-brand img {
    filter: var(--navbar-scroll-filter);
}
.navbar:where(.top, .scroll) ul.navbar-right > li > a {
    font-weight: var(--navbar-scroll-font-weight);
    color: var(--navbar-scroll-color);
}
.navbar:where(.top, .scroll) ul.navbar-right > li > a:where(:hover, :focus),
.navbar:where(.top, .scroll) ul.navbar-right > li:where(:hover, :focus) .dropdown-toggle {
    color: var(--navbar-scroll-color-hover);
}
/* navber-mobile `md` applies to small devices (landscape phones, less than 768px) */
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .navbar-inverse .navbar-toggle {
        display: none;
    }
}
.header-quick-link {
    height: var(--header-quick-link-height);
    width: 100%;
}
.header-quick-link a {
    padding: 7px 15px;
    display: block;
    background-color: transparent;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #fff !important;
}
.header-quick-link .nkhrd a {
    background-color: #000;
}
.header-quick-link .nkhrd :is(a:hover, a:focus) {
    background-color: #888;
}
.header-quick-link .jdh :is(a, a:hover, a:focus) {
    background-color: var(--page-point-color);
}
.header-login-link {
    z-index: 30;
    right: 15px;
    top: 10px;
}
.header-login-link > ul {
    display: flex;
    height: 100%;
}
.header-login-link > ul > li > a:focus,
.header-login-link > ul > li > a:hover,
.header-login-link > ul > li > a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    line-height: 0.8;
    min-width: 65px;
    font-size: clamp(14px, 2vw, 18px);
    color: #fff;
    padding-block: 8px;
    padding-inline: clamp(15px, 3vw, 35px);
    background-color: #292c2f !important;
    height: 100%;
}
.header-login-link > ul > li.dropdown i {
    transform: translateY(-1px);
    font-size: 11px;
    line-height: 0.5;
}
.header-login-link > ul > li {
    line-height: 1;
}
.header-login-link span.material-symbols-outlined {
    line-height: 1;
    aspect-ratio: unset;
    font-size: 14px;
}
.header-login-link ul li > .dropdown-menu {
    min-width: 100%;
    flex-direction: column;
    display: none;
    background-color: #292c2f !important;
    padding: 0 15px 15px;
    box-sizing: border-box;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    color: #fff;
    border: 0;
}
.header-login-link ul li.open > .dropdown-menu {
    display: flex;
}
.header-login-link ul li > .dropdown-menu li + li {
    margin-top: 3px;
}
.header-login-link ul li > .dropdown-menu button {
    /* color: #222; */
    background-color: transparent;
    border: 0;
    font-size: clamp(13px, 2vw, 16px);
    color: #fff;
}
.header-login-link button[disabled] {
    opacity: 0.5;
}
.side-wrap {
    margin-left: auto;
}
.side-header {
    display: flex;
    height: 100%;
}
.side-link {
    display: flex;
    margin-inline: auto 70px;
    align-self: center;
    gap: 25px;
}
.side-link a {
    transition: 0.25s;
    font-size: clamp(14px, 2vw, 18px);
    opacity: 0.7;
}
.side-link a:hover {
    opacity: 1;
}
html:not(.logined) .link-login {
    display: none;
}
.navbar-inverse [id^="bar"] {
    border: 0;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    z-index: 2;
    color: #fff;
    background-color: #0e0e0e;
    height: 100%;
    font-size: clamp(18px, 2vw, 20px);
    gap: 10px;
}
.navbar-inverse #bar {
    padding-inline: 40px;
}
.navbar-inverse [id^="bar"] .bar {
    display: block;
    width: 30px;
    background: currentColor;
    position: relative;
    border: 0;
}
.navbar-inverse #bar .bar {
    height: 3px;
}
.navbar-inverse #bar-close .bar {
    height: 3px;
}
.navbar-inverse [id^="bar"] .bar::before,
.navbar-inverse [id^="bar"] .bar::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    background: currentColor;
}
.navbar-inverse [id^="bar"] .bar::before {
    transform: translateY(9px);
}
.navbar-inverse [id^="bar"] .bar::after {
    transform: translateY(-9px);
}
.navbar-inverse #bar-close {
    height: 50px;
}
.navbar-inverse #bar-close .bar {
    color: transparent;
}
.navbar-inverse #bar-close .bar::before,
.navbar-inverse #bar-close .bar::after {
    background: #fff;
}
.navbar-inverse #bar-close .bar::before {
    transform: rotate(45deg);
}
.navbar-inverse #bar-close .bar::after {
    transform: rotate(-45deg);
}
#navbar-side-menu {
    z-index: 1005;
    transition: 0.6s;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translateY(-100%);
    padding: 35px 50px 50px 50px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(30px, 5vh, 60px) 50px;
    width: 100%;
    background: #0e0e0e;
    color: #fff;
}
#navbar-side-menu .menu-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 35px;
}
#navbar-side-menu #gnbauth {
    display: none;
}
#navbar-side-menu .lang-btn :is(button, span.material-symbols-outlined) {
    color: inherit !important;
}
#navbar-side-menu.open {
    transform: translateY(0%);
}
#navbar-side-menu .menu-inner {
    justify-self: flex-start;
    width: 100%;
    height: 100%;
    overflow: hidden auto;
}
#navbar-side-menu .navbar-nav {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: clamp(30px, 5vw, 60px);
    /* justify-content: space-between; */
    /* margin-top: 80px; */
    float: inherit !important;
    height: auto;
    width: 280px;
    height: 100%;
    margin-right: auto;
}
[lang="en"] #navbar-side-menu .navbar-nav {
    width: 340px;
}
#navbar-side-menu .navbar-nav::before,
#navbar-side-menu .navbar-nav::after {
    content: none;
}
#navbar-side-menu .navbar-nav > li.dropdown {
    flex: 1;
    display: flex;
    position: static;
    /* flex-direction: column; */
    /* width: 200px; */
}
#navbar-side-menu .navbar-nav > li > a {
    /* height: auto; */
    position: relative;
    transition: 0.3s;
    padding: 0;
    line-height: 1;
    margin: 0;
    font-size: clamp(32px, 8vw, 50px);
    color: inherit;
    font-weight: 500;
    display: inline-block;
    white-space: nowrap;
    /* color: #fff; */
    color: transparent;
    background: linear-gradient(to right, var(--page-point-color2) 50%, #fff 50%);
    background-size: 200%;
    background-position: 100% center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-background-clip: text;
}
#navbar-side-menu .navbar-nav > li > a:hover {
    color: var(--page-point-color2);
    background-position: 0% center;
}
#navbar-side-menu .navbar-nav > li > a::after {
    transition: 0.3s;
    content: "";
    display: block;
    width: 0px;
    height: 2px;
    background-color: #fff;
    margin-top: 2px;
    margin-left: 0;
    border: 0;
}
#navbar-side-menu .navbar-nav > li.on > a::after,
#navbar-side-menu .navbar-nav > li > a:hover::after {
    width: 100%;
    background-color: var(--page-point-color2);
}
#navbar-side-menu .navbar-nav:has(.on) > li:not(.on) > a::after {
    width: 0px;
}
#navbar-side-menu .navbar-nav > .on > a,
#navbar-side-menu .navbar-nav > .on > a:focus,
#navbar-side-menu .navbar-nav > .on > a:hover {
    color: var(--page-point-color2);
    background-color: transparent;
    background-position: 0% center;
}
#navbar-side-menu .navbar-nav ul {
    transition: 0.35s;
    position: absolute;
    display: flex;
    flex-direction: column;
    translate: -100px 0;
    left: 100%;
    top: 0;
    padding: 0px 0 0 30px;
    box-shadow: none;
    width: 100%;
    border: 0;
    border-radius: 0;
    opacity: 0;
    background: transparent;
    gap: clamp(7px, 0.5vw, 10px);
    pointer-events: none;
}
#navbar-side-menu .navbar-nav .on ul {
    opacity: 1;
    pointer-events: auto;
    translate: 0;
}
#navbar-side-menu .navbar-nav > li {
    position: static;
    /* flex: 1; */
    height: auto !important;
}
#navbar-side-menu .navbar-nav ul li + li {
    margin-top: clamp(3px, 0.5vw, 13px);
}
#navbar-side-menu .navbar-nav ul a {
    padding: 0;
    font-size: clamp(18px, 3vw, 26px);
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: -0.034em;
    border: 0;
    transition: 0.25s;
    white-space: nowrap;
}
#navbar-side-menu .navbar-nav ul a:hover {
    background: transparent;
    color: #fff;
}
#navbar-side-menu .navbar-nav:has(.on) > li > a {
    opacity: 0.5;
}
#navbar-side-menu .navbar-nav:has(.on) > li:not(.on) > a:hover,
#navbar-side-menu .navbar-nav:has(.on) > li.on > a {
    opacity: 1;
}
#navbar-side-menu .menu-footer {
    grid-column: span 2;
    /* align-self: flex-end; */
    margin-top: auto;
}
#navbar-side-menu .menu-footer .copyright {
    letter-spacing: 0;
    color: #707070;
    font-size: clamp(11px, 2vw, 13px);
}
.scroll .nav-bottom {
    background: var(--page-point-color);
}
.nav-bottom {
    transition: 0.25s;
    position: absolute;
    top: 100%;
    width: 100%;
}
.depth-menu {
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    gap: 80px;
    padding-block: 17px;
}
.depth-menu a {
    font-size: 22px;
    color: #fff !important;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .navbar > .container {
        padding-inline: 15px 0;
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
        /* background: #ccc; */
    }
    .header-login-link > ul > li.login {
        display: none;
    }
    html:not(.logined) .link-login {
        display: flex;
    }
    .navbar-inverse #bar span[lang] {
        display: none !important;
    }
    .navbar-inverse #bar {
        padding: 0;
        /* aspect-ratio: 1; */
        /* width: 100%; */
        height: 100%;
        width: 60px;
        margin: 0 !important;
        transform: none;
    }
    .navbar-inverse #bar span.bar {
        scale: 0.7;
    }
    #navbar-side-menu {
        padding: 15px 10px 30px 30px;
    }
    #navbar-side-menu .menu-header {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    #navbar-side-menu .menu-header > a {
        order: 1;
        width: var(--navbar-logo-width);
        align-self: center;
    }
    #navbar-side-menu .menu-header > .side-link {
        order: 3;
        width: 100%;
        flex-wrap: wrap;
        gap: 5px 15px;
        margin-top: 15px;
        margin-right: 0;
    }
    #navbar-side-menu .menu-header > #bar-close {
        order: 2;
        scale: 0.7;
        /* transform-origin: right; */
        /* transform: scale(0.7) translateX(25px); */
        /* width: 50px; */
        margin-left: auto;
        aspect-ratio: unset;
        margin-right: 0;
    }
    #navbar-side-menu .navbar-nav {
        width: 100%;
        justify-content: flex-start;
        margin: 0;
        padding-bottom: 50px;
        box-sizing: border-box;
    }
    #navbar-side-menu .navbar-nav > li {
        flex: 0 1 auto;
    }
    #navbar-side-menu .navbar-nav ul {
        translate: -100px 0;
        transition: none;
        left: 0;
        top: 0;
        padding: 0;
        margin-block: 20px 10px;
    }
    #navbar-side-menu .navbar-nav .on ul {
        position: static;
        transition: 0.25s;
    }
    #navbar-side-menu .navbar-nav > .on > a {
        height: auto;
    }
    #navbar-side-menu .menu-inner::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 80px;
        width: 100%;
        height: 50px;
        background: linear-gradient(180deg, hsla(0, 0%, 5%, 0) 29.22%, #0e0e0e);
        /* transform: rotate(-90deg); */
        pointer-events: none;
    }
    .header-login-link ul li.open > .dropdown-menu {
        width: 100%;
        padding: 0;
        padding-bottom: 15px;
    }
}

footer {
    margin-top: 0px;
    position: relative;
    z-index: 100;
    background-color: #f0f0f0;
}
.footer-top {
    background-color: var(--page-point-color);
}
.footer-privacy {
    display: flex;
    gap: 30px;
}
.footer-privacy > li > a {
    opacity: 0.9;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: var(--page-point-color);
    position: relative;
    font-size: clamp(13px, 2vw, 16px);
}
.footer-privacy > li > a::before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 11px;
    background: #aaa;
    left: -15px;
    top: 48%;
    transform: translateY(-50%);
}
.footer-privacy > li:first-child > a::before {
    display: none;
}
.footer-privacy a:hover {
    opacity: 1;
    text-decoration: underline;
}
.footer-bottom {
    padding: 45px 0 50px;
}
.footer-logo {
    grid-row: 1 / span 2;
}
.footer-wrap {
    display: grid;
    grid-template-columns: minmax(0, 180px) minmax(0, auto) minmax(0, 210px);
    gap: 10px 50px;
    grid-template-rows: min-content;
    align-items: flex-start;
}
.footer-link {
    grid-row: 1;
    grid-column: 3;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 5px;
}
.footer-link > li > a.cirlce {
    display: block;
    border-radius: 50%;
    border: 2px solid #fff;
}
.sns-icon {
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
}
.sns-icon.facebook {
    background-image: url(/public/img/logo/ico_fb.png);
}
.sns-icon.kakaostory {
    background-image: url(/public/img/logo/ico_ks.png);
}
.sns-icon.kakaotalk {
    background-image: url(/public/img/logo/ico_kt.png);
}
.sns-icon.insta {
    background-image: url(/public/img/logo/ico_it.png);
}
.sns-icon.youtube {
    background-image: url(/public/img/logo/ico_yt.png);
}
/* left logo */
.footer-logo img {
    opacity: 0.7;
    margin-right: 30px;
    filter: grayscale(1);
}
/* default */
.footer-info {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    line-height: 1.5;
    color: #444;
    gap: 1px 10px;
    margin-top: -3px;
}
.footer-info li {
    font-size: clamp(13px, 2vw, 15px);
}
.footer-info li.clearfix {
    width: 100%;
}
.footer-info li.corp {
    margin-bottom: 5px;
}
.footer-info li.copyright {
    margin-top: 7px;
    color: #888;
}
.footer-login {
    margin-left: auto;
    margin-top: auto;
}
.footer-login .login-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 11px;
    background: transparent;
    color: #444;
    line-height: 1;
    border-radius: 0;
    border: 1px solid #444;
    border-radius: 0.35rem;
    font-size: clamp(11px, 2cqw, 12px);
}
.footer-login .login-btn:hover {
    background: #333;
    color: #fff;
    border-color: var(--backgorund-color);
    font-weight: 500;
}
.footer-login .login-btn span.material-symbols-outlined {
    font-size: 1rem;
    margin-right: 5px;
    font-variation-settings: var(--gms-wght-500-out);
}
.family-site {
    width: 170px;
    position: relative;
    margin-left: auto;
}
#familymenu {
    width: 172px;
    min-width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 1em;
    background: #f7f7f7;
    border: 1px solid #888;
    color: #222;
    font-size: clamp(13px, 2vw, 14px) !important;
    line-height: 1;
    margin-top: 10px;
    font-weight: 500;
}
#familymenu i {
    all: unset;
    font-size: inherit;
    font-weight: inherit;
}
#familymenu::after {
    content: none;
}
#familymenu span {
    margin-left: 5px;
    font-size: 27px;
    line-height: 1;
}
#familymenu + .dropdown-menu {
    display: none;
    width: 100%;
    min-width: 100%;
    margin-top: -1px;
    margin-bottom: 0 !important;
    padding: 0;
    background: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 0;
    text-align: left;
}
.family-site.open #familymenu + .dropdown-menu {
    display: block;
}
#familymenu + .dropdown-menu > li {
    display: block;
    margin: 0;
}
#familymenu + .dropdown-menu > li > a {
    display: block;
    background: transparent !important;
    padding: 4px 13px;
    color: #222 !important;
    font-size: 13px;
    line-height: 1.8;
    border-bottom: 1px solid #ddd;
}
#familymenu + .dropdown-menu > li:last-child > a {
    border-bottom: 0;
}
#familymenu + .dropdown-menu > li > a:hover {
    background-color: var(--page-point-color) !important;
    color: #fff !important;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #familymenu + .dropdown-menu {
        top: unset;
        bottom: 100%;
    }
    #familymenu span {
        rotate: 180deg;
    }
}
#scrollTop {
    z-index: 1000;
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: none;
    width: 50px;
    padding: 0;
    border: 0;
    background: #555;
    border-radius: 50%;
    aspect-ratio: 1;
    text-align: center;
    color: #fff;
}
#scrollTop .inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#scrollTop .inner :is(i, span) {
    font-size: 1.75rem;
}
/* mobile footer*/
@media (max-width: 767px) {
    .footer-logo img {
        margin-right: 0;
        width: 150px;
    }
    .footer-wrap {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 25px;
    }
    .footer-login {
        margin-left: inherit;
    }
    #scrollTop {
        display: none !important;
    }
    .footer-privacy {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
    .footer-privacy > li > a::before {
        content: none;
    }
    .footer-info {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}
.subpage-header {
    /* --background-image: url(/public/img/sub/sub-top01.jpg); */
    position: relative;
    height: clamp(420px, 30vw, 550px);
    padding-top: var(--navbar-height);
    background: var(--background-image) no-repeat center / cover;
}
/* other */
.subpage-header.visual01 {
    --background-image: url(/public/img/sub/sub-top01n.jpg);
}
.subpage-header.visual02 {
    --background-image: url(/public/img/sub/sub-top02n.jpg);
}
.subpage-header.visual03 {
    --background-image: url(/public/img/sub/sub-top03n.jpg);
}
.subpage-header.visual04 {
    --background-image: url(/public/img/sub/sub-top04n.jpg);
}
.subpage-header.visual05 {
    --background-image: url(/public/img/sub/sub-top05n.jpg);
}
.subpage-header::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.55);
}
/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (width >= 768px) {
    .subpage-header::after {
        content: "";
        position: absolute;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.5);
        height: 100%;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0%);
    }
}
.subpage .subpage-title {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    column-gap: 130px;
    height: 100%;
}
.subpage .subpage-title h2 {
    line-height: 1;
    margin-top: 0px;
    /* text-align: center; */
    font-weight: 600;
    color: #fff;
    font-size: clamp(40px, 6vw, 62px);
    margin-bottom: clamp(25px, 5vw, 100px);
    letter-spacing: 0em;
}
.subpage .subpage-title p {
    /* grid-row: 2; */
    /* grid-column: 2; */
    font-size: clamp(17px, 2.5vw, 32px);
    font-weight: 500;
    margin-top: 40px;
    /* padding-left: 40px; */
    line-height: 1.6;
    /* align-self: flex-end; */
    color: #fff;
    /* border-left: 1px solid rgba(255, 255, 255, 0.5); */
}
.subpage .subpage-title p[lang="en"] {
    font-size: clamp(16px, 3vw, 28px);
}
/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (width >= 768px) {
    .subpage .subpage-title :is(h2, p) {
        flex: 1;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .subpage .subpage-title {
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        align-content: flex-end;
    }
    .subpage .subpage-title p {
        margin-block: 0 50px;
    }
}
.breadcrumb {
    background: none;
    padding: 0;
    margin: 0px 0 0 0;
    display: flex;
    gap: 20px;
    display: none !important;
}
.breadcrumb li.home a {
    line-height: 1;
}
.breadcrumb li.home a::before {
    content: "HOME";
}
.breadcrumb > li {
    position: relative;
    font-size: 0.9rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
}
.breadcrumb > li.active {
    color: #fff;
}
.breadcrumb > li + li:before {
    content: "\e5cc";
    font-family: var(--gms);
    font-weight: 400;
    position: absolute;
    left: -24px;
    display: block;
    font-size: 1.2rem;
    line-height: 1;
}
.snb {
    --snb-height: 65px;
    /* position: sticky; */
    /* top: calc(var(--navbar-height) + var(--header-quick-link-height)); */
    z-index: 10;
    border-bottom: 1px solid #dedede;
    background-color: white;
}
.snb ul {
    position: relative;
    display: flex;
    margin: 0;
    justify-content: center;
}
.snb li {
    flex: 0 1 50%;
}
.snb li > a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    line-height: 1;
    font-size: clamp(16px, 2vw, 19px);
    height: var(--snb-height);
    color: #888;
    font-weight: 500;
    padding-inline: 10px;
}
.snb li > a::before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 16px;
    background: #d5d5d5;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.snb li:first-child > a::before {
    display: none;
}
.snb li.active a {
    /* background: #fff; */
    font-weight: 700;
    color: #000;
}
.header-login-link > ul > li > a > i {
    font-size: 9px;
}
/* [lang="en"] .snb .container {
    max-width: 100%;
} */
/* [lang="en"] .snb li {
    flex: 0 1 auto;
} */
[lang="en"] .snb li > a {
    font-size: 17px;
}
/* Medium devices (tablets, 768px and up) */
@media (width >= 768px) {
    .snb li.active a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        display: block;
        width: 100%;
        height: 4px;
        background: var(--page-point-color);
    }
}
/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    .snb {
        --snb-height: 50px;
    }
    .snb .container {
        padding: 0;
    }
    .snb li > a {
        justify-content: space-between;
        font-size: 15px;
    }
    #snbInner > ul > li:not(.dropdown) {
        display: none;
    }
    .snb .hidden {
        display: flex !important;
    }
    .snb .open .dropdown-menu li a:is(:hover, :focus) {
        background-color: inherit !important;
        color: inherit !important;
    }
    .snb .dropdown {
        position: relative;
        width: 100%;
        flex-basis: 100%;
    }
    .snb .dropdown-menu {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        display: none;
        padding: 0;
        flex-direction: column;
        min-width: unset;
        padding: 20px 20px;
        gap: 20px;
        border-top: 0;
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
        /* dropdown transition 23-06-02 */
        display: block !important;
        overflow: hidden;
        height: 0;
        opacity: 0;
        transform-origin: center top;
        scale: 1 0.7;
    }
    .snb .open .dropdown-menu {
        /* dropdown transition 23-06-02 */
        display: flex !important;
        transition: 0.2s;
        height: auto;
        opacity: 1;
        scale: 1 1;
    }
    .snb .open .dropdown-menu li a {
        padding: 0;
        height: auto;
    }
    .snb .open .dropdown-menu li.active a {
        font-weight: 500;
        text-decoration: underline;
        text-underline-offset: 4px;
    }
    .snb .dropdown-toggle {
        padding: 0 20px;
        font-weight: 600;
        color: #222;
        font-size: 16px;
    }
    .snb .dropdown-toggle::after {
        all: unset;
        content: "\e5cf";
        font-family: var(--gms);
        font-variation-settings: var(--gms-wght-300-out);
        margin-left: auto;
        font-size: 1.5em;
    }
    .snb .open .dropdown-toggle {
        color: var(--page-point-color);
        font-weight: 600;
    }
    .snb .open .dropdown-toggle::after {
        content: "\e5ce";
        color: var(--page-point-color);
        font-variation-settings: var(--gms-wght-400-out);
    }
}
/* h3 */
.subpage .title-h3 {
    margin-bottom: 90px;
    text-align: center;
    display: none;
}
.subpage .title-h3:only-child {
    margin-bottom: 0;
}
.subpage .title-h3 > h3 {
    font-weight: 600;
    font-size: 44px;
    color: #000;
}
.subpage .title-h3 > p {
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: -0.035em;
    font-size: 21px;
    color: #000;
}
.subpage .title-h3 .quote {
    font-family: var(--page-font-family-serif);
    font-size: 28px;
    letter-spacing: 0em;
    font-weight: 700;
    color: var(--page-point-color);
    margin-top: 15px;
}
.subpage .title-h3 .quote::before,
.subpage .title-h3 .quote::after {
    font-family: var(--gms);
    display: inline-block;
    content: "\e244";
    font-variation-settings: var(--gms-wght-700-fill);
    font-size: 0.5em;
    line-height: 1.3;
    margin-inline: 5px;
}
.subpage .title-h3 .quote::before {
    transform: rotate(180deg);
    vertical-align: super;
}
.subpage .title-h3 .quote::after {
    vertical-align: super;
}
.subpage .title-h3 > * + * {
    margin-top: 20px;
}
.modal .title-h3 {
    margin-top: 30px;
    margin-bottom: 20px;
}
/* h4 */
.subpage *:not(.title-h3) + .title-h4 {
    margin-top: clamp(50px, 5vw, 100px);
}
.subpage .title-h4 {
    margin-bottom: clamp(15px, 5vw, 25px);
}
.subpage .title-h4 > h4 {
    font-weight: 700;
    font-size: clamp(22px, 2vw, 30px);
}
.subpage .title-h4 > p {
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: -0.035em;
    font-size: 18px;
    color: #000;
}
.subpage .title-h4 :is(p, li) {
    font-size: 18px;
}
.subpage .title-h4 > * + * {
    margin-top: 15px;
}
/* h5 */
.subpage *:not(.title-h3, .title-h4) + .title-h5 {
    margin-top: 30px;
}
.subpage .title-h5 {
    margin-bottom: 15px;
}
.subpage .title-h5 > h5 {
    font-size: 24px;
    font-weight: 500;
}
.subpage .title-h5 > p {
    font-weight: 300;
    color: #000;
    line-height: 1.7;
    letter-spacing: -0.035em;
    font-size: 16px;
}
.subpage .title-h5 > * + * {
    margin-top: 15px;
}
/* h6 */
.dl-box {
    border-top: 2px solid #333;
}
.dl-box dl {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 9fr);
    gap: 40px;
    border-bottom: 1px solid #ccc;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .dl-box dl {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .dl-box dl dt {
        padding-bottom: 15px;
        align-items: center;
    }
    .dl-box dl dd {
        padding: 0 15px 30px;
    }
}
.dl-box :where(dt, dd) {
    font-size: clamp(13px, 2vw, 17px);
    padding-block: 25px 32px;
    padding-bottom: 25px;
}
.dl-box dt {
    display: flex;
    padding-inline: clamp(15px, 3vw, 25px);
    font-weight: 600;
}
.dl-box dd:only-child {
    grid-column: span 2;
    padding-inline: 20px;
}
.dl-box :where(ol, ul) {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.dl-box h6 {
    font-size: inherit;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
}
.dl-box * + h6 {
    margin-top: 10px;
    font-weight: 600;
}
.dl-box .contact li {
    font-size: clamp(1em, 2vw, 1.2em);
    color: var(--page-point-color);
    font-weight: 700;
}
.dl-box + .more-btn {
    margin-inline: auto;
}
.dl-box span.num {
    display: inline-block;
    transform: translateY(-1px);
    width: 35px;
    text-align: center;
    margin-right: clamp(10px, 3vw, 25px);
    font-weight: 600;
    color: var(--page-point-color);
}
.subpage section {
    padding: clamp(70px, 7vw, 120px) 0 clamp(80px, 7vw, 140px);
    min-height: 300px;
}
:where(#dn01, #dn02, #si04) section {
    padding: 130px 0 150px;
    position: relative;
    background-image: url(/public/img/sub/dn-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* 인사말씀 */
.greet-wrap .principle {
    display: flex;
    background-color: #f7f7f7;
    height: 370px;
    border-radius: 0 0 70px 0;
}
.greet-wrap .principle > * {
    flex: 0 1 50%;
    border-radius: 0 0 clamp(40px, 3vw, 70px) 0;
}
.greet-wrap .principle .slogan {
    padding: 60px 60px 60px;
    display: flex;
    flex-direction: column;
    background-image: url(/public/img/sub/slogan-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.greet-wrap .principle .slogan h4 {
    font-size: clamp(28px, 5vw, 35px);
    font-weight: 700;
    line-height: 1.35;
}
.greet-wrap .principle .slogan p.sign {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    font-size: clamp(14px, 2vw, 18px);
    margin-top: auto;
}
.greet-wrap .principle .slogan + .img-box img {
    object-position: right;
}
.greet-wrap .info {
    margin: clamp(40px, 5vw, 70px) clamp(20px, 5vw, 60px) 0;
}
.greet-wrap .info h5 {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: -0.034em;
}
.greet-wrap .info p {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
}
.greet-wrap .info p + p {
    margin-top: 20px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .greet-wrap .principle {
        flex-direction: column;
        height: auto;
    }
    .greet-wrap .principle .slogan {
        padding: 40px 25px;
        gap: 25px;
        align-items: center;
        text-align: center;
    }
    .greet-wrap .principle .slogan p.sign {
        flex-direction: column;
        align-items: center;
    }
    .greet-wrap .principle .slogan p.sign img {
        margin-right: -20px;
    }
}
/* 교육목표 */
.goal-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.goal-wrap .col {
    display: flex;
    align-items: center;
}
.goal-wrap .lesson {
    --goal-point-color: var(--page-point-color);
}
.goal-wrap .ideology {
    --goal-point-color: var(--page-point-color2);
}
.goal-wrap .goals {
    --goal-point-color: #0d479b;
}
.goal-wrap .col.img-box {
    flex: 0 1 auto;
    margin-top: 50px;
    /* height: 570px; */
    aspect-ratio: 5/2.6;
    border-radius: clamp(10px, 2vw, 20px);
    /* border-radius: 25px 25px 25px 0; */
}
.goal-wrap .col > .box {
    flex: 1;
}
.goal-wrap .title-h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    aspect-ratio: 1;
    color: #fff;
    height: 130px;
    margin-bottom: 0;
    flex-shrink: 1;
    background-color: var(--goal-point-color);
}
.goal-wrap .title-h4 h4 {
    font-size: clamp(18px, 2vw, 20px);
    text-align: center;
    padding: 20px;
}
.goal-wrap .title-h4 h4::before {
    content: "";
    display: block;
    position: absolute;
    width: 130px;
    height: 130px;
    background-image: url(/public/img/sub/h4line-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    left: 50%;
    opacity: 0.15;
}
.goal-wrap .line {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 60px;
    height: 1px;
    background-color: #aaa;
}
.goal-wrap .lesson > .box {
    padding: clamp(20px, 5vw, 25px) clamp(30px, 2vw, 40px);
    text-align: center;
    border-radius: 15px;
    border: 3px solid var(--goal-point-color);
}
.goal-wrap .lesson > .box p {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    color: var(--goal-point-color);
    font-family: var(--page-font-family-serif);
}
.goal-wrap .ideology > .box {
    padding: 20px 20px 20px 18px;
    text-align: justify;
    background-color: #eee;
    border-radius: 15px;
}
.goal-wrap .ideology > .box p {
    font-size: clamp(13px, 2vw, 17px);
    text-align: left;
}
.goal-wrap .ideology > .box .item {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 1000px;
}
.goal-wrap .ideology > .box .item + .item {
    margin-top: 10px;
}
.goal-wrap .ideology > .box .info {
    margin-left: 10px;
}
.goal-wrap .ideology > .box span {
    box-sizing: content-box;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: clamp(40px, 3vw, 70px);
    aspect-ratio: 1;
    font-size: clamp(22px, 2vw, 32px);
    border-radius: 50px;
    background-color: var(--goal-point-color);
    border: 9px solid #fff;
    color: #fff;
}
.goal-wrap .ideology > .box h5 {
    font-size: clamp(14px, 2vw, 17px);
    font-weight: 700;
    margin-bottom: clamp(2px, 0.1vw, 4px);
}
.goal-wrap .goals > .box {
    display: flex;
    gap: 10px;
    padding: 20px;
    background-color: #eee;
    border-radius: 15px;
}
.goal-wrap .goals > .box .item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* text-align: center; */
}
[lang="en"] .goal-wrap .goals > .box .item {
    flex: 1 1 auto;
}
.goal-wrap .goals > .box h5 {
    cursor: pointer;
    padding: 10px 20px;
    font-weight: 600;
    background-color: var(--goal-point-color);
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-radius: 7px;
}
.goal-wrap .goals > .box p {
    flex: 1;
    border-top: 0;
    color: #000;
    padding: 10px 15px;
    font-size: 15px;
    background-color: #fff;
    line-height: 1.45;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .goal-wrap .line {
        width: 1px;
        height: 30px;
    }
    .goal-wrap .col {
        flex-direction: column;
    }
    .goal-wrap .ideology > .box .item {
        padding: 10px 15px;
    }
    .goal-wrap .goals > .box {
        flex-direction: column;
        width: 100%;
    }
    .goal-wrap .col.img-box {
        margin-top: 0;
    }
}
/* 학교연혁 */
.history-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: clamp(40px, 5vw, 70px);
}
.history-wrap .line {
    position: absolute;
    top: 10px;
    bottom: 0;
    left: -1px;
    width: clamp(2px, 0.5vw, 3px);
}
.history-wrap .line-inner {
    position: relative;
    height: 100%;
}
.history-wrap .line-inner::after,
.history-wrap .line-inner::before {
    content: "";
    display: block;
    position: sticky;
    top: 10px;
    height: 100%;
    left: 0;
    width: 100%;
    background-color: #ab0835;
    border-radius: 500px;
}
.history-wrap .line-inner::after {
    z-index: 1;
    position: sticky;
    bottom: 0;
    height: 40vh;
    background-color: #eee;
    mix-blend-mode: lighten;
}
.history-wrap .col {
    position: relative;
    display: flex;
    padding-left: clamp(30px, 5vw, 70px);
}
.history-wrap .col::before {
    z-index: 100;
    content: "";
    position: absolute;
    left: -10px;
    top: 5px;
    width: 22px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #ab0835;
    border: 7px solid #ffebf0;
}
.history-wrap .title {
    width: 20%;
    flex-shrink: 1;
}
.history-wrap .title h5 {
    font-size: clamp(28px, 2vw, 36px);
    line-height: 1;
    font-weight: 700;
    background: linear-gradient(var(--page-point-color) 60%, #000 0%) fixed;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .history-wrap .title h5 {
        background: linear-gradient(var(--page-point-color) 20%, #000 0%) fixed;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}
.history-wrap .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.history-wrap .item {
    display: flex;
    font-size: 18px;
    gap: 15px;
}
.history-wrap .item h6 {
    width: 18%;
    flex-shrink: 1;
    font-size: 1.1em;
    font-weight: 700;
}
.history-wrap .item p {
    flex: 1;
    font-size: 1em;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #ab03 .subpage-content {
        padding-left: 10px;
    }
    .history-wrap .col {
        flex-direction: column;
        gap: 20px;
    }
    .history-wrap .item {
        flex-direction: column;
        gap: 3px;
    }
    .history-wrap .item h6 {
        font-size: 16px;
        flex-shrink: 0;
        width: 110px;
    }
    .history-wrap .item p {
        font-size: 14px;
    }
    .history-wrap .title {
        width: 100%;
    }
}
/* 홍보자료 / 홍보 영상 */
.video-wrap {
    display: grid;
    grid-template-columns: var(--grid-repeat-3);
    gap: 15px;
    height: 420px;
}
.video-wrap iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    aspect-ratio: unset;
}
.video-wrap .big {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}
.video-wrap .big iframe {
    aspect-ratio: unset;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .video-wrap {
        display: flex;
        flex-direction: column;
        height: unset;
    }
    .video-wrap .col {
        aspect-ratio: 16/9;
    }
}
/* 홍보자료 / 시설 둘러보기 */
.place-wrap .swiper {
    width: 100%;
    grid-column: span 2;
    border-radius: 15px;
    border: 1px solid #ccc;
}
.place-wrap .swiper-slide {
    aspect-ratio: 2;
}
.place-wrap .swiper-slide p {
    position: absolute;
    left: clamp(10px, 2vw, 20px);
    top: clamp(10px, 2vw, 20px);
    border-radius: 9999px;
    padding: 8px clamp(15px, 2vw, 25px);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: clamp(14px, 2vw, 17px);
    font-weight: 700;
}
.place-wrap [class*="swiper-button"] {
    position: static;
    transform: unset;
    margin-top: 0;
    top: 0;
    bottom: 0;
    width: 3%;
    height: auto;
    padding: 5px 10px;
    color: #fff;
    background-color: #000;
    display: none;
}
.place-wrap [class*="swiper-button"]::after {
    font-size: 18px;
}
.place-wrap .swiper-indicators-wrap {
    overflow: hidden;
    display: flex;
    margin-top: 15px;
    border-radius: 7px;
    height: 100%;
}
.place-wrap .swiper-pagination {
    position: static;
    top: unset;
    transform: unset;
    overflow: hidden;
    display: flex;
    gap: 3px;
    height: 100%;
}
.place-wrap .place_bullet {
    transition: 0.2s;
    width: auto;
    height: auto;
    margin: 0;
    flex: 1;
    opacity: 0.4;
    background: unset;
    background-color: #eee;
    /* border: 1px solid #ccc; */
}
.place-wrap .place_bullet:hover {
    opacity: 1;
}
.place-wrap .place_bullet .img-box {
    width: 100%;
    height: 100%;
}
.place-wrap .place_bullet img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
}
.place-wrap .place_bullet p {
    display: none;
}
.place-wrap .place_bullet.swiper-pagination-bullet-active {
    opacity: 1;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .place-wrap .swiper-pagination {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .place-wrap .place_bullet {
        margin: 0 !important;
    }
}
/* 교직원 소개 */
.teacher-wrap {
    display: grid;
    gap: clamp(30px, 5vw, 50px) clamp(15px, 3vw, 40px);
    grid-template-columns: var(--grid-repeat-3);
}
.teacher-wrap .img-box {
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 15px;
}
.teacher-wrap small {
    display: block;
    font-size: clamp(12px, 2vw, 15px);
}
.teacher-wrap h5 {
    display: flex;
    flex-direction: column-reverse;
    gap: 3px;
    text-align: center;
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 600;
    /* `md` applies to small devices (landscape phones, less than 768px) */
}
@media (width >= 767px) {
    /* Large devices (desktops, 992px and up) */
    .teacher-wrap {
        grid-template-columns: var(--grid-repeat-4);
    }
}
@media (width >= 992px) {
    /* X-Large devices (large desktops, 1200px and up) */
    .teacher-wrap {
        grid-template-columns: var(--grid-repeat-4);
    }
}
@media (width >= 1200px) {
    .teacher-wrap {
        grid-template-columns: var(--grid-repeat-5);
    }
}
/* 오시는길 */
.map-wrap .root_daum_roughmap, .root_daum_roughmap :is(.wrap_map, .map), iframe[src^="https://www.google.com/"]
{
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
.map-wrap .map {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.map-wrap .map .root_daum_roughmap {
    /* aspect-ratio: 5/2; */
    height: clamp(300px, 40vw, 450px) !important;
    width: 100%;
}
.map-wrap .info {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(7px, 2vw, 15px) 25px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
.map-wrap .info li {
    display: flex;
    align-items: center;
    font-size: clamp(15px, 2vw, 18px);
}
.map-wrap .info li.address {
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 600;
    justify-content: center;
    width: 100%;
}
.map-wrap .info li span {
    font-size: 0.9em;
    font-variation-settings: var(--gms-wght-600-out);
    margin-right: 5px;
    padding: 7px 6px;
    background: #333;
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
    /* width: 26px; */
    /* height: 26px; */
}
.map-wrap .info li.address span {
    font-size: 1.2em;
    background: transparent;
    color: var(--page-point-color);
    padding: 0;
    line-height: 1;
    transform: translateY(-1px);
    flex-shrink: 0;
}
.map-wrap .vehicle {
    display: flex;
    gap: clamp(20px, 5vw, 70px);
    padding: clamp(25px, 3vw, 40px);
    margin-top: 50px;
    /* border-block: 1px solid #ccc; */
    background-color: #f7f7f7;
    border-radius: 7px;
    position: relative;
}
.map-wrap .vehicle::before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 145px;
    background: #ccc;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
}
.map-wrap .vehicle dl {
    flex: 1;
}
.map-wrap .vehicle dl :is(dt, dd) {
    display: block;
}
.map-wrap .vehicle dl dt {
    font-size: clamp(17px, 2vw, 20px);
    margin-bottom: clamp(5px, 1.5vw, 15px);
    margin-top: 0;
    font-weight: 700;
}
.map-wrap .vehicle dl dd {
    font-size: clamp(14px, 2vw, 17px);
}
.map-wrap .vehicle dl span {
    font-size: 35px;
    color: var(--page-point-color);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .map-wrap .info li.address {
        margin-bottom: 10px;
    }
    .map-wrap .vehicle {
        flex-direction: column;
    }
    .map-wrap .vehicle::before {
        content: none;
    }
    .map-wrap .info {
        align-items: flex-start;
        justify-content: flex-start;
    }
}
/* 교육과정 */
.curr-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.curr-wrap .col {
    display: flex;
    align-items: center;
    --curr-point-color: var(--page-point-color);
    background: #fbf5f7;
    border-radius: 10px;
    position: relative;
    z-index: 0;
    /* overflow: hidden; */
}
.curr-wrap .col:hover {
    z-index: 1000;
}
.curr-wrap .col::before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 11rem;
    background: #e7ced6;
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
}
.curr-wrap .col::after {
    content: "01";
    display: block;
    position: absolute;
    font-size: 130px;
    font-weight: 700;
    right: 30px;
    bottom: -85px;
    z-index: -1;
    color: #fff;
    display: none;
}
.curr-wrap .title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    aspect-ratio: 1;
    width: 20%;
    flex-shrink: 1;
    padding: 30px;
    color: var(--curr-point-color);
}
.curr-wrap .title span {
    font-size: 50px;
    margin-bottom: 12px;
}
.curr-wrap .title h5 {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    line-height: 1.35;
}
.curr-wrap .info {
    flex: 1;
    padding: clamp(30px, 5vw, 40px);
    border-radius: 0 10px 10px 0;
}
.curr-wrap .info > .text {
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.6;
    position: relative;
}
.curr-wrap .info li {
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 3px;
}
.curr-wrap .info ul {
    margin-top: 25px;
}
.ttp {
    position: relative;
    cursor: unset;
    display: inline-block;
    margin-inline: 0.125em -0.125em;
}
.ttp > span {
    display: block;
    cursor: pointer;
    font-weight: 600;
    color: var(--page-point-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
}
.ttp:hover .detail {
    display: flex;
    z-index: 100;
}
.ttp .detail {
    position: absolute;
    width: 300px;
    top: 100%;
    padding-top: 5px;
    display: none;
}
.ttp .box {
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
    box-shadow: 5px 5px 40px rgba(0, 0, 0, 0.22);
}
.ttp .img-box {
    aspect-ratio: 1.6666666667;
    background-color: #ccc;
}
.ttp .text {
    padding: 20px 25px 25px;
}
.ttp .text h6 {
    font-size: clamp(16px, 2vw, 19px);
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}
.ttp .text p {
    font-size: clamp(15px, 2vw, 17px);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .curr-wrap .col {
        flex-direction: column;
    }
    .curr-wrap .title {
        width: 100%;
        aspect-ratio: unset;
        padding-bottom: 0;
        padding-top: 40px;
    }
    .curr-wrap .info li {
    }
    .curr-wrap .col::before {
        content: none;
    }
    .curr-wrap .ttp {
        position: static;
    }
    .curr-wrap .ttp .detail {
        left: 0;
        /* top: unset; */
        /* bottom: 20px; */
    }
}
/* [max-small / portrait phones] 모바일, 576px 미만 ▼  */
@media (width <= 575.98px) {
    .ttp .detail {
        width: 100%;
    }
}
/* 입학상담 */
.form-notice {
    margin-bottom: 0px;
}
.form-notice .header {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    background-color: #444;
    color: #fff;
}
.form-notice .header span {
    font-variation-settings: var(--gms-wght-600-out);
    transform: translateY(0px);
    font-size: 22px;
    margin-right: 10px;
    line-height: 1;
}
.form-notice .header h5 {
    font-size: 18px;
    font-weight: 700;
}
.form-notice .info {
    padding: 20px 28px;
    background-color: #f7f7f7;
    border-top: 0;
}
.form-notice .info p {
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
}
.form-notice .info p:last-child {
    margin-top: 17px;
    font-weight: 700;
}
/* faq */
.faq-wrap {
    counter-reset: colNum 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    border-top: 1px solid #333;
    background-color: #fff;
}
.faq-wrap + .dl-box {
    margin-top: 0px;
    border-top: 0;
}
.faq-wrap .qus {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 20px clamp(15px, 3vw, 25px);
    font-weight: 600;
    height: clamp(70px, 10vw, 100px);
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
    color: #333;
}
.faq-wrap .qus,
.dl-box dt {
    font-size: clamp(16px, 3vw, 24px);
}
.faq-wrap .qus::before {
    counter-increment: colNum;
    content: counter(colNum, decimal-leading-zero) "";
    position: relative;
    transform: translateY(-1px);
    display: block;
    margin-right: clamP(10px, 3vw, 25px);
    width: 35px;
    height: auto;
    background: transparent;
    font-weight: 600;
    color: var(--page-point-color);
    text-align: center;
    flex-shrink: 0;
}
.faq-wrap .qus::before,
.dl-box span.num {
    font-size: clamp(18px, 2vw, 24px);
}
.faq-wrap .qus::after {
    transition: 0.3s;
    content: "\e5cf";
    font-family: var(--gms) !important;
    font-weight: 200;
    font-size: 32px;
    margin-left: auto;
    margin-right: 10px;
}
.active .faq-wrap .qus::after {
    transform: rotate(180deg);
}
.faq-wrap .ans {
    display: none;
    margin-top: 0 !important;
    padding: 40px 50px;
    background: #f7f7f7;
}
.faq-wrap .ans h6 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}
.faq-wrap .ans p + h6 {
    margin-top: 15px;
}
.faq-wrap .ans :is(p, li) {
    font-size: clamP(14px, 3vw, 18px);
    line-height: 1.6;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .faq-wrap .ans {
        padding: 25px;
    }
}
/* 후원안내 */
.done-wrap {
    display: flex;
    align-items: flex-start;
}
#si04 .done-wrap {
    align-items: center;
}
.done-wrap .info {
    flex: 1;
    padding-right: 120px;
}
.done-wrap .info h4 {
    font-size: 42px;
    margin-bottom: 35px;
    font-weight: 700;
    line-height: 1.35em;
    color: var(--page-point-color);
    margin-top: 10px;
    letter-spacing: -0.03em;
}
.done-wrap .info p {
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 15px;
    font-weight: 400;
    color: #444;
    line-height: 1.6;
}
.done-wrap .info small {
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 500;
    margin-top: 14px;
    display: block;
}
.done-wrap .info b {
    color: #111;
}
.done-wrap .img-box {
    flex: 0 1 50%;
    aspect-ratio: 1;
    border-radius: clamp(30px, 5vw, 60px);
    position: relative;
    overflow: hidden;
    margin-right: -50px;
    border-bottom-left-radius: 0;
}
#si04 .done-wrap .img-box {
    width: auto;
    height: auto;
    aspect-ratio: auto;
}
#si04 .done-wrap h4 {
    font-size: 36px;
}

#dn02 .done-wrap .img-box {
    aspect-ratio: unset;
    flex-direction: column;
}
#dn02 .done-wrap .blur {
    position: relative;
    z-index: 50;
    background: linear-gradient(to bottom, #fff 10%, transparent);
    height: 70px;
    margin: -2px -2px -70px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site .done-wrap .info h4 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .done-wrap {
        flex-direction: column-reverse;
        max-width: 500px;
        width: 100%;
        margin-inline: auto;
    }
    .done-wrap .info {
        padding-right: 0;
        flex: 0 1 auto;
        width: 100%;
    }
    .done-wrap .img-box {
        flex: 0 1 auto;
        width: auto;
        margin: 0;
        margin-bottom: 30px;
    }
}
#site .more-btn {
    position: relative;
    display: flex;
    height: clamp(50px, 5vw, 60px);
    border-radius: 9999px;
    justify-content: center;
    align-items: center;
    font-size: clamp(16px, 2vw, 20px);
    background-color: var(--page-point-color);
    color: #fff;
    margin-top: clamp(30px, 5vw, 65px);
    font-weight: 600;
    min-width: 260px;
    padding-left: 10px;
    gap: 10px;
    transition: background 0.6s ease;
}
[lang="en"] #site .more-btn {
    font-size: clamp(14px, 2vw, 18px);
}
#site .more-btn small {
    pointer-events: none;
    position: absolute;
    display: block;
    text-align: left;
    bottom: -53px;
    color: #555;
    opacity: 1;
    font-size: 0.8em;
}
.more-btn:hover {
    background-color: #950a30;
    transition: background 0.3s ease;
}
/* 슬라이드 */
#mainCarousel .carousel-inner .item {
    background-color: #000;
    height: auto;
}
@media (min-height: 900px) {
    #mainCarousel .carousel-inner .item {
        /* aspect-ratio: unset; */
    }
}
#mainCarousel .carousel-inner .item::before {
    z-index: 2;
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.3;
}
#mainCarousel .carousel-inner .item:first-child::before {
    opacity: 0;
}
.carousel-video {
    z-index: 1;
    position: relative;
    display: flex;
    width: 100%;
    /* height: 100%; */
    height: max(clamp(600px, 10vw, 800px), 100vh);
    justify-content: center;
    align-items: center;
}
.carousel-video > div {
    width: 100%;
}
.carousel-video video {
    user-select: none;
    pointer-events: none;
    width: 100%;
    /* height: 1000px; */
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.carousel-img {
    width: 100%;
    height: 100%;
}
/* caption */
.carousel-caption {
    width: 100%;
    position: absolute;
    top: 49%;
    transform: translateY(-50%);
    bottom: inherit;
    right: 0%;
    left: 0%;
    padding: 0;
    text-shadow: none;
    text-align: center;
}
.carousel-caption span.quote {
    font-family: var(--page-font-family-serif);
}
.carousel-caption h1 {
    position: relative;
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0;
    margin: 0;
    opacity: 0;
}
.carousel-caption h1 b {
    font-weight: 800;
}
.item.active .carousel-caption h1 {
    animation: fadeInDown2 0.75s ease forwards;
}
@keyframes fadeInDown2 {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.carousel-caption p {
    margin-top: 25px;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 400;
    letter-spacing: -0.01em;
}
/* control */
.carousel-control {
    display: flex;
    align-items: center;
    opacity: 1;
    width: 10%;
}
.carousel-control:is(.right, .left) {
    background: transparent;
    justify-content: center;
}
.carousel-control.right span {
    margin-right: 0;
}
.carousel-control.left span {
    margin-left: 0;
}
.glyphicon[class*="glyphicon-chevron"]::before {
    color: #fff;
    font-family: var(--gms);
    font-variation-settings: var(--gms-wght-100-out);
    opacity: 0.3;
}
.glyphicon.glyphicon-chevron-right::before {
    content: "\e5e1";
}
.glyphicon.glyphicon-chevron-left::before {
    content: "\e2ea";
}
.carousel-control :is([class*="glyphicon-chevron"], [class*="icon"]) {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
    height: auto;
    font-size: clamp(40px, 5vw, 64px);
}
/* indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    z-index: 15;
    width: 100%;
    padding-left: 0;
    margin: 0%;
    text-align: center;
    list-style: none;
}
.carousel-indicators :is(li, li.active) {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.5);
    transition: ease-in-out 0.15s all;
    aspect-ratio: 1;
    width: clamp(8px, 2vw, 11px);
    height: auto;
    border: 0;
    border-radius: 50%;
    margin: 0 5px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.carousel-indicators li.active {
    background: #fff;
    box-shadow: none;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .carousel-caption {
        padding-inline: 30px;
    }
}
/* section */

.mainpage section {
    position: relative;
    padding-top: clamp(80px, 10vw, 140px);
    padding-bottom: clamp(80px, 10vw, 150px);
}
.mainpage section.main-service {
    height: 230px;
    padding: 0;
    background-color: #930000;
    background: linear-gradient(90deg, #d51d50 0%, var(--page-point-color) 100%);
}
.mainpage section.main-service .container {
    height: 100%;
}
@media (min-height: 900px) {
    .mainpage section.main-service {
        height: 23vh;
    }
}
.mainpage section.main-notice {
    background-color: #fff;
}
.mainpage section.main-edu {
    background-image: url(/public/img/main/main-bg2.jpg);
    padding-top: clamp(80px, 10vw, 130px);
    padding-bottom: clamp(80px, 10vw, 140px);
    position: relative;
    /* margin-top: 170px; */
}
.mainpage section.main-edu::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.7;
    top: 0;
    left: 0;
}
.mainpage section.main-gallery {
    background-color: #f7f7f7;
}
.mainpage h3 {
    font-size: clamp(36px, 5vw, 42px);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800;
    color: #222;
    letter-spacing: 0;
}
.main-edu h3 {
    color: #fff;
}
/* “통일을 꿈꾸는 장대현중고등학교” */
.service-wrap {
    justify-content: center;
    flex-wrap: nowrap;
    height: 100%;
}
.service-wrap .col {
    flex: 1;
    width: auto;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.service-wrap .col:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.service-wrap span.fa-solid {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    line-height: 1;
    aspect-ratio: 1;
    color: #fff;
    font-size: 39px;
    height: 58px;
}
.service-wrap h4 {
    margin-top: 12px;
    letter-spacing: 0;
    font-size: 21px;
}
.main-school {
    background-color: #f7f7f7;
}
.school-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}
.school-wrap .col {
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
}
.school-wrap .col.span-2 {
    aspect-ratio: unset;
    height: 585px;
    grid-column: span 2;
}
.school-wrap .bg {
    transition: 0.5s;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.school-wrap .text {
    transition: 0.5s;
    position: relative;
    z-index: 5;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(25px, 5vw, 50px);
}
.school-wrap .text h5 {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 700;
    color: #fff;
}
.school-wrap .text p {
    transition: inherit;
    position: relative;
    overflow: hidden;
    margin-block: clamp(10px, 2vw, 20px) 0;
    font-size: clamp(13px, 2.5vw, 17px);
    color: #fff;
}
.school-wrap .bottom .text p {
    max-height: 0;
}
/* [hover] PC 환경에서만 :hover 효과 적용  */
@media (hover: hover) {
    .school-wrap .col.bottom:hover .bg {
        scale: 1.1;
    }
    .school-wrap .col.bottom:hover .text p {
        max-height: 300px;
    }
}
.school-wrap .col.bottom:after {
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #0e0e0e 0%, transparent 100%);
    opacity: 0.5;
}
.school-wrap .col.bottom:hover::before {
    opacity: 1;
}
.school-wrap .col.bottom:before {
    z-index: 1;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(0deg, #000 0%, #222 25%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s;
}
.school-wrap .col.span-2 .bg img {
    object-fit: contain;
    object-position: right;
}
/* [min-lager / tablet] 태블릿, 992px 이상 ▲ */
@media (width >= 992px) {
    .school-wrap .left .text {
        width: 52%;
        padding-left: 90px;
        justify-content: center;
    }
    .school-wrap .left .text h5 {
        font-size: 40px;
    }
    .school-wrap .left .text p {
        font-size: 20px;
        line-height: 1.6;
    }
    .school-wrap .col.left:before {
        z-index: 1;
        content: "";
        display: block;
        width: 60%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        background: linear-gradient(90deg, #000 65%, transparent 100%);
        opacity: 1;
        transition: opacity 0.5s;
    }
}
/* [min-xx-lager / desktop] 데스크탑, 1400px 이상 ▲ */
@media (width >= 1400px) {
    .school-wrap {
        margin-inline: -50px;
    }
}
/* [max-lager / tablet] 태블릿, 992px 미만 ▼ */
@media (width <= 991.98px) {
    .school-wrap {
        display: flex;
        flex-direction: column;
        gap: clamp(15px, 5vw, 30px);
        max-width: 500px;
        margin-inline: auto;
    }
    .school-wrap .col {
        aspect-ratio: 1/1.1 !important;
        height: 400px;
    }
    .school-wrap .col.bottom .text p {
        max-height: unset;
    }
    .school-wrap .col.span-2 .bg img {
        object-fit: cover;
        object-position: 85%;
    }
    .school-wrap .col.span-2 {
        height: 400px;
    }
    .school-wrap .col:before {
        content: none;
    }
    .school-wrap .col:after {
        z-index: 1;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, #0e0e0e 0%, transparent 100%);
        opacity: 0.65;
    }
}
/* 학교 소식 */
.notice-wrap {
    position: relative;
    gap: 20px;
}
.notice-wrap .board_box_list {
    padding: 0;
    background: #f5f5f5;
    padding: 40px;
    height: 100%;
    border-radius: 7px;
}
/* 나에게 장대현중고등학교란? */
.edu-wrap {
    position: relative;
}
.edu-wrap .col {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    align-items: center;
    gap: 70px;
}
.edu-wrap .profile {
    flex: 0 1 auto;
    width: 300px;
    text-align: center;
    flex-shrink: 0;
}
.edu-wrap .profile span.job {
    display: block;
    margin-top: 5px;
    font-size: 16px;
}
.edu-wrap .profile ul.li-name {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 25px;
}
.edu-wrap .profile ul.li-name li {
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    font-weight: 400;
    color: #9c9c9c;
}
.edu-wrap .profile ul.li-name li b {
    font-weight: 400;
}
.edu-wrap .profile ul.li-name li:first-child {
    font-size: 22px;
    margin-bottom: 3px;
    font-weight: 700;
    letter-spacing: 0;
    color: #fff;
}
.edu-wrap .profile ul.li-name li:first-child b {
    font-weight: 400;
    color: #ccc;
    margin-right: 4px;
}
.edu-wrap .img-box {
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.22);
}
.edu-wrap .info {
    background-color: var(--page-point-color);
    color: #fff;
    padding: 40px 45px;
    border-radius: 25px 25px 25px 0;
    margin-bottom: 90px;
}
.edu-wrap .info h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0;
}
.edu-wrap .info p {
    line-height: 1.6;
    font-size: 19px;
    font-weight: 300;
}
.edu-wrap .info p b {
    display: block;
    font-size: 1.15em;
    font-weight: 600;
    margin-bottom: 8px;
}
.edu-wrap .info span.job {
    display: block;
    font-size: 16px;
    margin-top: 40px;
    text-align: right;
}
.edu-wrap .info span.more {
    display: block;
    margin-top: 40px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 5px;
    display: none;
}
/* 나에게 장대현중고등학교란? swiper */
.edu-wrap .swiper {
    overflow: unset !important;
}
.edu-wrap .swiper-slide .profile {
    opacity: 0;
    transform: translateY(120px);
}
.edu-wrap .swiper-slide .info {
    opacity: 0;
    transform: translateY(60px);
}
.edu-wrap .swiper-slide-visible .profile {
    opacity: 1;
    transition: 0.7s ease;
    transform: translateY(0px);
}
.edu-wrap .swiper-slide-visible .info {
    opacity: 1;
    transition: 0.7s 0s ease;
    transform: translateY(25px);
}
.edu-wrap [class*="swiper-button"] {
    position: absolute;
    display: flex;
    align-items: center;
    opacity: 1;
    margin-top: 0;
    top: 42%;
}
.edu-wrap [class*="swiper-button"]::after {
    content: none !important;
}
.edu-wrap [class*="swiper-button"]::before {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
    height: auto;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.39);
    font-family: var(--gms) !important;
    font-variation-settings: var(--gms-wght-500-out);
}
.edu-wrap .swiper-button-next {
    right: -100px;
}
.edu-wrap .swiper-button-next::before {
    content: "\e5e1";
}
.edu-wrap .swiper-button-prev {
    left: -100px;
}
.edu-wrap .swiper-button-prev::before {
    content: "\e2ea";
}
.edu-wrap .swiper-pagination {
    position: static;
}
.edu-wrap .swiper-pagination span {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 9999px;
    margin: 0 4px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.edu-wrap .swiper-pagination-bullet {
    opacity: 1;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.25);
    transition: ease-in-out 0.15s all;
}
.edu-wrap .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
    box-shadow: none;
}
/* 나에게 장대현 2 */
.main-edu2 {
    background-color: #fff;
}
.edu2-wrap {
    display: flex;
    flex-direction: column;
    gap: clamp(80px, 15vw, 150px);
}
.edu2-wrap .col {
    display: flex;
    align-items: center;
    gap: clamp(40px, 5vw, 90px);
}
.edu2-wrap .col:nth-child(even) {
    flex-direction: row-reverse;
}
.edu2-wrap .col > * {
    flex: 1;
}
.edu2-wrap .info {
    position: relative;
}
.edu2-wrap .info [class*="quote"]::before {
    content: "\f10d";
    /* font-family: var(--gms); */
    font-family: "Font Awesome 6 free";
    font-weight: 900;
    font-size: clamp(40px, 3vw, 78px);
    /* color: var(--page-point-color); */
    color: #f7f7f7;
    text-shadow: 0 0 3px var(--page-point-color), 0 0 3px var(--page-point-color);
    position: absolute;
    line-height: 0;
    z-index: -1;
    opacity: 0.75;
}
.edu2-wrap .start-quote::before {
    left: 2px;
    top: -9px;
}
.edu2-wrap .end-quote::before {
    rotate: 180deg;
    transform: translate(55px, -49px);
    /* right: 2px; */
    /* bottom: -9px; */
}
.edu2-wrap p {
    position: relative;
    z-index: 10;
    font-size: clamp(18px, 3vw, 30px);
    font-weight: 600;
}
.edu2-wrap ul {
    margin-top: clamp(25px, 3vw, 45px);
}
.edu2-wrap li {
    font-size: clamP(14px, 2.5vw, 20px);
}
.edu2-wrap li + li {
    border-left: 1px solid #ccc;
    padding-left: clamp(10px, 1vw, 15px);
    margin-left: clamp(10px, 1vw, 15px);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .edu2-wrap {
        max-width: 500px;
        margin-inline: auto;
    }
    .edu2-wrap .col {
        flex-direction: column !important;
    }
    .edu2-wrap .start-quote::before {
        top: 0px;
    }
    .edu2-wrap .end-quote::before {
        transform: translate(30px, -27px);
    }
}
.youtube-wrap {
    display: grid;
    grid-template-columns: var(--grid-repeat-3);
    gap: clamp(15px, 2vw, 30px);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .youtube-wrap {
        grid-template-columns: var(--grid-repeat-2);
    }
}
.youtube-wrap .img-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.7777777778;
    border-radius: 10px;
}
.youtube-wrap .img-box::before {
    z-index: 10;
    content: "\e037";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--gms);
    font-variation-settings: var(--gms-wght-500-fill);
    font-size: 74px;
    color: #fff;
}
.youtube-wrap p {
    font-size: clamp(14px, 2vw, 17px);
    font-weight: 700;
    padding: 15px;
    text-align: center;
}
.youtube-wrap img {
    scale: 1.02;
    filter: brightness(0.95);
}
/* 지금 우리 학교는? */
#site .gallery-wrap .page-header {
    display: none;
}
#site .gallery-wrap .type_blog_b {
    display: grid;
    gap: clamp(30px, 5vw, 40px) clamp(15px, 2vw, 25px);
    grid-template-columns: var(--grid-repeat-4);
}
/* [max-lager / tablet] 태블릿, 992px 미만 ▼ */
@media (width <= 991.98px) {
    #site .gallery-wrap .board_box_blog2 {
        margin-bottom: 0 !important;
    }
    #site .gallery-wrap .type_blog_b {
        grid-template-columns: var(--grid-repeat-3);
    }
}
/* [max-small / portrait phones] 모바일, 576px 미만 ▼  */
@media (width <= 575.98px) {
    #site .gallery-wrap .type_blog_b {
        grid-template-columns: var(--grid-repeat-2);
    }
}
#site .gallery-wrap .type_blog_b > div {
    width: 100%;
}
#site .gallery-wrap .type_blog_b .inner {
    border: 0;
    margin: 0;
}
#site .gallery-wrap .type_blog_b .top {
    aspect-ratio: 1;
}
#site .gallery-wrap .type_blog_b .bottom {
    padding: 0;
}
#site .gallery-wrap .type_blog_b .bottom .info {
    display: none;
}
#site .gallery-wrap .type_blog_b :where(span.thumb, .top a) {
    width: 100% !important;
    height: 100% !important;
}
#site .gallery-wrap .type_blog_b .title {
    text-align: center;
    margin: 0 !important;
    background-color: #fff;
    padding: 15px;
}
#site .gallery-wrap .type_blog_b .title a {
    font-weight: 700;
    font-size: clamp(15px, 2vw, 20px);
}
#site .gallery-wrap .type_blog_b [class^="board_box"] {
    margin-bottom: 0 !important;
}

#site .gallery-wrap .type_blog_b .page-header {
    margin-top: 0;
    margin-bottom: 24px;
    border-bottom: 1px solid #555;
    padding-bottom: 16px;
}
#site .gallery-wrap .type_blog_b .page-header h4 {
    display: inline-block;
    font-size: clamp(18px, 3vw, 26px);
}
#site .gallery-wrap .type_blog_b .page-header a.pull-right i::before {
    position: relative;
    display: block;
    content: "\e145" !important;
    translate: 0 2px;
    font-family: var(--gms);
    font-variation-settings: var(--gms-wght-300-out);
    font-size: clamp(18px, 3vw, 30px);
    font-weight: 500;
    color: #000;
}
#site .gallery-wrap .type_blog_b .type_list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
#site .gallery-wrap .type_blog_b .type_list :where(li) {
    padding: 0;
}
#site .gallery-wrap .type_blog_b .type_list :where(a):hover {
    text-decoration: underline;
}
#site .gallery-wrap .type_blog_b .type_list :where(li, a) {
    line-height: 1;
    font-size: clamp(14px, 3vw, 16px);
    color: #000;
}
#site .gallery-wrap .type_blog_b .type_list .info span:not(.regdate) {
    display: none;
}
#site .gallery-wrap .type_blog_b .type_thumb {
    display: grid;
    grid-template-columns: var(--grid-repeat-2);
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    gap: 10px;
}
#site .gallery-wrap .type_blog_b .type_thumb > div {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
#site .gallery-wrap .type_blog_b .type_thumb .inner {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
}
#site .gallery-wrap .type_blog_b .type_thumb .top .thumb {
    aspect-ratio: 1.6666666667;
    height: auto;
}
#site .gallery-wrap .type_blog_b .type_thumb .bottom {
    padding: 0;
}
#site .gallery-wrap .type_blog_b .type_thumb .bottom .info {
    display: none;
}
#site .gallery-wrap .type_blog_b .type_thumb .bottom .title {
    padding: 0;
    margin-top: 5px;
}
#site .gallery-wrap .type_blog_b .type_thumb .bottom a {
    font-size: clamp(15px, 3vw, 17px);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site .gallery-wrap .cate {
        display: none;
    }
}
#mainPopup {
    position: relative;
    /* top: calc(var(--navbar-height) - 140px); */
}
.main_popup {
    border: 0;
    border-radius: 0;
    background-color: transparent !important;
}
.main_popup_optional {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    padding: 7px 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.main_popup_optional :where(label, div) {
    opacity: 0.8;
}
.main_popup_optional :where(label, div):where(:hover, :focus) {
    opacity: 1;
}
.main_popup_optional :where(label, div, span) {
    float: unset !important;
    line-height: 1;
}
.main_popup_optional label {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 400;
}
.main_popup_optional label span.material-symbols-outlined {
    font-size: 1.25rem;
    margin-right: 2px;
}
.main_popup button.close {
    opacity: 1;
    margin: 0;
    height: auto;
    color: inherit;
    font-size: 1.75rem;
}
.main_popup span.material-symbols-outlined {
    font-variation-settings: var(--gms-wght-100-out);
    font-size: inherit;
}
.main_popup_contents {
    overflow: hidden;
    padding: 10px;
    background: #fff;
}
.main_popup_contents img {
    display: block;
    max-width: 100%;
    height: auto;
}
.table-style :where(tbody, thead) :where(th, td) {
    border-color: #ddd;
    text-align: center;
    padding: 12px;
    vertical-align: middle !important;
    font-size: clamp(15px, 2vw, 18px);
}
.table-style thead th {
    vertical-align: middle;
    text-align: center;
    background-color: #f5f5f5;
    border-top: 2px solid #333;
}
.table-style tbody th.subject1 {
    background-color: #f5f5f5;
}
.table-style tbody th.subject2 {
    background-color: #fff0f3;
}
.table-style tbody th.subject3 {
    background-color: #edf3f8;
}
.table-time {
    margin-top: clamp(30px, 5vw, 50px);
    background-color: #fff;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}
.table-time thead th {
    background-color: var(--page-point-color);
    color: #fff;
    border-top: 0;
    border-color: var(--page-point-color-dark);
}
.table-time tbody th {
    background-color: #fff0f3;
}
.table-time :where(th, td) {
    font-size: clamp(13px, 2vw, 15px);
    padding: 8px;
}
:where(.board_wrapper, .pagination_wrap, .search_wrap) {
    display: none;
    visibility: hidden;
}
.board_wrapper {
    margin-top: 0;
    margin-bottom: 0;
}
:where(#bbsArea) :where(.board_wrapper, .pagination_wrap, .search_wrap) {
    display: block;
    visibility: visible;
    margin-top: 0;
}
:where(#bbsArea) .board_wrapper + :where(.search_wrap, .pagination_wrap) {
    margin-top: 70px;
}
:where(#bbsArea) .pagination_wrap + .search_wrap {
    margin-top: 30px;
}
:where(#bbsArea) .board_wrapper [class*="wrap"] {
    margin: 0;
}
:where(#bbsArea) .board_wrapper .option_wrap {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
:where(#bbsArea) .board_wrapper .option_wrap .list_btn_wrap {
    position: static;
}
#reply_write .btn_wrap {
    margin-top: 0.75em !important;
}
#reply_list .media .media-body .info .btn {
    all: unset;
    cursor: pointer;
}
:where(#bbsArea) .search_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 0 !important;
}
:where(#bbsArea) .li-btn{
    margin-top: 30px;
}
/* 리스트 게시판 제목 flex*/
.board_wrapper td.subject span {
    flex-shrink: 0;
    /* display: flex; */
    align-items: center;
    gap: 7px;
}
/* 등록된 게시글이 없습니다. custom */
.board_wrapper tbody {
    position: relative;
}
.board_wrapper td.no_post {
    z-index: -1;
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
}
.table.table_default {
    margin-bottom: 0;
}
.table.table_default tbody th.num {
    font-weight: normal;
}
.table.table_default tbody .subject a {
    font-size: clamp(16px, 2vw, 18px);
    color: #333;
}
.table.table_default :is(th, td) {
    padding: 14px 15px;
    font-size: 18px;
    border-bottom: 1px solid #ddd;
}
.table.table_default thead th {
    background: #fff;
    border-bottom: 1px solid #ccc;
    font-weight: 600;
}
.table.table_responsive tbody th {
    margin-bottom: 0;
}
.table_default {
    border-top: 1px solid #333;
}
.table.table_default td {
    color: #777;
}
.table.table_default td:only-child {
    display: table-cell;
}
.board_wrapper .table.board_write_table {
    border-top: 1px solid #333;
    border-collapse: inherit;
}
.text-muted {
    margin-top: 8px !important;
}
.board_wrapper .table.board_write_table tbody th {
    background-color: transparent;
    font-weight: 700;
}
.board_wrapper .table.board_write_table tbody td {
    padding-top: 15px;
    padding-bottom: 15px;
}
.board_data_view {
    border-top: 1px solid #333;
}
.board_data_view .header_wrap {
    border-bottom: 1px solid #ddd;
    padding: 35px 0;
}
.board_data_view .header_wrap .title {
    font-size: 25px;
    font-weight: 600;
}
#item_agree label,
#item_email .text-muted {
    font-size: clamp(13px, 2vw, 15px);
}
:is(.member_wrapper, .board_wrapper) .text-center {
    display: flex;
    justify-content: center;
    gap: 10px;
}
:is(.member_wrapper, .board_wrapper) .text-center :is(.btn.btn-lg, .btn + .btn) {
    min-width: 180px;
}
:is(.member_wrapper, .board_wrapper) .text-center .btn + .btn {
    margin: 0;
}
.form-control {
    padding: 0.5rem 0.85rem;
}
.form-control[type="file"] {
    line-height: 2.9;
    padding: 0 0.8rem !important;
}
.wr_form_item input.form-control {
    background-color: transparent;
    /* padding-left: 0; */
    padding-right: 35px;
}
.btn#File_add {
    padding: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.btn#File_add .fa-plus {
    line-height: 0;
}
/* checkbox, radio */
.board_wrapper .table.board_write_table tbody td:has(.radio-inline, .checkbox-inline) {
    gap: clamp(7px, 5vw, 10px) clamp(15px, 3vw, 30px);
}
.board_wrapper .table.board_write_table .checkbox {
    margin: 0;
}
.board_wrapper .table.board_write_table .checkbox label {
    font-size: 1rem;
}
:where(.checkbox label, .radio label) {
    letter-spacing: -0.06em;
}
.custom_checkbox + span a {
    font-weight: 500;
    color: var(--page-point-color);
    text-decoration: underline;
}
:where(.custom_checkbox, .custom_radio) + span::before {
    color: var(--page-point-color);
    margin-left: 0;
}
:where(.checkbox-inline, .checkbox) input[type="checkbox"],
:where(.radio-inline, .radio) input[type="radio"] {
    position: static;
    margin-top: 0;
    margin-left: 0;
    margin-right: 5px;
}
:where(.checkbox, .radio) label {
    padding-left: 0;
    display: flex;
    align-items: center;
}
:where(.checkbox-inline, .radio-inline) {
    margin-top: 0 !important;
    margin-left: 0;
    padding-left: 0;
}
/* 게시판 다운로드 파일 */
.board_wrapper .table.board_write_table .files .fileInput {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, min-content);
    align-self: stretch;
}
.board_wrapper .table.board_write_table .files .fileInput input {
    width: 100%;
}
.board_wrapper .table.board_write_table .files .fileInput .file_add {
    padding: 6px 7px 5px;
}
.board_wrapper .table.board_write_table .files + .sumChk {
    padding-bottom: 0;
    margin-bottom: 0;
    border: 0;
}
.board_wrapper .table.board_write_table .files .refresh {
    cursor: pointer;
}
.board_wrapper .table.board_write_table .files .refresh:hover {
    color: #ec0909;
}
/* 게시판/주문폼/회원가입 버튼 */
:where(.member_wrapper, .board_wrapper) .text-center :where(.btn.btn-lg, .btn + .btn) {
    min-width: 180px;
}
/* 게시글 수정/삭제/목록/댓글 등록 버튼 */
.board_wrapper[id$="_view"] .btn {
    min-width: 70px;
    justify-content: center;
    align-items: center;
}
.form-control[type="file"] {
    margin: 0;
}
#site .board_wrapper .table.board_write_table :where(.input-group, .form-control):not(#wr_name, #wr_email, #at_name, #wr_captcha, #wr_cate, #wr_thumb) {
    width: 100% !important;
}
/* 자동입력방지 */
#captcha {
    filter: brightness(0.62) contrast(4.5) opacity(0.7);
    height: 40px;
    border-color: transparent !important;
}
#captcha + br {
    display: none;
}
#wr_captcha {
    margin-top: 0 !important;
    width: 100%;
    max-width: 220px;
}
/* 게시글 공지사항 */
.board_wrapper tr.notice {
    background-color: #f7f7f7;
}
.board_wrapper tr.notice td.subject a {
    font-weight: 500;
    color: #000 !important;
}
.board_wrapper tr.notice td.cate span {
    display: none;
}
.board_wrapper tr.notice td.cate::before {
    content: "공지";
    color: #222;
}
/* 게시글 아이콘 */
.board_wrapper td.subject .is_secret {
    order: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}
.board_wrapper td.subject small {
    margin-top: 0 !important;
}
/* 잠금 아이콘 */
.board_wrapper td.subject small.lock {
    order: 0;
    translate: 0 -1px;
    font-size: 0.9em;
}
/* 댓글 아이콘*/
.board_wrapper td.subject small.comment {
    opacity: 0.8;
    order: 1000;
    translate: 0 -1px;
    font-size: 0.8em;
    display: flex;
    align-items: center;
    gap: 1px;
    color: var(--page-point-color-dark) !important;
    font-weight: 700;
}
.board_wrapper td.subject small.comment::before {
    content: "[";
}
.board_wrapper td.subject small.comment::after {
    content: "]";
}
.board_wrapper td.subject small.comment i {
    display: none;
}
/* 카테고리 / 분류 */
#bbsArea .category_wrap {
    margin-bottom: 50px;
}
#bbsArea .category_wrap ul {
    display: flex;
    justify-content: center;
    gap: 0 20px;
}
#bbsArea .category_wrap li {
    margin: 0 !important;
}
#bbsArea .category_wrap a {
    color: #888;
    font-weight: 500;
    padding-bottom: 0;
    border-bottom: 0;
}
#bbsArea .category_wrap a:hover {
    color: #111;
}
#bbsArea .category_wrap li.on :where(a, a:hover, a:focus) {
    color: #000;
    font-weight: 600;
}
#bbsArea .badge {
    display: inline-flex;
    translate: 0 0px;
    background-color: #555;
    border-radius: 0;
    padding: 4px 7px;
    margin-right: 5px !important;
    transform: translateY(-2px);
    border-radius: 3px;
    font-size: clamp(10px, 1vw, 12px);
}
/* 댓글 */
#bbsArea .reply_wrap h4 {
    text-align: left;
    font-size: clamp(15px, 3vw, 17px);
}
/* 검색 */
.search_wrap #search_kind {
    line-height: 1;
}
/* Medium devices (tablets, 768px and up) */
@media (width >= 768px) {
    .search_wrap #search_kind {
        width: 110px;
    }
}
/* 작성 */
.search_wrap .write_btn_wrap {
    margin-top: 0;
}
/* Medium devices (tablets, 768px and up) */
@media (width >= 768px) {
    .board_wrapper .table.board_write_table .files_upload_wrap {
        gap: 15px;
    }
}
/* 게시글 상세 리셋*/
.board_data_view .contents_wrap {
    padding-left: 0;
    padding-right: 0;
}
.board_data_view .contents_inner {
    font-size: 14px;
}
.board_data_view .contents_wrap p {
    font-size: inherit;
    line-height: 1.6;
    margin: 1em 0;
}
.board_data_view .contents_wrap :is(li, dl) {
    margin: inherit;
    padding: inherit;
    list-style-position: inside !important;
}
.board_data_view .contents_wrap ul li {
    list-style-type: disc !important;
}
.board_data_view .contents_wrap ol li {
    list-style-type: decimal !important;
}
/* Medium devices (tablets, 768px and up) */
@media (width >= 768px) {
    :is(.table_video, .table_blog2) {
        --board-template-columns: 3;
    }
}
/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (width <= 575.98px) {
    :is(.table_video, .table_blog2) {
        --board-template-columns: 1;
    }
}
/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    :is(.table_video, .table_blog2) {
        --board-template-columns: 2;
    }
}
.board_wrapper .no_content {
    grid-column: span var(--board-template-columns);
}
:is(.table_video, .table_blog2, .table_pd) {
    display: grid;
    grid-template-columns: repeat(var(--board-template-columns), var(--grid-1fr));
    margin-left: 0;
    margin-right: 0;
    gap: clamp(40px, 3vw, 70px) clamp(20px, 3vw, 30px);
}
/* 등록된 [상품/게시글]이 없습니다 문구 */
:is(.table_video, .table_blog2, .table_pd) dd:not([class]) {
    width: 100%;
    grid-column: span var(--board-template-columns);
}
:is(.table_video, .table_blog2, .table_pd) > dd {
    width: 100%;
    padding: 0;
}
.table_blog {
    border-top: 1px solid #333;
}
.table_blog .info {
    order: 1;
}
.table_blog .title {
    order: 2;
}
.table_blog .text {
    order: 3;
}
.table_blog dd::after,
.table_blog dd .right .info {
    display: none;
}
.table_blog dd {
    cursor: pointer;
    display: flex;
    gap: 35px;
    flex-wrap: nowrap;
    margin-bottom: 0;
    padding: 30px 0px;
}
.table_blog dd:hover {
    background-color: transparent;
}
.table_blog dd a {
    font-weight: 500;
}
.table_blog dd:hover .right .title a,
.table_blog .right .title a:where(:hover, :focus) {
    color: var(--page-point-color);
}
.table_blog dd .right {
    display: flex;
    flex-direction: column;
    gap: 5px 15px;
    align-items: flex-start;
    padding-top: 10px;
    width: auto;
    flex: 1;
}
.table_blog dd .right .info {
    justify-content: flex-end;
    align-items: center;
    /* align-self: center; */
    grid-column: 2;
    grid-row: span 2;
    margin-bottom: 0;
}
.table_blog dd .right .info :is(.writer, .hits) {
    display: none;
}
.table_blog .right .title > a {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: clamp(18px, 2vw, 22px);
}
.table_blog dd .right .text {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.table_blog dd .right .text p {
    padding: 0;
    font-size: clamp(13px, 3vw, 16px);
}
.table_blog dd .left {
    flex: 0 1 auto;
    width: 280px;
}
.table_blog dd .left a span.thumb {
    display: none !important;
}
#site .table_blog dd .left a img.thumb {
    display: flex !important;
    aspect-ratio: 1.6666666667;
    width: 100%;
    height: auto;
}
.table_blog dd :where(.left, .right) {
    width: auto;
    height: auto;
}
:where(.table_video, .table_blog2, .table_pd) .inner {
    border: 0;
}
:where(.table_video, .table_blog2, .table_pd) .inner .top a img.thumb {
    aspect-ratio: 1.6666666667;
    width: 100%;
    height: auto;
    background-size: cover;
}
:where(.table_video, .table_blog2, .table_pd) .inner .top a span.thumb {
    display: none;
}
:is(.table_video, .table_blog2) dd {
    margin-bottom: 0;
}
:is(.table_video, .table_blog2) dd .inner .bottom {
    margin-top: 15px;
    padding: 0;
}
:is(.table_video, .table_blog2) dd .inner .bottom {
    padding: 0;
}
:is(.table_video, .table_blog2, .table_blog) dd :is(.inner .bottom, .right) .title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px 0;
    padding: 0;
}
:is(.table_video, .table_blog2) dd :is(.inner .bottom) .title a {
    display: block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
}
:is(.table_video, .table_blog2, .table_blog) dd :is(.inner .bottom, .right) .info {
    display: flex;
    gap: 10px;
}
:is(.table_video, .table_blog2, .table_blog) dd :is(.inner .bottom, .right) .info span {
    padding: 0;
}
/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    :is(.table_video, .table_blog2, .table_blog) dd :is(.inner .bottom, .right) .info {
        display: none;
    }
    .table_blog dd {
        flex-direction: column;
        gap: 0;
    }
    .table_blog .left {
        padding-left: 0 !important;
    }
    .table_blog dd .right {
        padding-top: 0 !important;
    }
    .table_blog dd .right .text p {
        line-height: 1.5;
    }
    .table_blog dd .left {
        width: 100%;
        margin-right: 0;
    }
}
#item_agree .checkbox {
    margin-top: 0;
}
:is(#form_history_list, #form_history_nologin) .board_wrapper {
    padding: 0;
    background: transparent;
    min-height: auto;
}
#site .board_wrapper > form[id*="form"] > fieldset > :is(table.table),
#site .board_wrapper > form[id*="form"] > fieldset > :is(table.table) > tbody > tr > :is(th, td) {
    background-color: transparent;
    padding: unset;
    width: unset;
    height: unset;
    border: 0;
    line-height: 1;
    font-size: clamp(13px, 2vw, 15px);
    /* display: flex !important; */
}
#site .board_wrapper > form[id*="form"] > fieldset > :is(table.table) {
    width: 100%;
}
#site .board_wrapper form[id*="form"] table tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
#site .board_wrapper form[id*="form"] table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 10fr);
    align-items: flex-start;
    gap: 20px;
    padding-inline: 10px;
    padding-block: clamp(18px, 3vw, 25px);
    border-bottom: 1px solid #ccc;
}
#site .board_wrapper form[id*="form"] table tbody tr:first-child {
    border-top: 1px solid #000;
}
#site .board_wrapper form[id*="form"] th {
    padding: 0 !important;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
}
#site .board_wrapper .table.board_write_table tbody tr th > span.required_text {
    position: static;
    margin-right: 3px;
    margin-left: 0;
    margin-top: -0.15em;
}
#site .board_wrapper .wr_caution i,
#site .board_wrapper .form-caption i {
    color: var(--page-point-color);
}
/* input 커스텀 */
/* 주문내역 숨김 */
:is(.form-wrap, form) #list_btn {
    display: none;
}
#site .photo-wrap .table_blog2 {
    --board-template-columns: 4;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site .photo-wrap .table_blog2 {
        --board-template-columns: 3;
        gap: 40px 15px;
    }
}
/* [max-small / portrait phones] 모바일, 576px 미만 ▼  */
@media (width <= 575.98px) {
    #site .photo-wrap .table_blog2 {
        --board-template-columns: 2;
    }
}
#site .photo-wrap img.thumb {
    aspect-ratio: 1;
    height: auto;
    display: block !important;
}
#site .photo-wrap .title a {
    font-weight: 600;
}
#site .calendar-wrap [class*="container"] {
    padding: 0;
}
#site .calendar_wrapper {
    margin-top: 0;
    margin-bottom: 0;
}
#calendarModal_view .modal-content {
    position: relative;
    overflow: hidden;
}
#calendarModal_view .modal-body,
#calendarModal_view .modal-content {
    padding: 0;
}
#calendarModal_view .modal-dialog {
    max-width: auto;
    width: var(--bs-modal-width);
    transform: none;
}
#calendarModal_view .close {
    position: absolute;
    right: 20px;
    top: 5px;
    opacity: 0.4 !important;
}
#calendarModal_view .view_left {
    box-shadow: none;
}
#calendarModal_view .modal-body > .row > * {
    padding: 10px 30px 20px;
}
#calendarModal_view .view_left {
    background-color: var(--page-point-color) !important;
}
#calendarModal_view #viewdata_title {
    white-space: normal;
}
#calendar .fc-header-toolbar {
    display: grid;
    grid-template-columns: var(--grid-repeat-3);
}
/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    #calendar .fc-header-toolbar {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
#calendar .fc-header-toolbar .fc-center {
    display: flex;
    gap: 10px;
    justify-content: center;
}
#calendar .fc-header-toolbar :where(.fc-right, .fc-clear) {
    display: none;
}
#calendar .fc-header-toolbar .fc-center button {
    margin: 0;
}
#calendar .fc-header-toolbar .fc-left {
    justify-self: flex-start;
}
#calendar .fc-day-top {
    text-align: right;
}
#calendar .fc-today {
    background-color: #fff6f9;
}
#calendar :where(.fc-day-top, .fc-axis) {
    padding: 5px;
}
#calendar .gcal-event {
    background-color: var(--page-point-color) !important;
    border: 0;
}
#calendar .fc-title {
    font-size: 1rem;
}
.fc-state-default.fc-state-active,
.fc-state-default.fc-state-active:hover,
.fc-state-default.fc-state-active:focus {
    background-color: var(--page-point-color);
    border-color: var(--page-point-color);
}
/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    .board_wrapper form[id*="form"] th {
        margin-bottom: 15px;
    }
    .table_default :is(colgroup, .num, .regdate, .hits, .writer) {
        display: none;
    }
    .table_default .subject {
        width: 100%;
    }
    .table_default .status {
        width: 35%;
    }
    #site .member_wrapper #join_form .table :is(.input-group.input-group-big, .form-control.form-control-big),
    #site .board_wrapper .table.board_write_table :is(.input-group.input-group-big, .form-control.form-control-big, tbody tr td .btn, tbody tr td .form-control, .input-group.input-group-big, .form-control.form-control-big) {
        width: 100%;
    }
    .search_wrap {
        margin-bottom: 0 !important;
    }
    .board_data_view .download_wrap tr {
        display: flex;
        flex-direction: column;
    }
    .board_data_view .download_wrap tr > * {
        width: 100%;
    }
    .board_data_view .download_wrap tr th {
        padding-bottom: 10px;
    }
    .board_data_view .download_wrap tr li a {
        word-break: break-all;
    }
    .board_data_view .download_wrap tr li + li {
        margin-top: 10px;
    }
    .board_wrapper td:has(#captcha) {
        display: flex !important;
    }
}
.member_wrapper {
    max-width: 1140px;
    margin: 0 auto;
}
.member_wrapper h1 {
    margin-top: 0;
    font-size: clamp(28px, 3vw, 34px);
    border: 0;
    margin-bottom: 20px;
    padding-bottom: 0px;
}
.member_wrapper h1 + p {
    line-height: 1.4;
    font-size: clamp(13px, 3vw, 14px);
    margin-bottom: 20px;
}
/* table */
.member_wrapper .table tbody tr :is(th, td) {
    font-size: clamp(13px, 3vw, 14px);
}
.member_wrapper .table tbody tr th {
    background-color: rgba(0, 0, 0, 0.03);
}
.member_wrapper .table tbody tr th span {
    color: var(--page-point-color);
}
.member_wrapper .text-center .btn.btn-lg {
    padding-left: 40px;
    padding-right: 40px;
}
.member_wrapper .join_agree_box + .checkbox {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0.75em 1.25em;
    gap: 5px;
    background-color: #f7f7f7;
    font-size: clamp(12px, 3vw, 15px);
}
.member_wrapper .join_agree_box + .checkbox label {
    display: flex;
    align-items: center;
    padding-left: 0 !important;
}
.member_wrapper .join_agree_box + .checkbox input {
    position: static;
    margin: 0;
    margin-right: 7px;
}
.member_wrapper .join_agree_box + .checkbox > a {
    color: #1c54e4;
    font-weight: 500;
}
.member_wrapper .join_agree_box + .checkbox > a:hover {
    text-decoration: underline;
}
/* form */
.member_wrapper .form-group > * {
    width: auto;
    padding: 0 !important;
}
.member_wrapper .form-group {
    position: relative;
    margin: 0 !important;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
}
.member_wrapper .form-group:focus-within {
    z-index: 100;
    border-color: var(--page-point-color);
}
.member_wrapper .form-group:focus-within span.material-symbols-outlined {
    opacity: 1;
    color: var(--page-point-color);
}
.member_wrapper .form-group:nth-of-type(1) {
    margin-bottom: -1px !important;
}
.member_wrapper .form-group label span.material-symbols-outlined {
    opacity: 0.5;
    translate: 0 1px;
    font-variation-settings: var(--gms-wght-400-out);
    font-size: 1.25rem;
    color: #000;
}
.member_wrapper .form-group > label:nth-child(1) {
    width: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.member_wrapper .form-group > div:nth-child(2) {
    flex: 1;
}
:is(#find_btn, #login_btn) {
    margin-top: 25px;
    height: 50px !important;
}
:is(#find_idpw, .join_wrapper, .login_wrapper) {
    z-index: 10;
    width: 100%;
    padding: 100px 0 120px;
    background: #fff;
}
:is(#find_idpw, .login_wrapper) {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Large devices (desktops, 992px and up) */
@media (width >= 992px) {
    :is(#find_idpw, .login_wrapper) {
        height: max(800px, 100vh);
    }
}
@media (height <= 700px) {
    :is(#find_idpw, .login_wrapper) {
        /* height: auto; */
    }
}
:is(.find_container, .login_container) .container {
    width: 100%;
}
.join_wrapper .member_wrapper {
    width: auto;
}
:is(.find_container, .join_container, .join_write_container, .login_container) .form-group {
    height: 45px;
}
:is(.find_container, .join_container, .join_write_container, .login_container) .member_wrapper {
    padding: 50px 40px;
    border: 1px solid #ddd;
    border-radius: 10px;
    max-width: inherit;
    background: #fff;
}
/* 로그인/찾기 */
:is(.find_container, .login_container) .member_wrapper {
    max-width: 400px;
    margin: 0 auto;
}
.member_wrapper :is(#login_form, fieldset) {
    display: flex;
    flex-direction: column;
}
.member_wrapper :is(#login_form, #login_form input) {
    font-size: clamp(13px, 3vw, 14px);
}
.member_wrapper #login_form input {
    border: 0;
    padding-left: 0;
    padding-right: 35px;
}
.member_wrapper .login_extra ul {
    display: flex;
    justify-content: center;
    gap: 0 15px;
}
.member_wrapper .login_extra ul li > a {
    font-size: clamp(13px, 3vw, 14px);
}
.member_wrapper .login_extra ul li + li {
    margin-left: 0;
}
.member_wrapper .login_extra ul li + li::before {
    content: none;
}
.member_wrapper .login_extra {
    margin-top: 30px;
}
.member_wrapper .join_agree h4 {
    margin-top: 30px;
    margin-bottom: 15px;
}
.member_wrapper .table tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.member_wrapper .table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 4fr);
    margin-bottom: -1px;
}
.member_wrapper .table tbody th {
    width: auto;
    padding-inline: 25px 15px;
}
.member_wrapper .table tbody td {
    padding-inline: 15px;
}
.member_wrapper .table tbody :where(th, td) {
    padding-block: 12px;
}
/* 처리방침 */
:is(.privacy_container, .agreement_container) {
    text-align: left;
}
:is(.privacy_container, .agreement_container) h1 {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    margin-bottom: 40px;
}
:is(.privacy_container, .agreement_container) .privacy_body {
    font-size: 1rem;
    line-height: 1.6em;
    padding-inline: clamp(20px, 3vw, 50px);
}
.privacy {
    margin-top: calc((var(--navbar-height) + 35px) * -1);
    padding: 50px 50px 50px;
}
.privacy :is(p, li) {
    font-size: 15px;
}
.privacy thead th {
    vertical-align: middle;
    text-align: center;
    background-color: #f7f7f7;
    border-top: 2px solid var(--page-point-color) !important;
}
.privacy tbody td {
    vertical-align: middle;
}
.privacy :where(th, td) {
    padding: 8px;
}
/* `md` applies to small devices (landscape phones, less than 768px) */
@media (width <= 767.98px) {
    .member_wrapper {
        padding: 50px 15px;
        width: auto;
    }
    :is(.member_wrapper, .board_wrapper) div.text-center {
        margin-top: 0;
        margin-bottom: 0px;
        padding-top: 30px;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    :is(.member_wrapper, .board_wrapper) .text-center .btn.btn-lg {
        padding: 0;
        height: 50px;
        font-size: 14px;
    }
    :is(.member_wrapper, .board_wrapper) .text-center :is(.btn.btn-lg, .btn + .btn) {
        flex: 1;
        min-width: inherit;
    }
    :is(#find_idpw, .join_wrapper, .login_wrapper) {
        margin-top: 0;
        position: relative;
        padding: 150px 0 150px;
        height: auto;
    }
    :is(.find_container, .join_container, .login_container) .member_wrapper {
        padding: 50px 25px 50px;
        margin-inline: auto;
    }
    :is(.find_container, .join_container, .login_container) {
        width: 100%;
        padding: 0 15px;
    }
    .member_wrapper .form-group div:last-child {
        width: 100%;
    }
    .member_wrapper .login_extra ul {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .member_wrapper .login_extra ul li + li::before {
        content: none;
    }
    .member_wrapper .table,
    .member_wrapper .table :where(tbody, tbody tr) {
        display: block !important;
        width: 100% !important;
    }
    .member_wrapper .table tbody tr :where(th, td) {
        display: block !important;
        width: 100% !important;
        font-size: clamp(15px, 2vw, 17px);
    }
    .member_wrapper .table tbody tr th {
        padding: 10px 30px !important;
    }
    .member_wrapper .table .files_upload_wrap {
        display: flex;
        flex-direction: column;
    }
    .member_wrapper .table .files {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .member_wrapper .table .files .fileInput input {
        width: auto;
    }
    .member_wrapper .table .files .fileInput .file_add {
        position: relative;
        right: auto;
    }
    .member_wrapper .table .files_upload_wrap .btn {
        width: 100%;
        aspect-ratio: inherit;
        margin-top: 15px;
    }
    .member_wrapper #join_form th {
        padding: 10px 20px !important;
        margin-bottom: 10px;
    }
    .member_wrapper #join_form td {
        padding-left: 0;
        padding-right: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        gap: 5px;
    }
    .member_wrapper #join_form td > div:has(textarea) {
        width: 100%;
    }
    .member_wrapper #join_form td input:not(#mb_mailing) {
        width: 100% !important;
    }
    .member_wrapper #join_form tr:last-child td {
        display: block !important;
    }
    .member_wrapper .join_agree_box + .checkbox > a {
        font-size: 0.75em;
        display: grid;
    }
}
