/**************

common

**************/

.information {
    padding-top: 80px;
}

/**************

inner

**************/

.information__inner ul li {
    border-top: 1px solid #D5D5D5;
    display: flex;
    flex-direction: column;
    padding: 32px 16px;
}

.information__inner ul li:last-child {
    border-bottom: 1px solid #D5D5D5; 
}

.information__inner ul li a {
    display: flex;
    justify-content: space-between;
}

.information__inner ul li a:hover .information__inner-txt h5 {
    text-decoration: underline;
}

.information__inner-txt {
    column-gap: 24px;
    display: flex;
    width: 95%;
}

.information__inner-txt p {
    font-weight: 500;
}

.information__inner-txt h5 {
    font-size: 16px;
}

.information__inner-arrow {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    width: 5%; 
}

.information__inner-arrow img {
    height: 15px;
    width: 8px;
}

/**************

page

**************/

.information__page {
    margin-top: 40px;
}

.information__page ul {
    align-items: center;
    display: flex;
    column-gap: 16px;
    justify-content: center;
}

.information__page ul li a {
    display: flex;
    border: 1px solid #1C1C1C;
    border-radius: 50%;
    align-items: center;
    color: #1C1C1C;
    font-weight: bold;
    justify-content: center;
    font-size: 16px;
    height: 40px;
    width: 40px;
}

/**************

notice

**************/

.notice {
    padding-top: 160px;
}

.notice__title {
    display: flex;
    flex-direction: column;
    row-gap: 8px;    
}

.notice__title h3 {
    font-weight: 600;
    line-height: 32px;
}

.notice__title p {
    font-weight: 600;  
}

.notice__inner {
    display: flex;
    flex-direction: column;
    row-gap: 32px;    
}

.nav-links {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 2px solid #1C1C1C;
    border-bottom: 2px solid #1C1C1C;
}

.nav-previous {
    padding: 24px 0 24px 16px;  
    border-right: 2px solid #1C1C1C;
    display: flex;
    width: 50%;    
}

.nav-previous a {
    font-weight: 500;
}

.nav-next {
    padding: 24px 16px 24px 0;
    display: flex;
    width: 50%;     
    justify-content: flex-end; 
}

.nav-next a {
    font-weight: 500;
}

.notice__list a.btn {
    display: flex;
    border-radius: 58px;
    background: #ffffff;
    border: 1px solid #1C1C1C;
    color: #1C1C1C;
    justify-content: center;
    letter-spacing: 0;  
    font-weight: 600;
    padding: 14px 0;
    transition: .2s;
    margin: 40px auto 0 auto;
    width: 240px;
}

.notice__list a.btn:hover {
    background: #1C1C1C;
    color: #ffffff;
}