@charset "UTF-8";


#finxAcademy input[type=number]::-webkit-inner-spin-button,
#finxAcademy input[type=number]::-webkit-outer-spin-button{
    -webkit-appearance: none;
    margin: 0;
}
#finxAcademy input[type=number]{
    -moz-appearance: textfield;
}



.hidden{
    display: block !important;
    position: fixed !important;
    top: -500000px !important;
    margin: 0px !important;
    padding: 0px !important;
    width: 0px !important;
    height: 0px !important;
    text-indent: -50000px !important;
    font-size: 0px !important;
    line-height: 0px !important;
    border: 0px !important;
}
/*아카데미 시작 *******************************************/
#finxAcademy {
    width: 100%;
    background: #ffffff;
    position: relative;
}

#finxAcademy .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
#finxAcademy span.small{
    font-size: .85rem!important;
}
/* 배경 장식 */
#finxAcademy .bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

#finxAcademy .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    animation: float 25s infinite ease-in-out;
}

#finxAcademy .shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -150px;
    right: -150px;
}

#finxAcademy .shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: 20%;
    left: -100px;
    animation-delay: 8s;
}

#finxAcademy .shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 60%;
    right: 10%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
}

/* 히어로 섹션 */
#finxAcademy .academy-hero {
    height: 45vh;
    background-size: cover;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
#finxAcademy #acBigTab {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #b7b7b7;
    border-bottom: 1px solid #b7b7b7;
}
#finxAcademy #acBigTab li{
    width: 50%;
}
#finxAcademy #acBigTab li:first-of-type{
    border-right: 1px solid #b7b7b7;
}
#finxAcademy #acBigTab a{
    padding: 30px 0;
    text-align: center;
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #666;
}
#finxAcademy #acBigTab a.on{
    color: var(--primary);
    font-weight: 800;
    background-color: rgba(102, 126, 234, 0.05);
}

#finxAcademy .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: overlayMove 20s infinite ease-in-out;
}

@keyframes overlayMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
}

#finxAcademy .hero-content {
    text-align: center;
    color: #333;
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

#finxAcademy .hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#finxAcademy .academy-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.2;
}

#finxAcademy .academy-hero h1 em {
    font-style: italic;
    color: #006934;
    font-weight: 300;
}

#finxAcademy .hero-subtitle {
    font-size: .9rem;
    font-weight: 500;
    opacity: 0.95;
}

/* 애니메이션 */
#finxAcademy .animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

#finxAcademy .delay-1 { animation-delay: 0.2s; }
#finxAcademy .delay-2 { animation-delay: 0.4s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#finxAcademy .scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

#finxAcademy .scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Our Story */
#finxAcademy .our-story-section {
    padding: 120px 0;
}

#finxAcademy .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

#finxAcademy .story-text h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 32px;
    color: #191919;
    letter-spacing: -1.5px;
}

#finxAcademy .story-description {
    font-size: 18px;
    line-height: 1.9;
    color: #4a5568;
}

#finxAcademy .story-description strong {
    color: #006934;
    font-weight: 700;
}

#finxAcademy .story-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#finxAcademy .stat-item {
    background: #ffffff;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#finxAcademy .stat-item:first-of-type{
    padding-bottom: 40px;
    border-bottom: 1px solid #b7b7b7;
}

#finxAcademy .stat-item:hover {
    transform: translateY(-8px);
}

#finxAcademy .stat-number {
    font-size: 1rem;
    font-weight: 400;
    color: #059669;
    margin-bottom: 16px;
    line-height: 1;
}

#finxAcademy .stat-number span {
    font-size: 1.5rem;
    font-weight: 900;
}

#finxAcademy .stat-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

/* Solution & Service */
#finxAcademy .solution-section {
    padding: 120px 0;
    background: #ffffff;
}

#finxAcademy .solution-content {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

#finxAcademy .solution-left {
    position: relative;
}

#finxAcademy .solution-image-area {
    height: 500px;
    background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 100%);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

#finxAcademy .solution-text {
    padding-left: 20px;
}

#finxAcademy .solution-logo {
    font-size: 48px;
    margin-bottom: 20px;
}

#finxAcademy .solution-text h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #191919;
    letter-spacing: -1.5px;
}

#finxAcademy .solution-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

#finxAcademy .solution-right {
    display: flex;
    flex-direction: column;
}

#finxAcademy .solution-card {
    gap: 20px;
    padding: calc(20px + 1.5rem) 0;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #b7b7b7;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

#finxAcademy .solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #006934, #059669);
    transition: left 0.4s ease;
    z-index: 0;
}

#finxAcademy .solution-card:hover::before {
    left: 0;
}

#finxAcademy .solution-card:hover {
    border-color: #667eea;
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

