/* @SC 2025/12/02 #10708 お知らせ機能追加 */

/*******************************/
/* 共通
/*******************************/
body {
    background-color: #f7f7f7;
}

.contents {
    background-color: #fff;
    max-width: 780px;
    margin: 0 auto;
}

.contents h2 {
    font-size: 32px;
    font-weight: bold;
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #f2f2f2;
}

.contents .notice-info {
    display: flex;
    justify-content: space-between;
}

.notice-info .category-name {
    background-color: #f7f7f7;
    padding: 3px 7px 3px 7px;
    border-radius: 10px;
}


/*******************************/
/* 一覧画面
/*******************************/
.notice-box {
    padding: 16px;
    border-bottom: 1px solid #f2f2f2;
}

.notice-box .notice-title {
    font-size: 18px;
}

.notice-box .unread-text {
    color: red;
    font-weight: bold;
}

.notice-list .no-content {
    padding: 20px;
    text-align: center;
    font-size: 18px;
}

.notice-box.inactive,
.no-content.inactive {
    display: none;
}

.notice-list .arrow-navi {
    margin-bottom: 10px;
}

.notice-list .error {
    border-bottom: 1px solid #f2f2f2;
    padding: 10px;
}

.notice-list .error span {
    color: red;
}


/*******************************/
/* 詳細画面
/*******************************/
.notice-detail {
    padding: 16px;
}

.notice-detail .notice-info {
    padding-right: 30px;
    padding-left: 30px;
}

.notice-detail .notice-title {
    display: flex;
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 2.5px solid #eeeeee;
}

.notice-detail .notice-title span {
    flex: 1;
    text-align: center;
}

.notice-detail .notice-error {
    padding-top: 10px;
    font-size: 20px;
    text-align: center;
}

.notice-detail .return-button {
    display: flex;
    align-items: center;
}

.notice-detail .return-button p {
    width: 10px;
    height: 10px;
    border-bottom: 3px solid #575757;
    border-left: 3px solid #575757;
    transform: rotate(45deg);
}