.wrap{
    width: 100% !important;
}

#main.main{
    background-color: var(--white);
    color: var(--text-main);
    padding: 0;
}

.entry-content{
    margin-bottom: 0 !important;
}

/* ファーストビュー */
.firstview-img img {
    object-fit: cover;
    width: 100%;
    object-position: center;
}

/* お知らせタイトル */
.entry-header { 
    background-color: color-mix(in srgb, var(--green-1) 65%, transparent) !important; 
    position: absolute;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 45%;
}

p.entry-title {
    font-weight: bold;
    color: var(--white);
    margin: 0 !important;
    text-align: center;
}

/* 投稿内容 */
.news-detail-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 0 !important;
}

.news-detail-inner {
    border-bottom: 2px solid var(--gray-2);
}

/* お知らせがなかった時 */
.no-news-detail-inner {
    width: 100%;
    text-align: center;
}

.news-detail-inner a:hover{
    color: var(--green-1);
}

/* 投稿タイトル */
.news-detail-title-content {
    border-bottom: 2px solid var(--gray-2);
}

.news-detail-title {
    color: var(--text-main);
}

/* 投稿情報 */
.news-detail-info {
    margin-bottom: 16px;
}

.news-detail-date {
    background: #f8f9fa;
    color: var(--green-1);
    font-weight: bold;
    padding: 0 10px;
}

/* 投稿テキスト */
.news-detail-body p {
    color: var(--text-main);
}

/* お知らせ一覧へ戻るボタン */
.back-archive-button {
    display: flex;
    justify-content: center;
}

.back-archive-button a{
    display: inline-block;
    text-decoration: none;
    color: var(--white);
    background: var(--green-1);
    border: 2px solid var(--green-1);
    border-radius: 50px;
    transition: background 0.3s;
    font-weight: bold;
    padding: 10px 30px;
}

.back-archive-button a:hover {
    background: var(--white);
    color: var(--green-1);
}

/* PC表示（1024px以上） */
@media screen and (min-width: 1024px) {

    /* ファーストビュー */
    .firstview-img {
        height: 430px;
    }

    .firstview-img img {
        height: 380px;
        margin-bottom: 60px;
    }
    
    .entry-header {
        height: 200px;
        top: 252px;
    }
    
    /* お知らせ一覧タイトル */
    p.entry-title{
        font-size: 48px !important;
        margin-right: 25% !important;
    }

    /* お知らせ一覧内容 */
    .news-detail {
        width: 80%;
        margin-top: 60px;
    }

    .news-detail-inner {
        margin-bottom: 50px;
    }

    /* お知らせがなかった時 */
    .no-news-detail-inner {
        margin: 300px 0;
    }

    /* 投稿タイトル */
    .news-detail-title-content {
        margin-bottom: 30px;
    }

    .news-detail-title {
        font-size: 30px;
        margin-bottom: 16px;
    }

    /* 投稿情報 */
    .news-detail-info {
        margin-bottom: 16px;
    }

    .news-detail-date {
        padding: 0 10px;
        margin-bottom: 10px;
    }

    /* 投稿内容 */
    .news-detail-body {
        line-height: 2em;
        margin-bottom: 40px;
    }

    /* 投稿テキスト */
    .news-detail-body p {
        margin-bottom: 10px;
    }

    /* 投稿画像 */
    .wp-block-image{
        margin-top: 20px;
    }

    /* お知らせ一覧へ戻るボタン */
    .back-archive-button {
        margin-bottom: 50px;
    }
}

/* SP表示（1023px以下） */
@media screen and (max-width: 1023px) {  

    /* ファーストビュー */
    .firstview-img img {
        height: 130px;
    }

    .entry-header {
        height: 50px;
        top: 96px;
    }

    /* お知らせ一覧タイトル */
    p.entry-title{
        font-size: 16px;
        margin-right: 2% !important;
    }

    /* お知らせ一覧内容 */
    .news-detail {
        width: 90%;
        margin-top: 30px;
    }

    .news-detail-inner {
        margin-bottom: 20px;
    }

    /* お知らせがなかった時 */
    .no-news-detail-inner {
        margin: 100px 0;
    }

    /* 投稿タイトル */
    .news-detail-title-content {
        margin-bottom: 20px;
    }

    .news-detail-title {
        font-size: 20px;
    }

    /* 投稿情報 */
    .news-detail-info {
        margin-bottom: 10px;
    }

    .news-detail-date {
        padding: 0 6px;
        margin-bottom: 10px;
        font-size: 12px;
    }

    /* 投稿テキスト */
    .news-detail-body p {
        margin-bottom: 10px;
    }

    /* 投稿画像 */
    .wp-block-image{
        margin-top: 10px;
    }

    /* お知らせ一覧へ戻るボタン */
    .back-archive-button {
        margin-bottom: 50px;
    }

    .back-archive-button a{
        font-size: 14px;
    }

   
}