#finxAcademy .solution-card:hover h4,
#finxAcademy .solution-card:hover p,
#finxAcademy .solution-card:hover .customer{
    color: #ffffff;
    position: relative;
    z-index: 1;
}

#finxAcademy .solution-card:hover .card-arrow {
    color: #ffffff;
    transform: translateX(5px);
}

#finxAcademy .solution-card h4 {
    font-size: 1.2rem;
    min-width: 240px;
    max-width: 240px;
    width: 240px;
    font-weight: 700;
    color: #191919;
    transition: color 0.3s ease;
}

#finxAcademy .solution-card p {
    font-size: .95rem;
    color: #6b7280;
    transition: color 0.3s ease;
}
#finxAcademy .solution-card span.customer{
    font-size: .9rem;
    font-weight: 400;
    color: #666;
}

/* Innovation */
#finxAcademy .innovation-section {
    padding: 120px 0;
    background: #fafafa;
}

#finxAcademy .section-title {
    font-size: 56px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 100px;
    color: #191919;
    letter-spacing: -1.5px;
}

#finxAcademy .innovation-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 120px;
}

#finxAcademy .innovation-item.reverse {
    direction: rtl;
}

#finxAcademy .innovation-item.reverse > * {
    direction: ltr;
}

#finxAcademy .innovation-text h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #006934;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

#finxAcademy .innovation-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #191919;
}

#finxAcademy .innovation-desc {
    font-size: 1rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 32px;
}

#finxAcademy .learn-more {
    display: inline-block;
    color: #059669;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

#finxAcademy .learn-more:hover {
    transform: translateX(5px);
    color: #006934;
}

#finxAcademy .innovation-visual {
    background: #ffffff;
    border-radius: 28px;
    padding: 60px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

#finxAcademy .cycle-container {
    position: relative;
    width: 300px;
    height: 300px;
}

#finxAcademy .cycle-item {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

#finxAcademy .cycle-item.m {
    background: linear-gradient(135deg, #84fab0, #8fd3f4);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

#finxAcademy .cycle-item.s {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 0.75s;
}

#finxAcademy .cycle-item.i {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

#finxAcademy .cycle-item.g {
    background: linear-gradient(135deg, #ffa751, #ffe259);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 2.25s;
}

#finxAcademy .cycle-arrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

#finxAcademy .growth-stages {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

#finxAcademy .stage-bar {
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

#finxAcademy .stage-bar dt{
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
#finxAcademy .stage-bar dd{
    display: flex; align-items: center;
    font-size: .9rem;
    line-height: 1.5;
}
#finxAcademy .stage-bar dd:not(:last-of-type):before{
    content: '‣'; font-size: 22px; color: #333; margin-right :10px;
}
#finxAcademy .stage-bar dd:last-of-type:before{
    content: '🔗'; font-size: 12px; color: #333; margin-right :10px;
}
#finxAcademy .stage-bar dd:last-of-type{
    margin-top: 5px;
    color: #666;
}
#finxAcademy .stage-bar:before{
    position: absolute; top: 50%; left: -16px; transform: translateY(-50%); color: rgba(102, 102, 102, 0.6);
    font-weight: 800; font-size: 1.3rem; writing-mode: vertical-rl; text-orientation: upright;
}
#finxAcademy .stage-bar.stage-5:hover:before{
    content: 'STEP1';
}
#finxAcademy .stage-bar.stage-4:hover:before{
    content: 'STEP2';
}
#finxAcademy .stage-bar.stage-3:hover:before{
    content: 'STEP3';
}
#finxAcademy .stage-bar:hover {
    transform: translateX(10px);
}

#finxAcademy .stage-5 {
    background: #ecfffa;
}

#finxAcademy .stage-4 {
    background: #d7fff4;
}

#finxAcademy .stage-3 {
    background: #c0ffed;
}


#finxAcademy .operate .stat-item{
    background-color: transparent;
    border-bottom: 1px solid #b7b7b7;
    padding: 1rem 0 40px;
}




/* Frontrunner - Solution과 동일한 구조 */
#finxAcademy .frontrunner-section {
    padding: 120px 0;
    background: #ffffff;
}

#finxAcademy .frontrunner-content {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

#finxAcademy .frontrunner-left {
    position: relative;
}

#finxAcademy .frontrunner-image-area {
    height: 500px;
    background: linear-gradient(135deg, #e8ffe0 0%, #e6ffe5 100%);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

#finxAcademy .frontrunner-gradient {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 105, 52, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

#finxAcademy .frontrunner-text {
    padding: 30px 0 0 30px;
}

#finxAcademy .frontrunner-logo {
    font-size: 48px;
    margin-bottom: 20px;
}

#finxAcademy .frontrunner-text h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #191919;
    letter-spacing: -1.5px;
}

#finxAcademy .frontrunner-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

