/* 旧 WordPress サイト(テーマ: Preschool and Kindergarten Pro)の見た目を踏襲 */
:root {
  --blue: #41aad4;
  --blue-dark: #2f93bc;
  --pink: #f380b2;
  --teal: #4fbba9;
  --text: #616161;
  --dark: #313131;
  --pale: #f9f9f9;
  --border: #ebebeb;
  --font: Lato, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: #fff; color: var(--text); font-family: var(--font); font-size: 17px; line-height: 1.75; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); }
a:hover { color: var(--blue-dark); }
h1, h2, h3 { margin: 0; color: var(--dark); line-height: 1.4; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: 1188px; margin-inline: auto; padding-inline: 24px; }
.wrap-narrow { max-width: 860px; }
.skip { position: absolute; left: -9999px; top: 0; background: var(--blue); color: #fff; padding: 8px 16px; z-index: 100; }
.skip:focus { left: 8px; top: 8px; }
:focus-visible { outline: 3px solid var(--pink); outline-offset: 2px; }
.stripe { height: 5px; background: url(/images/stripe.png) repeat-x center / auto 5px; }

/* header */
.site-header { background: var(--pale); }
.header-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 16px 18px; }
.brand { display: inline-flex; flex-direction: column; gap: 4px; text-decoration: none; }
.brand img { width: 158px; }
.tagline { color: #919191; font-size: 14px; }

.main-nav { position: sticky; top: 0; z-index: 40; background: #fff; border-block: 1px solid var(--border); }
.site-header { position: relative; }
.main-nav ul { display: flex; flex-wrap: wrap; }
.main-nav a { display: block; padding: 17px 20px; color: var(--dark); font-size: 15px; font-weight: 700; text-decoration: none; border-right: 1px solid var(--border); }
.main-nav li:first-child a { border-left: 1px solid var(--border); }
.main-nav a:hover, .main-nav a.is-current { background: var(--blue); color: #fff; }
.nav-toggle, .nav-button { display: none; }
@media (max-width: 860px) {
  .main-nav .wrap { padding-inline: 0; }
  .nav-button { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 56px; height: 50px; margin-left: auto; padding: 0 16px; cursor: pointer; }
  .nav-button span { display: block; height: 2px; background: var(--dark); }
  .nav-toggle { display: block; position: absolute; opacity: 0; width: 56px; height: 50px; right: 0; margin: 0; cursor: pointer; }
  .nav-toggle:focus-visible + .nav-button { outline: 3px solid var(--pink); }
  .main-nav ul { display: none; flex-direction: column; border-top: 1px solid var(--border); }
  .nav-toggle:checked ~ ul { display: flex; }
  .main-nav a { border: 0; border-bottom: 1px solid var(--border); padding: 14px 24px; }
  .main-nav li:first-child a { border-left: 0; }
}

/* buttons */
.btn { display: inline-block; min-width: 176px; padding: 12px 28px; font-size: 15px; font-weight: 700; text-align: center; text-decoration: none; border: 2px solid transparent; transition: background-color .2s, color .2s, border-color .2s; }
.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: #fff; color: var(--blue); }
.btn-outline { background: #fff; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-outline-white { color: #fff; border-color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--dark); }
.btn-lg { font-size: 17px; padding: 16px 40px; }

/* hero */
.hero { position: relative; display: flex; align-items: flex-start; min-height: clamp(360px, 39vw, 500px); overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; }
.hero .wrap { position: relative; }
.hero-box { max-width: 640px; margin-top: clamp(28px, 5vw, 64px); padding: 22px 26px 26px; background: rgba(0, 0, 0, .5); color: #fff; }
.hero-box h1 { color: #fff; font-size: clamp(21px, 2.6vw, 30px); font-weight: 700; word-break: keep-all; overflow-wrap: anywhere; }
.hero-box p { margin: 10px 0 18px; font-size: clamp(16px, 1.7vw, 20px); line-height: 1.6; }
@media (max-width: 640px) { .hero { align-items: flex-end; } .hero-box { margin: 180px 0 20px; } }

/* sections */
.section { padding-block: clamp(56px, 7vw, 92px); }
.title { color: var(--pink); font-size: clamp(28px, 3.4vw, 42px); font-weight: 300; text-align: center; margin-bottom: clamp(28px, 4vw, 48px); }
.title-left { text-align: left; font-size: clamp(26px, 3vw, 36px); font-weight: 700; margin-bottom: 18px; }

.two-col { display: grid; gap: 32px; align-items: center; }
@media (min-width: 800px) { .two-col { grid-template-columns: 1fr 1fr; gap: 40px; } }
.area { display: inline-flex; align-items: center; gap: 14px; margin-top: 8px; padding: 10px 18px; background: var(--pale); border-left: 4px solid var(--teal); color: var(--dark); }
.area strong { color: var(--teal); font-size: 14px; }

.features { padding-top: 0; }
.features-inner { display: grid; gap: 24px; align-items: end; }
@media (min-width: 800px) { .features-inner { grid-template-columns: 1.6fr 1fr; } }
.features h3 { font-size: 20px; margin: 22px 0 16px; }
.features img { max-height: 520px; width: auto; margin-inline: auto; }
.checks { display: grid; gap: 18px 28px; }
@media (min-width: 640px) { .checks { grid-template-columns: 1fr 1fr; } }
.checks li { display: flex; gap: 16px; align-items: flex-start; font-size: 17px; }
.check { flex: none; width: 44px; height: 44px; margin-top: 2px; }
.check circle { fill: var(--teal); }

/* menu */
.menu { padding-top: clamp(24px, 4vw, 48px); }
.menu-grid { display: grid; gap: 96px 28px; padding-top: 44px; }
@media (min-width: 800px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
.menu-card { display: flex; flex-direction: column; align-items: center; background: var(--pale); padding: 0 40px 50px; text-align: center; }
.menu-photo { width: 208px; height: 208px; margin-top: -44px; border-radius: 50%; overflow: hidden; border: 5px solid #fff; box-shadow: 0 0 0 1px var(--border); }
.menu-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.menu-card:hover .menu-photo img { transform: scale(1.06); }
.menu-card h3 { font-size: 23px; font-weight: 400; margin: 26px 0 18px; }
.menu-card p { font-size: 16px; flex: 1; }
.menu-card .btn { width: 100%; max-width: 280px; margin-top: 10px; }

/* cta */
.cta { position: relative; background: #5b6470 url(/images/cta.webp) center 40% / cover no-repeat; color: #fff; text-align: center; }
.cta::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .42); }
.cta-inner { position: relative; padding: clamp(64px, 9vw, 120px) 24px; }
.cta h2 { color: #fff; font-size: clamp(28px, 4.4vw, 56px); font-weight: 300; }
.cta p { font-size: clamp(17px, 2vw, 22px); margin: 8px 0 26px; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.cta .cta-note { font-size: 13px; margin: 22px 0 0; opacity: .85; }


/* voices */
.voice-list { display: grid; gap: 28px; }
.voice { display: grid; background: var(--blue); color: #fff; }
@media (min-width: 800px) { .voice { grid-template-columns: 1fr 1fr; } .voice:nth-child(even) .voice-text { order: 2; } }
.voice-text { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 4vw, 52px); }
.voice h3 { color: #fff; font-size: clamp(24px, 3vw, 38px); font-weight: 300; margin-bottom: 14px; }
.voice p { font-size: 16px; }
.voice-who { margin: 14px 0 0; }
.voice img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }

/* gallery */
.gallery { background: var(--teal); color: #fff; text-align: center; }
.gallery-head { padding: clamp(48px, 6vw, 76px) 24px clamp(32px, 4vw, 52px); }
.gallery h2 { color: #fff; font-size: clamp(30px, 3.4vw, 42px); font-weight: 400; }
.gallery-head p { margin: 4px 0 0; font-size: clamp(17px, 2vw, 22px); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-grid a { display: block; overflow: hidden; aspect-ratio: 1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, filter .3s; }
.gallery-grid a:hover img { transform: scale(1.08); filter: brightness(1.06); }
.gallery-foot { margin: 0; padding: 36px 24px 44px; font-size: clamp(20px, 2.4vw, 28px); font-weight: 300; }


/* menu detail pages */
.page-head { position: relative; display: flex; align-items: flex-end; min-height: clamp(200px, 24vw, 300px); overflow: hidden; color: #fff; }
.page-head > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; filter: brightness(.6); }
.page-head .wrap { position: relative; padding-block: 28px; }
.page-head h1 { color: #fff; font-size: clamp(28px, 4vw, 44px); font-weight: 300; }
.crumb { margin: 0 0 6px; font-size: 14px; }
.crumb a { color: #fff; }
.prose h2 { color: var(--pink); font-size: clamp(22px, 2.6vw, 28px); font-weight: 700; margin: 44px 0 16px; padding-bottom: 10px; border-bottom: 2px dotted var(--border); }
.prose ul { display: grid; gap: 10px; margin-bottom: 1em; }
.prose li { position: relative; padding-left: 26px; }
.prose li::before { content: ""; position: absolute; left: 4px; top: .62em; width: 10px; height: 10px; border-radius: 50%; background: var(--teal); }
.lead-img { width: 100%; margin-bottom: 32px; }
.price { font-size: 16px; margin-bottom: 6px; }
.price small { font-size: 14px; margin-left: 6px; }
.apply { text-align: center; margin: 48px 0; }
.photo-row { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.photo-row img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.back { margin: 36px 0 0; font-size: 15px; }

/* footer */
.site-footer { background: var(--blue); color: #fff; font-size: 15px; }
.site-footer a { color: #fff; }
.footer-inner { display: grid; gap: 28px; padding-block: 48px 36px; }
@media (min-width: 800px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1.2fr; } }
.footer-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.site-footer li { padding: 5px 0; border-bottom: 1px solid rgba(255, 255, 255, .25); }
.site-footer li a { text-decoration: none; }
.site-footer li a:hover { text-decoration: underline; }
.copyright { margin: 0; padding: 18px 24px; text-align: center; font-size: 13px; background: rgba(0, 0, 0, .12); }

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
