/* =====================================================
   PC ONLY STYLE（完成整理版）
   ※ SP用CSSは一切含まれていません
===================================================== */

/* ------------------------------
   Reset / Base
------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;       /* 18pt 相当 */
  line-height: 48px;     /* 36pt 相当 */
  color: #571d00;
  background-color: #ffffff;
  
  @media (max-width: 768px) {
    overflow-x: hidden;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===============================
   SP ONLY 改行（<br>用）
=============================== */

/* PCでは改行させない */
br.sp-break {
  display: none;
}

/* SPでは改行させる */
@media (max-width: 768px) {
  br.sp-break {
    display: block;
  }
}

/* PCでは改行する */
br.pc-break {
  display: block;
}

/* SPでは改行しない */
@media (max-width: 768px) {
  br.pc-break {
    display: none;
  }
}

/* PCでは表示 */
.sp-break {
  display: none;
}

/* SPでは表示 */
@media (max-width: 768px) {
  .sp-break {
    display: block;
  }
}

/* PCでは表示 */
.pc-break {
  display: block;
}

/* SPでは改行させる */
@media (max-width: 768px) {
  .pc-break {
    display: none;
  }
}

/* ===============================
   Scroll Reveal Animation
=============================== */

/* 初期状態（非表示） */
.js-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示状態 */
.js-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}


/* ------------------------------
   Layout
------------------------------ */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ------------------------------
   Header Top Bar
------------------------------ */
.header-top-bar {
  width: 100%;
  height: 40px;
  background-color: #8cc63f;
  display: flex;
  align-items: center;
}

.header-top-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  
  @media (max-width: 768px) {
    padding: 0 8px;
    font-size: 13px;
  }
}


/* ===============================
   共通 見出し（h2）
=============================== */
.ch-normal-midashi {
  font-family: "Rounded Mplus 1c bold", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;

  text-align: center;
  color: #8cc63f;
  margin: 0 0 32px;

  @media (max-width: 768px) {
    font-size: 24px;
    line-height: 36px;
    margin: 0 0 12px;
  }
}


/* ===============================
   共通 センター本文
=============================== */
.ch-mormal-p-center {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 36px;

  text-align: center;
  color: #571d00;

  max-width: 640px;
  margin: 0 auto;
  
  @media (max-width: 768px) {
    font-size: 14px;
    line-height: 22px;
    text-align: left;
  }
}

/* ===============================
   共通 マージン・パディングの設定
=============================== */

.mt-1 {
  margin-top: 8px !important;
}

.mt-2 {
  margin-top: 16px !important;
}

.mt-3 {
  margin-top: 32px !important;
}

.mt-4 {
  margin-top: 48px !important;
}

.mt-5 {
  margin-top: 60px !important;
}

.mt-6 {
  margin-top: 72px !important;
}

.mt-7 {
  margin-top: 84px !important;
}

.mt-8 {
  margin-top: 96px !important;
}

.mb-1 {
  margin-bottom: 8px !important;
}

.mb-2 {
  margin-bottom: 16px !important;
}

.mb-3 {
  margin-bottom: 32px !important;
}

.mb-4 {
  margin-bottom: 48px !important;
}

.mb-5 {
  margin-bottom: 60px !important;
}

.mb-6 {
  margin-bottom: 72px !important;
}

.mb-7 {
  margin-bottom: 84px !important;
}

.mb-8 {
  margin-bottom: 96px !important;
}


.pt-1 {
  padding-top: 8px !important;
}

.pt-2 {
  padding-top: 16px !important;
}

.pt-3 {
  padding-top: 32px !important;
}

.pt-4 {
  padding-top: 48px !important;
}

.pt-5 {
  padding-top: 60px !important;
}

.pt-6 {
  padding-top: 72px !important;
}

.pt-7 {
  padding-top: 84px !important;
}

.pt-8 {
  padding-top: 96px !important;
}

.pb-1 {
  padding-bottom: 8px !important;
}

.pb-2 {
  padding-bottom: 16px !important;
}

.pb-3 {
  padding-bottom: 32px !important;
}

.pb-4 {
  padding-bottom: 48px !important;
}

.pb-5 {
  padding-bottom: 60px !important;
}

.pb-6 {
  padding-bottom: 72px !important;
}

.pb-7 {
  padding-bottom: 84px !important;
}

.pb-8 {
  padding-top: 96px !important;
}

/* ------------------------------
   Header
------------------------------ */
.site-header {
  background-color: #ffffff;
  padding: 0 24px 20px;
  margin-top: 0px !important;
}

.site-header-top {
  position: relative;
}

/* ---- Company Line ---- */
.header-company-line {
  position: absolute;
  top: 6px;
  right: 223px;

  width: 100%;
  font-size: 12px;
  color: #6b4b2b;
}

.header-company-line ul {
  margin: 0;
  padding: 0;
  list-style: none;

  display: flex;
  justify-content: flex-end;
  gap: 8px;
  line-height: 22px;
}

.header-company-line li {
  white-space: nowrap;
}

.header-company-line li::after {
  content: "｜";
  margin: 0 4px;
}

.header-company-line li:last-child::after {
  content: "";
}

.header-company-line a {
  color: #6b4b2b;
  text-decoration: none;
}

.header-company-line a:hover {
  text-decoration: underline;
}

/* ---- Logo ---- */
.site-header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 32px;
}

.header-logo-mark {
  margin-left: 12px;
  margin-top: 18px;
  width: 190px;
}

.header-logo-mark img {
  width: 100%;
}

/* ---- Contact Card ---- */
.header-contact-card {
  position: absolute;
  top: -30px;
  right: 16px;

  width: 200px;
  height: 156px;
  background-color: #feefd1;
  border-radius: 20px;
  padding: 16px 10px;

  display: flex;
  flex-direction: column;
  row-gap: 4px;

  color: #6b4b2b;
}

.card-tel-row {
  display: flex;
  align-items: center;
  column-gap: 6px;
}

.card-tel-label {
  width: 35px;
  height: 16px;
  border-radius: 16px;
  background: linear-gradient(to right, #c6db2f, #8cc63f);
  color: #fff;
  font-size: 12px;
  font-family: "Rounded Mplus 1c", "Mplus 1c", sans-serif;

  display: flex;
  align-items: center;
  justify-content: center;
}

.card-tel-number {
  font-size: 19px;
  font-family: "Rounded Mplus 1c", "Mplus 1c", sans-serif;
  font-weight: 500;
  line-height: 20px;
}

.card-tel-note {
  margin: 0;
  font-size: 9px;
  line-height: 10px;
  text-align: right;
}

/* ---- SNS ---- */
.card-sns-row {
  display: flex;
  column-gap: 16px;
  margin-top: 4px;
}

.card-sns-item {
  display: inline-flex;
  align-items: center;
  column-gap: 6px;
}

.card-sns-item img {
  width: 33px;
  height: 33px;
}

.card-sns-text {
  color: #8cc63f;
  font-size: 12px;
  font-family: "Rounded Mplus 1c", "Mplus 1c", sans-serif;
}

/* ---- Contact Button ---- */
.card-contact-btn {
  width: 100%;
  height: 34px;
  border-radius: 17px;
  background-color: #8cc63f;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  font-family: "Rounded Mplus 1c bold", "Mplus 1c bold", sans-serif;
}

.card-contact-btn:hover {
  opacity: 0.9;
}

/* ------------------------------
   Global Navigation
------------------------------ */
.global-nav {
  position: relative;
}

.global-nav ul {
  position: absolute;
  top: -46px;
  right: 233px;

  margin: 0;
  padding: 0;
  list-style: none;

  display: flex;
  column-gap: 28px;
}

.global-nav a {
  color: #6b4b2b;
  text-decoration: none;
  font-size: 16px;
  font-family: "Rounded Mplus 1c bold", "Mplus 1c bold", sans-serif;
}

.global-nav a:hover {
	text-decoration: none !important;
	opacity: 0.8;
}

.global-nav a:hover {
  text-decoration: underline;
}

/* ------------------------------
   Hero（PC）
------------------------------ */
.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.hero-media {
  position: relative;
  width: 100%;
  padding-top: 41.6667%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(
	to bottom,
	rgba(255,255,255,0),
	rgba(255,255,255,1)
  );
}

/* ===============================
   Hero：SP 正しいズーム指定
=============================== */
@media (max-width: 768px) {

  .hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  /* 高さをしっかり確保 */
  .hero-media {
    padding-top: 70%; /* 縦を広く */
  }

  /* 画像を均等にズーム */
  .hero-slide {
    background-size: cover;
    transform: scale(1.0);
  }
}


/* =====================================================
   SP ONLY（追記）
===================================================== */
@media (max-width: 768px) {

  /* ------------------------------
	 全体：画面幅100%
  ------------------------------ */
  body {
	font-size: 16px;
	line-height: 28px;
  }

  .wrapper {
	max-width: 100%;
  }

  /* ------------------------------
	 ヘッダー
  ------------------------------ */
  .site-header {
	padding: 12px 16px;
  }

  .site-header-top {
	position: relative;
  }

  /* PC要素を非表示 */
  .global-nav,
  .header-contact-card,
  .header-company-line {
	display: none;
  }

  /* ------------------------------
	 ロゴ：中央配置
  ------------------------------ */
  .site-header-main {
	justify-content: center;
  }

  .header-logo-mark {
	margin: 0;
	width: 160px;
  }

  /* ------------------------------
	 ハンバーガーボタン
  ------------------------------ */
  .sp-menu-toggle {
	position: absolute;
	top: 12px;
	right: 16px;

	width: 40px;
	height: 40px;

	display: flex;
	align-items: center;
	justify-content: center;

	background: none;
	border: none;
	cursor: pointer;
  }

  .sp-menu-toggle span {
	position: relative;
	display: block;
	width: 24px;
	height: 2px;
	background-color: #6b4b2b;
  }

  .sp-menu-toggle span::before,
  .sp-menu-toggle span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 24px;
	height: 2px;
	background-color: #6b4b2b;
  }

  .sp-menu-toggle span::before {
	top: -8px;
  }

  .sp-menu-toggle span::after {
	top: 8px;
  }

  /* ------------------------------
	 SP用グローバルメニュー
  ------------------------------ */
  .sp-gmenu {
	display: none;
	position: fixed;
	inset: 0;
	background-color: white;
	z-index: 999;
    margin-top: 40px;
	padding: 0px 12px 12px;
  }

  .sp-gmenu.is-open {
	display: block;
  }

  .sp-gmenu ul {
	margin: 0;
	padding: 0;
	list-style: none;
  }

  .sp-gmenu li {
	border-bottom: 1px solid #e0e0e0;
    padding-left: 8px;
  }

  .sp-gmenu a {
	display: block;
	padding: 8px 0;
	text-decoration: none;
	color: #6b4b2b;
	font-size: 16px;
	font-weight: 400;
	font-family: "Rounded Mplus 1c", "Mplus 1c", sans-serif;
  }
}