#finxAcademy .frontrunner-right {
    display: flex;
    flex-direction: column;
}

#finxAcademy .frontrunner-card {
    padding: calc(20px + 1.5rem) 0;
    color: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #b7b7b7;
}

#finxAcademy .frontrunner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 105, 52, 0.5) 0%, rgba(5, 150, 105, 0.4) 100%);
    transition: left 0.4s ease;
    z-index: 0;
}

#finxAcademy .frontrunner-card:hover::before {
    left: 0;
}

#finxAcademy .frontrunner-card:hover {
    border-color: #f4fffa;
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 105, 52, 0.2);
}

#finxAcademy .frontrunner-card:hover h4,
#finxAcademy .frontrunner-card:hover p {
    color: #ffffff;
    position: relative;
    z-index: 1;
}

#finxAcademy .frontrunner-card:hover .card-arrow {
    color: #ffffff;
    transform: translateX(5px);
}

#finxAcademy .frontrunner-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #191919;
    transition: color 0.3s ease;
}

#finxAcademy .frontrunner-card p {
    font-size: 15px;
    color: #6b7280;
    transition: color 0.3s ease;
}

/* Contact */
#finxAcademy .contact-section {
    padding: 120px 0;
    background: #ffffff;
}

#finxAcademy .contact-intro {
    text-align: center;
    font-size: 19px;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 70px;
}

#finxAcademy .contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

#finxAcademy .contact-card {
    background: linear-gradient(135deg, #fff 0%, #f1f1f1 100%);
    border-radius: 10px;
    padding: 2rem 2.2rem;
    min-width: 300px;
    text-align: center;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#finxAcademy .contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

#finxAcademy .contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 105, 52, 0.15);
}

#finxAcademy .contact-icon {
    font-size: 56px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

#finxAcademy .contact-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

#finxAcademy .contact-card p {
    font-size: 22px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

#finxAcademy .acList-inner{
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 15px;
    margin: 100px auto;
}
#finxAcademy .acList-inner .right{
    width: calc(90% - 200px);
}
#finxAcademy .acList-inner .right >.title{
    margin-bottom: 50px;
}
#finxAcademy .title h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #4C5EAD;
}
#finxAcademy .pageFlow{
    display: flex;
    gap: 10px;
    font-size: .9rem;
}
#finxAcademy .pageFlow a{
    color: #666;
    font-weight: 400;
}
#finxAcademy .pageFlow li i{
    display: inline-block;
    margin-right: 5px;
}
#finxAcademy .pageFlow li:last-of-type a{
    text-decoration: underline;
}

/*왼쪽 리스트 시작*/
#listFilter {
    position: sticky;
    top: 80px;
    height: 100%;
    width: 35%;
    max-width: 250px;
    min-width: 250px;
    display: flex;
    background-color: #fff;
    flex-direction: column;
}
#listFilter li:not(:last-of-type){
    border-bottom: 1px dashed #ddd;
}
#listFilter li.active{
    background-color: #eee;
}

#listFilter li.active button{
    background-color: rgba(76, 94, 173, 1);
    color: #fff;
}
#listFilter li button{
    background-color: transparent;
    font-size: 1.2rem;
    width: 100%;
    display: block;
    border: 1px solid transparent;
    text-align: left;
    padding: 20px 10px;
    font-weight: 700;
    color: #333;
    position: relative;
}

#listFilter li button:after{
    content: '▼'; font-size: 12px; position: absolute; top: 50%; transform: translateY(-50%); right: 10px;
    color: #4C5EAD;
}

