/* ========================================
   Common Styles - Header, Footer, Layout
   ======================================== */

/* Layout */
.inner {
    width: 1300px;
    margin: 0 auto;
}

/* ----------------------------------------
   Top Promotion Banner
   ---------------------------------------- */
.top-banner {
    background: #1a3a5c;
    position: relative;
    z-index: 100;
}

.top-banner .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    gap: 20px;
}

.top-banner__text {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.top-banner__text em {
    color: #ffd700;
    font-style: normal;
    font-size: 25px;
}

.top-banner__timer {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 4px 16px;
    border-radius: 20px;
}

.top-banner__timer-label {
    color: #ffd700;
    font-size: 15px;
}

.top-banner__timer-count {
    color: #ff4444;
    font-size: 23px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}


.top-banner__timer-countDday {
    color: #ff4444;
    font-size: 23px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}


.top-banner__buttons {
    display: flex;
    gap: 8px;
}

.top-banner__btn {
    padding: 6px 20px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.top-banner__btn--primary {
    background: #e74c3c;
}

.top-banner__btn--secondary {
    background: #3498db;
}

.top-banner__close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 25px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.top-banner__close:hover {
    opacity: 1;
}

.top-banner.is-hidden {
    display: none;
}

/* ----------------------------------------
   Header
   ---------------------------------------- */
.header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__logo-img {
    width: 200px;
    height: 45px;
    background: #2c5282;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
}

.header__badges {
    display: flex;
    gap: 8px;
}

.header__badge {
    padding: 4px 10px;
    background: #f0f0f0;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
}

.header__utils {
    display: flex;
    gap: 4px;
}

.header__util-btn {
    display: flex;
	width: 90px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 15px;
    color: #000;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.header__util-btn:hover {
	background: #256eef;
	color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.header__util-btn .icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/*
.header__util-btn--login { background: #4a90d9; }
.header__util-btn--join { background: #e67e22; }
.header__util-btn--apply { background: #8e44ad; }
.header__util-btn--myclass { background: #2c3e50; }
*/

.header__util-btn--login { background: #FFF; }
.header__util-btn--join { background: #FFF; }
.header__util-btn--apply { background: #FFF; }
.header__util-btn--myclass { background: #00A600; color:#fff; }

.header__util-btn--myclass:hover {
	background: #008600;
	color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


.header__util-badge {
    /* position: fixed; */
	position: absolute;
    top: 2%;
	transform: translateY(-50%);
	margin-left:3px;
    background: #e74c3c;
    color: #fff;
    font-size: 14px;
    padding: 3px 14px;
    border-radius: 5px;
    font-weight: 700;
	animation: blink2 3.7s infinite ease-in-out;
}

.gnb__item_focus {
	background: #ff9900;
	color: #fff;

}

/* ----------------------------------------
   GNB (Global Navigation Bar)
   ---------------------------------------- */
.gnb2026 {
    /*background: #2c3e50;*/
	background: #0F63A8;
	background: #144db1;
    position: relative;
    z-index: 200;
}

.gnb2026 .inner {
    display: flex;
}

.gnb__menu {
    display: flex;
    width: 100%;
}

.gnb__item {
    flex: 1;
    text-align: center;
}

.gnb__link {
    display: block;
    padding: 14px 0;
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.gnb__item:hover .gnb__link,
.gnb__item.is-active .gnb__link {
    background: #3498db;
    color: #fff;
}

/* GNB Dropdown */
.gnb__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;	
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 200;
}

.gnb2026.is-active .gnb__dropdown {
    opacity: 1;
    visibility: visible;
}

.gnb__dropdown-inner {
    width: 1300px;
	height: 400px;
    margin: 0 auto;
    display: flex;
    padding: 24px 0;
}

.gnb__sub-menu {
    flex: 1;
    padding: 0 16px;
}

.gnb__sub-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 2px solid #3498db;
	text-align:center;
}

.gnb__sub-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
	text-align:center;
}

.gnb__sub-link {
    font-size: 16px;
    color: #555;
    transition: color 0.2s;
    display: block;
    padding: 3px 0;
}

.gnb__sub-link:hover {
    color: #3498db;
}

/* GNB Overlay */
.gnb__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 150;
}

.gnb2026.is-active ~ .gnb__overlay,
.gnb__overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */
.footer {
	width:100%;
    background: #2c2c2c;
    color: #999;
}

.footer__links {
    background: #3a3a3a;
    padding: 14px 0;
}

.footer__links .inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__link {
    font-size: 16px;
    color: #bbb;
    transition: color 0.2s;
}

.footer__link:hover {
    color: #fff;
}

.footer__link--bold {
    font-weight: 700;
    color: #fff;
}

.footer__main {
    padding: 30px 0;
}

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

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer__logo {
    width: 180px;
    height: 40px;
    background: #555;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.footer__text {
    font-size: 15px;
    color: #888;
    line-height: 1.8;
}

.footer__copyright {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.footer__sns {
    display: flex;
    gap: 10px;
    transform:translateZ(0);
    opacity:0.99;
}

.footer__sns-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #555;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.2s;
}

.footer__sns-link:hover {
    background: #3498db;
}

/* ----------------------------------------
   Bottom Fixed Layer
   ---------------------------------------- */
.bottom-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    z-index: 900;
    transition: transform 0.3s;
}

.bottom-fixed.is-hidden {
    transform: translateY(100%);
}

.bottom-fixed .inner {
    display: flex;
    align-items: center;
    height: 100px;
    gap: 12px;
}

.bottom-fixed__phone {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 3px;
    flex-shrink: 0;
}

.bottom-fixed__phone-label {
    color: #fff;
    font-size: 15px;
}

.bottom-fixed__phone-number {
    color: #fff;
    font-size: 43px;
    font-weight: 800;
	line-height:43px;
}

.bottom-fixed__phone-info {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}

.bottom-fixed__form {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.bottom-fixed__form-label {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}

.bottom-fixed__input {
    width: 140px;
    height: 38px;
    padding: 0 12px;
    border: 2px solid #555;
    background: #333;
    color: #fff;
    font-size: 16px;
}

.bottom-fixed__input::placeholder {
    color: #888;
}

.bottom-fixed__agree {
    display: flex;
	flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    color: #999;
    font-size: 12px;
    /* flex-shrink: 0; */
}

.bottom-fixed__agree input[type="checkbox"] {
    width: 14px;
    height: 14px;
}

.bottom-fixed__agree a {
    color: #aaa;
    text-decoration: underline;
}

.bottom-fixed__submit {
    padding: 16px 44px;
    background: #e74c3c;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    border-radius: 8px;
    flex-shrink: 0;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(231,76,60,0.6);
    animation: submit-pulse 2s ease-in-out infinite;
	cursor: pointer; 
}

@keyframes submit-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(231,76,60,0.6); }
    50% { box-shadow: 0 6px 30px rgba(231,76,60,0.9); }
}

.bottom-fixed__submit:hover {
    background: #c0392b;
    box-shadow: 0 6px 30px rgba(231,76,60,0.9);
}

/* ----------------------------------------
   Benefit Toggle Button
   ---------------------------------------- */
.benefit-toggle {
    position: fixed;
    bottom: 100px;
    right: 0;
    z-index: 910;
    transition: bottom 0.3s;
}

.bottom-fixed.is-hidden ~ .benefit-toggle {
    bottom: 0;
}

.benefit-toggle__btn {
    /*
	padding: 14px 28px;
    background: #1a1a1a;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
    transition: background 0.2s;
    margin-right: calc(50vw - 650px);
	*/
	padding: 14px 32px;
    background: #1a1a1a;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
    transition: background 0.2s;
    margin-right: calc(50vw - 650px)
}

.benefit-toggle__btn:hover {
    /* background: #444; */
	box-shadow: 0 0px 20px #444;
}

.benefit-toggle__arrow {
    transition: transform 0.3s;
}

.benefit-toggle.is-open .benefit-toggle__arrow {
    transform: rotate(180deg);
}

/* ----------------------------------------
   Box Animation 2 (Focus + Pop)
   ---------------------------------------- */
.box-ani2 {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.box-ani2:hover {
    transform: translateY(-4px) scale(1.00);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}


@keyframes blink {
  0%   { opacity: 1; }
  50%  { opacity: 0.1; }
  100% { opacity: 1; }
}


@keyframes blink2 {
  0%   { opacity: 1; }
  50%  { opacity: 0.5; }
  100% { opacity: 1; }
}



.quick-floating-top-btn {
	position: sticky;
    top: 730px;
	padding-top: 10px;
    padding-left: 40px;
}

.quick-floating-top-btn img {
    cursor: pointer;
}