/*
 * site.css - 宍喰保育所 サイト固有スタイル
 * ヘッダー・MV は「こども園めばえ」準拠構造
 * メインカラー: #acceed / ヘッダー背景: #F9F8E1 / フッター背景: #FEF6F4
 * フォント: Kosugi Maru
 */

/* ==========================================================================
   フォント全体適用
   ========================================================================== */
body {
  font-family: 'Kosugi Maru', 'YakuHanJP', "游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

/* ==========================================================================
   ヘッダー（めばえ #l-header 準拠）
   ========================================================================== */
#l-header {
  width: 100%;
  z-index: 200;
  position: relative;
  background: #F9F8E1;
  transition: all 0.3s ease;
}

#l-header.is-fixed {
  z-index: 200;
  top: 0;
  left: 0;
  position: fixed;
  box-shadow: 0 0 10px rgba(74, 55, 40, 0.1);
  background: #F9F8E1;
  animation: hd-scrolled 0.3s ease forwards;
}

#l-header.is-fixed .inner {
  padding: 5px 0;
}

#l-header.is-fixed #logo {
  width: 160px;
}

#l-header.is-fixed #header_nav ul li a img.head-icon {
  width: 1.8rem;
  height: 1.8rem;
}

@keyframes hd-scrolled {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ヘッダー inner（めばえ .inner 準拠） */
#l-header .inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1150px;
  margin: 0 auto;
  padding: 15px 0;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* ロゴ */
#logo {
  position: relative;
  width: 200px;
  z-index: 300;
  transition: all 0.5s ease;
}

#logo a {
  display: block;
  text-decoration: none;
}

#logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   PC ナビゲーション（めばえ #header_nav 準拠）
   ========================================================================== */
#header_nav {
  position: relative;
  margin: 5px auto 10px;
}

#header_nav > ul {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
}

#header_nav ul li {
  position: relative;
  flex: 1 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

#header_nav ul li a {
  display: block;
  position: relative;
  line-height: 1.5;
  font-size: 1.4rem;
  padding: 0 30px;
  color: #4a3728;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* アイコン画像 */
#header_nav ul li a img.head-icon {
  display: block;
  width: 4.4rem;
  height: 4.4rem;
  margin: 0 auto 0.5rem;
  transition: all 0.3s ease;
  object-fit: contain;
}

/* ホバー時アイコン回転 */
#header_nav ul li a:hover img.head-icon {
  animation: nav-rotate 0.7s ease-in-out both;
}

@keyframes nav-rotate {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(20deg); }
  100% { transform: rotate(0deg); }
}

/* 英語ラベル（めばえ .eng 準拠） */
#header_nav ul li a .eng {
  font-size: 1.4rem;
  display: block;
  font-family: 'Chewy', cursive;
  font-weight: 400;
  line-height: 1;
  color: #c8dfc6;
  margin-top: -0.2rem;
}

/* 日本語ラベル（めばえ .ja 準拠） */
#header_nav ul li a .ja {
  display: block;
  font-size: 1.2rem;
  color: #4a3728;
}

/* ホバー・active 時のカラー変更（めばえ準拠） */
#header_nav ul li a:hover span,
#header_nav ul li a.active span {
  color: #acceed;
}

/* ==========================================================================
   SP ハンバーガーメニュー（めばえ準拠）
   ========================================================================== */
#nav-toggle,
#sp-nav {
  display: none;
}

@media screen and (max-width: 896px) {

  /* ヘッダーSP調整 */
  #l-header {
    background: transparent;
    backdrop-filter: none;
  }

  #l-header .inner {
    max-width: 100%;
    margin: 0;
    display: block;
    min-width: inherit;
    padding: 0 35px 15px 0;
  }

  #logo {
    top: 10px;
    width: 150px;
    padding-left: 10px;
  }

  /* PC ナビ非表示 */
  #header_nav {
    display: none;
  }

  /* ハンバーガーボタン（めばえ準拠） */
  #nav-toggle {
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    height: 55px;
    cursor: pointer;
    background: #acceed;
    padding: 10px;
    transition: all 0.4s ease-in;
    border-radius: 5px;
    z-index: 999 !important;
  }

  #nav-toggle > div {
    position: relative;
    width: 35px;
  }

  #nav-toggle > div > p {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 27px;
    font-size: 10px;
    line-height: 1;
    text-align: center;
    color: #fff;
    white-space: nowrap;
  }

  #nav-toggle span {
    width: 100%;
    height: 1px;
    left: 0;
    display: block;
    background: #fff;
    position: absolute;
    transition: transform 0.6s ease-in-out, top 0.5s ease;
  }

  #nav-toggle span:nth-child(1) { top: 0; }
  #nav-toggle span:nth-child(2) { top: 9px; }
  #nav-toggle span:nth-child(3) { top: 18px; }

  /* open 時のハンバーガー → × 変形（めばえ準拠） */
  .open #nav-toggle {
    background: none;
    filter: none;
  }

  .open #nav-toggle > div > p {
    color: #4a3728;
  }

  .open #nav-toggle span {
    background: #4a3728;
  }

  .open #nav-toggle span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
  }

  .open #nav-toggle span:nth-child(2) {
    top: 9px;
    width: 0;
    left: 50%;
  }

  .open #nav-toggle span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
  }

  /* SP ナビ（フルスクリーンオーバーレイ） */
  #sp-nav {
    position: fixed;
    background: #F9F8E1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
    font-weight: 600;
    text-align: center;
  }

  #sp-nav .inner {
    width: 100%;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #sp-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  #sp-nav a {
    display: block;
    text-decoration: none;
    padding: 0;
    transition: color 0.4s ease;
    color: #4a3728;
  }

  #sp-nav a img.head-icon {
    display: block;
    width: 3.2rem;
    height: 3.2rem;
    margin: 0 auto 6px;
    object-fit: contain;
  }

  #sp-nav a .eng {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
    font-family: 'Chewy', cursive;
    font-weight: 600;
    color: #acceed;
  }

  #sp-nav a .ja {
    font-size: 1.1rem;
    display: block;
    color: #4a3728;
    margin-top: 3px;
    letter-spacing: 0.1em;
  }

  #sp-nav a:hover .eng {
    opacity: 0.7;
  }

  /* SP ナビ li */
  #sp-nav ul li {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.2s ease;
    list-style: none;
    margin-bottom: 24px;
  }

  #sp-nav ul li:last-child {
    margin-bottom: 0;
  }

  #sp-nav ul li:nth-child(2) { transition-delay: 0.1s; }
  #sp-nav ul li:nth-child(3) { transition-delay: 0.2s; }
  #sp-nav ul li:nth-child(4) { transition-delay: 0.3s; }
  #sp-nav ul li:nth-child(5) { transition-delay: 0.4s; }
  #sp-nav ul li:nth-child(6) { transition-delay: 0.5s; }

  /* open 時にナビ表示 */
  .open {
    overflow: hidden;
  }

  .open #sp-nav {
    visibility: visible;
    opacity: 1;
  }

  .open #sp-nav li {
    opacity: 1;
    transform: translateY(0);
    transition: transform 1s ease, opacity 0.9s ease;
  }

}