#listFilter li.active button:after{
    content: '▲'; color: #fff;
}
#listFilter dl{
    display: none;
}
#listFilter dd{
    padding: 15px 10px;
}
#listFilter dd a{
    font-weight: 400;
    color: #333;
    font-size: .95rem;
    line-height: 1.5;
    display: block;
}
#listFilter dd a.on{
    text-decoration: underline;
}
#listFilter dd a:hover,
#listFilter dd a:active{
    font-weight: 500;
}
#finxAcademy #filter {
    border: 1px solid transparent;
    background-color: #eee;
    width: 100%;
    margin-bottom: 50px;
    padding: 2rem 1rem;
}
#finxAcademy #filter select,
#finxAcademy #filter input {
    border: 1px solid #b7b7b7;
    padding: 5px;
    font-size: .9rem;
}
#finxAcademy #filter .dp_pc,
#finxAcademy #filter .dp_pc + div{
    text-align: center;
}
#finxAcademy #filter span[id^=txt_] {
    position: relative;
}
#finxAcademy #filter span[id^=txt_] i {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
}
#finxAcademy #filter .dp_pc{
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
    align-items: center;
}
#finxAcademy #filter .dp_pc + div{
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
#finxAcademy #filter .enterTxt{
    display: inline-block;
}
#finxAcademy #filter button,
#finxAcademy #search_btn{
    border: 1px solid transparent;
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    cursor: pointer;
}
#finxAcademy #filter button:hover,
#finxAcademy #filter button:active,
#finxAcademy #search_btn:hover,
#finxAcademy #search_btn:active{
    background-color: rgba(51, 51, 51, 0.7);
}
/*필터 검색 끝 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#finxAcademy .classListPage >p {
    text-align: right;
    font-size: .95rem;
    font-weight: 400;
    color: #333;
}
#finxAcademy .classListPage >p .bold{
    font-size: 1rem;
    font-weight: 800;
    color: #4C5EAD;
}
#finxAcademy .classListPage table{
    margin-top: 10px;
    border-top: 2px solid rgba(51, 51, 51, 0.7);
    border-bottom: 2px solid rgba(51, 51, 51, 0.7);
    width: 100%;
}
#finxAcademy .classListPage table thead{
    width: 100%;
}
#finxAcademy .classListPage table th,
#finxAcademy .classListPage table td{
    vertical-align: middle;
}
#finxAcademy .classListPage table th{
    padding: 12px 5px;
    text-align: center;
    border-bottom: 1px solid #333;
    background-color: #f1f1f1;
    font-size: 1rem;
    height: 60px;
}
#finxAcademy .classListPage table td{
    padding: 15px 10px;
    display: table-cell;
    word-wrap: break-word;
    word-break: keep-all;
    font-size: .9rem;
    min-height: 75px;
}
#finxAcademy .classListPage table td:not(.title) {
    text-align: center;
}
#finxAcademy .classListPage table td.title{
    width: 25%;
    max-width: 400px;
}
#finxAcademy .classListPage table td.title a{
    display: block;
    font-weight: 700;
    color: #333;
    max-width: 400px;
    box-sizing: border-box;
    word-wrap: break-word;
    word-break: keep-all;
}
#finxAcademy .classListPage table td:nth-of-type(2) a:hover,
#finxAcademy .classListPage table td:nth-of-type(2) a:active{
    font-weight: 800;
    text-decoration: underline;
}
#finxAcademy .classListPage table tr:not(:last-of-type) td {
    border-bottom: 1px solid #eee;
}
#finxAcademy .classListPage table td:last-of-type{
    display: flex !important;
    justify-content: center;
    align-items: center;
}
#finxAcademy .classListPage table td:last-of-type .proposal_btn {
    border: 1px solid transparent;
    background-color: rgba(76, 94, 173, 0.2);
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .9rem;
    box-sizing: border-box;
    color: #4C5EAD;
}
#finxAcademy .classListPage table td:last-of-type .proposal_btn:hover,
#finxAcademy .classListPage table td:last-of-type .proposal_btn:active,
.acDetail table td.register button:hover,
.acDetail table td.register button:active{
    background-color: rgba(76, 94, 173, 0.35);
}

#finxAcademy .classListPage table td:last-of-type .end_btn {
    border: 1px solid transparent;
    background-color: rgba(173, 76, 76, 0.2);
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 600;
    cursor: auto;
    font-size: .9rem;
    box-sizing: border-box;
    color: #ad4c4c;
}

#finxAcademy .classListPage .timeDate{
    display: flex; gap: 8px;
    align-items: center;
    justify-content: center;
}
#finxAcademy #ac_paging{
    width: 100%;
    margin: 30px 0;
}
#finxAcademy #ac_paging ul{
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
}
#finxAcademy #ac_paging ul a{
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    display: block;
}
#finxAcademy #ac_paging ul a.page_num{
    font-size: 1rem;
    font-weight: 500;
}
#finxAcademy #ac_paging ul a.page_num.active {
    font-weight: 800;
    color: #4C5EAD;
}
#finxAcademy #ac_paging ul a.page_icon{
    border: 1px solid #b7b7b7;
    font-size: .95rem;
    padding: 5px;
}
#finxAcademy #ac_paging .prev{
    margin-right: 5px;
}
#finxAcademy #ac_paging .next{
    margin-left: 5px;
}
#finxAcademy #ac_paging ul i{
    color: #333;
    font-weight: 700;
}
#finxAcademy #ac_paging .dp_mo input{
    border: 1px solid #b7b7b7;
    padding: 5px;
    font-size: .95rem;
    font-weight: 500;
}
/*페이징 끝 ~~~~~~~~~~~~~~~~~~~~~~~~*/

#finxAcademy.acList .editBtnWrap button{
    display: block;
    padding: 10px 15px;
    font-size: .95rem;
    font-weight: 600;
    background-color: #4C5EAD;
    color: #fff;
    border: 1px solid transparent;
    margin-left: auto;
    border-radius: 5px;
}
#finxAcademy.acList .editBtnWrap button:hover,
#finxAcademy.acList .editBtnWrap button:active{
    background-color: rgba(76, 94, 173, 0.45);
}

