/* BASIC css start */
/* 여닫는 버튼 */
        .accordion {
            /* width : 1100px; */
            background-color: #fff;
            color: #444;
            /* 커서 모양 변경 */
            cursor: pointer;
            padding: 18px;
            width: 1100px;
            border: 2px solid lightgray;
            text-align: left;
            outline: none;
            font-size: 15px;
            transition: 0.5s;
            margin: 5px 0 5px 0;
            /*box-shadow: 1px 1px 1px 1px lightgrey;*/
        }

        /* 클릭됐을 때 배경색 추가(js로 .active 클래스 추가), 호버했을 때 */
        .active,
        .accordion:hover {
            color: #8eaf35;
            font-weight: bold;
        }

        /* 아코디언 패널(평소엔 숨겨져 있음) */
        .panel {
            padding: 0 18px;
            background-color: #eee;
            max-height: 0;
            overflow: hidden;
            width: 1064px;
            line-height: 30px;
            transition: max-height 0.3s ease-out;
            font-size:15px

        }
        
        .panel p {padding : 10px 0;}
        
        .font-color-change{
            color : #af8540;
        }
        
/* BASIC css end */

