/* =========================================================
  Base / Reset
========================================================= */
:root{
  --text: #53342d;
  --bg: #fcf9ef;
}

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

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial', 'Hiragino Sans', 'ヒラギノ角ゴ Pro W3',
    'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', 'Osaka', 'ＭＳ Ｐゴシック', 'MS PGothic', 'Yu Gothic', sans-serif;
  font-size: 17px;
  line-height: 1.8em;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: visible !important;
  overflow-y: visible !important;
}

img{ max-width: 100%; height: auto; vertical-align: middle; }

a{
  color: #1aafe6;
  text-decoration: underline;
}
a:hover{
  color: #38bff1;
  text-decoration: none;
}

ul{ margin: 0; padding: 0; list-style: none; }
p{ margin: 0 0 1em; }

/* Skip link */
.skip-link{
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus{
  left: 12px;
  top: 12px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 9999;
}

/* =========================================================
  Link hover (PC only / 画像リンクだけ)
========================================================= */
@media (hover: hover) and (pointer: fine){
  a img{ transition: transform .1s ease; }
  a:hover img{ transform: translateY(-3px); }
}

/* =========================================================
  Layout
========================================================= */
.container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.section{
  position: relative;
  padding: 56px 0;
}
.section-inner{ position: relative; }

/* br 出し分け */
.br-sp{ display: none; }
@media (max-width: 768px){
  .br-sp{ display: inline; }
}

/* =========================================================
  Section title (h2 image)
========================================================= */
.section-title{
  text-align: center;
  margin: 0 0 24px;
  line-height: 1;
}
.section-title .title-img{ display: inline-block; }
.section-title .title-img img{
  display: block;
  width: 50%;     /* 2倍書き出し想定 */
  margin: 0 auto;
}
@media (max-width: 768px){
  .section-title .title-img img{
    width: min(80%, 360px);
  }
}

/* =========================================================
  Decorative flags
========================================================= */
.bg_flag-lft,
.bg_flag-rgt{
  position: absolute;
  top: 0;
  width: clamp(120px, 30vw, 310px);
  height: auto;
}
.bg_flag-lft{ left: 0; }
.bg_flag-rgt{ right: 0; }

/* =========================================================
  Header
========================================================= */
.site-header{
  position: relative;
  overflow: hidden;
  padding: 24px 0 20px;
  background-image: url("images/header_bg_lft.png"), url("images/header_bg_rgt.png");
  background-repeat: no-repeat;
  background-position: left top, right top;
  background-size: 736px;
}

.site-header::before,
.site-header::after{
  content:"";
  position: absolute;
  top: 0;
  width: 472px;
  height: 216px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}
.site-header::before{ left: 0;  background-image: url("images/header_sky_lft.png"); }
.site-header::after{  right: 0; background-image: url("images/header_sky_rgt.png"); }

.header-inner{
  display: grid;
  gap: 12px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Brand */
.brand{ text-align: center; z-index: 100; }
.brand-title{ margin: 0; line-height: 1; }
.brand-logo{ display: inline-block; }
.brand-logo img{
  display: block;
  max-width: 253px;
  margin: 0 auto;
}

/* PC menu (画像5つ横並び) */
.nav-pc__list{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 100;
  margin-top: 20px;
}
.nav-pc__list li{ margin-left: 0; }
.nav-pc__list li::before{ display: none; }
.nav-pc__list a{ display: block; }
.nav-pc__list img{ display: block; height: auto; }

/* SP menu (meanmenu) */
.nav-sp{ display: none; }
.sp-menu{ display: none; } /* meanmenu挿入先 */

@media (min-width: 769px) and (max-width: 1120px){
  .site-header{
    background-size: clamp(420px, 55vw, 620px);
    padding: 20px 0 14px;
  }

  .site-header::before,
  .site-header::after{
    width: clamp(240px, 34vw, 360px);
    height: auto;
    aspect-ratio: 472 / 216;
    top: 6px;
    opacity: .95;
  }

  .site-header::before{ left: -14px; }
  .site-header::after{  right: -14px; }
}

@media (max-width: 768px){
  .site-header{
    padding-bottom: 0;
    background-size: 60%;
  }
  .site-header::before,
  .site-header::after{
    width: min(40%, 300px);
  }
  .brand-logo img{
    max-width: min(40%, 200px);
  }

  .nav-pc{ display: none; }
  .nav-sp{ display: block; }
  .sp-menu{ display: block; }
}

/* Optional decos */
.deco{
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.deco-balloon{ right: 18px; top: 12px; width: 86px; opacity: .95; }
.deco-cloud{ left: 14px; top: 40px; width: 120px; opacity: .9; }
.deco-kite{ left: 12px; top: 4px; width: 70px; opacity: .9; }

/* =========================================================
  Hero
========================================================= */
.hero{
  position: relative;
  padding: 56px 0 120px;
  background: url("images/index_mv_bg.jpg") center/cover no-repeat;
}
.hero::before{
  content:"";
  position: absolute;
  left: 0;
  top: -5px;
  width: 100%;
  height: 10px;
  background: url("images/index_mv_line_tp.png") top/contain repeat-x;
  z-index: 0;
}
.hero-inner{ position: relative; z-index: 0; }
.hero-inner.container{ max-width: 1238px; }

.hero-photo{
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
}
.hero-photo img{ width: 100%; display: block; }

@media (max-width: 768px){
  .hero{ padding: 20px 0 40px; }
  .hero-inner.container{ padding: 0; }
}

/* =========================================================
  Message
========================================================= */
.section-message{
  background: url("images/index_introduction_bg.png") top center/2871px no-repeat #fff;
}
.section-message::before{
  content:"";
  position: absolute;
  left: 0;
  top: -60px;
  width: 100%;
  height: clamp(40px, 14vw, 60px);
  background: url("images/index_mv_bg_btm.png") top/100% 100% no-repeat;
  pointer-events: none;
  z-index: 0;
}
.message-box{
  position: relative;
  padding: 18px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.message-box p{ font-size: 1.2em; }

.message-box .dot-line{
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 12px;
  border-bottom: 2px dotted #f7b6c6;
}

@media (max-width: 768px){
  .section-message::before{
    top: -20px;
    height: clamp(20px, 4vw, 30px);
  }
  .message-box p{ font-size: 1em; }
  .message-text{ text-align: left; }
}

/* Card (共通) */
.card{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  padding: 32px;
}

/* =========================================================
  Policy
========================================================= */
.section-policy{ padding-bottom: 16px; }

.card-policy{
  background: #fff;
  border-radius: 32px;
  padding: 40px 50px;
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  border: 10px solid transparent;
  background-clip: padding-box;
}
.card-policy::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  padding: 6px;
  background: url("images/bg_watercolor_p.jpg") center/100% 100% no-repeat;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.policy-list{
  display: grid;
  gap: 20px;
}
.policy-list .dot{ display: none; }

.policy-list li{
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 0;
  color: var(--text);
  font-weight: 600;
  line-height: 1.6;
  font-size: clamp(1em, 2.5vw, 1.2em);
  padding-left: clamp(26px, 8vw, 40px);
}
.policy-list li::before{
  content: "";
  width: clamp(18px, 6vw, 30px);
  height: clamp(18px, 6vw, 30px);
  flex: 0 0 clamp(18px, 6vw, 30px);
  background: center/contain no-repeat;
  left: 0;
  top:0;
}
.policy-list li:nth-child(1)::before{ background-image: url("images/icon_disc01.png"); }
.policy-list li:nth-child(2)::before{ background-image: url("images/icon_disc02.png"); }
.policy-list li:nth-child(3)::before{ background-image: url("images/icon_disc03.png"); }

@media (max-width: 768px){
  .section-policy{ padding-bottom: 0 !important; }
  .card-policy{ padding: 28px 20px; border-radius: 24px; }
  .policy-list li{ gap: 12px; }
  .policy-list li::before{ top: 0.5em; }
}

/* =========================================================
  Philosophy
========================================================= */
.section-philosophy{
  position: relative;
  padding-top: 120px;
  padding-bottom: calc(clamp(40px, 14vw, 60px) + 60px);
  background: url("images/index_rinen_bg.png") center top/cover no-repeat;
}
.section-philosophy::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(40px, 14vw, 60px);
  background: url("images/lower_h2_bg_btm.png") no-repeat center top;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 0;
}

.card-philosophy{
  max-width: 990px;
  margin: 0 auto;
  background: rgba(255,255,255,.70);
  border-radius: 30px;
  padding: 42px 52px;
  position: relative;
}

.philosophy-lead{
  text-align: center;
  margin: 0 0 26px;
  line-height: 1.9;
}

.philosophy-list{
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.philosophy-list li{
  display: flex;
  align-items: flex-start;
  gap: 18px;
  line-height: 1.9;
  margin-left: 0;
  padding-left: 40px;
}
.philosophy-list li::before{
  content: "";
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  background: center/contain no-repeat;
  margin-top: 4px;
  left: 0;
}
.philosophy-list li:nth-child(1)::before{ background-image: url("images/icon_flower01.png"); }
.philosophy-list li:nth-child(2)::before{ background-image: url("images/icon_flower02.png"); }
.philosophy-list li:nth-child(3)::before{ background-image: url("images/icon_flower03.png"); }

@media (max-width: 768px){
  .section-philosophy{ padding: 80px 0 100px !important; }
  .card-philosophy{ padding: 26px 18px; border-radius: 22px; }
  .philosophy-lead{ margin-bottom: 18px; }
  .philosophy-list{ gap: 18px; }
  .philosophy-list li{ gap: 12px; }
}

/* =========================================================
  Info (Basic info)
========================================================= */
.section-info{
  margin-top: clamp(-40px, -14vw, -60px);

  /* 下線色 */
  --line_pnk: #fddae0;
  --line_ylw: #fbe898;
}

.info-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  padding-top: 40px;
  align-items: stretch;
}

.info-card{
  position: relative;
  border-radius: 30px;
  padding: 22px 22px 26px;
  background: transparent;
  overflow: visible;
  z-index: 0;
}

/* frame */
.info-card::before{
  content:"";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  z-index: 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.info-card-a::before{ background-image: url("images/bg_paper_y.jpg"); }
.info-card-b::before{ background-image: url("images/bg_paper_p.jpg"); }

/* inner white */
.info-card::after{
  content:"";
  position: absolute;
  inset: 4px;
  border-radius: 26px;
  background: rgba(255,255,255,1);
  pointer-events: none;
  z-index: 1;
}
.info-card > *{ position: relative; z-index: 2; }

/* h3 */
.info-card-title{
  margin: -30px 0 0;
  text-align: center;
}
.info-card-title img{
  display: block;
  width: clamp(240px, 50%, 260px);
  margin: 0 auto;
  transform: translateY(-20px);
}

.info-photo{
  position: relative;
  margin: 0 0 16px;
  padding: 0 6px;
}

.info-photo img{
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

/* フレームを重ねる */
.info-photo::after{
  content: "";
  position: absolute;
  inset: -2px;
  background: url("images/index_access_ph_frame.png") no-repeat center;
  background-size: 100% 100%;
  z-index: 2;
  pointer-events: none;
}

/* table */
.info-table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.8;
}
.info-table tr + tr th,
.info-table tr + tr td{ padding-top: 10px; }

.info-table th{
  width: 140px;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
  padding: 10px 12px;
}
.info-table td{
  padding: 10px 10px 10px 14px;
  vertical-align: top;
}
.info-card-a .info-table td{ border-bottom: 1px solid var(--line_ylw); }
.info-card-b .info-table td{ border-bottom: 1px solid var(--line_pnk); }

.info-card-a .info-table th{ background-image: url("images/bg_paper_y.jpg"); }
.info-card-b .info-table th{ background-image: url("images/bg_paper_p.jpg"); }

.info-table a:hover{ text-decoration: underline; }

/* map */
.map-box{ margin-top: 24px; padding: 0 6px; }
.map-box iframe{ border-radius: 18px; }

/* access */
.access{
  margin-top: 18px;
  padding: 0 6px;
}
.access h4{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  padding-bottom: 6px;
}
.info-card-a .access h4{ border-bottom: 2px dotted var(--line_ylw); }
.info-card-b .access h4{ border-bottom: 2px dotted var(--line_pnk); }
.access p{
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
}

@media (max-width: 980px){
  .info-grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .info-table th{ width: 130px; }
}
@media (max-width: 767px){
  .info-card{ margin-bottom: 30px; }
}
@media (max-width: 520px){
  .info-card{ padding: 18px 16px 22px; }
  .info-table{ font-size: 15px; }
  .info-table th{ width: 120px; padding: 9px 10px; }
  .info-table td{ padding: 9px 10px 9px 12px; }
}

/* =========================================================
  Contact
========================================================= */
.section-contact{
  background: url("images/index_contact_bg.jpg") center/50% repeat;
}
.contact-lead{
  text-align: center;
  margin: 0 auto 24px;
  font-size: 16px;
}
.tel-cta{
  display: flex;
  justify-content: center;
}
.tel-btn img{
  max-width: 566px;
  width: 100%;
  display: block;
}

/* =========================================================
  Footer
========================================================= */
.site-footer{
  position: relative;
  overflow: hidden;
}

/* upper banner */
.footer-banner{
  background-image: url("images/footer_bg_lft.png"), url("images/footer_bg_rgt.png");
  background-repeat: no-repeat;
  background-position: left bottom, right bottom;
  background-size: 475px;
  padding: 40px 0 30px;
  text-align: center;
}
.footer-banner .container{
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.footer-btn-img{
  display: inline-block;
  line-height: 0;
}
.footer-btn-img img{
  display: block;
  width: clamp(180px, 60vw, 360px);
  height: auto;
}
.lower-footer {
  padding-top: 160px;
  z-index: 1;
}


@media (max-width: 768px){
  .footer-banner{
    padding: 30px 0 60px;
    background-size: 50%;
  }
}

/* bottom */
.footer-bottom{
  position: relative;
  background: url("images/bg_brush_p.jpg") repeat;
  text-align: center;
  padding: 16px 0;
}
.footer-bottom::before,
.footer-bottom::after{
  content:"";
  position: absolute;
  left: 0;
  width: 100%;
  height: 6px;
  background: url("images/bg_footer_dashed.png") repeat-x center;
}
.footer-bottom::before{ top: 0; }
.footer-bottom::after{ bottom: 0; }

.copyright{
  margin: 0;
  color: #fff;
  font-size: 14px;
  letter-spacing: .05em;
  position: relative;
  z-index: 2;
}

/* page top */
.pagetop{
  position: absolute;
  right: calc((100vw - 1120px)/2);
  top: -10px;
  z-index: 5;
  line-height: 0;
}
.pagetop img{
  display: block;
  width: 120px;
  height: auto;
  margin-top: -20px;
}
@media (max-width: 1120px){
  .pagetop{ right: 12px; }
  .pagetop img{ width: 96px; }
}

/* =========================================================
  Responsive global
========================================================= */
@media (max-width: 768px){
  body{ font-size: 16px; line-height: 1.8; }
  .section{ padding: 24px 0; }
  .pagetop{ top: -30px; }
}

/* =========================================================
  Common parts: lower page-hero
========================================================= */
.page-hero{
  padding: 32px 0 48px;
  background: url("images/index_mv_bg.jpg") center/cover no-repeat;
  position: relative;
  text-align: center;
}
.page-hero::before{
  content:"";
  position: absolute;
  left: 0;
  top: -5px;
  width: 100%;
  height: 10px;
  background: url("images/index_mv_line_tp.png") top/contain repeat-x;
  z-index: 0;
}
.page-hero::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(40px, 14vw, 60px);
  background: url("images/lower_h2_bg_btm.png") no-repeat center top;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 0;
}

/* title image (2倍→等倍) */
.page-title{ text-align: center; margin: 0; }
.page-title img{
  display: inline-block;
  transform: scale(0.5);
  transform-origin: center top;
  height: auto;
}

@media (max-width: 768px){
  .page-hero{ padding: 26px 0 34px; }
  .page-hero::after{
    bottom: -10px;
    height: clamp(20px, 4vw, 30px);
  }
  /* スマホだけは余白問題回避で“高さ指定”運用（あなたの現仕様を維持） */
  .page-title img{
    transform: none;
    height: clamp(30px, 4vw, 35px);
    display: block;
    margin: 0 auto;
  }
}

/* =====================================================
   Blog Layout
===================================================== */
#blogbox,
#albumbox{
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 24px;
}

#blogside{
  width: 250px;
  flex-shrink: 0;
  background: url("images/bg_watercolor_p.jpg") repeat;
  border-radius: 20px;
  padding: 20px;
}
#albumbox #blogside{
  background: url("images/bg_watercolor_y02.jpg") repeat;
}

#blogmain{
  flex: 1;
  min-width: 0;
}