/* 아카데미 게시물 상세 페이지 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
.acDetail .topArea{
    margin-bottom: 20px;
}
.acDetail .letterpressArea {
    width: 100%;
}
.acDetail .letterpressArea img{
    max-width: 1200px;
    object-fit: contain;
    width: 90%;
    height: auto;
}
.acDetail table{
    width: 100%;
    border-top: 2px solid rgba(51, 51, 51, 0.7);
    border-bottom: 2px solid rgba(51, 51, 51, 0.7);
}
.acDetail table tr:first-of-type td {
    padding: 12px 5px;
    border-bottom: 1px solid #333 !important;
    background-color: #f1f1f1;
    height: 60px;
}
.acDetail table td {
    vertical-align: middle;
    padding: 15px 10px;
    display: table-cell;
    word-wrap: break-word;
    word-break: keep-all;
    font-size: .9rem;
    min-height: 80px;
}
.acDetail table tr:not(:last-of-type) td {
    border-bottom: 1px solid #eee;
}
.acDetail table td.timeDate{
    width: 30%;
}
.acDetail table td.title{
    font-weight: 700;
    max-width: 400px;
    text-align: left;
    font-size: 1.2rem;
    color: #333;
    box-sizing: border-box;
    word-wrap: break-word;
    word-break: keep-all;
    line-height: 1.5;
}

.acDetail table tr:first-of-type td.th {
    width: 10%;
    text-align: right;
    font-weight: 600;
    font-size: .95rem;
}
.acDetail table tr:not(:first-of-type) td.th {
    width: 10%;
    font-weight: 600;
    background-color: #fafafa;
    text-align: center;
    font-size: .95rem;
}
.acDetail table td.writeDate{
    width: 10%;
    font-size: .85rem;
    font-weight: 600;
}
.acDetail table td.register button {
    border: 1px solid transparent;
    background-color: rgba(76, 94, 173, 0.2);
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    padding: 4px 10px;
    font-weight: 600;
    font-size: .9rem;
    box-sizing: border-box;
    color: #4C5EAD;
}
.acDetail table td.register button.end_btn {
    border: 1px solid transparent;
    background-color: rgba(173, 76, 76, 0.2);
    display: block;
    margin: 0 auto;
    cursor: auto;
    border-radius: 10px;
    padding: 4px 10px;
    font-weight: 600;
    font-size: .9rem;
    box-sizing: border-box;
    color: #ad4c4c;
}
.acDetail table td.timeDate div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}
.acDetail .editBtnWrap{
    display: flex;
    justify-content: right;
    gap: 10px;
    margin-bottom: 20px;
}

.acDetail .editBtnWrap button{
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid transparent;
    font-weight: 700;
    background-color: #fff;
}
.acDetail .editBtnWrap button:hover,
.acDetail .editBtnWrap button:active {
    opacity: .8;
}
.acDetail .editBtnWrap .edit_btn {
    border-color: #4C5EAD;
    color: #4C5EAD;
}
.acDetail .editBtnWrap .del_btn {
    border-color: #ad4c4c;
    color: #ad4c4c;
}

.acDetail .postList {
    border-top: 1px solid rgba(51, 51, 51, 0.7);
    border-bottom: 1px solid rgba(51, 51, 51, 0.7);
    margin: 300px 0 50px;
    padding: 15px 0;
}
.acDetail .postList ul li:first-of-type{
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.acDetail .postList dl{
    display: flex;
    gap: 30px;
    padding: 0 10px;
}
.acDetail .postList dt{
    font-weight: 700;
    font-size: .95rem;
}
.acDetail .postList dd{
    width: 90%;
}
.acDetail .postList dd a{
    font-size: .9rem;
    font-weight: 500;
    color: #333;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.acDetail .postList dd a:hover,
.acDetail .postList dd a:active{
    text-decoration: underline;
}
/* 상세페이지 끝 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

/* 사용자 신청 입력 폼 시작 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.acRegisterForm table{
    width: 100%;
    margin-bottom: 100px;
}

.acRegisterForm table caption,
.acRegisterForm table .point,
.acRegisterForm .personalInformation input+label .point{
    color: #ad4c4c;
    font-weight: 700;
}

.acRegisterForm table caption{
    text-align: right;
    font-size: .95rem;
    margin-bottom: 5px;
}
.acRegisterForm table ,
.acWriteForm table{
    border-top: 2px solid #333;
}
.acRegisterForm table td,
.acWriteForm td{
    padding: 20px 10px;
    min-height: 70px;
    font-size: .9rem;
    font-weight: 500;
}
.acRegisterForm table td,
.acWriteForm td{
    border-bottom: 1px solid #eee;
}
.acRegisterForm table td.th,
.acWriteForm td.th{
    font-weight: 800;
    letter-spacing: 1px;
}
.acRegisterForm table td >div:not(.telWrap),
.acRegisterForm table .telWrap input,
.acRegisterForm .personalInformation p ,
.acWriteForm td input{
    border: 1px solid rgba(76, 94, 173, 0.45);
    padding: 10px;
    border-radius: 5px;
}
.acRegisterForm table .telWrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.acRegisterForm table .telWrap input{
    max-width: 120px;
}
.acRegisterForm .personalInformation h2 {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.acRegisterForm .personalInformation h2 i{
    display: inline-block;
    margin-right: 5px;
    color: #4C5EAD;
}
.acRegisterForm .personalInformation p {
    width: 100%;
    max-height: 200px;
    margin-bottom: 20px;
    overflow-y: auto;
    font-size: .95rem;
    background-color: rgba(76, 94, 173, 0.05);
    line-height: 1.8;
    border-color: #b7b7b7;
}
.acRegisterForm .personalInformation p span{
    color: rgba(76, 94, 173, 0.8);
    font-weight: 600;
    margin-top: 15px;
    display: block;
}
.acRegisterForm .personalInformation .chkArea {
    margin: 20px 0;
}
.acRegisterForm .personalInformation input{ display: none;}
.acRegisterForm .personalInformation input+label{
    font-size: .95rem;
    position: relative;
    font-weight: 600;
    color : #666;
    padding-left: 30px;
}
.acRegisterForm .personalInformation input+label:before{
    content: ''; position: absolute; top: 50%; transform: translateY(-50%); left: 0;
    border: 1px solid #b7b7b7;
    border-radius: 2px;
    background-color: #fff;
    width: 18px; height: 18px;
}
.acRegisterForm .personalInformation input:checked + label {
    font-weight: 700;
    color: #4C5EAD;
}
.acRegisterForm .personalInformation input:checked + label:after {
    content: '✔'; color: #4C5EAD;
    font-size: 1rem; font-weight: 700; position: absolute; top: 50%; transform: translateY(-50%); left: 2px;
}

.acRegisterForm .btnWrap ,
.acWriteForm .btnWrap,
.acDetail .letterpressArea +.btnWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 50px;
}
.acRegisterForm .btnWrap button,
.acWriteForm .btnWrap button,
.acDetail .letterpressArea +.btnWrap button{
    width: 30%;
    max-width: 150px;
    height: 50px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 5px;
    border: 1px solid transparent;
    color: #fff;
}
.acRegisterForm .btnWrap button#registerSubmit_btn ,
.acWriteForm .btnWrap button#writeSubmit_btn,
.acDetail .letterpressArea +.btnWrap button.proposal_btn{
    background-color: #4C5EAD;
}
.acRegisterForm .btnWrap button#cancel_btn,
.acWriteForm .btnWrap button#cancel_btn,
.acDetail .letterpressArea +.btnWrap button.list_btn{
    background-color: #333;
}

.acRegisterForm .btnWrap button#registerSubmit_btn:hover,
.acRegisterForm .btnWrap button#registerSubmit_btn:active,
.acWriteForm .btnWrap button#writeSubmit_btn:hover,
.acWriteForm .btnWrap button#writeSubmit_btn:active,
.acDetail .letterpressArea +.btnWrap button.proposal_btn:hover,
.acDetail .letterpressArea +.btnWrap button.proposal_btn:active{
    background-color: rgba(76, 94, 173, 0.8);
}
.acRegisterForm .btnWrap button#cancel_btn:hover,
.acRegisterForm .btnWrap button#cancel_btn:active ,
.acWriteForm .btnWrap button#cancel_btn:hover,
.acWriteForm .btnWrap button#cancel_btn:active,
.acDetail .letterpressArea +.btnWrap button.list_btn:hover,
.acDetail .letterpressArea +.btnWrap button.list_btn:active{
    background-color: rgba(51, 51, 51, 0.8);
}

/* 사용자 신청 입력 폼 끝 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


/* 클래스 작성 폼 시작 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.acWriteForm{
    padding: 100px 0;
}
.acWriteForm .write-inner {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}
.acWriteForm table{
    width: 100%;
    border-top: 1px solid #333;
    margin: 50px 0;
}
.acWriteForm table input{
    padding: 15px;
    font-size: .9rem;
}
.acWriteForm table .nameWrap input,
.acWriteForm table .placeWrap input{
    width: 100%;
}
.acWriteForm table td.th{
    max-width: 80px;
}
.acWriteForm table .periodWrap input{
    max-width: 50px;
}
.acWriteForm table .weekWrap{
    min-height: 60px;
    display: flex;
    gap: 5px;
}
.acWriteForm table .weekWrap input{ display: none;}
.acWriteForm table .weekWrap label{
    color: #4C5EAD;
    border: 1px solid rgba(76, 94, 173, 0.45);
    border-radius: 5px;
    height: 100%;
    padding: 10px;
    font-weight: 500;
}
.acWriteForm table .weekWrap input:checked + label{
    background-color: rgba(76, 94, 173, 0.1);
    color: #4C5EAD;
    font-weight: 700;
}
.acWriteForm table .timeWrap{
    display: flex;
    width: 100%;
    gap: 5px;
    align-items: center;
}
.acWriteForm table .timeWrap >div {
    position: relative;
}

.acWriteForm table .timeWrap i{
    font-size: 23px;
    position: absolute;
    top: 50%; transform: translateY(-50%);
    right: 40px;
    z-index: 10;
    background-color: #fff;
}
/* 에디터  css 시작 ~~~*/
.acWriteForm .tox .tox-statusbar {
    display: none;
}
.acWriteForm .tox .tox-edit-area::before{
    border: 1px solid rgba(76, 94, 173, 0.45);
    outline: 1px solid transparent;
}
.acWriteForm .tox-tinymce{
    border: 1px solid rgba(76, 94, 173, 0.45);
}
.acWriteForm .tox .tox-promotion{
    display: none !important;
}
/* 클래스 작성 폼 끝 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/














/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@반응형 시작!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

@media all and (min-width: 1024px) {
    .dp_pc{
        display: flex ;
    }
    .dp_mo{
        display: none !important;
    }
}



/*tablet*/