/* 639px以下 */
@media screen and (max-width: 639px) {
  #logo {
    width: 120px;
  }
}


/* ==========================================================================
   MV（めばえ .balloon + #slide-wrapper + #slideshow 準拠）
   ========================================================================== */

/* balloon — MV 全体ラッパー + 浮遊装飾 */
.balloon {
  position: relative;
}

.balloon::before {
  content: "";
  position: absolute;
  top: 15%;
  right: 3%;
  width: 200px;
  height: 200px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27816/mv_deco.png) no-repeat center/contain; /* 要差し替え */
  z-index: 2;
  animation: fuwafuwa 2s ease infinite;
}

.balloon::after {
  content: "";
  position: absolute;
  top: 35%;
  left: 3%;
  width: 200px;
  height: 200px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27816/mv_deco2.png) no-repeat center/contain; /* 要差し替え */
  z-index: 2;
  animation: fuwafuwa2 2s ease infinite;
}

@keyframes fuwafuwa {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(0, -5px); }
  100% { transform: translate(0, 0); }
}

@keyframes fuwafuwa2 {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(0, 5px); }
  100% { transform: translate(0, 0); }
}

/* slide-wrapper — 波形装飾用ラッパー */
#slide-wrapper {
  position: relative;
  background-color: #F9F8E1;
}

#slide-wrapper::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27816/mv_oka.svg) no-repeat right bottom/contain; /* 要差し替え */
  z-index: 2;
  pointer-events: none;
}

/* slideshow — スライダー枠（めばえ準拠の角丸＋90%幅） */
#slideshow {
  overflow: hidden;
  position: relative;
  width: 90%;
  margin: 0 auto;
  border-radius: 80px 80px 0 0;
}

/* スライド画像（めばえ .slide-img 準拠） */
.slide-img {
  overflow: hidden;
  width: 100%;
  height: 90vh;
}

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

/* Ken Burns ズーム（めばえ準拠: blur → zoom-in 11s） */
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoom-in 11s linear 0s 1 normal both;
}

@keyframes zoom-in {
  0% {
    filter: blur(5px);
    transform: scale(1);
  }
  15% {
    filter: blur(0);
  }
  100% {
    transform: scale(1.15);
  }
}

/* キャッチコピー（めばえ #catch 準拠 — テキスト版） */
#catch {
  position: absolute;
  z-index: 50;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 10;
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  text-align: center;
  pointer-events: none;
}

#catch.on {
  opacity: 1;
  transition: all 2s ease-in;
}

.catch-text {
  display: inline-block;
  background: rgba(255, 255, 255, 0.82);
  color: #4a3728;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 18px 40px;
  border-radius: 60px;
  box-shadow: 0 4px 20px rgba(172, 206, 237, 0.3);
  line-height: 1.4;
}

/* MV レスポンシブ */
@media screen and (max-width: 1200px) {
  .slide-img {
    height: 60vw;
  }
}

@media screen and (max-width: 896px) {
  .balloon::before {
    top: unset;
    bottom: 50px;
    width: 100px;
    height: 100px;
  }

  .balloon::after {
    top: unset;
    bottom: 80px;
    width: 100px;
    height: 100px;
  }

  #slideshow {
    border-radius: 20px 20px 0 0;
  }

  .slide-img {
    height: 55vw;
  }

  .catch-text {
    font-size: 2.4rem;
    padding: 14px 24px;
  }
}

@media screen and (max-width: 639px) {
  .slide-img {
    height: 60vh;
  }

  .catch-text {
    font-size: 1.8rem;
    padding: 12px 20px;
    letter-spacing: 0.12em;
  }

  #catch {
    width: 90%;
  }
}


/* ==========================================================================
   セクション背景カラー
   ========================================================================== */
.shikui-section-1,
.shikui-section-2,
.shikui-section-3,
.shikui-section-white {
  position: relative;
}