/* Sidebar */
#blogside h3{
  text-align: center;
  margin: 0 0 10px;
}
#blogside ul{
  padding: 12px;
  background: #fff;
  border-radius: 10px;
  margin: 0 0 20px;
}
#blogside ul li{
  position: relative;
  padding: 10px 0 10px 40px;
  border-bottom: 1px dotted #ffd967;
  font-size: 0.8em;
  line-height: 1.7;
  margin: 0;
}
#blogside ul li:last-child{ border-bottom: none; }

#blogside ul li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 29px;
  height: 29px;
  background: url("images/news_side_icon.png") center/contain no-repeat;
}
#albumbox #blogside ul li::before{
  background: url("images/album_side_icon.png") center/contain no-repeat;
}

.news_side_banner a{
  display: block;
  margin: .5em 0;
  padding: 13px;
  background: #a872fe;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  font-size: 0.8em;
  line-height: 1.7;
}

/* Blog Article Card */
.blogkiji{
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
}
.blogkiji_box{ border-radius: 20px; }

.blogmidashi{
  font-size: clamp(1.05em, 2.5vw, 1.3em);
  font-weight: 600;
  margin: 0 0 15px;
  padding: 12px 18px 12px clamp(48px, 10vw, 70px);
  border-radius: 10px;
  position: relative;
  border-bottom: 2px dotted #fddae0;
}
.blogmidashi::before{
  content: "";
  position: absolute;
  width: clamp(36px, 8vw, 58px);
  height: clamp(24px, 5.5vw, 40px);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: center/contain no-repeat url("images/icon_bird.png");
}
#albumbox .blogmidashi::before{
  background: center/contain no-repeat url("images/icon_butterfly.png");
  width: clamp(40px, 12vw, 70px);
  height: clamp(31px, 9vw, 54px);
}