@media all and (max-width: 1023px) {

    .dp_mo{
        display: none !important;
    }

    #finxAcademy .academy-hero h1{
        font-size : 2rem;
    }
    /* about 페이지 시작 --------------*/
    #finxAcademy .frontrunner-content,
    #finxAcademy .story-grid,
    #finxAcademy .innovation-item{
        display: flex;
        flex-direction: column;
    }
    #finxAcademy .frontrunner-image-area{
        height: 300px;
    }
    #finxAcademy .frontrunner-text h2{
        font-size: 2.5rem;
        line-height: 1.5;
    }
    #finxAcademy .frontrunner-card h4,
    #finxAcademy .stat-number span{
        font-size: 1.2rem;
        line-height: 1.5;
    }

    /* list 페이지 시작 ----------------*/

    #listFilter{
        min-width: 180px;
        max-width: 180px;
        position: unset;
    }
    #finxAcademy .acList-inner .right{
        width: calc(95% - 180px);
    }
    #finxAcademy .title h2{
        font-size: 1.25rem;
    }
    #finxAcademy .academy-hero{
        height: 25vh;
    }
    #finxAcademy #acBigTab a{
        padding: 20px 0;
    }
    #finxAcademy #ac_paging ul.dp_pc{
        display: flex !important;
    }
    #finxAcademy #ac_paging ul.dp_mo{
        display: none !important;
    }

    #finxAcademy .acList-inner{
        width: 95%;
        margin: 50px auto;
    }
}