.shikui-section-1 { background-color: #F7F6E1; }
.shikui-section-2 { background-color: #F0F6F5; }
.shikui-section-3 { background-color: #F4EEF6; }
.shikui-section-white { background-color: #ffffff; }

/* 花の透過画像オーバーレイ */
.shikui-section-1::before,
.shikui-section-2::before,
.shikui-section-3::before,
.shikui-section-white::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27816/flower.png') center center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

.shikui-section-1 > *,
.shikui-section-2 > *,
.shikui-section-3 > *,
.shikui-section-white > * {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   セクション見出し（heading-icon-bar）
   ========================================================================== */
.heading-icon-bar {
  text-align: center;
  margin-bottom: 50px;
}

.heading-icon-bar::after {
  display: none;
}

.heading-icon-bar__en {
  display: block;
  font-family: 'Chewy', cursive;
  font-size: 5.0rem;
  font-weight: 400;
  color: #acceed;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.heading-icon-bar__ja {
  display: block;
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: #463c2f;
  letter-spacing: 0.2em;
  line-height: 1.5;
  margin-top: 4px;
}

@media screen and (max-width: 639px) {
  .heading-icon-bar__en {
    font-size: 3.6rem;
  }
  .heading-icon-bar__ja {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   お知らせ（NEWS）セクション
   ========================================================================== */
.shikui-news-card {
  background: #fff;
  border: 2px solid #acceed;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 30px;
}

.shikui-news-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #acceed;
  margin-bottom: 10px;
}

.shikui-news-card__title i {
  margin-right: 8px;
  color: #f4a05e;
}

.shikui-news-card__body {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #4a3728;
}

/* お知らせセクション 装飾画像 */
.shikui-news-section {
  overflow: hidden;
}

.shikui-deco {
  position: absolute;
  width: 300px;
  height: 300px;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
}

.shikui-deco--bl {
  bottom: 0px;
  left: 0px;
}

.shikui-deco--behind {
  z-index: 0;
}

.shikui-deco--tr {
  top: 0px;
  right: 0px;
}

.shikui-deco--br {
  bottom: 0px;
  right: 0px;
}

.shikui-deco--mr {
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 529px;
  height: 476px;
}

.shikui-deco--sakura {
  width: 529px;
  height: 476px;
}

@media screen and (max-width: 896px) {
  .shikui-deco--sakura {
    width: 220px;
    height: auto;
    z-index: 0;
  }
}

.shikui-greeting-section {
  overflow: hidden;
}

@media screen and (max-width: 896px) {
  .shikui-deco {
    width: 180px;
    height: 180px;
  }
}

@media screen and (max-width: 639px) {
  .shikui-deco {
    width: 120px;
    height: 120px;
  }
}

/* CMS ブログ出力ラッパー */
.shikui-cms-wrap {
  background: transparent;
}

/* ブログ記事カードグリッド */
.blog-wrap {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.blog-wrap li {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-wrap li:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.blog-wrap li > a {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.blog-img {
  margin: 0;
}

.blog-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.blog-detail {
  padding: 14px 16px 18px;
}

.blog-date {
  display: block;
  font-size: 1.2rem;
  color: #e07070;
  margin-bottom: 6px;
}

.blog-date::before {
  content: '\f017';
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  margin-right: 5px;
}

.blog-title {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   ブログ一覧ページ レイアウト
   ========================================================================== */

/* メイン＋サイドバー 2カラム */
.shikui-blog-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 40px;
  align-items: flex-start;
}

/* 3カラム上書き */
.card-blog--3col .blog-wrap {
  grid-template-columns: repeat(3, 1fr);
}

/* 月別アーカイブ */
.shikui-archive__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #4a3728;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.shikui-archive__title i {
  color: #acceed;
}

.shikui-archive__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shikui-archive__nav ul li a {
  display: block;
  background: #f9e0e4;
  color: #4a3728;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 1.4rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.shikui-archive__nav ul li a:hover {
  background: #f0c8cf;
}

/* ==========================================================================
   料金表（こども誰でも通園制度）
   ========================================================================== */
.shikui-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  line-height: 1.7;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(172, 206, 237, 0.15);
}

.shikui-price-table th,
.shikui-price-table td {
  padding: 14px 18px;
  border: 1px solid rgba(172, 206, 237, 0.4);
  text-align: left;
  vertical-align: middle;
}

.shikui-price-table th {
  background: #acceed;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.shikui-price-table tr:nth-child(even) td {
  background: rgba(172, 206, 237, 0.08);
}

.shikui-price-table .price-amount {
  font-weight: 700;
  color: #acceed;
  white-space: nowrap;
}

/* ==========================================================================
   ごあいさつ
   ========================================================================== */
.shikui-greeting__img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(172, 206, 237, 0.2);
}

.shikui-greeting__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shikui-greeting__body {
  font-size: 1.6rem;
  line-height: 2.0;
  color: #4a3728;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   ページリンクボタン群（トップ下部）
   ========================================================================== */
.shikui-page-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.shikui-page-link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(172, 206, 237, 0.5);
  border-radius: 16px;
  padding: 28px 16px 22px;
  text-decoration: none;
  color: #4a3728;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 2px 10px rgba(172, 206, 237, 0.12);
}

.shikui-page-link-item:hover {
  background: #acceed;
  border-color: #acceed;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(172, 206, 237, 0.35);
}

.shikui-page-link-item i {
  font-size: 3.0rem;
  color: #acceed;
  margin-bottom: 12px;
  transition: color 0.25s;
}

.shikui-page-link-item:hover i {
  color: #fff;
}

.shikui-page-link-item span {
  display: block;
  font-size: 1.1rem;
  color: #acceed;
  margin-top: 4px;
  letter-spacing: 0.06em;
  transition: color 0.25s;
}

.shikui-page-link-item:hover span {
  color: rgba(255,255,255,0.85);
}

/* ==========================================================================
   コンテンツリンク カード（トップ下部）
   ========================================================================== */
.shikui-cont-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.shikui-cont-card {
  position: relative;
  display: block;
  text-decoration: none;
  padding-top: 50px; /* アイコン飛び出し分の余白 */
}

/* 飛び出るイラストアイコン */
.shikui-cont-card__icon {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  z-index: -1;
  transition: transform 0.3s ease;
}

.shikui-cont-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.shikui-cont-card:hover .shikui-cont-card__icon {
  transform: translateX(-50%) translateY(-12px);
}

/* カード本体 */
.shikui-cont-card__img {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.shikui-cont-card__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.shikui-cont-card:hover .shikui-cont-card__img img {
  transform: scale(1.05);
}

/* カード下部テキスト */
.shikui-cont-card__body {
  background: #fff;
  border-radius: 0 0 16px 16px;
  padding: 14px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.shikui-cont-card__en {
  font-family: 'Chewy', cursive;
  font-size: 1.4rem;
  color: #e07070;
  letter-spacing: 0.06em;
  line-height: 1;
}

.shikui-cont-card__ja {
  font-size: 1.6rem;
  font-weight: 500;
  color: #4a3728;
  letter-spacing: 0.08em;
}

.shikui-cont-card__arrow {
  position: absolute;
  right: 16px;
  bottom: 50%;
  transform: translateY(50%);
  color: #e07070;
  font-size: 1.4rem;
  transition: transform 0.2s ease;
}

.shikui-cont-card:hover .shikui-cont-card__arrow {
  transform: translateY(50%) translateX(4px);
}

@media screen and (max-width: 896px) {
  .shikui-cont-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 639px) {
  .shikui-cont-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .shikui-cont-card__icon {
    width: 60px;
    height: 60px;
    top: -15px;
  }
  .shikui-cont-card {
    padding-top: 36px;
  }
}

/* ==========================================================================
   ページヒーロー（下層ページ共通）
   ========================================================================== */
.shikui-page-hero {
  background: url('https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27816/page-hero.jpg') center center / cover no-repeat;
  padding: 100px 20px 90px;
  position: relative;
  overflow: hidden;
}

/* 暗いオーバーレイ */
.shikui-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

/* 下部の白い波形 */
.shikui-page-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #f7f6e1;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}

.shikui-page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.shikui-page-hero__ja {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.12em;
  line-height: 1.4;
  margin-bottom: 4px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.shikui-page-hero__en {
  display: block;
  font-family: 'Chewy', cursive;
  font-size: 5.0rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* パンくずリスト */
.shikui-page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
}

.shikui-page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.shikui-page-hero__breadcrumb a:hover {
  color: #fff;
}

.shikui-page-hero__breadcrumb .sep {
  opacity: 0.6;
  font-size: 1.1rem;
}

/* ==========================================================================
   about.php - 法人理念 2カラムレイアウト
   ========================================================================== */

/* 全体レイアウト（コンテナ外） */
.shikui-philosophy-layout {
  display: grid;
  grid-template-columns: 800px 1fr;
  align-items: center;
  gap: 40px;
  padding-left: 50px;
  overflow: hidden;
}

/* 左：画像エリア */
.shikui-philosophy-imgs {
  flex-shrink: 0;
}

.shikui-philosophy-collage {
  width: 800px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* 右：テキストエリア */
.shikui-philosophy-text-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 50px;
}

@media screen and (max-width: 1100px) {
  .shikui-philosophy-layout {
    grid-template-columns: 1fr 1fr;
    padding-left: 30px;
  }
  .shikui-philosophy-collage {
    width: 100%;
  }
}

@media screen and (max-width: 896px) {
  .shikui-philosophy-layout {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
    gap: 30px;
  }
  .shikui-philosophy-text-area {
    padding-right: 20px;
  }
}

/* ==========================================================================
   about.php - 法人理念・保育方針
   ========================================================================== */
.shikui-about-philosophy {
  font-size: 1.6rem;
  line-height: 2.0;
  color: #4a3728;
  background: #fff;
  border-left: 5px solid #acceed;
  padding: 24px 28px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 30px;
}

.shikui-goal-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 2px 10px rgba(172, 206, 237, 0.12);
  margin-bottom: 16px;
}

.shikui-goal-item i {
  color: #acceed;
  font-size: 2.0rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.shikui-goal-item p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #4a3728;
  margin: 0;
}

/* めざすこども像 カードグリッド */
.shikui-goals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.shikui-goals-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.shikui-goals-card__img {
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.shikui-goals-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.shikui-goals-card__text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #4a3728;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.shikui-goals-card__text i {
  color: #f4c842;
  font-size: 1.6rem;
  flex-shrink: 0;
}

@media screen and (max-width: 639px) {
  .shikui-goals-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .shikui-goals-card__img {
    width: 220px;
    height: 220px;
  }
}

.shikui-philosophy-box {
  background: linear-gradient(135deg, rgba(172,206,237,0.15) 0%, rgba(109,180,200,0.1) 100%);
  border: 2px solid rgba(172,206,237,0.4);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.shikui-philosophy-box .shikui-philosophy-text {
  font-size: 2.4rem;
  font-weight: 700;
  color: #acceed;
  letter-spacing: 0.2em;
  line-height: 1.5;
}

/* サブ見出し */
.mtitle_line {
  position: relative;
  margin-bottom: 25px;
  color: #463c2f;
  border-top: 2px solid #c8dfc6;
  font-size: 2rem;
  padding: 10px 10px 18px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.5;
}

.mtitle_line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-image: repeating-linear-gradient(
    -45deg,
    #c8dfc6 0px,
    #c8dfc6 2px,
    transparent 2px,
    transparent 6px
  );
}

/* 方針・目標リスト */
.shikui-policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shikui-policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(172,206,237,0.4);
  font-size: 1.5rem;
  line-height: 1.8;
  color: #4a3728;
}

.shikui-policy-list li:last-child {
  border-bottom: none;
}

.shikui-policy-list li::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: #acceed;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ==========================================================================
   各種様式（PDF ダウンロード）
   ========================================================================== */
.shikui-forms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.shikui-forms-list--center {
  justify-content: center;
}

.shikui-forms-list--center .shikui-forms-item a {
  width: 400px;
}

.shikui-forms-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px solid #acceed;
  border-radius: 12px;
  padding: 18px 28px;
  color: #acceed;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 2px 8px rgba(172,206,237,0.15);
}

.shikui-forms-item a:hover {
  background: #acceed;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(172,206,237,0.3);
}

.shikui-forms-item a i {
  font-size: 2.4rem;
  color: #f4a05e;
  transition: color 0.25s;
}

.shikui-forms-item a:hover i {
  color: #fff;
}

/* ==========================================================================
   events.php - 年間行事テーブル
   ========================================================================== */
/* ==========================================================================
   年間行事 カードレイアウト
   ========================================================================== */
.schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}

.schedule-list > li {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.schedule-list > li > div {
  padding: 16px 18px 20px;
}

.schedule-img {
  margin: 0;
  background: #FEF6F4;
}

.schedule-img img {
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 10px;
}

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

.list_disc.type2 li {
  position: relative;
  padding-left: 16px;
  font-size: 1.35rem;
  line-height: 1.8;
  color: #463c2f;
}

.list_disc.type2 li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #acceed;
}

.list_disc.type2 li.is-parent {
  color: #d4607a;
  font-weight: 700;
}

.list_disc.type2 li.is-parent::before {
  background: #d4607a;
}

.list_disc.type2 li.is-parent::after {
  content: '※';
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  background: #f9e0e6;
  color: #d4607a;
  font-size: 1.0rem;
  font-weight: 700;
  border-radius: 4px;
  vertical-align: middle;
  line-height: 1.6;
}

.shikui-events-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.45rem;
  line-height: 1.8;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(172,206,237,0.12);
}

.shikui-events-table th,
.shikui-events-table td {
  padding: 12px 18px;
  border: 1px solid rgba(172,206,237,0.35);
  vertical-align: top;
}

.shikui-events-table thead th {
  background: #acceed;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.shikui-events-table tbody tr:nth-child(even) td {
  background: rgba(172,206,237,0.06);
}

.shikui-events-table .event-month {
  font-weight: 700;
  color: #acceed;
  white-space: nowrap;
  text-align: center;
  width: 70px;
}

.shikui-events-monthly-note {
  font-size: 1.35rem;
  color: #997a66;
  line-height: 1.9;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(172,206,237,0.08);
  border-radius: 10px;
  border-left: 4px solid #acceed;
}

/* ==========================================================================
   events.php - ギャラリーグリッド
   ========================================================================== */
.shikui-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.shikui-gallery-grid__item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.shikui-gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.shikui-gallery-grid__item:hover img {
  transform: scale(1.06);
}

/* ギャラリースライダー（無限スクロール） */
.shikui-gallery-swiper {
  transition-timing-function: linear !important;
}

.shikui-gallery-swiper .swiper-slide {
  width: 320px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.shikui-gallery-swiper .swiper-slide img {
  width: 320px;
  height: 240px;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 639px) {
  .shikui-gallery-swiper .swiper-slide {
    width: 220px;
  }
  .shikui-gallery-swiper .swiper-slide img {
    width: 220px;
    height: 165px;
  }
}

/* ==========================================================================
   class.php - クラス編成カード
   ========================================================================== */

/* カードグリッド */
.class-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* 4枚目・5枚目を2列中央寄せ */
.class-card:nth-child(4) {
  grid-column: 1;
}
.class-card:nth-child(4),
.class-card:nth-child(5) {
  grid-column: auto;
}
.class-cards::after {
  content: '';
  grid-column: span 1;
}

/* 下段2枚を中央に */
.class-card:nth-child(4) { grid-column-start: 1; }

/* 個別カード */
.class-card {
  border-radius: 16px;
  border: 2px solid transparent;
  padding: 28px 24px 28px;
  text-align: center;
}

.class-card--blue   { background: #e8f4fb; border-color: #acceed; }
.class-card--green  { background: #e6f5ee; border-color: #7ec8a0; }
.class-card--purple { background: #f0ebf8; border-color: #c4a8e0; }
.class-card--pink   { background: #fde8ec; border-color: #f4a0b5; }
.class-card--yellow { background: #fdf8e1; border-color: #f0d060; }

/* アイコン */
.class-card__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.class-card__icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* クラス名 */
.class-card__name {
  font-size: 2rem;
  font-weight: 700;
  margin: 12px 0 16px;
}

.class-card--blue   .class-card__name { color: #5aa8d0; }
.class-card--green  .class-card__name { color: #4aaa7a; }
.class-card--purple .class-card__name { color: #9970c8; }
.class-card--pink   .class-card__name { color: #e07090; }
.class-card--yellow .class-card__name { color: #c8a020; }

/* 年齢・人数 */
.class-card__age {
  font-size: 1.45rem;
  color: #555;
  margin-bottom: 6px;
}

/* 担任 */
.class-card__teacher {
  font-size: 1.35rem;
  color: #555;
  line-height: 1.8;
}

/* 注記ボックス */
.class-note {
  background: #fff;
  border: 2px dashed #acceed;
  border-radius: 12px;
  padding: 20px 28px;
  font-size: 1.4rem;
  color: #463c2f;
  line-height: 1.9;
}

   class.php - クラス編成テーブル（旧）
   ========================================================================== */
.shikui-class-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.45rem;
  line-height: 1.8;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(172,206,237,0.12);
}

.shikui-class-table th,
.shikui-class-table td {
  padding: 14px 18px;
  border: 1px solid rgba(172,206,237,0.35);
  vertical-align: middle;
  text-align: center;
}

.shikui-class-table thead th {
  background: #acceed;
  color: #fff;
  font-weight: 700;
}

.shikui-class-table tbody tr:nth-child(even) td {
  background: rgba(172,206,237,0.06);
}

.shikui-class-table td:last-child {
  text-align: left;
}

.shikui-class-table .class-name {
  font-weight: 700;
  color: #acceed;
}

/* ==========================================================================
   info.php - 募集要項・見学
   ========================================================================== */
.shikui-recruitment-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.45rem;
  line-height: 1.8;
}

.shikui-recruitment-table th,
.shikui-recruitment-table td {
  padding: 14px 18px;
  border: 1px solid rgba(172,206,237,0.35);
  vertical-align: middle;
}

.shikui-recruitment-table th {
  background: rgba(172,206,237,0.2);
  font-weight: 700;
  color: #4a3728;
  width: 180px;
  white-space: nowrap;
}

.shikui-recruitment-table td {
  background: #fff;
}

.shikui-visit-box {
  background: #fff;
  border: 2px solid #f9c8cc;
  border-radius: 16px;
  padding: 36px 32px 32px;
  text-align: center;
}

.shikui-visit-box__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f9c8cc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2.4rem;
  color: #fff;
}

.shikui-visit-box__label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #463c2f;
  margin-bottom: 8px;
}

.shikui-visit-box__tel {
  font-size: 3.2rem;
  font-weight: 700;
  color: #f4a0a8;
  text-decoration: none;
  display: block;
  margin: 4px 0 12px;
  transition: opacity 0.2s;
  letter-spacing: 0.05em;
}

.shikui-visit-box__tel:hover {
  opacity: 0.75;
}

.shikui-visit-box__hours {
  font-size: 1.35rem;
  color: #888;
}

/* ==========================================================================
   info.php - よくある質問（アコーディオン）
   共通CSS: .accordion.accordion--arrow / __head / __body / .is-open
   ========================================================================== */

/* 共通SCSSの .accordion--arrow のカラーを #acceed に合わせて上書き */
.shikui-faq .accordion--arrow .accordion__head {
  font-size: 1.5rem;
  background: #fff;
}

/* Q. プレフィックス（left::before の bullet dot を上書き） */
.shikui-faq .accordion--arrow .accordion__head::before {
  content: 'Q.';
  background: none;
  border-radius: 0;
  width: auto;
  height: auto;
  font-size: 1.6rem;
  font-weight: 700;
  color: #acceed;
  top: auto;
  left: 20px;
}

/* A. プレフィックスを body に追加 */
.shikui-faq .accordion--arrow .accordion__body::before {
  content: 'A. ';
  font-weight: 700;
  color: #f4a05e;
  font-size: 1.4rem;
}

.shikui-faq .accordion--arrow .accordion__body {
  padding: 14px 20px 14px 60px;
  font-size: 1.45rem;
  line-height: 1.85;
  color: #4a3728;
}

/* ==========================================================================
   フッター
   ========================================================================== */
#l-footer {
  position: relative;
  font-size: 1.4rem;
}

.shikui-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 40px) 20px clamp(16px, 2vw, 30px);
  background: #FEF6F4;
}

.shikui-footer-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.shikui-footer-left {
  width: 45%;
}

.shikui-footer-right {
  width: 48%;
}

.shikui-footer-logo a {
  display: block;
  text-decoration: none;
  margin-bottom: 20px;
}

.shikui-footer-logo img {
  width: 180px;
  height: auto;
  display: block;
}

.shikui-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.shikui-footer-tel a {
  font-size: 3.2rem;
  font-weight: 700;
  color: #4a3728;
  text-decoration: none;
  font-family: 'Chewy', cursive;
  transition: color 0.2s;
  letter-spacing: 0.05em;
}

.shikui-footer-tel a:hover {
  color: #acceed;
}

.shikui-footer-tel i {
  font-size: 0.75em;
  margin-right: 6px;
  color: #acceed;
}

.shikui-footer-info {
  font-size: 1.3rem;
  line-height: 1.9;
  color: #997a66;
  margin-bottom: 20px;
}

.shikui-footer-info p {
  margin: 0;
}

.shikui-disclosure-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 20px;
  font-size: 1.3rem;
  color: #fff;
  background-color: #7da8c0;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.shikui-disclosure-btn:hover {
  background-color: #5a8fa8;
  opacity: 1;
}

.shikui-footer-nav {
  border-top: 1px solid rgba(153,122,102,0.2);
  padding-top: 24px;
  margin-top: 24px;
}

.shikui-footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.shikui-footer-nav a {
  font-size: 1.35rem;
  color: #997a66;
  text-decoration: none;
  transition: color 0.2s;
}

.shikui-footer-nav a:hover {
  color: #acceed;
}

.shikui-footer-right iframe {
  border-radius: 10px;
  display: block;
}

.shikui-footer-sea {
  background-color: #FEF6F4;
  background-image: url('https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27816/footer_umi.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: calc(100vw * 821 / 1900);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.shikui-copyright {
  text-align: center;
  font-size: 1.2rem;
  color: #997a66;
  padding: 10px 20px clamp(12px, 2vw, 24px);
}

.shikui-copyright small {
  font-size: inherit;
}

/* ==========================================================================
   ページトップボタン
   ========================================================================== */
#page-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

#page-top.is-visible {
  opacity: 1;
  visibility: visible;
}

#page-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #acceed;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(172,206,237,0.4);
  transition: background 0.2s, transform 0.2s;
}

#page-top a:hover {
  background: #6db4c8;
  transform: translateY(-2px);
}

/* ==========================================================================
   固定ボタン：各種様式
   ========================================================================== */
.shikui-fixed-forms {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 190;
}

.shikui-fixed-forms__label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: #acceed;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 16px 10px;
  cursor: pointer;
  border-radius: 8px 0 0 8px;
  letter-spacing: 0.1em;
  user-select: none;
  transition: background 0.2s;
  box-shadow: -2px 0 12px rgba(172,206,237,0.3);
}

.shikui-fixed-forms__label:hover {
  background: #6db4c8;
}

.shikui-fixed-forms__list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  right: 100%;
  top: 0;
  background: #fff;
  border-radius: 10px 0 0 10px;
  box-shadow: -4px 0 16px rgba(0,0,0,0.12);
  overflow: hidden;
  width: 0;
  opacity: 0;
  transition: width 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
}

.shikui-fixed-forms.is-open .shikui-fixed-forms__list {
  width: 160px;
  opacity: 1;
}

.shikui-fixed-forms__list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  color: #4a3728;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(172,206,237,0.2);
  transition: background 0.2s, color 0.2s;
}

.shikui-fixed-forms__list li:last-child a {
  border-bottom: none;
}

.shikui-fixed-forms__list li a:hover {
  background: rgba(172,206,237,0.15);
  color: #acceed;
}

.shikui-fixed-forms__list li a i {
  color: #f4a05e;
  font-size: 1.8rem;
}

/* ==========================================================================
   固定ボタン（登園届・意見書）
   ========================================================================== */
.shikui-fixed-btns {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 190;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shikui-fixed-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: #acceed;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 20px 12px;
  border-radius: 10px 0 0 10px;
  text-decoration: none;
  box-shadow: -3px 3px 12px rgba(172,206,237,0.4);
  transition: background 0.2s, transform 0.2s;
}

.shikui-fixed-btn:hover {
  background: #6db4c8;
  transform: translateX(-4px);
}

/* ==========================================================================
   地域活動 3カラム
   ========================================================================== */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.community-grid__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* ==========================================================================
   1日の流れ タイムライン
   ========================================================================== */

/* 外側ラッパー：白ボックス＋2カラム */
.daily-schedule-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.daily-schedule-wrap__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.daily-schedule {
  position: relative;
}

.daily-schedule::before {
  content: '';
  position: absolute;
  left: 90px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #acceed;
}

.daily-schedule__item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 0;
  position: relative;
}

.daily-schedule__item + .daily-schedule__item {
  margin-top: 0;
}

.daily-schedule__time {
  width: 90px;
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 400;
  color: #acceed;
  font-family: 'Chewy', cursive;
  letter-spacing: 0.03em;
  padding: 16px 0;
  text-align: right;
  padding-right: 18px;
  line-height: 1.4;
}

.daily-schedule__content {
  flex: 1;
  padding: 14px 0 14px 28px;
  position: relative;
}

.daily-schedule__content::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #acceed;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #acceed;
}

