body {
    font-family: 'Nanum Gothic', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #333;
    overflow: hidden;
}

a {
    text-decoration: none;
}

img {
    /* img(인라인 요소) 하단에 Baseline 공백을 제거 */
    display: block;
}

/*INNER*/
.inner {
    width: 100%;
    margin: 0 auto;
    position: relative;
    /*background-color: #451555;*/
}

/*HEADER*/
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9;
    background-color: #FAFBFC;
    border-bottom: 1px solid #686868;
}

header .inner {
    height: 60px;
    top: 10px;
    /*background-color: #e51515;*/    
}

header .logo .logo-image{
    height: 24px;
    position: absolute;
    top: 15%;
    left: 2%;
    margin: auto;
  }

header .sub-menu {

    top: 20px;    
    display: flex;
    margin: auto;
    justify-content : center;
    /*border: 1px solid #191919;*/
}
header .sub-menu ul.menu {
    font-family: Arial, sans-serif;
    display: flex;    
    /*background-color: #15e515;*/
}
header .sub-menu ul.menu li {
    position: relative;

    /*background-color: #a50515;*/
}

header .sub-menu ul.menu li::before {
    content: "";
    width: 1px;
    height: 12px;
    background-color: #757575;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

header .sub-menu ul.menu li:first-child::before {
    display: none;
    /*background-color: #a50515;*/
}

header .sub-menu ul.menu li a {
    padding: 12px 12px;
    display: block;
    font-size: 16px;
    color: #454545;
    /*
    background-color: #a5d515;
    */
    
}
header .sub-menu ul.menu li a:hover {
    color: #000;

    /*background-color: #0505a5;*/
}

.dropdown{
    position: absolute;
    top: 0;    
    width:100%;
    height:100%;
    display: flex;
    /*background-color: #158585;*/
}
  
.dropdown-content{

    display : none;
    position : absolute;
    z-index : 1; /*다른 요소들보다 앞에 배치*/    

    margin-top: 40px;
    /*padding-right: 20px;*/


    border: 1px solid #EEE;
    background-color: #FFFFFF; 
}
  
.dropdown-content a{    
    height: 14px;
    display: block;
    font-size: 16px;
    color: #656565;    
    
    background-color: #FFFFFF; 
    border: 1px solid #F9F9F9;
    white-space:nowrap;
}

.dropdown-content option{    
    /*line-height: 4px;
    padding: 4px 10px;*/
    margin-left: 10px;
    width: 80%;
    display: block;
    font-size: 2px;
    border-bottom: 1px solid #A0A0A0;
}

.dropdown:hover .dropdown-content {    
    display: block;
    /*background-color: #858585;*/
}



/*VISUAL*/
.visual {
    margin-top: 80px;
    margin-bottom: 60px;
    /*border: solid 1px #411;
    /*background-position: center;*/
}

.visual > .inner {
    width: 80%;
    left: 5%;    
    /*
    border: solid 1px #F1F;
    background-color: #e57575;*/
}

.visual .inner img {
    width: 80%;

    top: 0;
    bottom: 0;
    left: 0;

    margin-top: 5%;
    margin-bottom: 2%;
    margin-left: 5%;

    /*border: solid 1px #F1F;*/
}

.inner .terms img{
    width: 50%;
    margin-bottom: -4%;
    top: 0;
    bottom: 0;
    left: 0;
    /*border: solid 1px #111;*/
}

.inner .logo{
    width: 20%;
    margin-bottom: 0%;
    top: 0;
    bottom: 0;
    left: 0;
    /*border: solid 1px #111;*/
}

.inner .chart{
    position: relative;
    width: 100%;
    height: 100%;
    /*border: solid 1px #111;*/
}

.inner .description {
    width: 80%;
    position: relative;
    padding: 0%;
    /*border: solid 1px #000;*/
    /*white-space: pre;*/    
}

.inner .address {
    width: 80%;
    
    position: relative;
    padding-top: 2%;
    padding-left: 20%;
    
    white-space: pre-line;
    /*border: solid 1px #FA1;*/

    text-underline-offset: 5px;
}

/*FOOTER*/
footer {
    width: 120%;
    background-color: #D7E7D7;
    background-color: #E7EBE7;
    border-top: 1px solid #333;
}
footer .inner {
    padding: 20px 0 60px 0;
    /*border: solid 2px #FA1;*/
}

footer .copyright {
    color: #111;
    font-size: 12px;
    text-align: center;
    margin-top: 12px;
}
