/*　メインコンテンツ全体　*/
/*　全体レイアウト　*/
.archivecontents {
    background-image: url(../img/bg_paper.jpg);
    display: grid;
    grid-template-columns: 1fr minmax(270px,1200px) 1fr;
    padding: 2rem 0 2rem 0;
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: normal;
    opacity: 0.9; /* ほんの少し透かすと“紙感”アップ */
    filter: saturate(0.9) contrast(1.02);
}
.archivecontents article {
    grid-column-start: 2;
    background-color: rgba(253, 253, 253, 0.8);
    padding: clamp(16px, 4vw, 32px);
    background: rgba(255, 255, 255, 0.92); /* 透明度は 0.9〜0.95 が読みやすい */
    border-radius: 16px;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(1px); /* 対応ブラウザで紙の下をほんのり馴染ませる */
    -webkit-backdrop-filter: blur(1px);
    isolation: isolate; /* シャドウの重なりを安定させるため */
}
.archivecontents .prose {
  line-height: 1.9;
  font-size: clamp(15px, 1.6vw, 17px);
}
.archivecontents img,
.archivecontents figure,
.archivecontents iframe {
  border-radius: 10px;
  overflow: hidden;
}


/*　見出し　*/
.information__container {
    text-align: center;
}
.information__content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    row-gap: 15px;
    margin: 40px 0;
    text-align: left;
}
.newsletter {
    align-self: center;
    justify-self: end;
    display: grid;
    grid-template-columns: auto;
}
.information__heading h3 {
    color: #4C513F;
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: .3rem;
    /* color | offset-x | offset-y | blur-radius */
    text-shadow: #C8C2B4 2px 3px 3px;
}
.information__heading p {
    color: #8A9D87;
    font-size: .7rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.information__heading hr {
    border: none;
    background-image: url(../img/info_line.svg);
    background-repeat: no-repeat;
    background-position: center;
    height: 30px;
}


/*ページネーション*/
.information__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.information__pagination a,
.information__pagination span {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  background: #fff;
  transition: all 0.2s ease;
}

.information__pagination a:hover {
  background: #f2f2f2;
}

.information__pagination .current {
  background: #3A533A; /* 好みに合わせて変更してOK */
  color: #fff;
  border-color: #3A533A;
  font-weight: bold;
}

/*お知らせ一覧*/
.information__list {
  margin: 40px 0 32px;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e3e3e3;
}

.information__item {
  border-bottom: 1px solid #e3e3e3;
}

.information__item-link {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 18px 24px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

/* 行ホバーで「押せる感」 */
.information__item-link:hover {
  background: #faf8f4; /* 和紙っぽい薄ベージュ */
}

/* 左側：日付＋ラベル */
.information__meta {
  min-width: 220px;
  font-size: 14px;
  color: #555;
}

.information__meta time {
  font-family: sans-serif;
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
  float: left;
}
.information__meta span {
    font-family: sans-serif;
    font-weight: bolder;
    font-size: .6rem;
    width: 60px;
    padding: 3px 3px;
    text-align: center;
    display: block;
    float: right;
}

/* カテゴリラベル（今の黒〜薄ベージュの世界観は維持） */
.information__label {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  border-radius: 2px;
  background: #333;
  color: #fff;
}

/* 右側：タイトル */
.information__title {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* タイトルの下線は hover のみ */
.information__title {
  text-decoration: none;
}
.information__item-link:hover .information__title {
  text-decoration: underline;
}



.information__pagination .prev,
.information__pagination .next {
  font-weight: 600;
}


.maincontents ul {
    list-style: none;
    padding-left: 1.2em;
    margin: 1rem 0;
}
.maincontents ul li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 0.5em;
}
.maincontents ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 0.6em;
    height: 0.6em;
    background-color: #C8C2B4; /* メインカラー */
    border-radius: 50%;
}

.maincontents a {
    color: #3A533A;
}
.maincontents a:hover {
    color: #8A9D87
}
.catu {
    background-color: #31332d;
    color: #FCFCFC;
}
.cat1 {
    background-color: #4C513F;
    color: #FCFCFC;
}
.cat2 {
    background-color: #8A9D87;
    color: #FCFCFC;
}
.cat3 {
    background-color: #3A533A;
    color: #FCFCFC;
}
.cat4 {
    background-color: #C8C2B4;
}

/*善光寺だより関連*/
.zen-dayori-archive {
    padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.zen-dayori-card {
  width: 200px;
  padding: 1rem;
  text-decoration: none;
  color: #333;
  text-align: center;
  border: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.zen-dayori-card:hover {
    border-color: #6c6c6c33; /* ほんのり */
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.zen-dayori-thumb img,
.zen-dayori-thumb--placeholder {
  width: 100%;
  display: block;
  border-radius: 4px;
  background: #eee;
}
.zen-dayori-title {
  margin-top: 8px;
  font-size: 0.9rem;
}


/*行事予定表関連*/
.zen-event-archive__month-block {
    
    padding: 1.5rem 2rem;
}
.zen-event-archive__month-block h4 {
    display: inline-block;
  padding: 0.35rem 1.8rem;
  margin: 0 0 0.8rem;
  background-color: #4d5844; /* 今のメインの緑 */
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.2em;
  border-radius: 999px;
}
.zen-event-archive__list {
    font-size: 1.1rem;
    font-weight: bold;
}
/* dt/dd デフォルト余白をリセット */
.zen-event-archive__list dt,
.zen-event-archive__list dd {
  margin: 0;
}

/* ─ イベント1件 ─ */

.zen-event-archive__item {
  display: flex;
  gap: 1.5rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #e5e5e5;
}
/* 日付カラム（固定幅） */
.zen-event-archive__date {
  color: #333;
}

.zen-event-archive__date time {
  white-space: nowrap;
}
.zen-event-date__day {
  display: inline-block;
  width: 2ch;        /* 2桁ぶんの幅を確保（1〜31全部OK） */
  text-align: right; /* 右寄せして桁を揃える */
}
/* タイトル＋抜粋カラム */
.zen-event-archive__content {
  flex: 1;
    text-align: left;
}

.zen-event-archive__title {
  text-decoration: none;
  color: #333;
}

.zen-event-archive__title:hover {
  text-decoration: underline;
}

.zen-event-archive__excerpt {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: #666;
}
/* ─ 年ナビ ─ */

.zen-event-archive__year-nav {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
}

.zen-event-archive__year-nav a {
  color: #3A533A; /* 下のリンク色に合わせる */
  text-decoration: none;
  margin: 0 1.2rem;
}

.zen-event-archive__year-nav a:hover {
  text-decoration: underline;
}

/* メンバーページ */
.member-archive {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  padding: 20px 0;
}
.member-archive a {
    text-decoration: none;
    color: #31332d;
    font-weight: bold;
}
body.archive-member_post {
  background: #f7f7f7;
}

/* 通常カード */
.member-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* サムネありカードはちょいビジュアル寄り */
.member-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.member-card--with-thumb .member-card__thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid #eee;
  height: 100%;
  object-fit: cover;
}

/* デフォ画像カードは“柄”っぽく扱う前提 */
.member-card__thumb--default img {
  opacity: .6;
  mix-blend-mode: multiply;
}
/* ホバーちょい浮き */
.member-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.member-card__body {
    padding: 1rem;
}
.member-card__date {
    font-weight: bolder;
    font-size: .8rem;
    border-bottom: 1px dotted #ebe7de;
    padding: 2px;
}
.member-card__title {
    font-size: 1.1rem;
    padding: .5rem 2px;
}

/**/
/**/
/* メディアクエリ　タブレット～PCサイズ */
/**/
/**/
@media screen and (min-device-width: 900px) and (max-width: 1250px) {

    /*　メインコンテンツ全体せ　*/
    .maincontents {
        grid-template-columns: 1fr;
        padding: 80px 5%;
    }
    .maincontents article {
    grid-column-start: 1;
    }

}
/**/
/**/
/* メディアクエリ　スマホ～タブレットサイズ */
/**/
/**/
@media screen and (min-device-width: 601px) and (max-width: 899px) {

    /*　メインコンテンツ全体　*/
    .maincontents {
        grid-template-columns: 1fr;
        padding: 80px 5%;
    }
    .maincontents article {
    grid-column-start: 1;
    }
}

/**/
/**/
/* メディアクエリ　スマホサイズ */
/**/
/**/
/* スマホレイアウト */

@media screen and (max-width: 600px) {

    /*　メインコンテンツ全体　*/
    .maincontents {
        grid-template-columns: 1fr;
        padding: 80px 5%;
    }
    .maincontents article {
    grid-column-start: 1;
    }
    .information__item-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 14px 16px;
    }
    .information__meta {
        width: 100%;
        font-size: 13px;
    }
    .information__meta time {
        
    }
    .information__meta span {
        
    }
    .information__title {
        padding: .75rem 0;
        width: 100%;
        text-align: center;
    }
    .zen-dayori-archive {
    justify-content: center;
  }
  .zen-event-archive__list {
    font-size: .9rem;
    font-weight: bold;
}
}
/**/
/**/
/* メディアクエリ　ちっさいサイズ */
/**/
/**/
@media screen and (max-width: 390px) {

    
}