/* =====================================
   SPメニュー：PCでは非表示
===================================== */
/* .sp-menu-toggle,
.sp-gmenu {
  display: none;
} */

/* PC時は強制的に非表示 */
@media (min-width: 769px) {
  .sp-menu-toggle,
  .sp-gmenu,
  .sp-menu-overlay {
    display: none !important;
  }
}


/* ===============================
   SPメニュー：背景オーバーレイ
=============================== */
.sp-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.4); */
  z-index: 998;
}

/* メニュー表示時 */
.sp-menu-overlay.is-open {
  display: block;
}

/* ===============================
   ハンバーガー → × 変形（修正版）
=============================== */
.sp-menu-toggle {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: none;
  border: none;
  cursor: pointer;
  
  background-color: #8cc63f;

  z-index: 1001; /* ← 最前面 */
}

.sp-menu-toggle span {
  position: relative; /* ← 必須 */
  width: 24px;
  height: 2px;
  /* background-color: #6b4b2b; */
  background-color: white;
  transition: background-color 0.3s ease;
}

.sp-menu-toggle span::before,
.sp-menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  /* background-color: #6b4b2b; */
  background-color: white;
  transition: transform 0.3s ease, top 0.3s ease;
}

.sp-menu-toggle span::before {
  top: -8px;
}

.sp-menu-toggle span::after {
  top: 8px;
}

/* 開いた状態（×） */
.sp-menu-toggle.is-open span {
  background-color: transparent;
}

.sp-menu-toggle.is-open span::before {
  transform: rotate(45deg);
  top: 0;
}

.sp-menu-toggle.is-open span::after {
  transform: rotate(-45deg);
  top: 0;
}



/* ===============================
   フッター全体
=============================== */
.site-footer {
  background-color: #ffffff;
  color: #6b4b2b;
  font-size: 18px;
  
  @media (max-width: 768px) {
    font-size: 14px;
  }
}

/* ===============================
   フッターボックス（ライン含む）
=============================== */
.footer-box {
  margin-top: 50px;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 52px 24px;
  
  @media (max-width: 768px) {
    padding: 32px 24px;
  }
}

/* 上下のグラデーションライン（ウインドウ幅） */
.footer-box::before,
.footer-box::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 10px;
  background: linear-gradient(to right, #c6db2f, #8cc63f);
}

.footer-box::before {
  top: 0;
}

.footer-box::after {
  bottom: 0;
}


/* ===============================
   レイアウト
=============================== */
.footer-box .box-a {
  width: 36%;
  
  @media (max-width: 768px) {
   text-align: center; 
   margin: 0 auto;
  }
}

.footer-box .box-b {
  width: 32%;
}

/* ===============================
   box-a（ロゴ・会社情報）
=============================== */
.footer-logo img {
  max-width: 240px;
  height: auto;
  margin-bottom: 30px;
  
  @media (max-width: 768px) {
   text-align: center; 
   margin: 0 auto;
   max-width: 180px;
   margin-bottom: 20px;
  }

}

.company p {
  margin: 0;
  line-height: 1.6;
  font-family: "Rounded Mplus 1c", "Mplus 1c", sans-serif;
  font-weight: 500;
  
  
}

