/* BASIC css start */
.sub_common_title {text-align:center; font-size:28px; color:#000; line-height:1; font-weight:400; font-family:'Montserrat', sans-serif; padding-top:100px;}


/* styles.css */
.body2 {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0; /* ¹è°æ »ö»ó */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px; /* ½½¶óÀÌµå¿Í Ãß°¡ ÀÌ¹ÌÁö »çÀÌ¿¡ ¿©¹é Ãß°¡ */
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    height: 600px; /* ½½¶óÀÌµå ³ôÀÌ Á¶Á¤ °¡´É */
}

button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.additional-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* ÀÌ¹ÌÁö°¡ ÄÁÅ×ÀÌ³ÊÀÇ ³Êºñ¿¡ ¸ÂÃç ÁÙ ¹Ù²ÞµÇµµ·Ï ¼³Á¤ */
    gap: 10px; /* ÀÌ¹ÌÁö °£ÀÇ °£°Ý ¼³Á¤ */
    padding: 10px; /* ÄÁÅ×ÀÌ³ÊÀÇ ¿©¹é ¼³Á¤ */
}

.additional-images img {
    width: 1200px; /* Ãß°¡ ÀÌ¹ÌÁöÀÇ °¡·Î »çÀÌÁî ¼³Á¤ */
    height: auto; /* ÀÚµ¿À¸·Î ³ôÀÌ Á¶Àý */
}

/* BASIC css end */

