
@media screen and (max-width: 480px) {
    /* ¸ð¹ÙÀÏ ½ºÅ¸ÀÏ */
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    /* ÅÂºí¸´ ½ºÅ¸ÀÏ */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
	
}

header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
	height: 60px;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    font-size: 1.5em;
    font-weight: 700;
}
.logo img {
    height: 100%;
    width: auto;
}
.phone-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
}

.phone-icon img {
    width: 100%;
    height: 100%;
}

.menu-toggle {
    /*
	cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
	*/
	cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
}


.bar {
   
	background-color: #333;
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}
.bar:nth-child(1) { top: 0; }
.bar:nth-child(2) { top: 11px; }
.bar:nth-child(3) { top: 22px; }

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 50px;
    right: -100%;
    width: 55%;
    height: calc(100% - 50px);
    background-color: #fff;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.main-menu {
    list-style: none;
    padding: 20px;
}

.main-menu > li {
    margin-bottom: 15px;
}

.menu-item {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
}

.menu-item:hover, .menu-item:focus {
    background-color: #f0f0f0;
}

.sub-menu {
    list-style: none;
    padding-left: 20px;
    display: none;
}

.sub-menu li a {
    display: block;
    padding: 8px 10px;
    color: #666;
    text-decoration: none;
}

main {
    padding-top: 70px;
}

.hero {
    background-color: #3498db;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.hero h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.content {
    padding: 20px;
}
/*
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
	z-index: 10;
    width: 100%;
}
*/
.container {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 200px; /* ¸ð¹ÙÀÏ¿¡¼­ÀÇ ±âº» ³ôÀÌ */
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* ¹è°æ ÀÌ¹ÌÁö À§¿¡ ¿À¹ö·¹ÀÌ Ãß°¡ (¼±ÅÃ»çÇ×) */
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* °ËÀº»ö ¹ÝÅõ¸í ¿À¹ö·¹ÀÌ */
    z-index: 1;
}

/* ¼½¼Ç ³» ÄÜÅÙÃ÷ ½ºÅ¸ÀÏ¸µ */
.container * {
    position: relative;
    z-index: 2;
    color: white;
}

/* ¸ð¹ÙÀÏ ÃÖÀûÈ­¸¦ À§ÇÑ ¹Ìµð¾î Äõ¸® */
@media screen and (max-width: 768px) {
    .container {
        background-size: contain;
        min-height: 150px; /* ´õ ÀÛÀº È­¸é¿¡¼­ÀÇ ³ôÀÌ Á¶Á¤ */
    }
}

@media screen and (max-width: 480px) {
    .container {
        min-height: 100px; /* ¸Å¿ì ÀÛÀº È­¸é¿¡¼­ÀÇ ³ôÀÌ Á¶Á¤ */
        padding: 15px;
    }
}
@media screen and (max-width: 400px) {
    .image-container {
        height: calc(100vh - 120px); /* Çì´õ¿Í ÇªÅÍ ³ôÀÌ¸¦ »« °ª */
    }

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* ÀÌ¹ÌÁö¸¦ È­¸é¿¡ ²Ë Ã¤¿ò */
    }
}


/* ÅØ½ºÆ® ½ºÅ¸ÀÏ¸µ ¿¹½Ã (ÇÊ¿ä¿¡ µû¶ó Á¶Á¤) */
.container h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.container p {
    font-size: 16px;
    line-height: 1.5;
}

@media screen and (max-width: 480px) {
    .container h2 {
        font-size: 20px;
    }

    .container p {
        font-size: 14px;
    }
}
/*====================================================================================*/
#floating-menu {
    position: fixed;
    top: 50vh;
    right: -180px;
    transform: translateY(-50%);
    width: 200px;
    background-color: #4e5073;
    color: #fff;
    transition: right 0.3s ease;
    z-index: 9999;
    border-radius: 10px 0 0 10px;
}

#floating-menu .menu-icon,
#floating-menu .close-icon {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #4e5073;
    color: #fff;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 10px 0 0 10px;
}

#floating-menu .close-icon {
    display: none;
}
#floating-menu .menu-icon {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #4e5073;
    color: #fff;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 10px 0 0 10px;
}

#floating-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#floating-menu ul li {
    padding: 10px;
}

#floating-menu ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

#floating-menu ul li a:hover {
    background-color: #2e4058;
	color:#fff;
}
/* Ãß°¡ºÎºÐ */


/*=============================================*/
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white; /* ÅØ½ºÆ® »ö»ó */
    z-index: 1; /* ÀÌ¹ÌÁö À§¿¡ Ç¥½Ã */
}

.content h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.content p {
    font-size: 1em;
    margin-bottom: 1em;
}


@media (max-width: 768px) {
    header {
        height: 50px; /* ¸ð¹ÙÀÏ¿¡¼­ Çì´õ ³ôÀÌ ÁÙÀÓ */
    }

    .logo {
        max-height: 40px; /* ¸ð¹ÙÀÏ¿¡¼­ ·Î°í Å©±â ÁÙÀÓ */
    }

    .phone-icon {
        width: 25px;
        height: 25px;
    }
}
/*===========================================================*/
#nav-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

#nav-buttons button {
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
}

#naverNavBtn {
    background-color: #2DB400;
}

#kakaoNavBtn {
    background-color: #FFCD00;
    color: #3C1E1E;
}
/*************************************************************************/
.faq-container {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        .faq-item {
            border-bottom: 1px solid #e0e0e0;
        }
        .faq-question {
            display: block;
            padding: 20px;
            background-color: #f9f9f9;
            color: #2c3e50;
            cursor: pointer;
            position: relative;
            transition: background-color 0.3s ease;
        }
        .faq-question:hover {
            background-color: #ececec;
        }
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            font-weight: bold;
        }
        .faq-question.active::after {
            content: '-';
        }
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        .faq-answer.show {
            padding: 20px;
            max-height: 500px;
        }
	/************************************************************/
	/***************************************************************/
  .container7 {
    width: 95%;
    padding: 10px;
    box-sizing: border-box;
}

.section {
    width: 100%;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.button-grid button {
    padding: 10px;
    font-size: 14px;
    border: none;
    background-color: #4a90e2;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.button-grid button:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.content-container {
    margin-top: 10px;
}

.field {
    padding: 10px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.field:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.scroll-container {
    height: 300px; /* ¿øÇÏ´Â ³ôÀÌ·Î Á¶Á¤ */
    overflow: hidden;
    position: relative;
}

.scroll-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    animation: scroll 120s linear infinite; /* 30ÃÊ µ¿¾È ½ºÅ©·Ñ, ÇÊ¿ä¿¡ µû¶ó Á¶Á¤ */
}

.field {
    padding: 10px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

/* ¸¶¿ì½º È£¹ö ½Ã ¾Ö´Ï¸ÞÀÌ¼Ç ÀÏ½Ã Á¤Áö */
.scroll-container:hover .scroll-content {
    animation-play-state: paused;
}
	
/**************************************************************/
h2 {
    color: #357abd;
    font-size: 1.6em;
    margin-bottom: 0px;
	margin-left:10px;
}