.company span {
  display: inline-block;
  padding: 4px 10px;
  margin-right: 6px;

  background: linear-gradient(to right, #c6db2f, #8cc63f);
  color: #ffffff;

  border-radius: 999px; /* しっかり丸く */
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  
  @media (max-width: 768px) {
   font-size: 13px; 
  }
}

.company a {
  color: #8cc63f;
  text-decoration: none;
  font-weight: 500;
}

.company a:hover {
  text-decoration: underline;
}

/* ===============================
   box-b（フッターナビ）
=============================== */
.footer-box .box-b ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-box .box-b li {
  margin-bottom: 10px;
  line-height: 1.4;
  cursor: pointer;
  font-family: "Rounded Mplus 1c", "Mplus 1c", sans-serif;
  font-weight: 500;
  font-size: 20px;
}

.footer-box .box-b li:last-child {
  margin-bottom: 0;
}

/* リンク化した場合の想定 */
.footer-box .box-b a {
  color: #6b4b2b;
  text-decoration: none;
}

.footer-box .box-b a:hover {
  text-decoration: underline;
}

/* ===============================
   コピーライト
=============================== */
.site-footer small {
  display: block;
  text-align: center;
  padding: 10px 24px 24px;
  font-size: 12px;
  color: #777;
  line-height: 18px;
}


/* ===============================
   Footer SP Layout
=============================== */
@media (max-width: 768px) {

  .footer-box {
    flex-wrap: wrap;           /* 折り返し許可 */
    row-gap: 24px;
  }

  /* 1行目：box-a */
  .footer-box .box-a {
    width: 100%;
  }

  /* 2行目：box-b ×2 */
  .footer-box .box-b {
    width: 50%;
  }

  /* フッターナビの余白調整 */
  .footer-box .box-b ul {
    padding-left: 0;
  }

  .footer-box .box-b li {
    font-size: 14px;
    margin-bottom: 8px;
  }
}


/* ===============================
   トップページ お知らせ
=============================== */
/* .top-news {
  margin: 60px auto;
} */

.top-news {
  position: relative;
  top: -40px;          /* ← 好みで調整（-20〜-60pxくらい） */
  z-index: 2;          /* スライドより手前に出す */
  
  @media (max-width: 768px) {
   top: -10px;
  }
}

/* 外枠 */
.top-news-box {
  width: 900px;
  height: 290px;
  margin: 0 auto;

  border: 2px solid #8cc63f;
  border-radius: 16px;
  padding: 6px 24px 20px;

  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  justify-content: start;
  background-color: white;
  
  @media (max-width: 768px) {
    width: 90%;
    height: auto;
  }
}

/* タイトル（角丸矩形） */
.top-news-title {
  margin: 0 auto;
  padding: 0px 24px;

  display: inline-block;
  font-family: "Rounded Mplus 1c", "Mplus 1c", sans-serif;
  font-weight: 500;

  color: #8cc63f;
  font-size: 28px;
  text-align: center;
  
  @media (max-width: 768px) {
    font-size: 22px;
    padding-top: 8px;
    padding-bottom: 10px;
  }
}

/* リスト */
.top-news-list {
  margin: 0;
  padding: 0;
  list-style: none;

  border-top: 1px solid #8cc63f;
  border-bottom: 1px solid #8cc63f;
}

/* 各行 */
.top-news-item {
  display: flex;
  align-items: center;
  gap: 28px;

  padding: 0px 0;
  border-bottom: 1px solid #8cc63f;
  font-size: 18px;
  line-height: 44px;
  padding-left: 4px;
  
  @media (max-width: 768px) {
    gap: 12px;
  }
}

.top-news-item:last-child {
  border-bottom: none;
}

/* 日付 */
.news-date {
  min-width: 100px;
  color: #8cc63f;
  font-family: "Rounded Mplus 1c", "Mplus 1c", sans-serif;
  @media (max-width: 768px) {
    line-height: 8px;
    min-width: 80px;
  }
}

/* カテゴリー */
.news-category {
  min-width: 120px;
  color: white;
  background-color: #8cc63f;
  padding: 12px 4px;
  font-weight: 400;
  font-family: "Rounded Mplus 1c", "Mplus 1c", sans-serif;
  text-align: center;
  line-height: 4px;
  border-radius: 999px;
  
  @media (max-width: 768px) {
    min-width: 80px;
    padding: 8px 4px;
  }
}

/* NEW 表示 */
.news-new {
  background-color: red;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
  line-height: 1;
  
  margin-right: -20px; /* ← ここを好きな幅に */
}

/* タイトル */
.news-title {
  color: #571d00;
  text-decoration: none;
  font-size: 18px;
}

.news-title:hover {
  text-decoration: underline;
}

/* 一覧リンク */
.top-news-more {
  text-align: right;
  line-height: 16px;
    
  @media (max-width: 768px) {
    padding-top: 8px;
    line-height: 8px;
  }
}

.top-news-more a {
  color: #571d00;
  font-size: 16px;
  text-decoration: none;
  
  @media (max-width: 768px) {
    font-size: 14px;
  }
}

.top-news-more a:hover {
  text-decoration: underline;
}

/* ===============================
   お知らせ：SPレイアウト（修正版）
=============================== */
@media (max-width: 768px) {

  .top-news-item {
    display: flex;
    flex-wrap: wrap;        /* ← 折り返し許可 */
    row-gap: 6px;
    padding: 10px 0;
  }

  /* 日時・カテゴリ・NEW は1行目に並ぶ */
  .news-date,
  .news-category,
  .news-new {
    font-size: 13px;
    white-space: nowrap;
  }

  /* タイトルだけを2行目に送る */
  .news-title {
    width: 100%;            /* ← これが重要 */
    font-size: 15px;
    line-height: 1.5;
    margin-left: 0;         /* PC用余白リセット */
  }

  /* NEWとタイトルの間の余白（PC用を調整） */
  .news-new {
    margin-right: 8px;
  }
}



/* ===============================
   Top Content 1
=============================== */
.top-content-1 {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);

  padding: 30px 0;

  background: linear-gradient(
    to right,
    #feefd1 0%,
    #fffefd 50%,
    #feefd1 100%
  );
}

.top-content-1-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px; /* ← これが視覚的センターの決め手 */
}

/* 中央コンテンツの最大幅 */
.top-content-1 > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ===============================
   タイトル
=============================== */
.top-content-1-title {
  text-align: center;
  color: #8cc63f;
  font-size: 48px;
  line-height: 84px;
  margin: 0 0 20px;
  
  font-family: "Rounded Mplus 1c bold", "Mplus 1c bold", sans-serif;
  
  @media (max-width: 768px) {
    font-size: 32px;
    line-height: 48px;
  }
}

/* ===============================
   本文
=============================== */
.top-content-1-p {
  width: 80%;
  margin: 0 auto 48px;

  color: #571d00;
  font-size: 18px;
  line-height: 36px;
  
  @media (max-width: 768px) {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
    margin: 0 auto 0px;
    margin-bottom: 20px;
  }
}

/* ========================================
   動画エリア（.top-content-1-inner 内）
   style.css の .top-content-1-p の下あたりに追記
   ======================================== */

/* ===============================
   動画ラッパー
=============================== */
.top-content-1-video {
  max-width: 720px;
  width: 100%;
  margin: 0 auto 48px;

  @media (max-width: 768px) {
    margin: 0 auto 24px;
  }
}

/* 動画＋ボタンの重ね合わせコンテナ */
.top-content-1-video-wrap {
  position: relative;
  display: block;
  width: 100%;
  line-height: 0; /* 動画下の隙間をなくす */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(87, 29, 0, 0.12);
}

/* ===============================
   動画本体
=============================== */
.top-content-1-video-player {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 720 / 480; /* 3:2 */
  object-fit: cover;
  background-color: #f5f0e8;
}

/* ===============================
   音声オン/オフボタン
=============================== */
.top-video-mute-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 8px 16px 8px 12px;
  border: none;
  border-radius: 999px;
  cursor: pointer;

  background-color: rgba(87, 29, 0, 0.60); /* ブラウン半透明 */
  color: #ffffff;

  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1;

  transition: background-color 0.2s ease, opacity 0.2s ease;
  z-index: 10;

  @media (max-width: 768px) {
    padding: 6px 12px 6px 10px;
    font-size: 12px;
    bottom: 10px;
    right: 10px;
  }
}

.top-video-mute-btn:hover {
  background-color: rgba(140, 198, 63, 0.85); /* ホバー時：テーマグリーン */
}

/* ボタン内アイコン */
.top-video-mute-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: #ffffff;

  @media (max-width: 768px) {
    width: 15px;
    height: 15px;
  }
}

/* ラベルテキスト */
.top-video-mute-btn .mute-label {
  white-space: nowrap;
}


/* ===============================
   写真エリア
=============================== */
.top-content-1-photo {
  --photo-gap: 12px; /* ← ここで隙間を調整 */

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--photo-gap);

  width: 100%;
}

/* 写真 */
.top-content-1-photo img {
  width: 100%;
  height: auto;
  display: block;

  border-radius: 16px;
}

/* ===============================
   Top Content 2（完成）
=============================== */
.top-content-2 {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 60px 0;

  background-image: url("../images/top-content-2-bk-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  
  @media (max-width: 768px) {
    padding: 20px 0;
  }
}

/* ===============================
   Inner（body基準）
=============================== */
.top-content-2-inner {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 12px; /* ← body端 12px */
  position: relative;
  
  @media (max-width: 768px) {
    margin: 0 auto 20px;
  }
}

.top-content-2-inner:last-child {
  margin-bottom: 0;
}

/* ===============================
   Left / Right レイアウト
=============================== */
.top-content-2-left,
.top-content-2-right {
  position: relative;
  min-height: 433px;
  
  @media (max-width: 768px) {
    min-height: 250px;
  }
}

/* ===============================
   写真ブロック
=============================== */
.circle-block {
  position: absolute;
  top: 0;
  width: 733px;
  height: 433px;
  
  @media (max-width: 768px) {
    width: 250px;
    height: 250px;
  }
}

/* 左写真 */
.top-content-2-left .circle-block {
  left: calc(50% - 600px); /* body左端 */
  transform: translateX(-120px);
  
  @media (max-width: 768px) {
   left: 120px; 
   transform: translateX(-120px);
    
  }
}

/* 右写真 */
.top-content-2-right .circle-block {
  right: calc(50% - 1000px); /* body右端 */
  transform: translateX(340px);
  
  @media (max-width: 768px) {
    right: 20px; 
    overflow: revert;
   
    
  }
}



/* ===============================
   丸写真＋影
=============================== */
.circle-block {
  position: relative;
  width: 733px;
  height: 733px;
  
  @media (max-width: 768px) {
    width: 250px;
    height: 250px;
  }
}

/* 影（circle-photoの外側） */
.circle-block::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(12px, 8px);

  background-image: url("../images/top-content-2-dot-image.png");
  background-size: cover;
  background-position: center;

  border-radius: 50%;
  z-index: 0;
  opacity: 0.7;
}

/* 写真本体 */
.circle-photo {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}


.circle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