/* Article body */
.bloghonbun{
  margin: 0 0 20px;
  line-height: 1.9;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.bloghonbun p{ margin: 0 0 1em; }
.bloghonbun strong{ font-weight: 700; }
.bloghonbun img{ margin: 1em 0; max-width: 100%; height: auto; }

/* Photo Gallery */
.photo{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.photo dl{ margin: 10px 0; }
.photo img{
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.photo dd{
  font-size: .8em;
  text-align: center;
  margin: 5px 0 0;
  color: #999;
}

.photo:has(> :nth-of-type(-n+1):last-of-type) dl{ width: 100%; }
.photo:has(> :nth-of-type(-n+1):last-of-type) dl img { width: 100%; }
.photo:has(> :nth-of-type(2):last-of-type) dl{ width: calc(50% - 6px); }
.photo:has(> :nth-of-type(3)) dl{ width: calc(33.333% - 8px); }

@media (max-width: 768px){
  .photo dl{ width: 100% !important; }
}

/* PDF Button */
ul.pdf{ padding: 0; margin: 0 0 10px; }
ul.pdf li{ margin: 0; }
ul.pdf li:before{ display: none; }

.pdf a{
  display: inline-block;
  margin: .5em 0;
  padding: 13px 20px 10px 60px;
  background: #fcf2ad;
  border-radius: 8px;
  color: #e68717;
  position: relative;
  text-decoration: none;
}
.pdf a:hover{ opacity: .85; }
.pdf a::before{
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 48px;
  background: url("images/icon_pdf.png") center/contain no-repeat;
}

/* YouTube */
.youtube{
  position: relative;
  padding-top: 56.25%;
  margin: 30px 0 20px;
}
.youtube iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Date */
.blogdate{
  border-top: 1px dotted #ccc;
  padding-top: 8px;
  text-align: right;
  font-size: .9em;
  color: #999;
}

/* Table */
.blogkiji table{
  width: 100%;
  margin: 1em 0;
  border-collapse: collapse;
  background: #fff;
}
.blogkiji th,
.blogkiji td{
  border: 1px solid #ccc;
  padding: 8px;
  text-align: center;
}
.blogkiji th{ font-weight: 700; }

/* List */
.bloghonbun ul{
  padding-left: 0;
  margin: 1em 0 0 1em;
}
.bloghonbun ul li{
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0 0 10px;
  padding-left: 0;
}
.bloghonbun ul li::before{
  content: "";
  width: 8px;
  height: 8px;
  background: #e5a12c;
  border-radius: 50%;
  flex: 0 0 8px;
}

/* ol：改行しても番号が左に出る */
.bloghonbun ol{
  counter-reset: num;
  list-style: none;
  padding-left: 1.8em;
  margin: 1em 0;
}
.bloghonbun ol li{
  counter-increment: num;
  position: relative;
  margin: 0 0 .6em;
}
.bloghonbun ol li::before{
  content: counter(num) ".";
  position: absolute;
  left: -1.8em;
  font-weight: 700;
}

/* Pagination */
#blogmain #next{
  text-align: center;
  margin-top: 30px;
  padding-bottom: 10px;
}
#blogmain #next li{
  display: inline-block;
  margin: 0 4px;
}
#blogmain #next a{
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
}
#blogmain #next li.active a{ background: #faf29d; }