/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@모바일 시작!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
@media all and (max-width: 768px) {
    .dp_pc{
        display: none !important;
    }
    .dp_mo{
        display: flex !important;
    }
    #finxAcademy .academy-hero{
        height: 20vh;
    }
    #finxAcademy .academy-hero h1{
        font-size: 1.4rem;
    }
    /*아카데미 About 페이지 시작 ---------------------*/

    #finxAcademy .innovation-section{
        padding: 50px 0;
    }
    #finxAcademy .innovation-visual{
        padding: 1.5rem 1rem;
    }


    /*아카데미 리스트 페이지 시작   --------------------*/
    #finxAcademy .acList-inner{
        flex-direction: column;
        gap: 50px;
    }
    #finxAcademy .acList-inner >* ,
    #finxAcademy .acList-inner .right{
        width: 100%;
        min-width: unset;
        max-width: unset;
    }
    #finxAcademy .title h2{
        font-size: 1.8rem;
    }
    #finxAcademy #filter .enterTxt{
        display: flex;
        gap: 10px
    }
    #finxAcademy #filter input,
    #finxAcademy #filter select{
        height: 40px;
        width: 70px;
        font-size: .9rem;
    }
    #finxAcademy #filter input{
        min-width: 150px;
    }
    #finxAcademy .classListPage table tr{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 0 10px;
        border-bottom: 1px solid #b7b7b7;
    }
    #finxAcademy .classListPage table thead{
        display: none !important;
    }
    #finxAcademy .classListPage table td{
        display: flex;
        align-items: center;
        height: 30px;
    }
    #finxAcademy .classListPage table tr:not(:last-of-type) td,
    #finxAcademy .classListPage table td{
        border-bottom: 1px solid transparent;
    }
    #finxAcademy .classListPage table td.title{
        width: 90%;
        max-width: 90%;
        padding: 10px 0 ;
        font-size: .95rem;
        font-weight: 800;
        order: 1;
        min-height: 45px;
        height: auto;
    }
    #finxAcademy .classListPage table td.title a{
        width: 90%;
    }
    #finxAcademy .classListPage table td{
        padding: 0 10px;
        font-weight: 600;
        height: auto;
        line-height: 1.3;
        min-height: 30px;
        font-size: .85rem;
    }
    #finxAcademy .classListPage table td:not(.title){
        text-align: left;
    }
    #finxAcademy .classListPage table td.timeDate{
        order: 2;
    }
    #finxAcademy .classListPage table td:not(:last-of-type) {
        position: relative;
    }
    #finxAcademy .classListPage table td:not(.title):not(:last-of-type):not(.place):not(.charge):after{
        content: ''; width: 1px; height: 13px; position: absolute;
        top: 50%; transform: translateY(-50%); right: 1px; background-color: #333;
    }

    #finxAcademy .classListPage table td.lector{order: 3; padding: 0 8px 0 0}
    #finxAcademy .classListPage table td.timeDate{order: 4;}
    #finxAcademy .classListPage table td.period{order: 5;}
    #finxAcademy .classListPage table td.place{order: 6;}
    #finxAcademy .classListPage table td.charge{
        order: 7;
        padding: 10px 0 10px 0;
    }
    #finxAcademy .classListPage table td.charge:after{
        content: '원'; font-size: .85rem; color: #333; margin-left: 2px; font-weight: 600;
    }
    #finxAcademy .classListPage table td:last-of-type{
        order: 2;
        width: 10%;
    }

    #finxAcademy .classListPage table td:last-of-type .proposal_btn{
        padding: 4px 5px;
        border-radius: 0;
        font-size: .9rem;
     }

    #finxAcademy #ac_paging ul.dp_pc{
        display: none !important;
    }
    #finxAcademy #ac_paging ul.dp_mo{
        display:  flex !important;
    }

    #finxAcademy #ac_paging ul.dp_mo{
        flex-wrap: wrap;
    }
    #finxAcademy #ac_paging ul a.page_icon,
    #finxAcademy #ac_paging .dp_mo li,
    #finxAcademy .classListPage >p{
        font-size: .9rem;
    }
    #finxAcademy #ac_paging ul a.page_icon{
        padding: 4px;
    }
    #finxAcademy #ac_paging .dp_mo input{
        max-width: 95px;
        margin-right: 5px;
        font-size: .85rem;
    }

    /*     교육 상세페이지 시작 ~~~~~~~~~~~~~~~~~~~~~~~~~*/
    .acDetail table tr:not(:first-of-type) td.th,
    .acDetail table td.th{
        font-size: .9rem !important;
        font-weight: 700;
    }
    .acDetail table td:not(.th) {
        font-size: .9rem !important;
    }
