@charset "utf-8";

/* ==============================
   ページタイトル背景（お知らせ）
============================== */
.page_ttl_wrap {
      position: relative;
    background-image: url(../img/news/news_mv.png);
    background-repeat: no-repeat;
    background-size: 90%;
    background-position: center;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10% 0;
    color: #fff;
    text-shadow: 2px 3px 3px rgb(0 0 0 / 60%);
}

.page_ttl {
  color: #fff;
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 32px);
  letter-spacing: 0.08em;
  text-align: center;
  margin: 0;
  z-index: 1;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .page_ttl_wrap {
    height: 30px;
    background-size: contain;
	        max-width: 90%;
        margin: 0 auto;
  }
	
  .page_ttl {
    font-size: clamp(18px, 5vw, 26px);
  }
}



/* =========================================
   お知らせ一覧（指定デザイン版）
   既存HTMLそのまま／このCSSだけ差し替え
   ========================================= */
.news{
  padding: 40px 16px 90px;
}
.news_flex{ max-width: 1200px; margin: 0 auto;}

/* 一覧間隔 */
.news_list{ display: grid; gap: 80px; }

/* カード：左右2カラム（サムネ / テキスト） */
.news_list article{ background: transparent; box-shadow:none; }
.kiji_flex{
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1470px;
    margin: 0 auto;
}

/* サムネ：白いボード感（画像が小さくても面を保つ） */
.kiji_flex .thum{
  width: 100%;
  aspect-ratio: 16 / 12;
  background: #fff;
  overflow: hidden;
  display: block;
}
.kiji_flex .thum img{
  width:100%; height:100%;
  object-fit: cover;
  display:block;
}

/* 右側ラッパー */
.kiji_waku{
  display:flex;
  flex-direction: column;
  gap: 10px;
  color:#6b3d14;
}

/* 日付（最上部・オレンジ） */
.days{
  order:-2;
  font-weight: 800;
  color: #FF7800;
  letter-spacing:.02em;
  font-size: clamp(16px, 1.8vw, 18px);
  margin-bottom: 15px;
  display: none;
}

/* カテゴリピルは日付の下に寄り添う感じ（任意で非表示可） */
.mini_f{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px 12px;
}
.cate_mark{
  display:inline-block;
  color:#fff;
  font-weight:700;
  font-size:12px;
  padding:6px 12px;
  border-radius:999px;
  line-height:1;
}

/* タイトル＋下線 */
.article_ttl{
  font-weight: 800;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  margin: 0;
  padding-bottom: 5px;
  border-bottom: 3px solid #FF7800;
}

/* 抜粋（茶色・行間広め） */
.honbun{
  color:#6f4a2d;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 2.0;
}
.bassui{
  display:-webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;   /* 3行で省略 */
  overflow:hidden;
}

/* 右寄せ「続きを読む」ボタン */
.kiji_btn {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

.kiji_btn p {
  position: relative; /* ← 擬似要素の基準に */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #6b3d14;
  letter-spacing: .04em;
  background: transparent;
  padding-top: 20px;
}

.kiji_btn p::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e2550a;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1; /* 背景として後ろに */
  display: none;
}

.kiji_btn p::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  z-index: 2; /* 矢印を前面に */
  display: none;
}

.kiji_waku a{ text-decoration:none; color:inherit; }
.kiji_waku a:hover .kiji_btn p::after{ }
.kiji_waku a:active .kiji_btn p::after{　color: #b23c00; }

/* ページャ（数字のみ・中央） */
.pager_wrap{ margin-top: 46px; }
.wp-pagenavi{
  display:flex; gap: 26px; justify-content:center; align-items:center;
}
.wp-pagenavi a, .wp-pagenavi span{
  background: transparent;
  border:none;
  padding: 0;
  color:#6b3d14;
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 22px);
  text-decoration:none;
}
.wp-pagenavi .current{ color:#e2550a; }


/* -----------------------
   レスポンシブ
   ----------------------- */
@media (max-width: 980px){
  .kiji_flex{ grid-template-columns: 1fr; gap: 18px; }
  .kiji_btn{ justify-content:end; }
  .news_list{ gap: 40px; }
  .kiji_flex .thum{ aspect-ratio: 16/9; width: 100%;}
	
  .kiji_btn p { 
	 padding-top: 10px;
	 margin: 0;
     margin-top: 10px;
	 font-size: 16px;
	}
	
	.news {
    padding: 1px 4% 80px;
}
	
}

#sidebar {
	display: none;
}



/* セクション全体 */

.single_bady {
  background-color: #fbf6f0;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-bottom: 100px;
}

.single_sec {
    max-width: 1200px;
    margin: 0 auto;
}

/* 中央寄せ＆2カラム（左：本文／右：サイドバー） */

.single1 .left{
  min-width: 0;
}



/* タイトル */
.voice_ttl{
  color: var(--c-brown);
  font-weight: 800;
  line-height: 1.5;
  font-size: clamp(20px, 2.4vw, 28px);
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 3px solid #FF7800; /* デザインの細いライン */
}

/* 本文 */
.honbun{
  color: var(--c-brown-2);
  line-height: 2;
  font-size: clamp(16px, 1.6vw, 18px);
}

/* 段落間余白（WPの自動pにも対応） */
.honbun p + p{ margin-top: 1em; }

/* ====== 下部ボタンエリア ====== */
.page_guide.voice_pg{
  display: flex;
  justify-content: center; /* 中央に */
  align-items: center;
  gap: 24px;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
}

/* デザインでは中央の「一覧に戻る」だけ表示 */
.page_guide.voice_pg li:first-child,
.page_guide.voice_pg li:last-child{
  display: none;
}

/* ボタン枠（装飾用） */
.btn_waku a{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px 10px 18px; /* 文字の左右余白 */
  color: var(--c-brown);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .04em;
}

/* 基準（これがないと絶対配置がズレます） */
.btn_waku a{
  position: relative;
  display: inline-block;
  padding-right: 40px;   /* 右に丸ぶんの余白 */
  line-height: 1.8;      /* テキスト高さを確保 */
  text-decoration: none;
}

/* オレンジの丸（後ろ） */
.btn_waku a::before{
  content: "";
  position: absolute;
  right: 0; 
  top: 50%;
  width: 30px; 
  height: 30px;
  border-radius: 50%;
  background: #e2550a;
  transform: translateY(-50%);
  z-index: 0;            /* 背面に */
}

/* 白い矢印（前面） */
.btn_waku a::after{
  content: "";
  position: absolute;
  right: 12px; 
  top: 50%;
  width: 10px; 
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;            /* 前面に */
}


/* ホバー（少しだけ浮かせる） */
.btn_waku a:hover{
  opacity: .9;
  transform: translateY(-1px);
}

/* ====== レスポンシブ ====== */
@media (max-width: 980px){
  .single1 .single_f{
    grid-template-columns: 1fr; /* 1カラムに */
    gap: 40px;
  }
	
  .kiji_btn p::after {
    width: 25px;
    height: 25px;
    right: 2px;}

.kiji_btn p::before {
    width: 7px;
    height: 7px;
}
	
.honbun {
	line-height: 1.6;
}

.article_ttl {
  margin-bottom: 5px;
}

.days {
    margin-bottom: 10px;
}

.single_bady {
    padding: 0 4%;
    padding-top: 50px;
    padding-bottom: 80px;
}
}
@media (hover: hover){
  .btn_waku a{ transition: opacity .2s ease, transform .2s ease; }
}