/* =========================
SCHEDULE	
========================= */


/*------------------------------------------------------*/



.schIntro__collageImg{ width:100%; height:auto; display:block; }
.schIntro__collageImg.is-sp{ display:none; }

@media (max-width: 900px){
  .schIntro__collageImg.is-pc{ display:none; }
  .schIntro__collageImg.is-sp{ display:block; }
}

.schIntro{
  position: relative;
  overflow: hidden; /* 画面が縮むと右画像が隠れていく */
  padding: clamp(170px, 5vw, 180px) 0 10px;
  background: #fff;
}


/* 見出し */
.schIntro__head{ margin-bottom: 22px; }

.schIntro__titleMain{
  margin: 0;
  font-size: clamp(90px, 4.4vw, 100px);
  line-height: 1.05;
  letter-spacing: .02em;
  color: #0A8A3A;
  font-weight: 700;
}

.schIntro__titleSub{
  margin: 10px 0 0;
  font-size: 40px;
  font-weight: 700;
  color: #0A8A3A;
}


/* 1200px中央 */
.schIntro__inner{
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}



.sch_area{
	margin: 80px auto 0 auto;
	max-width: 1100px;
}

.post-card__title{
	font-size: clamp(16px, 1.2vw, 18px);
	margin: 0;
	color: #222222;
	text-decoration: none;
	font-weight: 400;
	border-bottom: 1px solid #C0C0C0;
	padding: 25px 0 25px 0;
	font-family: "Noto Sans JP", sans-serif;
}

.post-card__link{
  text-decoration: none;
}
.post-card__title{
  color: #222;
  transition: color .25s ease;
}
/*.post-card__link:hover .post-card__title{
  color: #008B2C;
}*/


/*ページング*/
/* Pagination */
.pagination{
  display: flex;
  justify-content: center; /* 中央寄せ */
  margin: 40px 0;
}

.pagination .nav-links{
  display: flex;
  gap: 10px;
  align-items: center;
}

.pagination .page-numbers{
  color: #222222;
  text-decoration: none;
  font-weight: 400;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color .2s ease, background-color .2s ease;
}

/* 現在のページ */
.pagination .page-numbers.current{
  color: #008B2C;
  font-weight: 700;
}

/* hover（任意：未選択だけ緑に） */
.pagination a.page-numbers:hover{
  color: #008B2C;
}


/* =========================
   SP（<=900px）：写真はタイトル下で“はみ出し”
========================= */
@media (max-width: 900px){
  .schIntro{
    padding: 34px 0 0;
  }
  .schIntro__inner{
    width: min(1200px, calc(100% - 45px));
  }
	
.schIntro__titleMain{
  margin: 50px 0 0;
  font-size: 55px;
  line-height: 1;
 }
.schIntro__titleSub{
  margin: 10px 0 0;
  font-size: 24px;
}
/* 大見出し */
.schIntro__lead{
  margin: 0 0 35px;
}
	
.sch_area{
	margin: 30px auto 0 auto;
	width: 95%;
}
	
.pagination{
 margin: 30px 0;
}
}



/*アーカイブス*/

.schedule-archive-subtitle{
  margin: 0 0 18px;
  color: #222222;
  font-size: 14px;
  letter-spacing: .02em;
}

/* Archives dropdown */
.archives-nav{
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 40px 0 140px;
}

.archives-nav__label{
  color: #008B2C;
  font-weight: 700;
  font-size: clamp(14px, 2.2vw, 16px);
font-family: "Montserrat", sans-serif; 
  line-height: 1;
  white-space: nowrap;
}

.archives-nav__selectWrap{
  flex: 1;
  position: relative;
}

/* select本体 */
.archives-nav__select{
  width: 100%;
  padding: 22px 64px 22px 28px; /* 右は矢印分あける */
  border: 1px solid #d6d6d6;
  border-radius: 14px;
  background: #fff;

  color: #222222;
  font-size: clamp(14px, 1.4vw, 20px);
  line-height: 1.2;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  transition: border-color .2s ease, box-shadow .2s ease;
}

/* プレースホルダ（required + value="" で invalid 扱いにする） */
.archives-nav__select:invalid{
  color: #9a9a9a;
}

/* フォーカス */
.archives-nav__select:focus{
  outline: none;
  border-color: #008B2C;
  box-shadow: 0 0 0 3px rgba(0, 139, 44, 0.12);
}

/* 右端の▼（擬似要素で作る） */
.archives-nav__selectWrap::after{
  content: "";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-30%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 12px solid #666666;
  pointer-events: none;
}

/* SP調整 */
@media (max-width: 640px){
  .archives-nav{
    gap: 16px;
    margin: 1px 0 60px;
  }

  .archives-nav__select{
    padding: 16px 52px 16px 18px;
    border-radius: 12px;
  }

  .archives-nav__selectWrap::after{
    right: 18px;
    border-left-width: 8px;
    border-right-width: 8px;
    border-top-width: 11px;
  }
}


/*----詳細----*/


.single-title{
	font-size: clamp(22px, 1.2vw, 24px);
	font-weight: 600;
	color: #222222;
	font-family: "Noto Sans JP", sans-serif;
	border-bottom: 1px solid #C0C0C0;
	padding: 0 0 20px 0;
	line-height: 1.5;
}

.single-content{
	margin: 20px 0 50px 0;
}

.single-content p{
	font-size: clamp(16px, 1.2vw, 18px);
	color: #222222;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 2.3;
	letter-spacing: 0.09em;
	font-weight: 400;
	
}


/*フッターのナビ*/

.single-footer{
  margin: 150px 0 80px 0;
}

.single-nav{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.single-nav__prev{ justify-self: start; }
.single-nav__center{ justify-self: center; }
.single-nav__next{ justify-self: end; }

.single-nav__link{
  color: #222222;
  text-decoration: none;
  transition: color .25s ease;
}

.single-nav__link:hover{
  color: #008B2C;
}

/* クリック領域をボタンっぽくしたいなら（任意） */
.single-nav__link{
  padding: 8px 10px;
  border-radius: 6px;
}


/* =========================
   SP（<=900px）：写真はタイトル下で“はみ出し”
========================= */
@media (max-width: 900px){
	.single-footer{
  margin: 80px 0 80px 0;
}
}