.daily-schedule__content p {
  font-size: 1.5rem;
  color: #463c2f;
  line-height: 1.7;
}

.daily-schedule__note {
  font-size: 1.3rem;
  color: #888;
}

.daily-schedule__sub {
  font-size: 1.3rem;
  color: #888;
  margin-top: 2px;
}

/* ==========================================================================
   ギャラリーモーダル
   ========================================================================== */
.gmodal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

.gmodal.is-open {
  display: flex;
}

.gmodal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.gmodal__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 90vh;
}

.gmodal__img {
  display: block;
  max-width: 80vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.gmodal__close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.gmodal__close:hover {
  opacity: 1;
}

.gmodal__prev,
.gmodal__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 0 16px;
  user-select: none;
}

.gmodal__prev { left: 16px; }
.gmodal__next { right: 16px; }

.gmodal__prev:hover,
.gmodal__next:hover {
  opacity: 1;
}

.gmodal__counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.4rem;
  opacity: 0.8;
}

/* ==========================================================================
   SP 固定バー
   ========================================================================== */
#sp_btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 250;
  background: #fff;
  border-top: 1px solid rgba(172,206,237,0.5);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
}

#sp_btn ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

#sp_btn ul li {
  flex: 1;
  border-right: 1px solid rgba(172,206,237,0.3);
}