/* Blog SP */
@media (max-width: 768px){
  #blogbox,
  #albumbox{
    flex-direction: column;
    gap: 18px;
    margin-top: 0;
  }

  /* 記事→サイドバー */
  #blogmain{ order: 1; }
  #blogside{ order: 2; }

  #blogside{
    width: 100%;
    padding: 14px;
    border-radius: 18px;
  }
  #blogside ul{
    padding: 10px;
    margin-bottom: 14px;
  }
  #blogside ul li{
    padding: 9px 0 9px 36px;
    font-size: .92em;
  }
  #blogside ul li::before{
    top: 9px;
    width: 26px;
    height: 26px;
  }

  .blogkiji{
    padding: 18px;
    margin-bottom: 18px;
    border-radius: 18px;
  }

  .blogmidashi{
    margin-bottom: 12px;
    padding: 10px 12px 10px clamp(44px, 12vw, 62px);
  }

  .bloghonbun{
    line-height: 1.85;
    margin-bottom: 16px;
  }

  .youtube{ margin: 18px 0 14px; }

  .pdf a{
    padding: 12px 14px 10px 54px;
  }
  .pdf a::before{
    left: 10px;
    width: 34px;
    height: 40px;
  }

  .blogkiji th,
  .blogkiji td{
    padding: 6px;
    font-size: .95em;
  }
}