/* ===============================
   見出し（body端スタート）
=============================== */
.top-content-2 h2 {
  position: absolute;
  top: 220px;
  margin: 0;

  font-size: 48px;
  line-height: 60px;
  font-family: "Rounded Mplus 1c bold", "Mplus 1c bold", sans-serif;
  color: #8cc63f;
  z-index: 2;

  text-shadow:
    -2px -2px 0 #ffffff,
     2px -2px 0 #ffffff,
    -2px  2px 0 #ffffff,
     2px  2px 0 #ffffff,
     0 0 8px rgba(255,255,255,0.9);
     
     @media (max-width: 768px) {
       top: 170px;
       font-size: 24px;
       line-height: 38px;
     }
}

@media (max-width: 768px) {
  .top-content-2 {
    width: 100%;
    margin-left: 0;
    
    background-attachment: scroll;
  }
}


/* 左写真 → 文字は右端12px */
.top-content-2-left h2 {
  right: 12px;
  text-align: right;
}

/* 右写真 → 文字は左端12px */
.top-content-2-right h2 {
  left: 12px;
  text-align: left;
}

/* ===============================
   共通ボタン：ch-normal-btn
=============================== */
.ch-normal-btn {
  width: 100%;
  display: flex;
  justify-content: center; /* body中央 */
  margin:  0;          /* 上下余白（任意） */
}

.ch-normal-btn a {
  width: 400px;
  height: 60px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    to right,
    #c6db2f,
    #8cc63f
  );

  border-radius: 30px;
  color: #ffffff;
  text-decoration: none;

  font-size: 18px;
  font-weight: 600;
  font-family: "Rounded Mplus 1c bold", "Mplus 1c bold", sans-serif;

  transition: 
    opacity 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
    
    @media (max-width: 768px) {
      font-size: 14px;
      width: 80%;
      height: 30px;
    }
}

/* hover */
.ch-normal-btn a:hover {
  opacity: 0.6;
  transform: translateY(-2px);
  /* box-shadow: 0 6px 16px rgba(0,0,0,0.15); */
}

/* active（押したとき） */
.ch-normal-btn a:active {
  transform: translateY(0);
  /* box-shadow: 0 3px 8px rgba(0,0,0,0.15); */
}

@media (max-width: 768px){
  .top-content-2 .ch-normal-btn {
    margin-top: 50px;
  }
}



/* ===============================
   Top Banner 001
=============================== */
.top-banner001 {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 60px;
}

/* ------------------------------
   背景画像（body幅）
------------------------------ */
.top-banner001 .top-banner-bg img {  
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* ------------------------------
   コンテンツ（文字＋ボタン）
------------------------------ */
.top-banner001-content {
  position: absolute;
  inset: 0;

  max-width: 1200px;
  margin: 0 auto;
  padding: 0 72px;
  

  display: flex;
  flex-direction: column;
  justify-content: center;

  z-index: 2;
  
  @media (max-width: 768px) {
    padding: 0 16px;
  }
}

/* ------------------------------
   見出し
------------------------------ */
.top-banner001-content h2 {
 font-family: "Rounded Mplus 1c bold", "Mplus 1c bold", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;

  color: #8cc63f;
  margin: 0 0 12px;

  /* 白フチ 2px */
  text-shadow:
    -2px -2px 0 #ffffff,
     2px -2px 0 #ffffff,
    -2px  2px 0 #ffffff,
     2px  2px 0 #ffffff;
     
     @media (max-width: 768px) {
       font-size: 24px;
       line-height: 36px;
       margin-bottom: 6px;
     }
}

/* ------------------------------
   説明文
------------------------------ */
.top-banner001-content p {
  font-family: "Rounded Mplus 1c bold", "Mplus 1c bold", sans-serif;
  font-size: 18px;
  line-height: 31px;

  color: #571d00;
  max-width: 560px;
  margin: 0 0 22px;

  /* 薄いグリーンの文字フチ */
  text-shadow:
    -2px -2px 0 #e8f4d9,
     2px -2px 0 #e8f4d9,
    -2px  2px 0 #e8f4d9,
     2px  2px 0 #e8f4d9;
     
     @media (max-width: 768px) {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 6px;
        
        text-shadow:
        -1px -1px 0 #e8f4d9,
         1px -1px 0 #e8f4d9,
        -1px  1px 0 #e8f4d9,
         1px  1px 0 #e8f4d9;
      }
}

/* ------------------------------
   ボタン（左寄せオーバーライド）
------------------------------ */
.top-banner001 .ch-normal-btn {
  justify-content: flex-start; /* 中央寄せを上書き */
  margin: 0;
  
  @media (max-width: 768px) {
    justify-content: center; 
  }
}


/* ===============================
   Top Banner 002
=============================== */
.top-banner002 {
  width: 100%;
  padding-top: 180px;
  padding-bottom: 80px;
  
  @media (max-width: 768px) {
    padding-top: 80px;
  }
}

/* ------------------------------
   背景画像
------------------------------ */
.top-banner002 .top-banner-bg img {
  width: 100%;
  height: auto;
}


/* ------------------------------
   コンテンツ（中央配置）
------------------------------ */
.top-banner002-content {
  max-width: 1200px;
  margin: 16px auto 0;
  padding: 0 12px;

  display: flex;
  flex-direction: column;
  align-items: center;
}


/* ------------------------------
   ボタン（中央）
------------------------------ */
.top-banner002 .ch-normal-btn {
  margin-top: 24px;
}


/* ===============================
   Top Banner 003
=============================== */
.top-banner003 {
  position: relative;
  width: 100%;
  overflow: hidden;
  
  margin-top: 80px;
}

/* ------------------------------
   背景画像
------------------------------ */
.top-banner003 .top-banner-bg img {
  width: 100%;
  height: auto;
  
}

/* ------------------------------
   コンテンツ（中央配置）
------------------------------ */
.top-banner003-content {
  position: absolute;
  inset: 0;

  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  z-index: 2;
  
  @media (max-width: 768px) {
    margin-left: 8px;
    text-align: left !important;
    align-items: start;
   }
}

/* ------------------------------
   見出し
------------------------------ */
.top-banner003-content h2 {
  margin: 0 0 4px;

  font-family: "Rounded Mplus 1c bold", "Noto Sans JP", sans-serif;
  font-size: 48px;
  line-height: 60px;

  color: #8cc63f;

  /* 白フチ */
  text-shadow:
    -2px -2px 0 #ffffff,
     2px -2px 0 #ffffff,
    -2px  2px 0 #ffffff,
     2px  2px 0 #ffffff;
     
     @media (max-width: 768px) {
       text-align: left !important;
       font-size: 24px;
       line-height: 36px;
     }
}

/* ------------------------------
   テキスト
------------------------------ */
.top-banner003-content p {
  margin: 0 0 16px;

  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 31px;

  color: #571d00;

  text-shadow:
    -2px -2px 0 #ffffff,
     2px -2px 0 #ffffff,
    -2px  2px 0 #ffffff,
     2px  2px 0 #ffffff;
     
     @media (max-width: 768px) {
       font-size: 14px;
       line-height: 22px;
       text-align: left;
       
       text-shadow:
       -1px -1px 0 #ffffff,
        1px -1px 0 #ffffff,
       -1px  1px 0 #ffffff,
        1px  1px 0 #ffffff;
     }
}

/* ===============================
   採用用ボタン（専用）
=============================== */
.top-banner003 .ch-recruit-white-btn {
  display: flex;
  justify-content: center;
}

.top-banner003 .ch-recruit-white-btn a {
  width: 254px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #ffffff;
  border-radius: 22px;

  color: #8cc63f;
  font-size: 16px;
  font-weight: 600;
  font-family: "Rounded Mplus 1c", "Noto Sans JP", sans-serif;
  text-decoration: none;

  /* 右下2px影 */
  box-shadow: 2px 2px 0 rgba(140, 198, 63, 0.3);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
  
  @media (max-width: 768px) {
    margin-left: 8px;
     width: 180px;
     height: 32px;
   }
}

.top-banner003 .ch-recruit-white-btn a:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 rgba(140, 198, 63, 0.3);
}

.top-instagram {
  padding: 0 12px;
}



/* ===============================
   Top Child Info
=============================== */
.top-ch-info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 0px;
}

/* ------------------------------
   ロゴ
------------------------------ */
.top-ch-info h2 {
  margin: 0 0 48px;
  display: flex;
  justify-content: center;
  
  @media (max-width: 768px) {
    margin: 0 0 18px;
  }
}

.top-ch-info h2 img {
  width: 300px;
  height: auto;
  
  @media (max-width: 768px) {
    width: 40%;
  }
  
}

