/* ============================================
   朝田幼稚園 レスポンシブ統合CSS
   style-responsive.css
   ============================================ */

/* Google Fonts - Kosugi Maru（小杉丸ゴシック） */
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');

/* ----------------------------------------
   リセット・基本
   ---------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  color: #444;
  font-family: 'Kosugi Maru', "ヒラギノ丸ゴ Pro W4", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1.8;
  background-color: #FFFDF5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

ul { list-style: none; }

a {
  color: #444;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}
a:hover { color: var(--color-main); }

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: top;
}

/* ----------------------------------------
   カラー変数
   ---------------------------------------- */
:root {
  --color-main:    #F19601;
  --color-main2:   #FDB102;
  --color-accent:  #FF8C42;
  --color-light:   #FFF8E8;
  --color-cream:   #FFFDF5;
  --color-bg:      #FFFCEC;
  --color-white:   #ffffff;
  --color-text:    #444444;
  --color-gray:    #888888;
  --color-border:  #F5DFA0;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --shadow-soft:   0 4px 16px rgba(241,150,1,0.12);
  --shadow-card:   0 2px 10px rgba(0,0,0,0.08);
  --header-h:      70px;
}

/* ============================================
   HEADER
   ============================================ */
:root {
  --header-h: 88px; /* 上段56px＋下段32px */
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(135deg, #F19601 0%, #FDB102 60%, #FFCB3C 100%);
  box-shadow: 0 3px 12px rgba(241,150,1,0.35);
}

/* 上段：ロゴ */
#header-top {
  max-width: 1040px;
  margin: 0 auto;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}

#header-logo a {
  display: flex;
  align-items: center;
  gap: 6px;
}
#header-logo img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
}

/* 下段：グローバルナビ */
#global-nav {
  background: rgba(0,0,0,0.12);
  border-top: 1px solid rgba(255,255,255,0.25);
}
#global-nav ul {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0;
}
#global-nav ul li a {
  display: block;
  padding: 6px 7px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.2s;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
#global-nav ul li a:hover {
  background-color: rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 4px;
}

/* ハンバーガーボタン（PC では非表示） */
#menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 10px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
#menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================
   DRAWER MENU（SP）
   ============================================ */
#drawer-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 82%;
  max-width: 300px;
  height: 100%;
  background: linear-gradient(160deg, #F19601 0%, #FDB102 100%);
  z-index: 2000;
  overflow-y: auto;
  transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
  padding-top: 10px;
}
#drawer-menu.is-open { left: 0; }

#drawer-close {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 14px 20px;
  cursor: pointer;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
#drawer-menu ul li {
  border-bottom: 1px solid rgba(255,255,255,0.25);
}
#drawer-menu ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 24px;
  letter-spacing: 0.05em;
}
#drawer-menu ul li a::before {
  content: "▶";
  font-size: 9px;
  opacity: 0.7;
}
#drawer-menu ul li a:hover {
  background-color: rgba(255,255,255,0.15);
}

#drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1500;
  backdrop-filter: blur(2px);
}
#drawer-overlay.is-open { display: block; }

/* ============================================
   MAIN VISUAL（スライダー）
   ============================================ */
#mainvisual {
  margin-top: 88px; /* header-top 58px + nav 30px */
  overflow: hidden;
  background-color: #f5edcc;
  position: relative;
}
#mainvisual::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 6px;
  background: linear-gradient(90deg, var(--color-main), var(--color-main2), var(--color-accent), var(--color-main2), var(--color-main));
}
#mainvisual img,
.mv-slider .slick-slide img {
  height: 280px;
  width: auto;
  object-fit: cover;
}

/* ============================================
   PAGE LAYOUT（2カラム）
   ============================================ */
#page-wrap {
  background-color: var(--color-cream);
  min-height: 60vh;
}
#page-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 24px 20px 48px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

#sidebar {
  width: 220px;
  flex-shrink: 0;
  padding-top: 4px;
}
#main-content {
  flex: 1;
  min-width: 0;
}

/* ============================================
   CONTENT BLOCK（共通セクション）
   ============================================ */
.content-block {
  margin-bottom: 28px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--color-border);
}