#sp_btn ul li:last-child {
  border-right: none;
}

#sp_btn ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 14px;
  color: #4a3728;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  gap: 4px;
}

#sp_btn ul li a i {
  font-size: 2.0rem;
  color: #acceed;
}

#sp_btn ul li a span {
  display: block;
  font-size: 1.0rem;
}

#sp_btn ul li a:hover {
  background: rgba(172,206,237,0.12);
  color: #acceed;
}

/* ==========================================================================
   ブログ関連
   ========================================================================== */
/* 記事詳細カード */
.shikui-entry-card {
  background: #fff;
  border-radius: 4px;
  border-top: 4px solid #f0a8b0;
  padding: 32px 36px;
  margin-bottom: 24px;
}

.shikui-entry-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e8e8e8;
}

.shikui-entry-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.3rem;
  color: #e07070;
  margin-bottom: 20px;
}

.shikui-entry-date i {
  font-size: 1.2rem;
}

.shikui-entry-body {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #4a7a8a;
}

.shikui-entry-body p {
  margin-bottom: 1em;
}

.shikui-entry-body img {
  max-width: 100%;
  height: auto;
}

/* 前後記事リンク */
.shikui-entry-page-link {
  margin-bottom: 16px;
}

.shikui-blog-back {
  text-align: center;
  margin-top: 40px;
}