/* ------------------------------
   情報エリア
------------------------------ */
.info-area {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* 左：施設情報 */
.info {
  flex: 1;
}

/* 右：Google Map */
.info-g-map {
  flex: 1;
  min-height: 360px;
  /* background-color: #f5f5f5;  */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

/* ------------------------------
   リスト
------------------------------ */
.info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info li {
  position: relative;
  padding-left: 112px; /* ← span分＋余白 */
  margin-bottom: 18px;

  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 36px;
  color: #571d00;
  

}

/* ラベル（飛び出し） */
.info li span {
  position: absolute;
  left: 0;
  top: 6px;

  width: 88px;
  height: 24px;
  border-radius: 12px;

  background-color: #8cc63f;
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  
  @media (max-width: 768px) {
    width: 70px;
    top: 1px;
    font-size: 12px;
    height: 18px;
  }
  

}

/* ------------------------------
   SP対応
------------------------------ */
@media (max-width: 768px) {
  .top-ch-info {
    padding: 64px 16px 16px;
  }

  .info-area {
    flex-direction: column;
    gap: 40px;
  }

  .info-g-map {
    width: 100%;
    min-height: 280px;
  }

  .info li {
    padding-left: 84px;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 10px;
  }
}

/* 地図全体 */
.info-g-map {
  width: 100%;
}

/* アスペクト比固定用ラッパー */
.map-wrap {
  position: relative;
  width: 100%;
  padding-top: 66.666%; /* 600:400 = 3:2 */
  overflow: hidden;
  border-radius: 12px; /* 任意 */
}

/* iframe本体 */
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* ===============================
   ページ上へ戻るボタン（PCのみ）
=============================== */
.to-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;

  width: 80px;
  height: 70px;

  display: block;

  z-index: 1000;
}

/* 画像フィット */
.to-top-btn img {
  width: 100%;
  height: 100%;
  display: block;
}

/* hover演出（任意） */
.to-top-btn:hover {
  opacity: 0.8;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* ===============================
   SPでは非表示
=============================== */
@media (max-width: 768px) {
  .to-top-btn {
    display: none;
  }
}





/* ===============================
   Page Hero（共通）
=============================== */
.page-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 0px;
}

/* 背景画像 */
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* ← 中央トリミング */
  object-position: center;
}

/* 中身 */
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* 見出し */
.page-hero-title {
  margin: 0;
  text-align: center;
}

.page-hero-title .large {
  font-family: "Rounded Mplus 1c bold", "Mplus 1c", sans-serif;
  font-size: 48px;
  letter-spacing: 0.4em;
  line-height: 1.2;
  color: #8cc63f;

  text-shadow:
    -2px -2px 0 #ffffff,
     2px -2px 0 #ffffff,
    -2px  2px 0 #ffffff,
     2px  2px 0 #ffffff,
     0   0   8px rgba(0,0,0,0.3);
}

/* ===============================
   PC
=============================== */
@media (min-width: 769px) {
  .page-hero {
    height: 260px;   /* ← 指定どおり */
  }
}

/* ===============================
   SP
=============================== */
@media (max-width: 768px) {
  .page-hero {
    height: 250px;   
  }

  .page-hero-title .large {
    font-size: 32px;
  }
}


/* ===============================
   投稿・アーカイブ 共通レイアウト
=============================== */

.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 24px;

  display: grid;
  grid-template-columns: 1fr 320px; /* 記事：サイドバー */
  gap: 40px;
}


/* 記事側 */
.single-content,
.archive-content {
  background-color: #e8f4d9;
  border-radius: 20px;
  padding: 20px 40px;
}

/* single.php 内側 */
.single-inner {
  max-width: 760px;
  margin: 0 auto;
}


.single-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #8cc63f;
  line-height: 14px;
}

.single-category {
  position: absolute;
  top:16px;
  left: 126px;
  background-color: #8cc63f;
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 14px;
}


.single-title {
  font-size: 32px;
  line-height: 44px;
  color: #571d00;
  margin-bottom: 32px;
}

.single-body {
  font-size: 18px;
  line-height: 36px;
  color: #571d00;
  background-color: white;
  padding: 16px;
  margin-top: 0px;
  min-height: 300px;
  border-radius: 12px;
}

.single-body p {
  margin-bottom: 24px;
}


.blog-card {
  padding: 32px 0;
  border-bottom: 1px solid #8cc63f;
}

.blog-card:last-child {
  border-bottom: none;
}

.blog-card-title {
  font-size: 24px;
  margin: 12px 0;
}

.blog-card-title a {
  color: #571d00;
  text-decoration: none;
}

.blog-card-title a:hover {
  text-decoration: underline;
}

.blog-card-date {
  font-size: 14px;
  color: #6b4b2b;
}

.blog-card-excerpt {
  font-size: 16px;
  line-height: 28px;
  color: #571d00;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-section {
  background-color: #e8f4d9;
  border-radius: 20px;
  padding: 24px;
}

.sidebar-title {
  font-family: "Rounded Mplus 1c bold", "Mplus 1c", sans-serif;
  font-size: 20px;
  line-height: 20px;
  color: #8cc63f;
  margin-bottom: 12px;
  padding-bottom: 4px;
  border-bottom: 2px solid #8cc63f;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  margin-bottom: 12px;
  line-height: 20px;
}

/* 最後の li だけ余白を消す */
.sidebar-list li:last-child {
  margin-bottom: 0;
}

.sidebar-list a {
  color: #571d00;
  text-decoration: none;
  font-size: 14px;
  
}

.sidebar-list a:hover {
  text-decoration: underline !important;
  
}

.sidebar-list a:hover {
  text-decoration: underline;
}


.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.post-navigation a {
  color: #8cc63f;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
}


@media (max-width: 768px) {

  .page-content {
    grid-template-columns: 1fr;
    padding: 40px 16px;
  }

  .single-content,
  .archive-content {
    padding: 24px;
  }

  .sidebar-title {
    font-size: 18px;
    line-height: 22px;
  }
}

/* ===============================
   Archive List
=============================== */

.archive-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 1行 */
.archive-item {
  display: flex;
  align-items: center;
  gap: 16px;

  padding: 16px 0;
  padding-left: 8px;
  border-bottom: 1px solid #8cc63f;
}

/* 最後の行だけ罫線なし */
.archive-item:last-child {
  border-bottom: none;
}

/* 日付 */
.archive-date {
  font-size: 14px;
  line-height: 24px;
  width: 80px;
  color: #8cc63f;
  white-space: nowrap;
  
  @media (max-width: 768px){ 
    width: 80px;
    font-size: 12px;
    line-height: 18px;
  }
}

/* カテゴリー */
.archive-category {
  display: inline-block;
  padding: 2px 12px;
  width: 90px;
  border-radius: 20px;
  text-align: center;

  background-color: #8cc63f;
  color: #ffffff;

  font-size: 14px;
  line-height: 24px;
  font-family: "Rounded Mplus 1c", sans-serif;
  font-weight: 500;
  white-space: nowrap;
  
  @media (max-width: 768px){ 
    width: 80px;
    line-height: 18px;
    font-size: 11px;
  }
}

/* タイトル */
.archive-title {
  flex: 1; /* タイトルが残り幅を使う */
  text-decoration: none;

  font-size: 18px;
  line-height: 24px;
  color: #571d00;
  font-family: "Rounded Mplus 1c", sans-serif;
  font-weight: 500;
  
  @media (max-width: 768px){ 
    font-size: 16px;
  }
}

.archive-title:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {

  .archive-item {
    display: block;   /* ← flex を完全にやめる */
  }

  /* 日付＋カテゴリ（1行目） */
  .archive-date,
  .archive-category {
    display: inline-block;
    margin-right: 8px;
  }

  /* 投稿タイトル（必ず改行） */
  .archive-title {
    display: block;   /* ← これが決定打 */
    margin-top: 6px;
  }

}

/* 下層ページ */
/* 下層ページ */
/* 標準の幅設定 */
.ch-page-wide {
  width: 100%;
}

.ch-page-top{
  padding-top: 50px !important;
}

.ch-page-normal {
  width: 80%;
  margin: 0 auto;
  
  @media (max-width: 768px) {
    width: 100%;
    padding: 0 16px;
  }
}

table.ch-table-nomal {
  width: 100%;
  border-top: 2px solid #8cc63f;
  

}

table.ch-table-nomal tr {
  border-bottom: 2px solid #8cc63f;
  
}

table.ch-table-nomal th {
  width: 20%;
  background-color: #e8f4d9;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  
  @media (max-width: 768px) {
    display: block;
    width: 100%;
    font-size: 14px;
  }
}