.block-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  background: linear-gradient(90deg, var(--color-main) 0%, var(--color-main2) 100%);
  padding: 10px 16px 10px 52px;
  min-height: 48px;
  letter-spacing: 0.08em;
  background-repeat: no-repeat;
  background-position: 14px center, 0 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.block-title.hicon01 { background-image: url(/asada/css/hicon01.png), linear-gradient(90deg, #F19601 0%, #FDB102 100%); }
.block-title.hicon02 { background-image: url(/asada/css/hicon02.png), linear-gradient(90deg, #F19601 0%, #FDB102 100%); }
.block-title.hicon03 { background-image: url(/asada/css/hicon03.png), linear-gradient(90deg, #F19601 0%, #FDB102 100%); }
.block-title.hicon04 { background-image: url(/asada/css/hicon04.png), linear-gradient(90deg, #F19601 0%, #FDB102 100%); }

.title-sub {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  margin-left: 8px;
}

.block-body {
  font-size: 16px;
  line-height: 1.85;
  padding: 18px 20px;
  overflow: hidden;
}

.float-right {
  float: right;
  margin: 0 0 12px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

/* ============================================
   NEWS LIST
   ============================================ */
.news-list { padding: 12px 20px 16px; }
.news-item {
  padding: 12px 0;
  border-bottom: 1px dashed var(--color-border);
}
.news-item:last-child { border-bottom: none; }
.news-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}
.news-title a:hover { color: var(--color-main); }
.news-date {
  color: var(--color-main2);
  font-size: 15px;
  font-weight: 700;
  background: var(--color-light);
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.news-body {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-top: 4px;
}

/* ============================================
   ALBUM GRID
   ============================================ */
.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 4px;
}
.album-thumb {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border);
}
.album-thumb img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.album-thumb:hover img { transform: scale(1.05); }
.album-title {
  font-size: 15px;
  line-height: 1.5;
  padding-top: 6px;
}
.album-title a { color: var(--color-text); }
.album-title a:hover { color: var(--color-main); }

.album-all-link {
  text-align: center;
  padding: 14px 0 4px;
}
.album-all-link a {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-main);
  background: var(--color-light);
  border: 2px solid var(--color-main2);
  padding: 6px 24px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s;
}
.album-all-link a:hover {
  background: var(--color-main);
  color: #fff;
  border-color: var(--color-main);
}

/* ============================================
   SP クイックメニュー
   ============================================ */
.sp-quick-menu { display: none; }
.sp-quick-menu a img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: opacity 0.2s, transform 0.2s;
}
.sp-quick-menu a:hover img {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ============================================
   SIDEBAR
   ============================================ */
#topics {
  margin-bottom: 14px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--color-border);
}

/* TOPICSタイトル行：アソカ学園のご案内と同じスタイル */
#topics > img {
  display: flex;
  width: 100%;
  /* 画像タイトルをCSSで隠してテキストタイトルに置き換えるのは困難なため
     画像をそのまま使いつつ、背景だけ揃える */
  background: linear-gradient(90deg, #FFF8E8, #FFF3D0);
  border-bottom: 2px solid var(--color-border);
  padding: 4px 6px;
  box-sizing: border-box;
}

#topics ul { padding: 8px 8px 6px; }
#topics ul li {
  border-bottom: none;
  margin-bottom: 8px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
#topics ul li:last-child { margin-bottom: 0; }
#topics ul li a { display: block; }
#topics ul li a img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.2s;
}
#topics ul li a:hover img { opacity: 0.75; }

/* 系列園ナビ（コーディングベース） */
#asoka_annai {
  margin-bottom: 14px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--color-border);
}

/* タイトル行 */
.asoka-annai-head {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #FFF8E8, #FFF3D0);
  border-bottom: 2px solid var(--color-border);
  padding: 8px 10px;
}
.asoka-annai-head img {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}
.asoka-annai-head span {
  font-size: 14px;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.sidebar-head-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

/* リスト */
.asoka-annai-list {
  padding: 6px 8px;
}
.asoka-annai-list li {
  border-bottom: 1px solid #f5ead0;
}
.asoka-annai-list li:last-child { border-bottom: none; }

.asoka-annai-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 6px;
  font-size: 14px;
  font-weight: 700;
  color: #444;
  transition: opacity 0.15s;
  letter-spacing: 0.05em;
}
.asoka-annai-list li a:hover { opacity: 0.75; }

/* 矢印アイコン：各園テーマカラー */
.asoka-annai-list li a::before {
  content: "▶";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  font-size: 9px;
  color: #fff;
  flex-shrink: 0;
}
.asoka-annai-list li.asada    a::before { background: #F19601; }
.asoka-annai-list li.ekinan   a::before { background: #E03030; }
.asoka-annai-list li.jouhoku  a::before { background: #3070C8; }
.asoka-annai-list li.oiwake   a::before { background: #E05A10; }
.asoka-annai-list li.momohana a::before { background: #50A830; }
.asoka-annai-list li.minami   a::before { background: #1A7A40; }
.asoka-annai-list li.gakuen   a::before { background: #888; }

/* 旧asoka_annai_bgは使わない */
#asoka_annai_bg { display: none; }

#navi_bunner { margin-top: 10px; }
#navi_bunner img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background: linear-gradient(160deg, #F19601 0%, #FDB102 60%, #FFCB3C 100%);
  color: #fff;
}

/* SP用フッターメニュー（PCでは非表示） */
#footer-sp-menu {
  display: none;
  border-bottom: 2px solid rgba(255,255,255,0.3);
}
.footer-menu-title {
  font-size: 16px;
  font-weight: 900;
  padding: 20px 20px 10px;
  letter-spacing: 0.1em;
}
#footer-sp-menu ul { padding: 0 10px 10px; }
#footer-sp-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.2); }
#footer-sp-menu ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 14px;
}
#footer-sp-menu ul li a::before { content: "▶"; font-size: 8px; opacity: 0.7; }

/* フッター本体 */
#footer-body {
  max-width: 1040px;
  margin: 0 auto;
  padding: 32px 28px 28px;
  display: grid;
  grid-template-columns: 260px 1fr 200px;
  gap: 24px 32px;
  align-items: start;
}

/* 左：ロゴ＋住所をひとまとめ */
.footer-logo {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* キャラクター＋テキスト縦並び */
.footer-logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-logo-link img {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
  transition: transform 0.2s;
}
.footer-logo-link:hover img { transform: scale(1.05); }

.footer-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}
.footer-logo-sub {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
}
.footer-logo-name {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.footer-logo-kinder {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
  margin-top: 4px;
}

.footer-info ul {
  font-size: 15px;
  line-height: 2;
  text-align: center;
}
.footer-info ul li {
  color: rgba(255,255,255,0.88);
}

/* 中：ページナビ2列 */
.footer-nav {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}
.footer-nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 8px;
}
.footer-nav ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  font-weight: 700;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.15s;
  white-space: nowrap;
}
.footer-nav ul li a::before { content: "▸"; font-size: 10px; opacity: 0.8; }
.footer-nav ul li a:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* 右：系列園ボタン */
.footer-sister {
  grid-column: 3;
  grid-row: 1 / 3;
}
.footer-sister-title {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.footer-sister ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-sister ul li a {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 20px;
  text-align: center;
  transition: opacity 0.2s;
  white-space: nowrap;
  border: none;
}
.footer-sister ul li a:hover { opacity: 0.82; color: #fff; }

/* 各園テーマカラー */
.footer-sister li.asada   a { background: #F19601; } /* 朝田：オレンジ   */
.footer-sister li.ekinan  a { background: #E03030; } /* 駅南：赤         */
.footer-sister li.jouhoku a { background: #3070C8; } /* 城北：青         */
.footer-sister li.oiwake  a { background: #E05A10; } /* 追分：オレンジ赤 */
.footer-sister li.momohana a { background: #50A830; } /* 百花：緑         */
.footer-sister li.minami  a { background: #1A7A40; } /* 美波：濃い緑     */

/* コピーライト */
#footer-copy {
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  padding: 12px 20px 18px;
  border-top: 1px solid rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ============================================
   PAGER
   ============================================ */
.blog_pager1 {
  text-align: center;
  padding: 24px 0 32px;
  clear: both;
}
.wp-pagenavi { text-align: center; }
.wp-pagenavi a, .wp-pagenavi span {
  display: inline-block;
  color: #888;
  background-color: #fff;
  border: 1.5px solid #e8dfc0;
  padding: 8px 14px;
  margin: 0 2px;
  border-radius: 20px;
  transition: 0.2s;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  color: #fff;
  background-color: var(--color-main2);
  border-color: var(--color-main2);
}

/* ============================================
   POST NAVIGATION
   ============================================ */
#news_bnavi { padding: 24px 12px; overflow: hidden; }
.post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* ボタン外枠 */
.post-navigation .prev,
.post-navigation .next,
.post-navigation .back {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, var(--color-main), var(--color-main2));
  border-radius: 24px;
  box-shadow: 0 3px 8px rgba(241,150,1,0.3);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 22px;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  position: relative; /* aを全面に広げるため */
}
.post-navigation .prev:hover,
.post-navigation .next:hover,
.post-navigation .back:hover { opacity: 0.8; transform: translateY(-1px); }

/* aは全面クリッカブルに（テキストは div の文字ノード） */
.post-navigation .prev a,
.post-navigation .next a,
.post-navigation .back a {
  position: absolute;
  inset: 0;
  text-indent: -9999px;
  overflow: hidden;
}

/* ============================================
   CONTENT PAGES
   ============================================ */
.body_txt {
  text-align: left;
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.85;
}
.body_txt img {
  max-width: 100%;
  height: auto;
  margin-bottom: 8px;
  border-radius: var(--radius-sm);
}
.body_txt p { margin-bottom: 12px; }
.body_txt a { text-decoration: underline; color: var(--color-main); }

.default_album_j h3 {
  font-size: 17px;
  color: var(--color-white);
  background: linear-gradient(90deg, var(--color-main), var(--color-main2));
  padding: 8px 14px;
  margin: 14px 0 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(241,150,1,0.25);
}
.date_gr { color: var(--color-gray); font-size: 15px; }

/* アルバム一覧 */
.tk_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 16px 0;
}
.tk_wk {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}
.tk_wk:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.tk_wk_photo { overflow: hidden; }
.tk_wk_photo img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.tk_wk:hover .tk_wk_photo img { transform: scale(1.04); }
.tk_wk_title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  padding: 8px 10px 10px;
  color: var(--color-text);
}
.tk_wk_date { display: none; }

/* アルバム詳細 */
.album-work { overflow: hidden; margin-bottom: 20px; }
.ph { text-align: center; margin-bottom: 12px; }
.ph img {
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.album_txt_r {
  border: 2.5px solid var(--color-main2);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 16px;
  line-height: 1.85;
  margin: 12px auto;
  max-width: 500px;
  position: relative;
  background: var(--color-light);
}
.album_txt_r::before {
  content: "";
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: var(--color-main2);
}
.album_txt_r::after {
  content: "";
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-bottom-color: var(--color-light);
}

/* ニュース */
.newsa_wk_r {
  padding: 12px 0;
  border-bottom: 1px dashed var(--color-border);
  margin-bottom: 4px;
}
.newsa_wk_r:last-child { border-bottom: none; }
.newsa_title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}
.newsa_date {
  color: var(--color-main2);
  font-size: 15px;
  font-weight: 700;
  background: var(--color-light);
  padding: 2px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}
.newsa_body { font-size: 15px; line-height: 1.7; color: #666; margin-top: 4px; }

/* テーブル */
table { width: 100%; border-collapse: collapse; font-size: 16px; }
th {
  text-align: center;
  padding: 10px 12px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--color-light), #fff8e0);
  border: 1px solid #e8dfc0;
  color: #555;
}
td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid #e8dfc0;
  line-height: 1.7;
}
th.t_top {
  background: linear-gradient(90deg, var(--color-main2), var(--color-main));
  color: #fff;
  border-top: 3px solid var(--color-main2);
}
td.t_top { border-top: 3px solid var(--color-main2); }

/* ============================================
   FIXED PAGES
   ============================================ */
#subvisual {
  margin-top: 88px;
  overflow: hidden;
  background-color: #f5edcc;
  position: relative;
}
#subvisual::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--color-main), var(--color-main2), var(--color-accent), var(--color-main2), var(--color-main));
}
#subvisual img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.default_txt_j {
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.03em;
}
.default_txt_j h3 {
  font-size: 18px;
  color: var(--color-white);
  font-weight: 700;
  padding: 8px 14px;
  margin: 18px 0 10px;
  background: linear-gradient(90deg, var(--color-main), var(--color-main2));
  border-radius: var(--radius-sm);
  letter-spacing: 0.06em;
  box-shadow: 0 2px 6px rgba(241,150,1,0.2);
}
.default_txt_j dd {
  padding: 4px 8px 16px 14px;
  line-height: 1.85;
}
.default_txt_j a { text-decoration: underline; color: var(--color-main); }

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 10px 0;
  border-radius: var(--radius-sm);
}
.table-wrap table { min-width: 300px; }

.photo_list3_side,
.photo_list3_side_c {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 14px 0;
}
.photo_list3_side li,
.photo_list3_side_c li {
  text-align: center;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--color-border);
}
.photo_list3_side li img,
.photo_list3_side_c li img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}
/* キャプションテキストがある場合のみパディング */
.photo_list3_side li:not(:empty) > img + br,
.photo_list3_side_c li > img + br { display: none; }
.photo_list3_side li > *:not(img),
.photo_list3_side_c li > *:not(img) {
  display: block;
  padding: 5px 6px;
}

.photo_list2_side {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 14px 0;
}
.photo_list2_side li {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.photo_list2_side li img { width: 100%; height: auto; display: block; }

.map-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 14px 0 8px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.map-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.red { color: #E04000; font-weight: 700; }

/* ============================================
   INFO PAGE（園の紹介）
   ============================================ */

/* 概要テキスト */
.info-intro {
  margin-bottom: 20px;
}

/* 写真2列グリッド（最大8枚） */
.info-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.info-photo {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-card);
  aspect-ratio: 3 / 2;
}
.info-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.info-photo:hover img { transform: scale(1.03); }

/* 概要テーブル */
.info-overview-table {
  margin-bottom: 0;
}
.info-overview-table table {
  width: 100%;
}
.info-overview-table th {
  width: 30%;
  text-align: left;
  white-space: nowrap;
}
.info-overview-table td {
  text-align: left;
}

/* アクセス */
.info-access-intro {
  margin-bottom: 16px;
}

/* Googleマップ埋め込みをレスポンシブに */
.info-map-wrap {
  position: relative;
  width: 100%;
  padding-top: 50%;
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.info-map-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* 大きな地図リンク */
.info-map-link {
  text-align: right;
  font-size: 14px;
  margin-top: 6px;
}
.info-map-link a {
  color: var(--color-main);
  text-decoration: underline;
}

/* ============================================
   GUIDANCE PAGE（入園をお考えの方へ）
   ============================================ */
.guidance-block {
  margin-bottom: 28px;
}
.guidance-block:last-child { margin-bottom: 0; }

.guidance-block-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  background: linear-gradient(90deg, var(--color-main), var(--color-main2));
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 6px rgba(241,150,1,0.2);
  /* default_txt_j h3のスタイルを上書き */
  display: block;
  width: 100%;
}

.guidance-block-content {
  padding: 0 4px;
}
.guidance-block-content p { margin-bottom: 12px; }
.guidance-block-content a {
  color: var(--color-main);
  text-decoration: underline;
}

/* テーブルブロック */
.guidance-table th {
  background: linear-gradient(90deg, var(--color-light), #fff8e0);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.guidance-table td {
  text-align: left;
  vertical-align: top;
}

/* ============================================
   EVENT PAGE（年間行事）
   ============================================ */
.event-intro {
  margin-bottom: 20px;
}

.event-schedule {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* 月ブロック */
.event-month-block {}

.event-month-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  background: linear-gradient(90deg, var(--color-main), var(--color-main2));
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 6px rgba(241,150,1,0.2);
  display: inline-block;
}

/* 行事グリッド：3列 */
.event-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-left: 4px;
}

.event-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}
.event-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

/* 写真エリア */
.event-item-photo {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.event-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.event-item:hover .event-item-photo img {
  transform: scale(1.04);
}

/* 写真なしのプレースホルダー */
.event-item-no-photo {
  background: linear-gradient(135deg, #FFF8E8, #FFF0CC);
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-item-no-photo span {
  font-size: 32px;
  opacity: 0.6;
}

/* 行事名 */
.event-item-name {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 8px 6px;
  color: var(--color-text);
  line-height: 1.4;
}

/* SP対応 */
@media screen and (max-width: 768px) {
  .event-items { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 480px) {
  .event-items { grid-template-columns: repeat(2, 1fr); }
  .event-month-title { font-size: 16px; }
}

/* ============================================
   DAY PAGE（幼稚園の一日）
   ============================================ */
.day-schedule {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.day-block {
  padding-left: 0;
}

/* 時間帯ラベル */
.day-time {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-main), var(--color-main2));
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 24px;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 6px rgba(241,150,1,0.25);
}

/* 説明文 */
.day-text {
  font-size: 15px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 14px;
  padding-left: 18px;
}

/* 写真グリッド：PC・SP共通2列 */
.day-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding-left: 18px;
}
.day-photo {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-card);
  aspect-ratio: 3 / 2;
}
.day-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.day-photo:hover img { transform: scale(1.04); }

/* ============================================
   EDUCATION PAGE（アソカの教育）
   ============================================ */

/* リード文 */
.edu-lead {
  background: var(--color-light);
  border-left: 4px solid var(--color-main2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.9;
}
.edu-lead strong {
  color: var(--color-main);
  font-weight: 700;
}

/* 特徴カード：2列グリッド */
.edu-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}
.edu-feature-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}
.edu-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.edu-feature-img {
  overflow: hidden;
  height: 160px;
}
.edu-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.edu-feature-card:hover .edu-feature-img img {
  transform: scale(1.04);
}
.edu-feature-body {
  padding: 14px 16px;
}
.edu-feature-icon {
  font-size: 24px;
  margin-bottom: 6px;
}
.edu-feature-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 8px;
  /* block-titleのスタイルを上書き */
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  letter-spacing: 0.05em;
}
.edu-feature-body p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

