/*コラム*/
.p-top-column {
    padding: 80px 0;
    background: #fff;
}

.p-top-column__h2 {
    text-align: center;
    font-size: 32px;
    color: #97C7E9;
    margin-bottom: 40px;
}

.p-top-column__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.p-top-column__item {
    display: flex;
    align-items: center;
    padding: 25px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    text-decoration: none;
    color: #505050;
    transition: 0.3s;
    position: relative;
}

/* ホバー時に背景を薄いピンクに */
.p-top-column__item:hover {
    background: #FFF5F5;
    border-color: #FFE5E5;
}

.p-top-column__img {
    width: 180px;
    flex-shrink: 0;
    margin-right: 25px;
}

.p-top-column__img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.p-top-column__body {
    flex: 1;
    padding-right: 40px;
}

.p-top-column__meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.p-top-column__date {
    font-size: 14px;
    color: #999;
}

.p-top-column__cat {
    font-size: 12px;
    padding: 2px 15px;
    border: 1px solid #97C7E9;
    color: #97C7E9;
    border-radius: 20px;
    line-height: 1.5;
    transition: 0.3s;
}

.p-top-column__ttl {
    font-size: 16px !important;
    color: #636464 !important;
    font-weight: bold;
    margin-bottom: 10px !important;
    text-align: left !important;
}

.p-top-column__txt {
    font-size: 14px;
    line-height: 1.6;
    color: #777;
}

/* 右側の矢印形状 */
.p-top-column__arrow {
    position: absolute;
    right: 30px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #97C7E9;
    border-right: 2px solid #97C7E9;
    transform: rotate(45deg);
}

/* 詳しくみるボタン */
.p-top-column__btn-wrap {
    text-align: center;
    margin-top: 50px;
}

.p-top-column__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 60px;
    background: #97C7E9; /* 画像のボタン色 */
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-size: 16px;
    transition: 0.3s;
    position: relative;
}

.p-top-column__btn:after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 25px;
}

.p-top-column__btn:hover {
    background: #E9B2A2;
    color: #ffffff;
}

@media (max-width: 768px) {
    .p-top-column__body {
        flex: 1;
        padding-right: 0;
    }
    .p-top-column {
        padding: 60px 20px;
        background: #fff;
    }
    .p-top-column__item {
        flex-direction: column;
        align-items: flex-start;
    }
    .p-top-column__img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
}


.p-top-column div:before{display: none !important;}
.p-top-column div:after{display: none !important;}
.category div:before{display: none !important;}
.category div:after{display: none !important;}

/* ホバー時に背景を薄いピンクに */
.p-top-column__item:hover .p-top-column__cat {
    border: 1px solid #F3A696;
    color: #F3A696;
}
.p-top-column__item:hover .p-top-column__arrow {
    border-top: 2px solid #F3A696;
    border-right: 2px solid #F3A696;
}


/* アーカイブページだけで適用したい調整（必要に応じて） */
.p-top-column.archive-page {
    padding-top: 40px; /* パンくずなどがある分、上を少し詰める */
}

/* カテゴリーナビのスタイル（archive専用） */
.archive-page .category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin: 0 auto 20px auto;
    width: 100%;
    max-width: 1000px;
}
.archive-page .category p {
    color: #97C7E9;
    font-weight: bold;
}
.archive-page .category ul {
    display: flex;
    gap: 20px;
    flex-direction: row;
}
.archive-page .category ul:before,
.archive-page .category ul:after{
    display: none;
}
.archive-page .category ul li{
    margin-right: 0 !important;
}
.archive-page .category ul li a {
    color: #505050;
    text-decoration: none;
}
.archive-page .category ul li a:hover {
    color: #97C7E9;
}
@media (max-width: 767px)  {
    .sp_br{
        display: block;
    }
    .archive-page .category {
        display: block;
        margin: 0 auto 20px auto;
    }
    .archive-page .category ul {
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
        margin: 20px 0 0 0;
    }
    .archive-page .category ul li{
        width: 48%;
    }
}
/* 該当タームのハイライト */
.archive-page .category ul li a.current {
    color: #97C7E9 !important;
    font-weight: bold;
    /* もしアンダーラインや記号を足したい場合はここに追加 */
}

/* ついでにマウスホバー時も同じ色にしておくと自然です */
.archive-page .category ul li a:hover {
    color: #97C7E9;
}



/* ページネーションのスタイル（必要に応じて） */
.pagination {
    margin-top: 50px;
    text-align: center;
}