table.ch-table-nomal td {
  width: 80%;
  font-size: 18px;
  padding: 12px 16px;
  line-height: 1.5em;
  
  @media (max-width: 768px) {
    display: block;
    width: 100%;
    font-size: 14px;
  }
}

table.ch-table-nomal td a {
  color: #8cc63f;
  text-decoration: underline !important;
}

table.ch-table-nomal td a:hover {
  opacity: 0.5;
}

.ch-page-normal p{
  font-size: 18px;
  line-height: 2em;
  
  @media (max-width: 768px) {
    font-size: 14px;
  }

}


/* ===============================
   入園案内　guide
=============================== */

.ch-form-format {
  width: 100%;
  background-color: #e8f4d9;
  padding: 40px 80px;
  
  @media (max-width: 768px) {
    padding: 16px;
  }
}

.ch-form-space {
  background-color: white;
  border: 2px solid #8cc63f;
  border-radius: 16px;
  padding: 32px;
  
  @media (max-width: 768px){
    padding: 16px;
  }
}



/* ===============================
   情報公開　disclosure
=============================== */

.disclosure h3, .job h3 {
  width: 100%;
  text-align: center;
  color: #8cc63f;
  border: 2px solid #8cc63f;
  border-radius: 60px;
  font-size: 35px;
  font-family: "Rounded Mplus 1c bold", sans-serif;
  padding: 4px 0;
  
  @media (max-width: 768px) {
    font-size: 22px;
  }
}

.disclosure h4 {
  font-size: 20px;
  font-family: "Rounded Mplus 1c bold", sans-serif;
}

.disclosure ul {
  font-size: 18px;
  color: #8cc63f;
  text-decoration: underline !important;
}

.disclosure li {
  line-height: 2em;
}

.disclosure li a:hover{
 opacity: 0.5;
}


/* ===============================
   プライバシーポリシー　privacy
=============================== */
.privacy h3 {
  color: #8cc63f;
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 4px;
  
  @media (max-width: 768px) {
    font-size: 18px;
  }
}

.privacy .kakomi {
  border: 1px solid #571d00;
  padding: 8px 16px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.privacy table {
  margin-top: 16px;
  border-top: 1px solid #571d00;
  border-left: 1px solid #571d00;
  font-size: 18px;
  
  @media (max-width: 768px) {
    font-size: 14px;
  }
  
}

.privacy table td {
  padding: 0px 16px;
  border-right: 1px solid #571d00;
  border-bottom: 1px solid #571d00;
}


/* ===============================
   Recruit セクション
=============================== */
.recruit {
  width: 100%;

  padding: 40px 60px;

  background-image: url("../images/recruit-bg.png"); /* 仮 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 見出し */
.ch-page-top.recruit .ch-normal-midashi {
  text-align: center;
  margin-bottom: 64px;
}

/* ===============================
   募集職種リスト
=============================== */
.ch-recruit-joblist {
  /* max-width: 1200px;  *//* ← 3列の時 */
  max-width: 800px; 
  margin: 0 auto;

  display: flex;
  flex-wrap: wrap;   /* ← h3を1行にするため必須 */
  gap: 32px;
}

/* h3は1行全部使う */
.ch-recruit-joblist > h3 {
  flex-basis: 100%;
}

/* jobカード */
.ch-job {
  flex: 1;
  min-width: 0;
}

/* 画像 */
.ch-job img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  border-radius: 8px;
}

.ch-recruit-joblist h3 {
  text-align: center;
  font-family: "Rounded Mplus 1c bold", sans-serif;
  font-size: 48px;
  color: #8cc63f;
  
  @media (max-width: 768px) {
    font-size: 24px;
  }
}

/* 職種名 */
.ch-job h4 {
  font-size: 48px;
  color: #8cc63f;
  font-family: "Rounded Mplus 1c bold", sans-serif;
  text-align: center;
  margin: 8px 0 20px;
}

.ch-job h4 span {
  font-size: 30px;
}

/* ボタン */
.ch-job-btn {
  width: 100%;
  display: flex;
  justify-content: center; /* body中央 */
  margin:  0;          /* 上下余白（任意） */
}

.ch-job-btn a {
  width: 80%;
  height: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    to right,
    #c6db2f,
    #8cc63f
  );

  border-radius: 30px;
  color: #ffffff;
  text-decoration: none;

  font-size: 18px;
  font-weight: 600;
  font-family: "Rounded Mplus 1c bold", "Mplus 1c bold", sans-serif;

  transition: 
    opacity 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
    
    @media (max-width: 768px) {
      font-size: 14px;
      width: 80%;
      height: 30px;
    }
}

/* hover */
.ch-job-btn a:hover {
  opacity: 0.6;
  transform: translateY(-2px);
  /* box-shadow: 0 6px 16px rgba(0,0,0,0.15); */
}

/* active（押したとき） */
.ch-job-btn a:active {
  transform: translateY(0);
  /* box-shadow: 0 3px 8px rgba(0,0,0,0.15); */
}

@media (max-width: 768px){
  .top-content-2 .ch-normal-btn {
    margin-top: 50px;
  }
}

/* ===============================
   SP対応
=============================== */
@media (max-width: 768px) {

  .recruit {
    padding: 30px 16px;
  }

  .ch-recruit-joblist {
    flex-direction: column;
    gap: 24px;
  }



  .ch-job h4 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {

  /* 募集職種の1つ目・2つ目だけ上に余白 */
  .ch-recruit-joblist .ch-job:nth-of-type(1),
  .ch-recruit-joblist .ch-job:nth-of-type(2) {
    margin-bottom: 40px;
  }

}


/* ===============================
   Job Intro
=============================== */
.job-intro {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: start;
  gap: 40px;
}

/* テキスト側 */
.job-text {
  width: 65%;
}

.job-text p {
  font-size: 18px;
  line-height: 2em;
  color: #571d00;
  margin: 0;
  
  @media (max-width: 768px) {
    font-size: 14px;
  }
}

/* 画像側 */
.job-img {
  width: 35%;
}

.job-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px; /* 任意：柔らかく */
}

/* ===============================
   SP対応
=============================== */
@media (max-width: 768px) {

  .job-intro {
    flex-direction: column;
    gap: 24px;
  }

  .job-text,
  .job-img {
    width: 100%;
  }

}


/* ===============================
   採用プロセス
=============================== */
.process_item {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}

/* 1ステップ */
.process_item li {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  position: relative;
}

/* ===============================
   丸いプロセスブロック
=============================== */
.process_block {
  position: relative;
  z-index: 2;

  width: 120px;
  height: 120px;
  border-radius: 50%;

  background: linear-gradient(to bottom, #c6db2f, #8cc63f);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  font-family: "Rounded Mplus 1c bold", sans-serif;

  flex-shrink: 0;
}

/* ===============================
   串（縦ライン）
=============================== */
.process_item li:not(:last-child) .process_block::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);

  width: 3pt;
  height: 48px;

  background-color: #c5e29f;
}

/* ===============================
   説明テキスト
=============================== */
.process_text {
  display: block;
  padding-top: 16px;

  font-size: 18px;
  line-height: 32px;
  color: #571d00;

}

/* ===============================
   SP対応
=============================== */
@media (max-width: 768px) {

  .process_item {
    gap: 32px;
  }

  .process_item li {
    gap: 20px;
  }

  .process_block {
    width: 90px;
    height: 90px;
    font-size: 16px;
  }

  .process_text {
    font-size: 14px;
    line-height: 26px;
    padding-top: 8px;
  }
  


  .process_item li:not(:last-child) .process_block::after {
    height: 52px;
  }
  
  .process_item li:first-child .process_block::after {
    height: 130px;
  }
}


/* ===============================
   フォーム全体
=============================== */
.ch-form-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;

  margin-bottom: 24px;
  align-items: flex-start;
}

.ch-form-row p {
  text-align: right;
  
  @media (max-width: 768px){
    text-align: left;
  }
}

.ch-form-field p {
  text-align: left !important;
}

/* ラベル */
.ch-form-label {
  font-size: 20px;
  color: #571d00;
  line-height: 1.6;
  font-family: "Rounded Mplus 1c bold", sans-serif;
}

/* 入力エリア */
.ch-form-field {
  width: 100%;
}

.ch-form-field p.setsumei {
  text-align: left;
  font-size: 14px;
  line-height: 16px;
  margin-top: 8px;
}