/* 4Hプログラム */
.edu-4h {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.edu-4h-img {
  flex-shrink: 0;
  width: 220px;
}
.edu-4h-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}
.edu-4h-text {
  flex: 1;
}
.edu-4h-text p {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.85;
}

/* あそびから創造へ */
.edu-creative {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.edu-creative-text {
  flex: 1;
}
.edu-creative-text p {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.85;
}
.edu-creative-imgs {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.edu-creative-imgs img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}

/* SP対応 */
@media screen and (max-width: 768px) {
  .edu-features { grid-template-columns: 1fr; }
  .edu-4h,
  .edu-creative { flex-direction: column; }
  .edu-4h-img,
  .edu-creative-imgs { width: 100%; }
  .edu-creative-imgs { flex-direction: row; }
  .edu-creative-imgs img { height: 100px; flex: 1; }
}

/* ============================================
   RESPONSIVE: タブレット（768px以下）
   ============================================ */
@media screen and (max-width: 768px) {
  :root { --header-h: 60px; }

  /* ヘッダー：ナビ行を隠してheader-topだけ表示 */
  #global-nav { display: none; }
  #menu-toggle { display: flex; }
  #header-logo img { height: 38px; }

  /* mainvisual/subvisualのoffsetをSP用に */
  #mainvisual,
  #subvisual { margin-top: 60px; }

  #mainvisual img,
  .mv-slider .slick-slide img { height: 210px; }

  #page-inner {
    flex-direction: column;
    padding: 16px 14px 36px;
    gap: 0;
  }
  #sidebar { display: none; }
  #main-content {
    width: 100%;
    flex: none;
  }

  .sp-quick-menu.sp-only {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px 0 16px;
  }

  .block-title { font-size: 18px; padding-left: 46px; }

  .album-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .album-thumb img { height: 120px; }

  .tk_box { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tk_wk_photo img { height: 120px; }

  #subvisual img { height: 160px; } /* SPでは少し低めに */

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

  #footer-sp-menu { display: block; }
  #footer-body {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 16px;
  }
  .footer-logo,
  .footer-nav,
  .footer-sister { grid-column: 1; grid-row: auto; }
  .footer-nav ul { grid-template-columns: 1fr 1fr; }
  .footer-sister ul { flex-direction: row; flex-wrap: wrap; }
  #footer-copy { text-align: center; }

  .post-navigation { flex-wrap: wrap; justify-content: center; }
}

/* ============================================
   RESPONSIVE: スマートフォン（480px以下）
   ============================================ */
@media screen and (max-width: 480px) {
  #mainvisual img,
  .mv-slider .slick-slide img { height: 170px; }

  .album-grid { grid-template-columns: 1fr; }
  .album-thumb img { height: 200px; }

  .tk_box { grid-template-columns: 1fr; }
  .tk_wk_photo img { height: 200px; }

  .photo_list3_side,
  .photo_list3_side_c,
  .photo_list2_side { grid-template-columns: 1fr; }

  .block-title { font-size: 16px; }
  .default_txt_j h3 { font-size: 16px; }
}
