/* 첫화면 */
 .layout-firstmain .layout{
    display:flex;
 }
.layout-firstmain .header{
    display:none;     
} 
.layout-firstmain .main{
    margin-bottom:20px;
}
.layout-firstmain .firstmain{
    width:100%;
    height:100%;      
    align-items:center;
    display:grid;
    grid-template-rows:1fr 160px;
}

.layout-firstmain .first_title{    
    font-family:"Prata";
    font-size:30px;
    color:#1f1f1f;
    display:flex;
    justify-content: center;
    align-items: center;
}

.layout-firstmain .first_btn_wrap{
    width:100%;
    display:flex;
    flex-direction:column;  
    align-items:center;
    gap:10px;  
}

.layout-firstmain .first_btn{
    background-color:#CB7658;
    border:none;
    width:100%;
    height:48px;
    font-family:'Spoqa Han Sans Neo';
    font-weight:500;
    color:#ffffff;   
    display:flex;
    justify-content: center; 
    align-items:center;
}
.layout-firstmain .first_btn:last-child{
    background-color:transparent;
    font-weight:400;    
    color:#989898;
}
.layout-firstmain a:visited{
    color:#fff;
}
.layout-firstmain .footer{
    display:none;
}

@media screen and (min-width:360px){
    .layout-firstmain .first_btn_wrap button{
        width:320px;
    }
}