/* =====================================================
  園のようす（左：写真 / 右：テキスト）×3段
===================================================== */
.life-scenes{
  display: grid;
  gap: 26px;
  margin-top: 14px;
}
.section-life-scenes{ padding-top: 0; }

.life-scene{
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  gap: 24px;
}

.life-scene__photo{
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
}
.life-scene__photo img{
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.life-scene__text{ padding-top: 6px; }

.life-scene__ttl{
  margin: 0 0 20px;
  font-size: clamp(1.05em, 1.8vw, 1.25em);
  font-weight: 600;
  position: relative;
  z-index: 0;
}
.life-scene__ttl::after{
  content:"";
  position: absolute;
  top: 0;
  right: 0;
  width: 152px;
  height: 35px;
  background: url("images/life_yousu_deco.png") no-repeat;
  background-size: contain;
  z-index: -1;
}

.life-scene__text p{
  margin: 0;
  line-height: 1.9;
  font-size: 0.98em;
  opacity: .92;
}

@media (max-width: 980px){
  .life-scene{
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 18px;
  }
}

@media (max-width: 768px){
  .section-life-scenes{ padding-top: 24px; }
  .life-scenes{ gap: 18px; }
  .life-scene{
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }
  .life-scene__photo{ border-radius: 10px; }
  .life-scene__ttl{ margin-bottom: 10px; }
}

/* ===============================
   給食について
=============================== */
.section-lunch{
  background: url("images/life_lunch_bg.png") center top/cover no-repeat;
  padding: 120px 0 90px;
}
.card-lunch{
  margin: 22px auto 0;
  background: rgba(255,255,255,.70);
  padding: clamp(22px, 3.2vw, 46px) clamp(18px, 3.6vw, 56px);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.lunch-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
}
.lunch-text p{ margin: 0 0 1.2em; }
.lunch-text p:last-child{ margin-bottom: 0; }

.lunch-photo{ margin: 0; }
.lunch-photo img{
  width: 100%;
  display: block;
  border-radius: 18px;
}

@media (max-width: 768px){
  .section-lunch{ padding: 80px 0 70px; }
  .lunch-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lunch-text{ font-size: 15px; line-height: 1.95; }
}

/* ===============================
   保育の費用
=============================== */
.section-cost{ padding: 70px 0 90px; }

.card-cost{
  max-width: 1120px;
  margin: 22px auto 0;
  background: rgba(255,255,255,1);
  padding: clamp(22px, 3.2vw, 46px) clamp(18px, 3.6vw, 56px);
}

.cost-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
}
.cost-text{ line-height: 2.0; }
.cost-text p{ margin: 0 0 1.2em; }
.cost-text p:last-child{ margin-bottom: 0; }