/*     교육 신청 사용자 폼 시작 ~~~~~~~~~~~~~~~~~~~~~~~~~*/
    .acRegisterForm table{
        display: block !important;
        border-top: unset;
    }
    .acRegisterForm table caption{
        font-size: .9rem;
        border-bottom: 2px solid #333;
        padding-bottom: 5px;
        width: 100%;
    }
    .acRegisterForm table td {
        display: grid;
        width: 100%;
        border-bottom: 1px solid transparent;
        min-height: 40px;
        padding: 10px;
    }
    .acRegisterForm table td.th{
        display: flex;
        align-items: flex-start;
    }
    .acRegisterForm table td:last-of-type{
        border-color: #eee;
    }
    .acRegisterForm table .telWrap input[type=number]{
        max-width: 82px !important;
    }

/*    관계자 교육 등록 폼 시작 --------------------------------*/
    .acWriteForm table,
    .acWriteForm table tr{
        display: flex;
    }
    .acWriteForm table tr{
        flex-direction: column;
    }
    .acWriteForm table tr,
    .acWriteForm td{
        width: 100%;
    }
    .acWriteForm td:first-of-type{
        border-color: transparent;
        padding: 10px;
        min-height: 20px;
    }
    .acWriteForm table td.th{
        max-width: unset;
    }
    .acWriteForm table input{
        padding:  10px 8px;
    }
    .acWriteForm td:last-of-type{
        padding: 0 10px;
        width: 100%;
        max-width: 768px;
    }
    .acWriteForm table .weekWrap{
        min-height: 40px;
    }

    .acWriteForm table tr:nth-of-type(3) td:last-of-type {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding-bottom: 10px;
    }
    .acWriteForm table .timeWrap{
        flex-direction: column;
        align-items: flex-start;
    }
    .acWriteForm #tinymce div.textBox {
        padding: unset !important;
    }
}

