.ch-form-field.inline {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 入力パーツ */
.ch-form-item {
  width: 100%;
  padding: 10px 12px;

  font-size: 16px;
  line-height: 16px;
  border: 1px solid #cccccc;
  border-radius: 6px;
}

/* textarea */
.ch-form-item textarea,
textarea.ch-form-item {
  min-height: 140px;
}

/* 単位 */
.unit {
  font-size: 20px;
  color: #571d00;
  margin-left: 8px;
  font-family: "Rounded Mplus 1c bold", sans-serif;
  
  @media (max-width: 768px) {
    font-size: 16px;
  }
}



/* ===============================
   送信ボタン：ch-form-submit
=============================== */

/* 送信ボタン */


/* 送信ボタン全体 */
.ch-form-submit {
  text-align: center; /* 中央寄せ（必要なければ削除） */
  margin-top: 32px;
}

/* CF7 送信ボタン本体 */
.ch-form-submit input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;

  width: 400px;
  height: 56px;

  background: linear-gradient(to right, #c6db2f, #8cc63f);
  border: none;
  border-radius: 28px;

  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  font-family: "Rounded Mplus 1c", "Noto Sans JP", sans-serif;

  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease;
  
  @media (max-width: 768px) {
    width: 100%;
  }
}

/* hover */
.ch-form-submit input[type="submit"]:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* 押した時 */
.ch-form-submit input[type="submit"]:active {
  transform: translateY(0);
  opacity: 0.85;
}





/* ===============================
   SP対応
=============================== */
@media (max-width: 768px) {

  .ch-form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ch-form-label {
    font-size: 15px;
  }
}


/* 年齢フィールドを横並びにするためのCF7対策 */
.ch-form-field.inline {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* CF7が自動で挟むspanを横並び対応 */
.ch-form-field.inline .wpcf7-form-control-wrap {
  display: inline-flex;
  align-items: center;
}


/* ===============================
   ちゃいるどほーむでの生活：life
=============================== */

.ch-page-top.life {
  width: 1200px;
  margin: 0 auto;
}

.ch-page-top.life {
  /* content: "";
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 100%;
  background-image: url("../images/top-content-2-bk-image.png");
  background-size: cover;
  background-position: center;
  z-index: -1; */
  
  width: 100%;
  
  background-image: url("../images/top-content-2-bk-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  
  @media (max-width: 768px) {
    padding: 20px 0;
  }
}

.ch-daily-schedule ul {
  width: 80%;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  
  @media (max-width: 768px) {
    width: 100%;
    padding: 0 16px;
  }
}

.ch-daily-schedule li {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  column-gap: 32px;
  padding-bottom: 40px;
}

.schedule_time,
.schedule_time-3L {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #c6db2f, #8cc63f);
  color: #fff;
  font-family: "Rounded Mplus 1c bold", "Noto Sans JP", sans-serif;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  font-weight: 600;
  text-align: center;
  position: relative;
  
  @media (max-width: 768px) {
    width: 70px;
    height: 70px;
    
    font-size: 13px;
  }
}

.schedule_time-3L {
  font-size: 14px;
  line-height: 1.1;
  
  @media (max-width: 768px) {
    font-size: 12px;
  }
}

.schedule_time::after,
.schedule_time-3L::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: var(--line-height, 60px);
  background-color: #c5e29f;
}

.ch-daily-schedule li:last-child .schedule_time::after,
.ch-daily-schedule li:last-child .schedule_time-3L::after {
  display: none;
}

/* 例：2番目だけ長く */
.ch-daily-schedule li:nth-child(1) .schedule_time {
  --line-height: 280px;
  
  @media (max-width: 768px) {
    --line-height: 380px;
  }
}

.ch-daily-schedule li:nth-child(2) .schedule_time {
  --line-height: 280px;
  
  @media (max-width: 768px) {
    --line-height: 380px;
  }
}

.ch-daily-schedule li:nth-child(3) .schedule_time {
  --line-height: 280px;
}

.ch-daily-schedule li:nth-child(4) .schedule_time {
  --line-height: 280px;
}

.ch-daily-schedule li:nth-child(5) .schedule_time {
  --line-height: 280px;
}


@media (max-width: 768px) {
  .ch-daily-schedule li:nth-child(6) .schedule_time {
  --line-height: 120px;
  }
}

.schedule_block p {
  font-size: 24px;
  font-family: "Rounded Mplus 1c bold", "Noto Sans JP", sans-serif;
  line-height: 36px;
  color: #571d00;
  margin-top: 24px;
  margin-bottom: 16px;
  
  @media (max-width: 768px) {
    font-size: 18px;
    margin-top: 12px;
  }
}


.schedule_block .photo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.schedule_block .photo img {
  width: 100%;
  border-radius: 12px;
}


@media (max-width: 768px) {
  .ch-daily-schedule li {
    grid-template-columns: 80px 1fr;
    column-gap: 16px;
  }

  .schedule_block .photo {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 年間行事（monthly event） */
.ch-monthly-event {

}

.ch-monthly-event ul {
  width: 100%;
  /* margin: 0 auto; */
  list-style: none;
  padding:  0 24px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}

@media (max-width: 768px) {
  .ch-monthly-event ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}



.ch-monthly-event li {
  display: block; /* ← 横並びを強制解除 */
  position: relative;
  text-align: center;
}



.ch-monthly-event img {
  width: 100%;
  border-radius: 12px;
}

.ch-monthly-event p {
  margin-top: 12px;
  font-size: 18px;
  line-height: 28px;
  color: #571d00;
  text-align: left;
  padding-left: 24px;
  
  @media (max-width: 768px) {
    font-size: 14px;
  }
}



.ch-monthly-event > p {
  font-size: 14px;
  color: #571d00;
  padding-left: 24px;
  padding-bottom: 32px;
}

.month {
  position: absolute;
  top: -12px;
  left: -12px;

  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #c6db2f, #8cc63f);
  font-family: "Rounded Mplus 1c bold", "Noto Sans JP", sans-serif;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  font-weight: 600;
  z-index: 2;
  
  @media (max-width: 768px) {
    width: 54px;
    height: 54px;
    font-size: 14px;
  }
}

.month span {
  font-size: 30px;
  
  @media (max-width: 768px) {
    font-size: 24px;
  }
}


/* ===============================
   おいしい給食・食育
=============================== */

/* セクション全体：背景固定 */
.ch-about-food-edu {
  width: 100%;
  margin: 0 auto;

  background-image: url("../images/life-food-edu-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  padding: 80px ;
}

/* 中央コンテンツ幅 */
.ch-about-food-edu-box {
  width: 100%;
  margin: 0 auto;

  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* テキスト：70% */
.ch-about-food-edu-box .text {
  width: 70%;
  font-size: 18px;
  line-height: 2em;
  color: #571d00;
  
  @media (max-width: 768px) {
    font-size: 14px;
  }
}

/* 強調 span */
.ch-about-food-edu-box .text span {
  font-family: "Rounded Mplus 1c bold", "Noto Sans JP", sans-serif;
  color: #8cc63f;
}

/* 写真エリア：30% */
.ch-about-food-edu .photo {
  width: 30%;
  display: flex;
  flex-direction: column; /* PCは縦並び */
  gap: 16px;
}

.ch-about-food-edu .photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

/* ===============================
   SP（768px以下）
=============================== */
@media (max-width: 768px) {

  .ch-about-food-edu {
    padding: 60px 16px;
    background-attachment: scroll; /* SPでは固定解除（重要） */
  }

  /* テキスト＋写真：縦並び */
  .ch-about-food-edu-box {
    flex-direction: column;
  }

  .ch-about-food-edu-box .text,
  .ch-about-food-edu .photo {
    width: 100%;
  }

  /* 写真：横並び */
  .ch-about-food-edu .photo {
    flex-direction: row;
    gap: 12px;
    padding-right: 14px;
  }

  .ch-about-food-edu .photo img {
    width: 50%;
  }
}



/* ===============================
   360度表示エリア（幅いっぱい）
=============================== */
.ch-room-show-360 {
  width: 100%;
  margin-bottom: 40px;
}

.ch-room-show-360 img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===============================
   サムネイル表示
=============================== */
.ch-room-show {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PC：4列 */
  gap: 16px;
}

.ch-room-show img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px; /* 任意：角丸 */
  object-fit: cover;
}

/* ===============================
   SP版
=============================== */
@media (max-width: 768px) {
  .ch-room-show {
    grid-template-columns: repeat(2, 1fr); /* SP：2列 */
    gap: 12px;
    padding: 0 16px;
  }
}












/* ===============================
   policy-content（完成）
=============================== */
.policy-content {
  width: 100%w;
  /* margin-left: calc(50% - 50vw);
  padding: 60px 0; */
  padding-bottom: 60px;

  background-image: url("../images/top-content-2-bk-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  
  @media (max-width: 768px) {
    padding: 20px 0;
  }
}

/* ===============================
   Inner（body基準）
=============================== */
.policy-content-inner {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 12px; /* ← body端 12px */
  position: relative;
  
  @media (max-width: 768px) {
    margin: 0 auto 20px;
  }
}

.policy-content-inner:last-child {
  margin-bottom: 0;
}

/* ===============================
   Left / Right レイアウト
=============================== */
.policy-content-left,
.policy-content-right {
  position: relative;
  min-height: 517px;
  
  @media (max-width: 768px) {
    min-height: 250px;
  }
}

/* ===============================
   写真ブロック
=============================== */
.circle-block {
  position: absolute;
  top: 0;
  width: 517px;
  height: 517px;
  
  @media (max-width: 768px) {
    width: 250px;
    height: 250px;
  }
}

/* 左写真 */
.policy-content-left .circle-block {
  left: 60px; /* body左端 */
  /* transform: translateX(-120px); */
  
  @media (max-width: 768px) {
   left: -40px; 
   /* transform: translateX(-120px); */
    
  }
}

/* 右写真 */
.policy-content-right .circle-block {
  right: calc(50% - 1050px); /* body右端 */
  transform: translateX(120px);
  
  @media (max-width: 768px) {
    left: calc(50% - 125px - 20px); 
    overflow: revert;
   
    
  }
}



/* ===============================
   丸写真＋影
=============================== */
.circle-block {
  position: relative;
  width: 517px;
  height: 517px;
  
  @media (max-width: 768px) {
    width: 250px;
    height: 250px;
  }
}

/* 影（circle-photoの外側） */
.circle-block::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(12px, 8px);

  background-image: url("../images/top-content-2-dot-image.png");
  background-size: cover;
  background-position: center;

  border-radius: 50%;
  z-index: 0;
  opacity: 0.7;
}

/* 写真本体 */
.circle-photo {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}


.circle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




/* ===============================
   見出し（body端スタート）
=============================== */
.policy-content h2.policy {
  position: absolute;
  top: 220px;
  margin: 0;

  font-size: 48px;
  line-height: 60px;
  font-family: "Rounded Mplus 1c bold", "Mplus 1c bold", sans-serif;
  color: #8cc63f;
  z-index: 2;

  text-shadow:
    -2px -2px 0 #ffffff,
     2px -2px 0 #ffffff,
    -2px  2px 0 #ffffff,
     2px  2px 0 #ffffff,
     0 0 8px rgba(255,255,255,0.9);
     
     @media (max-width: 768px) {
       top: 70px;
       font-size: 24px;
       line-height: 38px;
     }
}

@media (max-width: 768px) {
  .policy-content {
    width: 100%;
    margin-left: 0;
    
    background-attachment: scroll;
  }
}


/* 左写真 → 文字は右端12px */
.policy-content-left h2 {
  right: 60px;
  text-align: right;
  
  @media (max-width: 768px) {
    right: 20px;
  }
}

/* 右写真 → 文字は左端12px */
.policy-content-right h2 {
  left: 60px;
  text-align: left;
  
  @media (max-width: 768px) {
    left: 20px;
  }
}



/* ===============================
   ごあいさつブロック
=============================== */
.greeting {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 80%;
  margin: 0 auto;
  
  @media (max-width: 768px) {
    width: 100%;
    padding: 0 16px;
  }
}

/* テキスト */
.greeting .text {
  width: 70%;
}

.greeting .text p {
  font-size: 18px;
  line-height: 2em;
  color: #571d00;
  margin: 0;
}

/* 写真 */
.greeting .photo {
  width: 30%;
  text-align: center;
}

.greeting .photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin-bottom: 8px;
}

/* キャプション */
.greeting .photo p {
  font-size: 18px;
  color: #571d00;
  text-align: center;
}

/* ===============================
   SP版
=============================== */
@media (max-width: 768px) {
  .greeting {
    flex-direction: column;
    gap: 24px;
  }

  .greeting .text {
    width: 100%;
  }
  

.greeting .photo {
    width: 50%;
    margin: 0 auto;
  }

  .greeting .text p {
    font-size: 16px;
    line-height: 28px;
  }
}


/* ===============================
   保育目標（Goal）
=============================== */
.ch-goal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;

}

/* リスト全体 */
.ch-goal ul {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;

  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PC：4列 */
  gap: 32px;
}

/* 各項目 */
.ch-goal li {
  text-align: center;
}

/* 画像 */
.ch-goal li img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%; /* 任意：やさしい印象 */
  margin-bottom: 16px;
}

/* テキスト */
.ch-goal li p {
  margin: 0;
  color: #8cc63f;
  font-size: 18px;
  line-height: 1.8em;
  font-weight: 600;
  font-family: "Rounded Mplus 1c bold", "Mplus 1c bold", sans-serif;
}

/* ===============================
   SP版
=============================== */
@media (max-width: 768px) {
  .ch-goal ul {
    grid-template-columns: repeat(2, 1fr); /* SP：2列 */
    gap: 24px;
  }

  .ch-goal li p {
    font-size: 16px;
    line-height: 26px;
  }
}


/* ===============================
   保育理念
=============================== */
.ch-philosophy ul {
  list-style: none;              /* デフォルトの黒丸を消す */
  padding: 0;
  margin: 40px auto 0;
  max-width: 900px;              /* 中央配置用の幅（調整可） */
}

/* 各行 */
.ch-philosophy li {
  position: relative;
  padding-left: 32px;            /* ●分の余白 */
  margin-bottom: 20px;

  font-size: 28px;
  line-height: 42px;
  font-family: "Rounded Mplus 1c bold", "Mplus 1c bold", sans-serif;
  color: #571d00;
  text-align: left;              /* 文字は左揃え */
}

/* ●（カスタムマーカー） */
.ch-philosophy li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.2em;                    /* 縦位置微調整 */
  color: #8cc63f;
  font-size: 20px;               /* ●のサイズ */
}

/* 最後の余白を消す */
.ch-philosophy li:last-child {
  margin-bottom: 0;
}

/* ===============================
   SP版
=============================== */
@media (max-width: 768px) {
  .ch-philosophy ul {
    padding: 0 60px;
  }

  .ch-philosophy li {
    font-size: 20px;
    line-height: 32px;
    padding-left: 28px;
  }

  .ch-philosophy li::before {
    font-size: 16px;
  }
}


/* ===============================
   自然保育について
=============================== */
.about-nature-nursery {
  background-color: #e8f4d9;
  width: 100%;
  margin: 0px auto ;
  padding: 40px;

  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* -------------------------------
   テキスト
-------------------------------- */
.about-nature-nursery .text {
  width: 60%;
}

.about-nature-nursery .text p {
  margin: 0;
  font-size: 18px;
  line-height: 2em;
  color: #571d00;
}

/* -------------------------------
   写真エリア
-------------------------------- */
.about-nature-nursery .photo {
  width: 40%;
  display: flex;
  flex-direction: column; /* PC：縦並び */
  gap: 16px;
}

.about-nature-nursery .photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

/* ===============================
   SP版
=============================== */
@media (max-width: 768px) {
  .about-nature-nursery {
    width: 100%;
    padding: 24px;
    flex-direction: column; /* text / photo 縦並び */
    gap: 24px;
  }

  .about-nature-nursery .text,
  .about-nature-nursery .photo {
    width: 100%;
  }

  /* SP：写真は横並び */
  /* .about-nature-nursery .photo {
    flex-direction: row;
    gap: 12px;
  } */

  .about-nature-nursery .photo img {
    width: 100%;
  }

  .about-nature-nursery .text p {
    font-size: 16px;
    line-height: 28px;
  }
}

.ch-room-show-360 p {
  text-align: center;
  font-size: 16px;
  line-height: 1.2em;
  margin-top: 20px;
  
  @media (max-width: 768px) {
    font-size: 12px;
  }
}

#panorama{
/* width:100%;
height:500px;
background:#000; */
width:100%;
aspect-ratio:2 / 1;
min-height:300px;
}

.ch-room-show{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:20px;
padding: 0 10%;
}

.pano-thumb{
border:none;
padding:0;
background:none;
cursor:pointer;
opacity:.6;
transition:.3s;
}

.pano-thumb img{
width:100%;
display:block;
border-radius:6px;
}

.pano-thumb:hover{
opacity:1;
}

.pano-thumb.active{
opacity:1;
outline:3px solid #fbae17;
border-radius: 12px;
}