.cost-photo{ margin: 0; }
.cost-photo img{
  width: 100%;
  display: block;
  border-radius: 22px;
}

@media (max-width: 768px){
  .section-cost{ padding: 50px 0 70px; }
  .cost-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cost-text{ font-size: 15px; line-height: 1.95; }
}

/* =========================================================
  1日の流れ（schedule-grid）
========================================================= */
.section-schedule{
  background: url("images/life_daily_bg.jpg") center/50% repeat;
}

.schedule-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.schedule-column{
  background: #fdfbf7;
  border-radius: 30px;
  padding: 30px 20px;
  border: 2px solid #eee;
}

.schedule-h3{
  margin: -50px auto 10px;
  width: 90%;
  max-width: 320px;
  text-align: center;
}
.schedule-h3 img{
  width: 100%;
  height: auto;
}

.schedule-table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}
.schedule-table tr{ vertical-align: top; }

.schedule-table th{
  width: 60px;
  background: url("images/bg_time.png") center/contain no-repeat;
  color: var(--text);
  font-size: 1rem;
  font-weight: bold;
  padding: 0;
  text-align: center;
}
.schedule-table td{
  padding-left: 15px;
  font-size: 1rem;
  color: var(--text);
}

@media (max-width: 1024px){
  .schedule-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .schedule-column{
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 767px){
  .schedule-h3{ margin: -55px auto 10px; max-width: 240px; }
  .schedule-table th{ width: 80px; font-size: .85rem; }
  .schedule-table td{ font-size: .9rem; }
}

/* =========================================================
  年間行事（yearly-grid）
========================================================= */
.section-yearly{
  background-image: url("images/dot-pattern.png");
  background-repeat: repeat;
  padding: 80px 0 0;
  margin-bottom: 0;
}

.yearly-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.yearly-item{
  background: #fff;
  border-radius: 20px;
  padding: 20px 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  border: 1px solid #eee;
}

.yearly-month-img{
  flex-shrink: 0;
  width: 100px;
}
.yearly-month-img img{ width: 100%; height: auto; }

.yearly-list{
  flex: 1;
  min-width: 150px;
}
.yearly-list li,
.monthly-event ul li{
  position: relative;
  padding-left: 1.1em;
  line-height: 1.4;
  margin-bottom: 4px;
  color: var(--text);
  list-style: none;
}
.yearly-list li::before,
.monthly-event ul li::before{
  content: "\25cf";
  position: absolute;
  left: 0;
  color: #f8bbd0;
  font-size: 0.7em;
  top: 0.1em;
}

/* monthly */
.monthly-event{
  width: 100%;
  margin-top: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid #eee;
}
.monthly-label{
  font-size: 1.2em;
  font-weight: bold;
  color: #b59a82;
  margin-bottom: 24px;
  display: block;
}
.monthly-event ul{
  display: flex;
  flex-wrap: wrap;
  gap: 0 15px;
}

@media (max-width: 1100px){
  .yearly-grid{ grid-template-columns: repeat(2, 1fr); }
  .yearly-list li{ font-size: 0.95rem; }
}
@media (max-width: 767px){
  .yearly-grid{
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
  }
  .yearly-month-img{ width: 80px; }
  .yearly-list li{ font-size: 1rem; line-height: 1.6; }
  .monthly-event{
    margin-top: 10px;
    padding: 24px;
  }
}
