<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">  .scroll-container {
            position: relative;
            width: 100%;
            height: 50px; /* 肄섑뀗痢� �믪씠 */
            overflow: hidden;
            border: 1px solid #ccc;
            display: flex;
            align-items: center;
            margin: 0px auto; /* 媛��대뜲 �뺣젹 */
        }
        .scroll-content {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            scroll-behavior: smooth; /* �ㅽ겕濡� 遺��쒕읇寃� */
            height: 100%;
        }
        .scroll-content::-webkit-scrollbar {
            display: none; /* �ㅽ겕濡ㅻ컮 �④린湲� */
        }
        .scroll-content .div_arr {
            flex: 0 0 auto;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 5px; /* �대� �щ갚 */
            /* background-color: #f0f0f0;
            border: 1px solid #ddd; */
            white-space: nowrap; /* �띿뒪�� 以꾨컮轅� 諛⑹� */
        }
        .scroll-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            background-color: #FFFFFF;
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10; /* 踰꾪듉�� 肄섑뀗痢� �꾩뿉 �ㅻ룄濡� */
        }
        .scroll-button:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }
        .scroll-button.left {
            left: 0px;
			padding-right:10px;
			border-radius: 0px 50% 50% 0px;	
        }
        .scroll-button.right {
            right: 0px;
			padding-left:10px;
			border-radius: 50% 0px 0px 50% ;		
        }

		/* 紐⑤컮�쇨린湲� */
@media only screen and (max-width: 320px) {
.sub_menu_m {}
}

/* 紐⑤컮�쇨린湲� + �쒕툝由� */
@media only screen and (min-width: 321px) and (max-width: 768px){
.sub_menu_m {}
}

/* �쒕툝由� */
@media only screen and (min-width: 769px) and (max-width: 1200px){
.sub_menu_m {display:none}
}

/* �곗뒪�ы깙 */
@media only screen and (min-width: 1201px) {
.sub_menu_m {display:none}
}</pre></body></html>