/* 공통 */
body {
    font-family: 'Noto Sans KR', sans-serif;
    background: #f4f6f8;
}

html, body {
    width: 100%;
    margin: 0;
    min-height: 100vh;
}

a { text-decoration: none; color: #333; }

/* 메인 비주얼 */
.main-visual {
    height: 320px;
    background: url('../img/visual.jpg') center/cover no-repeat;
    position: relative;
}

.visual-text {
    position: absolute;
    left: 15%;
    top: 40%;
    color: #fff;
}

.visual-text h2 {
    font-size: 48px;
    line-height: 1.2;
}

/* 전체 레이아웃 */
.main-wrap {
    width: 1195px;
    display: flex;
;
}

.center-panel {
	width:580px;
}

/* 좌측 */
.left-panel {
    width: 240px;
    background: #1f5c8f;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
}

.left-panel input {
    width: 100%;
    margin-bottom: 8px;
}

.left-info {
    margin-top: 20px;
    font-size: 14px;
}

.support-box {
    background: #eff4f8;
    padding: 30px;
    color: #49759d;
    height: 296px;
}

.support-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.notice-box {
    background: #eff4f8;
    padding: 30px;
    height: 255px;
}

/* 우측 */
.right-panel {
    margin-left: 0px;
    width: 396px;
}

.brand-box,
.trade-box {
    background: #fff;
    padding: 30px 45px 13px;
}

.brand-box h3,
.trade-box h3 {
}

.brand-box ul li,
.trade-box ul li {
    margin-bottom: 8px;
}

.trade-box {
	height:255px;
}

.brand-box ul li a {
    display: block;
    padding: 10px;
    border: 1px solid #ddd;
    background: #f9f9f9;
}

.btn.icon_after_more {
    display: block;
    padding: 0 20px 0 8px;
    height: 28px;
    color: #555;
    line-height: 26px;
    font-size: 14px;
    border: 1px solid #c2c2c2;
    background-color: #fff;
    text-align: left;
}

a[class*="btn"], button[class*="btn"], strong[class*="btn"] {
    display: inline-block;
    text-align: center;
    vertical-align: top;
}

.btn.icon_after_more.pt_color:after {
    background-position: 0 -20px;
}

.btn[class*="icon_after"]:after {
    content: "";
    margin-left: 10px;
}

.btn[class*="icon"]:before, .btn[class*="icon"]:after {
    display: inline-block;
    vertical-align: middle;
}

.btn.icon_after_more:after {
    position: absolute;
    top: 50%;
    right: 7px;
    margin-top: -5px;
    width: 6px;
    height: 10px;
    background: url(/image/icon_arrow_more.png) no-repeat 0 0;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 0px;
    padding: 15px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.icon-grid-bottom {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 26px 0px;
    padding: 15px;
}

.icon-item-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
}

.tit_area_ms {
    position: relative;
}

.sec_msd {
    position: relative;
    background: url(/image/bg_dotted.gif) repeat-x 0 0;
}

.sec_msd.no_line {
    background-image: none;
}

.sec_msd.only .tit_area_msd {
	padding-left:15px;
    padding-right: 80px;
}

.tit_area_msd {
    padding: 5px 0;
}

.tit_area_msd > * {
    float: left;
}

.tit_ms02 {
    color: #555;
    line-height: 22px;
    font-size: 16px;
}

.tit_area_msd:after {
    content: "";
    display: block;
    clear: both;
}

.sec_msd.only .btn_area {
    position: absolute;
    top: 6px;
    right: 0;
    margin: 0;
}

.btn.c00 {
    color: #fff;
    border-color: #777a96;
    background-color: #777a96;
}

.btn.s01 {
    padding: 0 6px;
    min-width: 70px;
    height: 20px;
    line-height: 18px;
    font-size: 12px;
}

.btn {
    position: relative;
    padding: 0 10px;
    font-weight: 500;
    border: 1px solid #666;
}

.pt_bg {
    background-color: #206fcf !important;
}

.pt_border {
    border-color: #206fcf !important;
}

.pt_color {
    color: #206fcf !important;
}

/* 새로 추가 */
.right-fill {
    flex: 1;
    background: #fbfbfb;
}

/* 반응형 */
@media (max-width: 1200px) {
    .main-wrap {
        flex-direction: column;
        margin-top: 20px;
    }

    .left-panel,
    .right-panel {
        width: 100%;
    }
}