/* ==========================================================================
   レスポンシブ
   ========================================================================== */

/* タブレット以下 */
@media screen and (max-width: 896px) {
  /* ヘッダー */
  #l-header {
    position: relative;
    background: #F9F8E1;
  }
  #l-header.is-fixed {
    position: fixed;
    animation: none;
  }
  #l-header.is-fixed #logo {
    padding-bottom: 5px;
  }
  .shikui-header-inner {
    padding: 8px 15px;
    justify-content: center;
  }
  .shikui-logo-name {
    font-size: 1.8rem;
  }

  /* SP ハンバーガー表示 */
  #nav-toggle {
    display: block;
  }
  #sp-nav {
    display: block;
  }

  /* SP固定バー表示 */
  #sp_btn {
    display: block;
  }

  /* PCの縦タブボタンをSPで非表示 */
  .shikui-fixed-btns {
    display: none;
  }

  /* ページトップボタン（SP非表示） */
  #page-top {
    display: block;
    bottom: 70px;
  }

  /* フッターナビ非表示 */
  .shikui-footer-nav {
    display: none;
  }

  /* MV */
  .shikui-slide-img {
    height: 70vh;
  }
  .shikui-catch-text {
    font-size: 2.4rem;
    padding: 14px 24px;
    letter-spacing: 0.1em;
  }
  .shikui-deco01 {
    bottom: auto;
    top: 0;
    left: 5%;
    width: 150px;
    height: 260px;
  }
  .shikui-deco02 {
    width: 180px;
    height: 130px;
    right: 10px;
  }

  /* フッター */
  .shikui-footer-left,
  .shikui-footer-right {
    width: 100%;
  }
  .shikui-footer-left {
    margin-bottom: 20px;
    text-align: center;
  }

  .shikui-footer-logo a {
    display: inline-block;
  }

  .shikui-footer-contact,
  .shikui-footer-info {
    align-items: center;
  }

  /* ページリンクボタン */
  .shikui-page-links {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 年間行事カード */
  .schedule-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  /* 1日の流れ */
  .daily-schedule-wrap {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }

  .daily-schedule-wrap__img img {
    max-height: 260px;
  }

  /* クラスカード */
  .class-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .class-card:nth-child(4),
  .class-card:nth-child(5) {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }

  /* イベントテーブル */
  .shikui-events-table,
  .shikui-price-table,
  .shikui-class-table,
  .shikui-recruitment-table {
    font-size: 1.3rem;
  }
  .shikui-events-table th,
  .shikui-events-table td,
  .shikui-price-table th,
  .shikui-price-table td,
  .shikui-class-table th,
  .shikui-class-table td,
  .shikui-recruitment-table th,
  .shikui-recruitment-table td {
    padding: 10px 12px;
  }

  /* ギャラリー */
  .shikui-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ブログカード：2カラムに */
  .blog-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 一覧ページ：縦並びに */
  .shikui-blog-layout {
    grid-template-columns: 1fr;
  }

  /* 3カラム→2カラムに */
  .card-blog--3col .blog-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 各種様式固定ボタン */
  .shikui-fixed-forms {
    top: auto;
    bottom: 65px;
    transform: none;
  }
}

/* SP のみ */
@media screen and (max-width: 639px) {
  .shikui-slide-img {
    height: 105vmin;
  }
  .shikui-catch-text {
    font-size: 2.0rem;
    padding: 12px 18px;
    letter-spacing: 0.06em;
  }
  #shikui-catch {
    width: 90%;
  }
  .shikui-page-hero__en {
    font-size: 3.6rem;
  }
  .shikui-page-hero__ja {
    font-size: 1.4rem;
  }
  .shikui-page-hero {
    padding: 50px 20px 60px;
  }
  .shikui-footer-tel a {
    font-size: 2.6rem;
  }
  .shikui-global-nav {
    width: 100%;
  }
  .shikui-forms-list {
    flex-direction: column;
    align-items: center;
  }

  .shikui-forms-list--center .shikui-forms-item a {
    width: 100%;
    max-width: 340px;
    box-sizing: border-box;
  }
  .shikui-page-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .shikui-price-table {
    display: block;
    overflow-x: auto;
  }
  /* ブログカード：1カラムに */
  .blog-wrap,
  .card-blog--3col .blog-wrap {
    grid-template-columns: 1fr;
  }
}
