@charset "utf-8";

/* =========================================================
   NEWS PAGE
========================================================= */



/* ===== セクション背景 ===== */
.news-section{
  background: var(--yellow);
  padding: 60px 15px 80px;
}


/* ===== 導入 ===== */
.news-intro{
  width: min(880px, 100%);
  margin: 0 auto 50px;
  text-align: left;
}

.news-lead-title{
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 900;
  margin-bottom: 14px;
}

.news-lead{
  line-height: 2;
  font-weight: 700;
  opacity: .85;
}


/* =========================================================
   NEWS LIST
   ========================================================= */

.news-list{
  width: min(960px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

/* カード */
.news-item{
  background: #fff;
  border: 2px solid var(--black);
  border-radius: 10px;
  transition: .2s;
}

.news-link{
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: var(--black);
  position: relative;
}

.news-item:hover{
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 var(--black);
}

/* 日付 */
.news-meta{
  margin-bottom: 10px;
}

.news-date{
  font-weight: 800;
  opacity: .6;
  font-size: .9rem;
}

/* タイトル */
.news-title{
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* 抜粋 */
.news-excerpt{
  line-height: 1.9;
  font-weight: 600;
  opacity: .85;
  font-size: .8rem;
}

/* 矢印 */
.news-arrow{
  position: absolute;
  right: 26px;
  bottom: 10px;
  font-weight: 900;
  font-size: 1.1rem;
  transition: .2s;
}

.news-item:hover .news-arrow{
  transform: translateX(4px);
}


/* =========================================================
   PAGINATION
   ========================================================= */

.news-pager{
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pager-btn{
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid var(--black);
  text-decoration: none;
  font-weight: 800;
  color: var(--black);
  background: #fff;
  transition: .2s;
}

.pager-btn:hover{
  background: var(--black);
  color: var(--yellow);
}

.pager-btn.is-active{
  background: var(--black);
  color: var(--yellow);
}


/* =========================================================
   SINGLE PAGE
   ========================================================= */

.news-single{
  background: #fff;
  border: 2px solid var(--black);
  border-radius: 26px;
  padding: 44px;
  max-width: 880px;
  margin: 0 auto;
}

/* メタ */
.news-single-meta{
  font-weight: 800;
  opacity: .6;
  margin-bottom: 12px;
}

/* タイトル */
.news-single-title{
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.4;
}

/* 本文 */
.news-single-content{
  line-height: 2.1;
  font-weight: 600;
}

/* 見出し */
.news-single-content h2{
  margin-top: 50px;
  margin-bottom: 18px;
  font-size: 1.4rem;
  font-weight: 900;
}

.news-single-content h3{
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 1.2rem;
  font-weight: 900;
}

/* 画像 */
.news-single-content img{
  margin: 36px 0;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.1);
}

/* リスト */
.news-single-content ul{
  margin: 20px 0;
  padding-left: 1.2em;
}

.news-single-content li{
  margin-bottom: 8px;
}

/* リンク */
.news-single-content a{
  font-weight: 800;
  text-decoration: underline;
}

/* 引用 */
.news-single-content blockquote{
  margin: 30px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--black);
  background: rgba(0,0,0,.05);
  border-radius: 12px;
}
/* =========================
   BACK BUTTON
   ========================= */

.news-back{
  max-width: 880px;
  margin: 40px auto 0;
  text-align: center;
}

.news-back-btn{
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid var(--black);
  background: #fff;
  font-weight: 900;
  text-decoration: none;
  color: var(--black);
  transition: .2s;
}

.news-back-btn:hover{
  background: var(--black);
  color: var(--yellow);
  transform: translateY(-2px);
}



@media (max-width: 960px){

  .news-section{
    /* padding: 60px 0 80px; */
  }

  .news-link{
    /* padding: 22px; */
  }

  .news-single{
    /* padding: 28px; */
  }

}



@media (min-width: 767px){
  /* =========================================================
   NEWS PAGE
========================================================= */



/* ===== セクション背景 ===== */
.news-section{
  padding: 70px 15px 100px;
}


/* ===== 導入 ===== */
.news-intro{text-align: center;}

.news-lead-title{
}

.news-lead{
}


/* =========================================================
   NEWS LIST
   ========================================================= */

.news-list{
}

/* カード */
.news-item{
  border-radius: 24px;
}

.news-link{
  padding: 28px 30px;
}

.news-item:hover{
}

/* 日付 */
.news-meta{
}

.news-date{
}

/* タイトル */
.news-title{
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

/* 抜粋 */
.news-excerpt{
}

/* 矢印 */
.news-arrow{
  bottom: 26px;
}

.news-item:hover .news-arrow{
  transform: translateX(4px);
}


/* =========================================================
   PAGINATION
   ========================================================= */

.news-pager{
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pager-btn{
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid var(--black);
  text-decoration: none;
  font-weight: 800;
  color: var(--black);
  background: #fff;
  transition: .2s;
}

.pager-btn:hover{
  background: var(--black);
  color: var(--yellow);
}

.pager-btn.is-active{
  background: var(--black);
  color: var(--yellow);
}


/* =========================================================
   SINGLE PAGE
   ========================================================= */

.news-single{padding: 28px;}

/* メタ */
.news-single-meta{
}

/* タイトル */
.news-single-title{
}

/* 本文 */
.news-single-content{
}

/* 見出し */
.news-single-content h2{
  margin-top: 50px;
  margin-bottom: 18px;
  font-size: 1.4rem;
  font-weight: 900;
}

.news-single-content h3{
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 1.2rem;
  font-weight: 900;
}

/* 画像 */
.news-single-content img{
  margin: 36px 0;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.1);
}

/* リスト */
.news-single-content ul{
  margin: 20px 0;
  padding-left: 1.2em;
}

.news-single-content li{
  margin-bottom: 8px;
}

/* リンク */
.news-single-content a{
  font-weight: 800;
  text-decoration: underline;
}

/* 引用 */
.news-single-content blockquote{
  margin: 30px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--black);
  background: rgba(0,0,0,.05);
  border-radius: 12px;
}
/* =========================
   BACK BUTTON
   ========================= */

.news-back{
}

.news-back-btn{
}

.news-back-btn:hover{
}

}

@media (min-width: 991px){
  /* =========================================================
   NEWS PAGE
========================================================= */



/* ===== セクション背景 ===== */
.news-section{
}


/* ===== 導入 ===== */
.news-intro{
}

.news-lead-title{
}

.news-lead{
}


/* =========================================================
   NEWS LIST
   ========================================================= */

.news-list{
}

/* カード */
.news-item{
}

.news-link{
}

.news-item:hover{
}

/* 日付 */
.news-meta{
}

.news-date{
}

/* タイトル */
.news-title{}

/* 抜粋 */
.news-excerpt{
}

/* 矢印 */
.news-arrow{
}

.news-item:hover .news-arrow{
  transform: translateX(4px);
}


/* =========================================================
   PAGINATION
   ========================================================= */

.news-pager{
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pager-btn{
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid var(--black);
  text-decoration: none;
  font-weight: 800;
  color: var(--black);
  background: #fff;
  transition: .2s;
}

.pager-btn:hover{
  background: var(--black);
  color: var(--yellow);
}

.pager-btn.is-active{
  background: var(--black);
  color: var(--yellow);
}


/* =========================================================
   SINGLE PAGE
   ========================================================= */

.news-single{
}

/* メタ */
.news-single-meta{
}

/* タイトル */
.news-single-title{
}

/* 本文 */
.news-single-content{
}

/* 見出し */
.news-single-content h2{
  margin-top: 50px;
  margin-bottom: 18px;
  font-size: 1.4rem;
  font-weight: 900;
}

.news-single-content h3{
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 1.2rem;
  font-weight: 900;
}

/* 画像 */
.news-single-content img{
  margin: 36px 0;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.1);
}

/* リスト */
.news-single-content ul{
  margin: 20px 0;
  padding-left: 1.2em;
}

.news-single-content li{
  margin-bottom: 8px;
}

/* リンク */
.news-single-content a{
  font-weight: 800;
  text-decoration: underline;
}

/* 引用 */
.news-single-content blockquote{
  margin: 30px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--black);
  background: rgba(0,0,0,.05);
  border-radius: 12px;
}
/* =========================
   BACK BUTTON
   ========================= */

.news-back{
}

.news-back-btn{
}

.news-back-btn:hover{
}

}
@media (min-width: 1200px){
  /* =========================================================
   NEWS PAGE
========================================================= */



/* ===== セクション背景 ===== */
.news-section{
}


/* ===== 導入 ===== */
.news-intro{
}

.news-lead-title{
}

.news-lead{
}


/* =========================================================
   NEWS LIST
   ========================================================= */

.news-list{
}

/* カード */
.news-item{
}

.news-link{
}

.news-item:hover{
}

/* 日付 */
.news-meta{
}

.news-date{
}

/* タイトル */
.news-title{}

/* 抜粋 */
.news-excerpt{
}

/* 矢印 */
.news-arrow{
}

.news-item:hover .news-arrow{
  transform: translateX(4px);
}


/* =========================================================
   PAGINATION
   ========================================================= */

.news-pager{
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pager-btn{
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid var(--black);
  text-decoration: none;
  font-weight: 800;
  color: var(--black);
  background: #fff;
  transition: .2s;
}

.pager-btn:hover{
  background: var(--black);
  color: var(--yellow);
}

.pager-btn.is-active{
  background: var(--black);
  color: var(--yellow);
}


/* =========================================================
   SINGLE PAGE
   ========================================================= */

.news-single{
}

/* メタ */
.news-single-meta{
}

/* タイトル */
.news-single-title{
}

/* 本文 */
.news-single-content{
}

/* 見出し */
.news-single-content h2{
  margin-top: 50px;
  margin-bottom: 18px;
  font-size: 1.4rem;
  font-weight: 900;
}

.news-single-content h3{
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 1.2rem;
  font-weight: 900;
}

/* 画像 */
.news-single-content img{
  margin: 36px 0;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.1);
}

/* リスト */
.news-single-content ul{
  margin: 20px 0;
  padding-left: 1.2em;
}

.news-single-content li{
  margin-bottom: 8px;
}

/* リンク */
.news-single-content a{
  font-weight: 800;
  text-decoration: underline;
}

/* 引用 */
.news-single-content blockquote{
  margin: 30px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--black);
  background: rgba(0,0,0,.05);
  border-radius: 12px;
}
/* =========================
   BACK BUTTON
   ========================= */

.news-back{
}

.news-back-btn{
}

.news-back-btn:hover{
}

}