@charset "UTF-8";
#side_nav .basic {
    display: block;
}

.cont_all_wrap {
    position: relative;
    display: flex;
    margin: 0 auto;
}

.page_wrap {
    width: 100%;
    padding-top: 20px;
}


/*--------------------------------------------------
**************************************************
新着情報
**************************************************
--------------------------------------------------*/

.information {
    position: relative;
    width: calc(100% - 20px);
    height: auto;
    background: #fff;
    border: 3px solid #e5e5de;
    border-radius: 20px;
    padding: 20px 20px;
    margin: 30px auto 20px auto;
}

.information .title_info {
    font-size: 15px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.2em;
}

.more_btn {
    position: absolute;
    top: 10px;
    right: 10px;
}

.more_btn a {
    display: flex;
    width: 100px;
    height: 30px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    background: #a5a294;
    border-radius: 6px;
    padding: 5px 10px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.more_btn a:hover,
.information ul li a:hover {
    opacity: 0.8;
}

.more_btn a .text {
    font-size: 12px;
}

.more_btn a .arrow_icon {
    display: inline-block;
    width: 6px;
    margin-left: 12px;
}

.information ul {
    margin-top: 10px;
}

.information ul li {
    position: relative;
    display: block;
    height: 50px;
    font-size: 12px;
    letter-spacing: 0.1em;
}

.information ul li a {
    display: flex;
    height: 100%;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    align-items: center;
    transition: opacity 0.3s;
}

.information ul li a .date {
    display: block;
    width: 120px;
    letter-spacing: 0;
}

.information ul li a .titletext {
    display: block;
    width: calc(100% - 120px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.information ul li::before {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 1px dashed #eeeee7;
}

.information ul li:last-child::before {
    border-bottom: unset;
}

.information .info_top {
    position: relative;
    font-size: 12px;
    padding-bottom: 30px;
}

.information .info_top::before {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    right: 0;
    bottom: 15px;
    border: 1px dashed #eeeee7;
}

.information .info_top .date {
    line-height: 30px;
}

.information .info_top .title {
    letter-spacing: 0.1em;
    line-height: 30px;
}

.information .info_text {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 25px;
}

@media (max-width: 400px) {
    .information ul li a {
        flex-direction: column;
        align-items: flex-start;
    }
    .information ul li a .titletext {
        width: 100%;
    }
}