@charset "utf-8";

@font-face {
    font-family: 'yg-jalnan';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_four@1.2/JalnanOTF00.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
a {
    text-decoration: none !important;
}
body {
    margin: 0;
    padding: 0;
    background: #090909;
    font-family: "yg-jalnan", sans-serif;
}
header {
    background: #121212;
    border-bottom: 1px solid #232323;
    margin-bottom: 10px;
}
footer {
    font-family: san-serif !important;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #555;
    text-align: center;
    padding: 20px 0;
}
.msg-info {
    font-family: san-serif !important;
    font-size: 18px;
    letter-spacing: -2px;
    font-weight: bold;
    margin-bottom: 10px;
}
.container {
    max-width: 1200px;
}
.header {
    display: flex;
    height: 100px;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5px;
    margin-bottom: 20px;
}
.banner img {
    width: 100%;
    height: 75px;
    object-fit: cover;
}
.link-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
}
.link-section div {
    background: #121212;
    border:1px solid #323232;
}
.link-section div h3 {
    border-bottom:1px solid #323232;
}
.link-section div h3:hover {
    background:#000;
}
.link-section div h3 a {
    color: #ddd;
}
.link-section ul {
    list-style-type: none;
    padding: 0;
}
.link-section ul li {
    padding: 5px 0;
}
.link-section ul li:hover {
    background: #000;
}
.title-link {
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    padding-left: 20px;
    text-decoration: none;
    position: relative;
    background-image: url('/Users/acorn/Desktop/assets/images/icon_hand.png');
    background-size: 30px 30px;
    background-repeat: no-repeat;
    font-size: 18px;
    background-position: right 15px top 15px; /* 배경 이미지 위치 */
}
.title-link.subpage {
    text-align: center;
    flex-wrap: wrap;
    padding: 0;
    height: auto;
    background: #000;
}
.title-link.subpage img {
    height: 35px;
    margin: 20px auto;
}
.title-link.subpage strong {
    width: 100%;
    display: block;
    text-align: center;
    background: #121212;
    border-top: 1px solid #323232;
    color: #ddd;
    padding: 10px;
}
.link-list li a {
    display: block;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    color: #ddd;
    font-size: 16px;
    margin-left: 15px;
}
.link-list li:nth-child(1) a {
    color: #e51b00 !important;
}
.link-list li:nth-child(2) a {
    color: #ffb700 !important;
}
.link-list li:nth-child(3) a {
    color: #fff182 !important;
}
.link-icon {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 5px;
}
.icon-img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: .7rem;
    padding-right: .7rem;
}
.visual-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.subnav {
    width: 100%;
    margin-bottom: 10px;
}
.subnav ul {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    list-style: none;
}
.subnav li {
    flex: 1;
    text-align: center;
    box-sizing: border-box;
}
.subnav li:last-child {
    border-right: none;
}
.subnav a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    text-decoration: none;
    color: #aaa;
}
.subnav a.active {
    color: #e51b00;
}
@media (max-width: 768px) {
    .banner {
        grid-template-columns: repeat(2, 1fr);
    }
    .banner img {
        width: 100%;
        height: auto;
        object-fit: initial;
    }
    .link-section {
        grid-template-columns: 1fr;
    }
    .header {
        height: 60px;
        justify-content: center;
    }
    .header .logo img {
        width: 120px;
    }
    .header nav {
        display: none !important;
    }
    footer {
        font-size: 11px;
    }
}